diff --git a/external/pyrep/.github/stale.yml b/external/pyrep/.github/stale.yml new file mode 100644 index 0000000000000000000000000000000000000000..e556fa9854f2afcc688027dbd9cae23c9dc02e33 --- /dev/null +++ b/external/pyrep/.github/stale.yml @@ -0,0 +1,17 @@ +# Number of days of inactivity before an issue becomes stale +daysUntilStale: 60 +# Number of days of inactivity before a stale issue is closed +daysUntilClose: 7 +# Issues with these labels will never be considered stale +exemptLabels: + - pinned + - security +# Label to use when marking an issue as stale +staleLabel: stale +# Comment to post when marking an issue as stale. Set to `false` to disable +markComment: > + This issue has been automatically marked as stale because it has not had + recent activity. It will be closed if no further activity occurs. Thank you + for your contributions. +# Comment to post when closing a stale issue. Set to `false` to disable +closeComment: false diff --git a/external/pyrep/.github/workflows/build.yml b/external/pyrep/.github/workflows/build.yml new file mode 100644 index 0000000000000000000000000000000000000000..110fece78868a95032d18cabe1f0712f4f7f4002 --- /dev/null +++ b/external/pyrep/.github/workflows/build.yml @@ -0,0 +1,46 @@ +name: Build + +# Controls when the action will run. +# Run this workflow every time a new commit pushed to your repository +on: + # Triggers the workflow on push or pull request events. + push: + pull_request: + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + # This workflow contains a single job called "build" + build: + # The type of runner that the job will run on + runs-on: ubuntu-20.04 + env: + DISPLAY: :0 + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v2 + + # Runs a set of commands using the runners shell + - name: Run a multi-line script + run: | + sudo apt-get update -qq + sudo apt-get install -y xvfb qtbase5-dev qtdeclarative5-dev libqt5webkit5-dev libsqlite3-dev qt5-default qttools5-dev-tools + # start xvfb in the background + sudo /usr/bin/Xvfb $DISPLAY -screen 0 1280x1024x24 & + cur=`pwd` + wget http://www.coppeliarobotics.com/files/CoppeliaSim_Edu_V4_1_0_Ubuntu20_04.tar.xz + tar -xf CoppeliaSim_Edu_V4_1_0_Ubuntu20_04.tar.xz + export COPPELIASIM_ROOT="$cur/CoppeliaSim_Edu_V4_1_0_Ubuntu20_04" + echo $COPPELIASIM_ROOT + ls -al + export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$COPPELIASIM_ROOT:$COPPELIASIM_ROOT/platforms + export QT_QPA_PLATFORM_PLUGIN_PATH=$COPPELIASIM_ROOT + pip3 install -r requirements.txt + pip3 install setuptools + pip3 install . + mv pyrep _pyrep + python3 -m unittest discover tests diff --git a/external/pyrep/PyRep.egg-info/PKG-INFO b/external/pyrep/PyRep.egg-info/PKG-INFO new file mode 100644 index 0000000000000000000000000000000000000000..47cbe4d879166170c2899f8c35ee0b7991a33175 --- /dev/null +++ b/external/pyrep/PyRep.egg-info/PKG-INFO @@ -0,0 +1,8 @@ +Metadata-Version: 2.1 +Name: PyRep +Version: 4.1.0.3 +Summary: Python CoppeliaSim wrapper +Home-page: https://www.doc.ic.ac.uk/~slj12 +Author: Stephen James +Author-email: slj12@ic.ac.uk +License-File: LICENSE diff --git a/external/pyrep/PyRep.egg-info/SOURCES.txt b/external/pyrep/PyRep.egg-info/SOURCES.txt new file mode 100644 index 0000000000000000000000000000000000000000..faf36660fc9eb6643e818a435c1661c1e4b77816 --- /dev/null +++ b/external/pyrep/PyRep.egg-info/SOURCES.txt @@ -0,0 +1,103 @@ +LICENSE +README.md +setup.py +PyRep.egg-info/PKG-INFO +PyRep.egg-info/SOURCES.txt +PyRep.egg-info/dependency_links.txt +PyRep.egg-info/top_level.txt +pyrep/__init__.py +pyrep/const.py +pyrep/errors.py +pyrep/pyrep.py +pyrep/backend/__init__.py +pyrep/backend/sim.py +pyrep/backend/simConst.py +pyrep/backend/utils.py +pyrep/misc/__init__.py +pyrep/misc/distance.py +pyrep/misc/signals.py +pyrep/objects/__init__.py +pyrep/objects/camera.py +pyrep/objects/cartesian_path.py +pyrep/objects/dummy.py +pyrep/objects/force_sensor.py +pyrep/objects/joint.py +pyrep/objects/light.py +pyrep/objects/object.py +pyrep/objects/octree.py +pyrep/objects/proximity_sensor.py +pyrep/objects/shape.py +pyrep/objects/vision_sensor.py +pyrep/robots/__init__.py +pyrep/robots/robot_component.py +pyrep/robots/arms/__init__.py +pyrep/robots/arms/arm.py +pyrep/robots/arms/baxter.py +pyrep/robots/arms/dobot.py +pyrep/robots/arms/dual_panda.py +pyrep/robots/arms/jaco.py +pyrep/robots/arms/lbr_iiwa_14_r820.py +pyrep/robots/arms/lbr_iiwa_7_r800.py +pyrep/robots/arms/locobot_arm.py +pyrep/robots/arms/mico.py +pyrep/robots/arms/panda.py +pyrep/robots/arms/sawyer.py +pyrep/robots/arms/ur10.py +pyrep/robots/arms/ur3.py +pyrep/robots/arms/ur5.py +pyrep/robots/arms/xarm7.py +pyrep/robots/arms/youBot.py +pyrep/robots/configuration_paths/__init__.py +pyrep/robots/configuration_paths/arm_configuration_path.py +pyrep/robots/configuration_paths/configuration_path.py +pyrep/robots/configuration_paths/holonomic_configuration_path.py +pyrep/robots/configuration_paths/mobile_configuration_path.py +pyrep/robots/configuration_paths/nonholonomic_configuration_path.py +pyrep/robots/end_effectors/__init__.py +pyrep/robots/end_effectors/baxter_gripper.py +pyrep/robots/end_effectors/baxter_suction_cup.py +pyrep/robots/end_effectors/dobot_suction_cup.py +pyrep/robots/end_effectors/dual_panda_gripper.py +pyrep/robots/end_effectors/gripper.py +pyrep/robots/end_effectors/jaco_gripper.py +pyrep/robots/end_effectors/locobot_gripper.py +pyrep/robots/end_effectors/mico_gripper.py +pyrep/robots/end_effectors/panda_gripper.py +pyrep/robots/end_effectors/robotiq85_gripper.py +pyrep/robots/end_effectors/suction_cup.py +pyrep/robots/end_effectors/xarm_gripper.py +pyrep/robots/mobiles/holonomic_base.py +pyrep/robots/mobiles/line_tracer.py +pyrep/robots/mobiles/locobot.py +pyrep/robots/mobiles/mobile_base.py +pyrep/robots/mobiles/nonholonomic_base.py +pyrep/robots/mobiles/turtlebot.py +pyrep/robots/mobiles/youbot.py +pyrep/sensors/__init__.py +pyrep/sensors/accelerometer.py +pyrep/sensors/gyroscope.py +pyrep/sensors/spherical_vision_sensor.py +pyrep/textures/__init__.py +pyrep/textures/texture.py +tests/test_accelerometer.py +tests/test_arms_and_configuration_paths.py +tests/test_cameras.py +tests/test_cartesian_paths.py +tests/test_dummies.py +tests/test_force_sensors.py +tests/test_grippers.py +tests/test_gyroscope.py +tests/test_joint_groups.py +tests/test_joints.py +tests/test_lights.py +tests/test_misc.py +tests/test_mobiles_and_configuration_paths.py +tests/test_mobiles_with_arms.py +tests/test_objects.py +tests/test_octrees.py +tests/test_proximity_sensors.py +tests/test_pyrep.py +tests/test_shapes.py +tests/test_spherical_vision_sensors.py +tests/test_suction_cups.py +tests/test_vision_sensors.py \ No newline at end of file diff --git a/external/pyrep/PyRep.egg-info/dependency_links.txt b/external/pyrep/PyRep.egg-info/dependency_links.txt new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/external/pyrep/PyRep.egg-info/dependency_links.txt @@ -0,0 +1 @@ + diff --git a/external/pyrep/PyRep.egg-info/top_level.txt b/external/pyrep/PyRep.egg-info/top_level.txt new file mode 100644 index 0000000000000000000000000000000000000000..ae338dd7e5cb0d48b3740eaf65fa2faa6a6ff938 --- /dev/null +++ b/external/pyrep/PyRep.egg-info/top_level.txt @@ -0,0 +1 @@ +pyrep diff --git a/external/pyrep/cffi_build/__init__.py b/external/pyrep/cffi_build/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/external/pyrep/cffi_build/cffi_build.py b/external/pyrep/cffi_build/cffi_build.py new file mode 100644 index 0000000000000000000000000000000000000000..5f08bc3c8adbf7be900ea2211334fadf871aa432 --- /dev/null +++ b/external/pyrep/cffi_build/cffi_build.py @@ -0,0 +1,757 @@ +from cffi import FFI +import os +import glob +from shutil import copyfile + +# Get PYREP root and find the needed files to compile the cffi lib. + +if 'COPPELIASIM_ROOT' not in os.environ: + raise RuntimeError('COPPELIASIM_ROOT not defined.') + +if not os.path.exists(os.environ['COPPELIASIM_ROOT']): + raise RuntimeError('COPPELIASIM_ROOT defined, but is not a valid path.') + +ffibuilder = FFI() + +ffibuilder.cdef(""" +// ============== +// simTypes.h +// ============== + +// Various types used in the interface functions: +typedef unsigned char simBool; +typedef char simChar; +typedef int simInt; +typedef float simFloat; +typedef double simDouble; +typedef void simVoid; +typedef unsigned char simUChar; +typedef unsigned int simUInt; +typedef unsigned long long int simUInt64; + +struct SScriptCallBack +{ + simInt objectID; + simInt scriptID; + simInt stackID; + simChar waitUntilZero; + simChar* raiseErrorWithMessage; +}; + +struct SShapeVizInfo +{ + simFloat* vertices; + simInt verticesSize; + simInt* indices; + simInt indicesSize; + simFloat shadingAngle; + simFloat* normals; + simFloat colors[9]; + simChar* texture; /*rgba*/ + simInt textureId; + simInt textureRes[2]; + simFloat* textureCoords; + simInt textureApplyMode; + simInt textureOptions; /* not just textures options */ +}; + +struct SLuaCallBack +{ + simInt objectID; + simBool* inputBool; + simInt* inputInt; + simFloat* inputFloat; + simChar* inputChar; + simInt inputArgCount; + simInt* inputArgTypeAndSize; + simBool* outputBool; + simInt* outputInt; + simFloat* outputFloat; + simChar* outputChar; + simInt outputArgCount; + simInt* outputArgTypeAndSize; + simChar waitUntilZero; + simChar* inputCharBuff; + simChar* outputCharBuff; + simInt scriptID; + simDouble* inputDouble; + simDouble* outputDouble; +}; + +struct SSyncMsg +{ + unsigned char msg; + void* data; + size_t dataSize; +}; + +struct SSyncRt +{ + unsigned char objTypes[3]; + int objHandles[3]; +}; + +typedef int (*contactCallback)(int,int,int,int*,float*); +typedef int (*jointCtrlCallback)(int,int,int,const int*,const float*,float*); + + +// ============== +// sim.h +// ============== + +simInt simRunSimulator(const simChar* applicationName,simInt options,simVoid(*initCallBack)(),simVoid(*loopCallBack)(),simVoid(*deinitCallBack)()); +simInt simRunSimulatorEx(const simChar* applicationName,simInt options,simVoid(*initCallBack)(),simVoid(*loopCallBack)(),simVoid(*deinitCallBack)(),simInt stopDelay,const simChar* sceneOrModelToLoad); +simVoid* simGetMainWindow(simInt type); +simChar* simGetLastError(); +simInt simSetBooleanParameter(simInt parameter,simBool boolState); +simInt simGetBooleanParameter(simInt parameter); +simInt simSetBoolParameter(simInt parameter,simBool boolState); +simInt simGetBoolParameter(simInt parameter); +simInt simSetIntegerParameter(simInt parameter,simInt intState); +simInt simGetIntegerParameter(simInt parameter,simInt* intState); +simInt simSetInt32Parameter(simInt parameter,simInt intState); +simInt simGetInt32Parameter(simInt parameter,simInt* intState); +simInt simGetUInt64Parameter(simInt parameter,simUInt64* intState); +simInt simSetFloatingParameter(simInt parameter,simFloat floatState); +simInt simGetFloatingParameter(simInt parameter,simFloat* floatState); +simInt simSetFloatParameter(simInt parameter,simFloat floatState); +simInt simGetFloatParameter(simInt parameter,simFloat* floatState); +simInt simSetStringParameter(simInt parameter,const simChar* str); +simChar* simGetStringParameter(simInt parameter); +simInt simGetObjectHandle(const simChar* objectName); +simInt simRemoveObject(simInt objectHandle); +simInt simRemoveModel(simInt objectHandle); +simChar* simGetObjectName(simInt objectHandle); +simInt simGetObjects(simInt index,simInt objectType); +simInt simSetObjectName(simInt objectHandle,const simChar* objectName); +simInt simGetCollectionHandle(const simChar* collectionName); +simInt simRemoveCollection(simInt collectionHandle); +simInt simEmptyCollection(simInt collectionHandle); +simChar* simGetCollectionName(simInt collectionHandle); +simInt simSetCollectionName(simInt collectionHandle,const simChar* collectionName); +simInt simGetObjectMatrix(simInt objectHandle,simInt relativeToObjectHandle,simFloat* matrix); +simInt simSetObjectMatrix(simInt objectHandle,simInt relativeToObjectHandle,const simFloat* matrix); +simInt simGetObjectPosition(simInt objectHandle,simInt relativeToObjectHandle,simFloat* position); +simInt simSetObjectPosition(simInt objectHandle,simInt relativeToObjectHandle,const simFloat* position); +simInt simGetObjectOrientation(simInt objectHandle,simInt relativeToObjectHandle,simFloat* eulerAngles); +simInt simGetObjectQuaternion(simInt objectHandle,simInt relativeToObjectHandle,simFloat* quaternion); +simInt simSetObjectQuaternion(simInt objectHandle,simInt relativeToObjectHandle,const simFloat* quaternion); +simInt simSetObjectOrientation(simInt objectHandle,simInt relativeToObjectHandle,const simFloat* eulerAngles); +simInt simGetJointPosition(simInt objectHandle,simFloat* position); +simInt simSetJointPosition(simInt objectHandle,simFloat position); +simInt simSetJointTargetPosition(simInt objectHandle,simFloat targetPosition); +simInt simGetJointTargetPosition(simInt objectHandle,simFloat* targetPosition); +simInt simSetJointMaxForce(simInt objectHandle,simFloat forceOrTorque); +simInt simGetPathPosition(simInt objectHandle,simFloat* position); +simInt simSetPathPosition(simInt objectHandle,simFloat position); +simInt simGetPathLength(simInt objectHandle,simFloat* length); +simInt simGetJointMatrix(simInt objectHandle,simFloat* matrix); +simInt simSetSphericalJointMatrix(simInt objectHandle,const simFloat* matrix); +simInt simGetJointInterval(simInt objectHandle,simBool* cyclic,simFloat* interval); +simInt simSetJointInterval(simInt objectHandle,simBool cyclic,const simFloat* interval); +simInt simGetObjectParent(simInt objectHandle); +simInt simGetObjectChild(simInt objectHandle,simInt index); +simInt simSetObjectParent(simInt objectHandle,simInt parentObjectHandle,simBool keepInPlace); +simInt simGetObjectType(simInt objectHandle); +simInt simGetJointType(simInt objectHandle); +simInt simBuildIdentityMatrix(simFloat* matrix); +simInt simCopyMatrix(const simFloat* matrixIn,simFloat* matrixOut); +simInt simBuildMatrix(const simFloat* position,const simFloat* eulerAngles,simFloat* matrix); +simInt simBuildMatrixQ(const simFloat* position,const simFloat* quaternion,simFloat* matrix); +simInt simGetEulerAnglesFromMatrix(const simFloat* matrix,simFloat* eulerAngles); +simInt simGetQuaternionFromMatrix(const simFloat* matrix,simFloat* quaternion); +simInt simInvertMatrix(simFloat* matrix); +simInt simMultiplyMatrices(const simFloat* matrixIn1,const simFloat* matrixIn2,simFloat* matrixOut); +simInt simInterpolateMatrices(const simFloat* matrixIn1,const simFloat* matrixIn2,simFloat interpolFactor,simFloat* matrixOut); +simInt simTransformVector(const simFloat* matrix,simFloat* vect); +simInt simReservedCommand(simInt v,simInt w); +simFloat simGetSimulationTime(); +simInt simGetSimulationState(); +simFloat simGetSystemTime(); +simInt simGetSystemTimeInMilliseconds(); // deprecated +simUInt simGetSystemTimeInMs(simInt previousTime); +simInt simLoadScene(const simChar* filename); +simInt simCloseScene(); +simInt simSaveScene(const simChar* filename); +simInt simLoadModel(const simChar* filename); +simInt simSaveModel(simInt baseOfModelHandle,const simChar* filename); +simChar* simGetSimulatorMessage(simInt* messageID,simInt* auxiliaryData,simInt* returnedDataSize); +simInt simAddModuleMenuEntry(const simChar* entryLabel,simInt itemCount,simInt* itemHandles); +simInt simSetModuleMenuItemState(simInt itemHandle,simInt state,const simChar* label); +simInt simDoesFileExist(const simChar* filename); +simInt simIsObjectInSelection(simInt objectHandle); +simInt simAddObjectToSelection(simInt what,simInt objectHandle); +simInt simRemoveObjectFromSelection(simInt what,simInt objectHandle); +simInt simGetObjectSelectionSize(); +simInt simGetObjectLastSelection(); +simInt simGetObjectSelection(simInt* objectHandles); +simInt simHandleCollision(simInt collisionObjectHandle); +simInt simReadCollision(simInt collisionObjectHandle); +simInt simHandleDistance(simInt distanceObjectHandle,simFloat* smallestDistance); +simInt simReadDistance(simInt distanceObjectHandle,simFloat* smallestDistance); +simInt simHandleProximitySensor(simInt sensorHandle,simFloat* detectedPoint,simInt* detectedObjectHandle,simFloat* normalVector); +simInt simReadProximitySensor(simInt sensorHandle,simFloat* detectedPoint,simInt* detectedObjectHandle,simFloat* normalVector); +simInt simHandleIkGroup(simInt ikGroupHandle); +simInt simCheckIkGroup(simInt ikGroupHandle,simInt jointCnt,const simInt* jointHandles,simFloat* jointValues,const simInt* jointOptions); +simInt simHandleDynamics(simFloat deltaTime); +simInt simGetScriptHandle(const simChar* scriptName); +simInt simSetScriptText(simInt scriptHandle,const simChar* scriptText); +const simChar* simGetScriptText(simInt scriptHandle); +simInt simGetScriptProperty(simInt scriptHandle,simInt* scriptProperty,simInt* associatedObjectHandle); +simInt simAssociateScriptWithObject(simInt scriptHandle,simInt associatedObjectHandle); +simInt simGetScript(simInt index); +simInt simGetScriptAssociatedWithObject(simInt objectHandle); +simInt simGetCustomizationScriptAssociatedWithObject(simInt objectHandle); +simInt simGetObjectAssociatedWithScript(simInt scriptHandle); +simChar* simGetScriptName(simInt scriptHandle); +simInt simHandleMainScript(); +simInt simResetScript(simInt scriptHandle); +simInt simAddScript(simInt scriptProperty); +simInt simRemoveScript(simInt scriptHandle); +simInt simRefreshDialogs(simInt refreshDegree); +simInt simGetCollisionHandle(const simChar* collisionObjectName); +simInt simGetDistanceHandle(const simChar* distanceObjectName); +simInt simGetIkGroupHandle(const simChar* ikGroupName); +simInt simResetCollision(simInt collisionObjectHandle); +simInt simResetDistance(simInt distanceObjectHandle); +simInt simResetProximitySensor(simInt sensorHandle); +simInt simCheckProximitySensor(simInt sensorHandle,simInt entityHandle,simFloat* detectedPoint); +simInt simCheckProximitySensorEx(simInt sensorHandle,simInt entityHandle,simInt detectionMode,simFloat detectionThreshold,simFloat maxAngle,simFloat* detectedPoint,simInt* detectedObjectHandle,simFloat* normalVector); +simInt simCheckProximitySensorEx2(simInt sensorHandle,simFloat* vertexPointer,simInt itemType,simInt itemCount,simInt detectionMode,simFloat detectionThreshold,simFloat maxAngle,simFloat* detectedPoint,simFloat* normalVector); +simChar* simCreateBuffer(simInt size); +simInt simReleaseBuffer(const simChar* buffer); +simInt simCheckCollision(simInt entity1Handle,simInt entity2Handle); +simInt simCheckCollisionEx(simInt entity1Handle,simInt entity2Handle,simFloat** intersectionSegments); +simInt simCheckDistance(simInt entity1Handle,simInt entity2Handle,simFloat threshold,simFloat* distanceData); +simChar* simGetObjectConfiguration(simInt objectHandle); +simInt simSetObjectConfiguration(const simChar* data); +simChar* simGetConfigurationTree(simInt objectHandle); +simInt simSetConfigurationTree(const simChar* data); +simInt simSetSimulationTimeStep(simFloat timeStep); +simFloat simGetSimulationTimeStep(); +simInt simGetRealTimeSimulation(); +simInt simIsRealTimeSimulationStepNeeded(); +simInt simAdjustRealTimeTimer(simInt instanceIndex,simFloat deltaTime); +simInt simGetSimulationPassesPerRenderingPass(); +simInt simAdvanceSimulationByOneStep(); +simInt simStartSimulation(); +simInt simStopSimulation(); +simInt simPauseSimulation(); +simInt simLoadModule(const simChar* filenameAndPath,const simChar* pluginName); +simInt simUnloadModule(simInt pluginhandle); +simVoid* simSendModuleMessage(simInt message,simInt* auxiliaryData,simVoid* customData,simInt* replyData); +simVoid* simBroadcastMessage(simInt* auxiliaryData,simVoid* customData,simInt* replyData); +simChar* simGetModuleName(simInt index,simUChar* moduleVersion); +simInt simFloatingViewAdd(simFloat posX,simFloat posY,simFloat sizeX,simFloat sizeY,simInt options); +simInt simFloatingViewRemove(simInt floatingViewHandle); +simInt simAdjustView(simInt viewHandleOrIndex,simInt associatedViewableObjectHandle,simInt options,const simChar* viewLabel); +simInt simSetLastError(const simChar* funcName,const simChar* errorMessage); +simInt simHandleGraph(simInt graphHandle,simFloat simulationTime); +simInt simResetGraph(simInt graphHandle); +simInt simSetNavigationMode(simInt navigationMode); +simInt simGetNavigationMode(); +simInt simSetPage(simInt index); +simInt simGetPage(); +simInt simDisplayDialog(const simChar* titleText,const simChar* mainText,simInt dialogType,const simChar* initialText,const simFloat* titleColors,const simFloat* dialogColors,simInt* elementHandle); +simInt simGetDialogResult(simInt genericDialogHandle); +simChar* simGetDialogInput(simInt genericDialogHandle); +simInt simEndDialog(simInt genericDialogHandle); +simInt simRegisterScriptCallbackFunction(const simChar* funcNameAtPluginName,const simChar* callTips,simVoid(*callBack)(struct SScriptCallBack* cb)); +simInt simRegisterScriptVariable(const simChar* varNameAtPluginName,const simChar* varValue,simInt stackHandle); +simInt simSetJointTargetVelocity(simInt objectHandle,simFloat targetVelocity); +simInt simGetJointTargetVelocity(simInt objectHandle,simFloat* targetVelocity); +simInt simSetPathTargetNominalVelocity(simInt objectHandle,simFloat targetNominalVelocity); +simInt simCopyPasteObjects(simInt* objectHandles,simInt objectCount,simInt options); +simInt simScaleSelectedObjects(simFloat scalingFactor,simBool scalePositionsToo); +simInt simScaleObjects(const simInt* objectHandles,simInt objectCount,simFloat scalingFactor,simBool scalePositionsToo); +simInt simDeleteSelectedObjects(); +simInt simGetObjectUniqueIdentifier(simInt objectHandle,simInt* uniqueIdentifier); +simInt simSendData(simInt targetID,simInt dataHeader,const simChar* dataName,const simChar* data,simInt dataLength,simInt antennaHandle,simFloat actionRadius,simFloat emissionAngle1,simFloat emissionAngle2,simFloat persistence); +simChar* simReceiveData(simInt dataHeader,const simChar* dataName,simInt antennaHandle,simInt index,simInt* dataLength,simInt* senderID,simInt* dataHeaderR,simChar** dataNameR); +simInt simSetGraphUserData(simInt graphHandle,const simChar* dataStreamName,simFloat data); +simInt simAddDrawingObject(simInt objectType,simFloat size,simFloat duplicateTolerance,simInt parentObjectHandle,simInt maxItemCount,const simFloat* ambient_diffuse,const simFloat* setToNULL,const simFloat* specular,const simFloat* emission); +simInt simRemoveDrawingObject(simInt objectHandle); +simInt simAddDrawingObjectItem(simInt objectHandle,const simFloat* itemData); +simInt simAddParticleObject(simInt objectType,simFloat size,simFloat density,const simVoid* params,simFloat lifeTime,simInt maxItemCount,const simFloat* ambient_diffuse,const simFloat* setToNULL,const simFloat* specular,const simFloat* emission); +simInt simRemoveParticleObject(simInt objectHandle); +simInt simAddParticleObjectItem(simInt objectHandle,const simFloat* itemData); +simFloat simGetObjectSizeFactor(simInt objectHandle); +simInt simAnnounceSceneContentChange(); +simInt simSetIntegerSignal(const simChar* signalName,simInt signalValue); +simInt simGetIntegerSignal(const simChar* signalName,simInt* signalValue); +simInt simClearIntegerSignal(const simChar* signalName); +simInt simSetFloatSignal(const simChar* signalName,simFloat signalValue); +simInt simGetFloatSignal(const simChar* signalName,simFloat* signalValue); +simInt simClearFloatSignal(const simChar* signalName); +simInt simSetDoubleSignal(const simChar* signalName,simDouble signalValue); +simInt simGetDoubleSignal(const simChar* signalName,simDouble* signalValue); +simInt simClearDoubleSignal(const simChar* signalName); +simInt simSetStringSignal(const simChar* signalName,const simChar* signalValue,simInt stringLength); +simChar* simGetStringSignal(const simChar* signalName,simInt* stringLength); +simInt simClearStringSignal(const simChar* signalName); +simChar* simGetSignalName(simInt signalIndex,simInt signalType); +simInt simSetObjectProperty(simInt objectHandle,simInt prop); +simInt simGetObjectProperty(simInt objectHandle); +simInt simSetObjectSpecialProperty(simInt objectHandle,simInt prop); +simInt simGetObjectSpecialProperty(simInt objectHandle); +simInt simGetPositionOnPath(simInt pathHandle,simFloat relativeDistance,simFloat* position); +simInt simGetDataOnPath(simInt pathHandle,simFloat relativeDistance,simInt dataType,simInt* intData,simFloat* floatData); +simInt simGetOrientationOnPath(simInt pathHandle,simFloat relativeDistance,simFloat* eulerAngles); +simInt simGetClosestPositionOnPath(simInt pathHandle,simFloat* absolutePosition,simFloat* pathPosition); +simInt simReadForceSensor(simInt objectHandle,simFloat* forceVector,simFloat* torqueVector); +simInt simBreakForceSensor(simInt objectHandle); +simInt simGetShapeVertex(simInt shapeHandle,simInt groupElementIndex,simInt vertexIndex,simFloat* relativePosition); +simInt simGetShapeTriangle(simInt shapeHandle,simInt groupElementIndex,simInt triangleIndex,simInt* vertexIndices,simFloat* triangleNormals); +simInt simSetLightParameters(simInt objectHandle,simInt state,const simFloat* setToNULL,const simFloat* diffusePart,const simFloat* specularPart); +simInt simGetLightParameters(simInt objectHandle,simFloat* setToNULL,simFloat* diffusePart,simFloat* specularPart); +simInt simGetVelocity(simInt shapeHandle,simFloat* linearVelocity,simFloat* angularVelocity); +simInt simGetObjectVelocity(simInt objectHandle,simFloat* linearVelocity,simFloat* angularVelocity); +simInt simAddForceAndTorque(simInt shapeHandle,const simFloat* force,const simFloat* torque); +simInt simAddForce(simInt shapeHandle,const simFloat* position,const simFloat* force); +simInt simSetExplicitHandling(simInt generalObjectHandle,int explicitFlags); +simInt simGetExplicitHandling(simInt generalObjectHandle); +simInt simGetLinkDummy(simInt dummyHandle); +simInt simSetLinkDummy(simInt dummyHandle,simInt linkedDummyHandle); +simInt simSetModelProperty(simInt objectHandle,simInt modelProperty); +simInt simGetModelProperty(simInt objectHandle); +simInt simSetShapeColor(simInt shapeHandle,const simChar* colorName,simInt colorComponent,const simFloat* rgbData); +simInt simGetShapeColor(simInt shapeHandle,const simChar* colorName,simInt colorComponent,simFloat* rgbData); +simInt simResetDynamicObject(simInt objectHandle); +simInt simSetJointMode(simInt jointHandle,simInt jointMode,simInt options); +simInt simGetJointMode(simInt jointHandle,simInt* options); +simInt simSerialOpen(const simChar* portString,simInt baudRate,simVoid* reserved1,simVoid* reserved2); +simInt simSerialClose(simInt portHandle); +simInt simSerialSend(simInt portHandle,const simChar* data,simInt dataLength); +simInt simSerialRead(simInt portHandle,simChar* buffer,simInt dataLengthToRead); +simInt simSerialCheck(simInt portHandle); +simInt simGetContactInfo(simInt dynamicPass,simInt objectHandle,simInt index,simInt* objectHandles,simFloat* contactInfo); +simInt simSetThreadIsFree(simBool freeMode); +simInt simTubeOpen(simInt dataHeader,const simChar* dataName,simInt readBufferSize,simBool notUsedButKeepZero); +simInt simTubeClose(simInt tubeHandle); +simInt simTubeWrite(simInt tubeHandle,const simChar* data,simInt dataLength); +simChar* simTubeRead(simInt tubeHandle,simInt* dataLength); +simInt simTubeStatus(simInt tubeHandle,simInt* readPacketsCount,simInt* writePacketsCount); +simInt simAuxiliaryConsoleOpen(const simChar* title,simInt maxLines,simInt mode,const simInt* position,const simInt* size,const simFloat* textColor,const simFloat* backgroundColor); +simInt simAuxiliaryConsoleClose(simInt consoleHandle); +simInt simAuxiliaryConsoleShow(simInt consoleHandle,simBool showState); +simInt simAuxiliaryConsolePrint(simInt consoleHandle,const simChar* text); +simInt simImportShape(simInt fileformat,const simChar* pathAndFilename,simInt options,simFloat identicalVerticeTolerance,simFloat scalingFactor); +simInt simImportMesh(simInt fileformat,const simChar* pathAndFilename,simInt options,simFloat identicalVerticeTolerance,simFloat scalingFactor,simFloat*** vertices,simInt** verticesSizes,simInt*** indices,simInt** indicesSizes,simFloat*** reserved,simChar*** names); +simInt simExportMesh(simInt fileformat,const simChar* pathAndFilename,simInt options,simFloat scalingFactor,simInt elementCount,const simFloat** vertices,const simInt* verticesSizes,const simInt** indices,const simInt* indicesSizes,simFloat** reserved,const simChar** names); +simInt simCreateMeshShape(simInt options,simFloat shadingAngle,const simFloat* vertices,simInt verticesSize,const simInt* indices,simInt indicesSize,simFloat* reserved); +simInt simCreatePureShape(simInt primitiveType,simInt options,const simFloat* sizes,simFloat mass,const simInt* precision); +simInt simCreateHeightfieldShape(simInt options,simFloat shadingAngle,simInt xPointCount,simInt yPointCount,simFloat xSize,const simFloat* heights); +simInt simGetShapeMesh(simInt shapeHandle,simFloat** vertices,simInt* verticesSize,simInt** indices,simInt* indicesSize,simFloat** normals); +simInt simAddBanner(const simChar* label,simFloat size,simInt options,const simFloat* positionAndEulerAngles,simInt parentObjectHandle,const simFloat* labelColors,const simFloat* backgroundColors); +simInt simRemoveBanner(simInt bannerID); +simInt simCreateJoint(simInt jointType,simInt jointMode,simInt options,const simFloat* sizes,const simFloat* colorA,const simFloat* colorB); +simInt simGetObjectIntParameter(simInt objectHandle,simInt parameterID,simInt* parameter); +simInt simSetObjectIntParameter(simInt objectHandle,simInt parameterID,simInt parameter); +simInt simGetObjectInt32Parameter(simInt objectHandle,simInt parameterID,simInt* parameter); +simInt simSetObjectInt32Parameter(simInt objectHandle,simInt parameterID,simInt parameter); +simInt simGetObjectFloatParameter(simInt objectHandle,simInt parameterID,simFloat* parameter); +simInt simSetObjectFloatParameter(simInt objectHandle,simInt parameterID,simFloat parameter); +simChar* simGetObjectStringParameter(simInt objectHandle,simInt parameterID,simInt* parameterLength); +simInt simSetObjectStringParameter(simInt objectHandle,simInt parameterID,simChar* parameter,simInt parameterLength); +simInt simSetSimulationPassesPerRenderingPass(simInt p); +simInt simGetRotationAxis(const simFloat* matrixStart,const simFloat* matrixGoal,simFloat* axis,simFloat* angle); +simInt simRotateAroundAxis(const simFloat* matrixIn,const simFloat* axis,const simFloat* axisPos,simFloat angle,simFloat* matrixOut); +simInt simGetJointForce(simInt jointHandle,simFloat* forceOrTorque); +simInt simGetJointMaxForce(simInt jointHandle,simFloat* forceOrTorque); +simInt simSetArrayParameter(simInt parameter,const simVoid* arrayOfValues); +simInt simGetArrayParameter(simInt parameter,simVoid* arrayOfValues); +simInt simSetIkGroupProperties(simInt ikGroupHandle,simInt resolutionMethod,simInt maxIterations,simFloat damping,void* reserved); +simInt simSetIkElementProperties(simInt ikGroupHandle,simInt tipDummyHandle,simInt constraints,const simFloat* precision,const simFloat* weight,void* reserved); +simInt simCameraFitToView(simInt viewHandleOrIndex,simInt objectCount,const simInt* objectHandles,simInt options,simFloat scaling); +simInt simPersistentDataWrite(const simChar* dataName,const simChar* dataValue,simInt dataLength,simInt options); +simChar* simPersistentDataRead(const simChar* dataName,simInt* dataLength); +simInt simIsHandleValid(simInt generalObjectHandle,simInt generalObjectType); +simInt simHandleVisionSensor(simInt visionSensorHandle,simFloat** auxValues,simInt** auxValuesCount); +simInt simReadVisionSensor(simInt visionSensorHandle,simFloat** auxValues,simInt** auxValuesCount); +simInt simResetVisionSensor(simInt visionSensorHandle); +simInt simCheckVisionSensor(simInt visionSensorHandle,simInt entityHandle,simFloat** auxValues,simInt** auxValuesCount); +simFloat* simCheckVisionSensorEx(simInt visionSensorHandle,simInt entityHandle,simBool returnImage); +simInt simGetVisionSensorResolution(simInt visionSensorHandle,simInt* resolution); +simFloat* simGetVisionSensorImage(simInt visionSensorHandle); +simUChar* simGetVisionSensorCharImage(simInt visionSensorHandle,simInt* resolutionX,simInt* resolutionY); +simFloat* simGetVisionSensorDepthBuffer(simInt visionSensorHandle); +simInt simSetVisionSensorImage(simInt visionSensorHandle,const simFloat* image); +simInt simSetVisionSensorCharImage(simInt visionSensorHandle,const simUChar* image); +simInt simRMLPosition(simInt dofs,simDouble timeStep,simInt flags,const simDouble* currentPosVelAccel,const simDouble* maxVelAccelJerk,const simBool* selection,const simDouble* targetPosVel,simDouble* newPosVelAccel,simVoid* auxData); +simInt simRMLVelocity(simInt dofs,simDouble timeStep,simInt flags,const simDouble* currentPosVelAccel,const simDouble* maxAccelJerk,const simBool* selection,const simDouble* targetVel,simDouble* newPosVelAccel,simVoid* auxData); +simInt simRMLPos(simInt dofs,simDouble smallestTimeStep,simInt flags,const simDouble* currentPosVelAccel,const simDouble* maxVelAccelJerk,const simBool* selection,const simDouble* targetPosVel,simVoid* auxData); +simInt simRMLVel(simInt dofs,simDouble smallestTimeStep,simInt flags,const simDouble* currentPosVelAccel,const simDouble* maxAccelJerk,const simBool* selection,const simDouble* targetVel,simVoid* auxData); +simInt simRMLStep(simInt handle,simDouble timeStep,simDouble* newPosVelAccel,simVoid* auxData,simVoid* reserved); +simInt simRMLRemove(simInt handle); +simChar* simFileDialog(simInt mode,const simChar* title,const simChar* startPath,const simChar* initName,const simChar* extName,const simChar* ext); +simInt simMsgBox(simInt dlgType,simInt buttons,const simChar* title,const simChar* message); +simInt simCreateDummy(simFloat size,const simFloat* color); +simInt simSetShapeMassAndInertia(simInt shapeHandle,simFloat mass,const simFloat* inertiaMatrix,const simFloat* centerOfMass,const simFloat* transformation); +simInt simGetShapeMassAndInertia(simInt shapeHandle,simFloat* mass,simFloat* inertiaMatrix,simFloat* centerOfMass,const simFloat* transformation); +simInt simGroupShapes(const simInt* shapeHandles,simInt shapeCount); +simInt* simUngroupShape(simInt shapeHandle,simInt* shapeCount); +simInt simCreateProximitySensor(simInt sensorType,simInt subType,simInt options,const simInt* intParams,const simFloat* floatParams,const simFloat* color); +simInt simCreateForceSensor(simInt options,const simInt* intParams,const simFloat* floatParams,const simFloat* color); +simInt simCreateVisionSensor(simInt options,const simInt* intParams,const simFloat* floatParams,const simFloat* color); +simInt simConvexDecompose(simInt shapeHandle,simInt options,const simInt* intParams,const simFloat* floatParams); +simInt simCreatePath(simInt attributes,const simInt* intParams,const simFloat* floatParams,const simFloat* color); +simInt simInsertPathCtrlPoints(simInt pathHandle,simInt options,simInt startIndex,simInt ptCnt,const simVoid* ptData); +simInt simCutPathCtrlPoints(simInt pathHandle,simInt startIndex,simInt ptCnt); +simFloat* simGetIkGroupMatrix(simInt ikGroupHandle,simInt options,simInt* matrixSize); +simInt simAddGhost(simInt ghostGroup,simInt objectHandle,simInt options,simFloat startTime,simFloat endTime,const simFloat* color); +simInt simModifyGhost(simInt ghostGroup,simInt ghostId,simInt operation,simFloat floatValue,simInt options,simInt optionsMask,const simFloat* colorOrTransformation); +simVoid simQuitSimulator(simBool ignoredArgument); +simInt simGetThreadId(); +simInt simLockResources(simInt lockType,simInt reserved); +simInt simUnlockResources(simInt lockHandle); +simInt simEnableEventCallback(simInt eventCallbackType,const simChar* plugin,simInt reserved); +simInt simSetShapeMaterial(simInt shapeHandle,simInt materialIdOrShapeHandle); +simInt simGetTextureId(const simChar* textureName,simInt* resolution); +simChar* simReadTexture(simInt textureId,simInt options,simInt posX,simInt posY,simInt sizeX,simInt sizeY); +simInt simWriteTexture(simInt textureId,simInt options,const simChar* data,simInt posX,simInt posY,simInt sizeX,simInt sizeY,simFloat interpol); +simInt simCreateTexture(const simChar* fileName,simInt options,const simFloat* planeSizes,const simFloat* scalingUV,const simFloat* xy_g,simInt fixedResolution,simInt* textureId,simInt* resolution,const simVoid* reserved); +simInt simWriteCustomDataBlock(simInt objectHandle,const simChar* tagName,const simChar* data,simInt dataSize); +simChar* simReadCustomDataBlock(simInt objectHandle,const simChar* tagName,simInt* dataSize); +simChar* simReadCustomDataBlockTags(simInt objectHandle,simInt* tagCount); +simInt simAddPointCloud(simInt pageMask,simInt layerMask,simInt objectHandle,simInt options,simFloat pointSize,simInt ptCnt,const simFloat* pointCoordinates,const simChar* defaultColors,const simChar* pointColors,const simFloat* pointNormals); +simInt simModifyPointCloud(simInt pointCloudHandle,simInt operation,const simInt* intParam,const simFloat* floatParam); +simInt simGetShapeGeomInfo(simInt shapeHandle,simInt* intData,simFloat* floatData,simVoid* reserved); +simInt* simGetObjectsInTree(simInt treeBaseHandle,simInt objectType,simInt options,simInt* objectCount); +simInt simSetObjectSizeValues(simInt objectHandle,const simFloat* sizeValues); +simInt simGetObjectSizeValues(simInt objectHandle,simFloat* sizeValues); +simInt simScaleObject(simInt objectHandle,simFloat xScale,simFloat yScale,simFloat zScale,simInt options); +simInt simSetShapeTexture(simInt shapeHandle,simInt textureId,simInt mappingMode,simInt options,const simFloat* uvScaling,const simFloat* position,const simFloat* orientation); +simInt simGetShapeTextureId(simInt shapeHandle); +simInt* simGetCollectionObjects(simInt collectionHandle,simInt* objectCount); +simInt simSetScriptAttribute(simInt scriptHandle,simInt attributeID,simFloat floatVal,simInt intOrBoolVal); +simInt simGetScriptAttribute(simInt scriptHandle,simInt attributeID,simFloat* floatVal,simInt* intOrBoolVal); +simInt simReorientShapeBoundingBox(simInt shapeHandle,simInt relativeToHandle,simInt reservedSetToZero); +simInt simSwitchThread(); +simInt simCreateIkGroup(simInt options,const simInt* intParams,const simFloat* floatParams,const simVoid* reserved); +simInt simRemoveIkGroup(simInt ikGroupHandle); +simInt simCreateIkElement(simInt ikGroupHandle,simInt options,const simInt* intParams,const simFloat* floatParams,const simVoid* reserved); +simInt simCreateCollection(const simChar* collectionName,simInt options); +simInt simAddObjectToCollection(simInt collectionHandle,simInt objectHandle,simInt what,simInt options); +simInt simSaveImage(const simUChar* image,const simInt* resolution,simInt options,const simChar* filename,simInt quality,simVoid* reserved); +simUChar* simLoadImage(simInt* resolution,simInt options,const simChar* filename,simVoid* reserved); +simUChar* simGetScaledImage(const simUChar* imageIn,const simInt* resolutionIn,simInt* resolutionOut,simInt options,simVoid* reserved); +simInt simTransformImage(simUChar* image,const simInt* resolution,simInt options,const simFloat* floatParams,const simInt* intParams,simVoid* reserved); +simInt simGetQHull(const simFloat* inVertices,simInt inVerticesL,simFloat** verticesOut,simInt* verticesOutL,simInt** indicesOut,simInt* indicesOutL,simInt reserved1,const simFloat* reserved2); +simInt simGetDecimatedMesh(const simFloat* inVertices,simInt inVerticesL,const simInt* inIndices,simInt inIndicesL,simFloat** verticesOut,simInt* verticesOutL,simInt** indicesOut,simInt* indicesOutL,simFloat decimationPercent,simInt reserved1,const simFloat* reserved2); +simInt simExportIk(const simChar* pathAndFilename,simInt reserved1,simVoid* reserved2); +simInt simCallScriptFunctionEx(simInt scriptHandleOrType,const simChar* functionNameAtScriptName,simInt stackId); +simInt simComputeJacobian(simInt ikGroupHandle,simInt options,simVoid* reserved); +simInt simGetConfigForTipPose(simInt ikGroupHandle,simInt jointCnt,const simInt* jointHandles,simFloat thresholdDist,simInt maxTimeInMs,simFloat* retConfig,const simFloat* metric,simInt collisionPairCnt,const simInt* collisionPairs,const simInt* jointOptions,const simFloat* lowLimits,const simFloat* ranges,simVoid* reserved); +simFloat* simGenerateIkPath(simInt ikGroupHandle,simInt jointCnt,const simInt* jointHandles,simInt ptCnt,simInt collisionPairCnt,const simInt* collisionPairs,const simInt* jointOptions,simVoid* reserved); +simChar* simGetExtensionString(simInt objectHandle,simInt index,const char* key); +simInt simComputeMassAndInertia(simInt shapeHandle,simFloat density); +simInt simCreateStack(); +simInt simReleaseStack(simInt stackHandle); +simInt simCopyStack(simInt stackHandle); +simInt simPushNullOntoStack(simInt stackHandle); +simInt simPushBoolOntoStack(simInt stackHandle,simBool value); +simInt simPushInt32OntoStack(simInt stackHandle,simInt value); +simInt simPushFloatOntoStack(simInt stackHandle,simFloat value); +simInt simPushDoubleOntoStack(simInt stackHandle,simDouble value); +simInt simPushStringOntoStack(simInt stackHandle,const simChar* value,simInt stringSize); +simInt simPushUInt8TableOntoStack(simInt stackHandle,const simUChar* values,simInt valueCnt); +simInt simPushInt32TableOntoStack(simInt stackHandle,const simInt* values,simInt valueCnt); +simInt simPushFloatTableOntoStack(simInt stackHandle,const simFloat* values,simInt valueCnt); +simInt simPushDoubleTableOntoStack(simInt stackHandle,const simDouble* values,simInt valueCnt); +simInt simPushTableOntoStack(simInt stackHandle); +simInt simInsertDataIntoStackTable(simInt stackHandle); +simInt simGetStackSize(simInt stackHandle); +simInt simPopStackItem(simInt stackHandle,simInt count); +simInt simMoveStackItemToTop(simInt stackHandle,simInt cIndex); +simInt simIsStackValueNull(simInt stackHandle); +simInt simGetStackBoolValue(simInt stackHandle,simBool* boolValue); +simInt simGetStackInt32Value(simInt stackHandle,simInt* numberValue); +simInt simGetStackFloatValue(simInt stackHandle,simFloat* numberValue); +simInt simGetStackDoubleValue(simInt stackHandle,simDouble* numberValue); +simChar* simGetStackStringValue(simInt stackHandle,simInt* stringSize); +simInt simGetStackTableInfo(simInt stackHandle,simInt infoType); +simInt simGetStackUInt8Table(simInt stackHandle,simUChar* array,simInt count); +simInt simGetStackInt32Table(simInt stackHandle,simInt* array,simInt count); +simInt simGetStackFloatTable(simInt stackHandle,simFloat* array,simInt count); +simInt simGetStackDoubleTable(simInt stackHandle,simDouble* array,simInt count); +simInt simUnfoldStackTable(simInt stackHandle); +simInt simDebugStack(simInt stackHandle,simInt cIndex); +simInt simSetScriptVariable(simInt scriptHandleOrType,const simChar* variableNameAtScriptName,simInt stackHandle); +simFloat simGetEngineFloatParameter(simInt paramId,simInt objectHandle,const simVoid* object,simBool* ok); +simInt simGetEngineInt32Parameter(simInt paramId,simInt objectHandle,const simVoid* object,simBool* ok); +simBool simGetEngineBoolParameter(simInt paramId,simInt objectHandle,const simVoid* object,simBool* ok); +simInt simSetEngineFloatParameter(simInt paramId,simInt objectHandle,const simVoid* object,simFloat val); +simInt simSetEngineInt32Parameter(simInt paramId,simInt objectHandle,const simVoid* object,simInt val); +simInt simSetEngineBoolParameter(simInt paramId,simInt objectHandle,const simVoid* object,simBool val); +simInt simCreateOctree(simFloat voxelSize,simInt options,simFloat pointSize,simVoid* reserved); +simInt simCreatePointCloud(simFloat maxVoxelSize,simInt maxPtCntPerVoxel,simInt options,simFloat pointSize,simVoid* reserved); +simInt simSetPointCloudOptions(simInt pointCloudHandle,simFloat maxVoxelSize,simInt maxPtCntPerVoxel,simInt options,simFloat pointSize,simVoid* reserved); +simInt simGetPointCloudOptions(simInt pointCloudHandle,simFloat* maxVoxelSize,simInt* maxPtCntPerVoxel,simInt* options,simFloat* pointSize,simVoid* reserved); +simInt simInsertVoxelsIntoOctree(simInt octreeHandle,simInt options,const simFloat* pts,simInt ptCnt,const simUChar* color,const simUInt* tag,simVoid* reserved); +simInt simRemoveVoxelsFromOctree(simInt octreeHandle,simInt options,const simFloat* pts,simInt ptCnt,simVoid* reserved); +simInt simInsertPointsIntoPointCloud(simInt pointCloudHandle,simInt options,const simFloat* pts,simInt ptCnt,const simUChar* color,simVoid* optionalValues); +simInt simRemovePointsFromPointCloud(simInt pointCloudHandle,simInt options,const simFloat* pts,simInt ptCnt,simFloat tolerance,simVoid* reserved); +simInt simIntersectPointsWithPointCloud(simInt pointCloudHandle,simInt options,const simFloat* pts,simInt ptCnt,simFloat tolerance,simVoid* reserved); +const float* simGetOctreeVoxels(simInt octreeHandle,simInt* ptCnt,simVoid* reserved); +const float* simGetPointCloudPoints(simInt pointCloudHandle,simInt* ptCnt,simVoid* reserved); +simInt simInsertObjectIntoOctree(simInt octreeHandle,simInt objectHandle,simInt options,const simUChar* color,simUInt tag,simVoid* reserved); +simInt simSubtractObjectFromOctree(simInt octreeHandle,simInt objectHandle,simInt options,simVoid* reserved); +simInt simInsertObjectIntoPointCloud(simInt pointCloudHandle,simInt objectHandle,simInt options,simFloat gridSize,const simUChar* color,simVoid* optionalValues); +simInt simSubtractObjectFromPointCloud(simInt pointCloudHandle,simInt objectHandle,simInt options,simFloat tolerance,simVoid* reserved); +simInt simCheckOctreePointOccupancy(simInt octreeHandle,simInt options,const simFloat* points,simInt ptCnt,simUInt* tag,simUInt64* location,simVoid* reserved); +simChar* simOpenTextEditor(const simChar* initText,const simChar* xml,simInt* various); +simChar* simPackTable(simInt stackHandle,simInt* bufferSize); +simInt simUnpackTable(simInt stackHandle,const simChar* buffer,simInt bufferSize); +simInt simSetReferencedHandles(simInt objectHandle,simInt count,const simInt* referencedHandles,const simInt* reserved1,const simInt* reserved2); +simInt simGetReferencedHandles(simInt objectHandle,simInt** referencedHandles,simInt** reserved1,simInt** reserved2); +simInt simGetShapeViz(simInt shapeHandle,simInt index,struct SShapeVizInfo* info); +simInt simExecuteScriptString(simInt scriptHandleOrType,const simChar* stringAtScriptName,simInt stackHandle); +simChar* simGetApiFunc(simInt scriptHandleOrType,const simChar* apiWord); +simChar* simGetApiInfo(simInt scriptHandleOrType,const simChar* apiWord); +simInt simSetModuleInfo(const simChar* moduleName,simInt infoType,const simChar* stringInfo,simInt intInfo); +simInt simGetModuleInfo(const simChar* moduleName,simInt infoType,simChar** stringInfo,simInt* intInfo); +simInt simIsDeprecated(const simChar* funcOrConst); +simChar* simGetPersistentDataTags(simInt* tagCount); +simInt simEventNotification(const simChar* event); +simInt simApplyTexture(simInt shapeHandle,const simFloat* textureCoordinates,simInt textCoordSize,const simUChar* texture,const simInt* textureResolution,simInt options); +simInt simSetJointDependency(simInt jointHandle,simInt masterJointHandle,simFloat offset,simFloat coeff); +simInt simSetStringNamedParam(const simChar* paramName,const simChar* stringParam,simInt paramLength); +simChar* simGetStringNamedParam(const simChar* paramName,simInt* paramLength); +simChar* simGetUserParameter(simInt objectHandle,const simChar* parameterName,simInt* parameterLength); +simInt simSetUserParameter(simInt objectHandle,const simChar* parameterName,const simChar* parameterValue,simInt parameterLength); +simInt simAddLog(const simChar* pluginName,simInt verbosityLevel,const simChar* logMsg); + + + +simInt _simGetContactCallbackCount(); +const void* _simGetContactCallback(simInt index); +simVoid _simSetDynamicSimulationIconCode(simVoid* object,simInt code); +simVoid _simSetDynamicObjectFlagForVisualization(simVoid* object,simInt flag); +simInt _simGetObjectListSize(simInt objType); +const simVoid* _simGetObjectFromIndex(simInt objType,simInt index); +simInt _simGetObjectID(const simVoid* object); +simInt _simGetObjectType(const simVoid* object); +const simVoid** _simGetObjectChildren(const simVoid* object,simInt* count); +const simVoid* _simGetGeomProxyFromShape(const simVoid* shape); +const simVoid* _simGetParentObject(const simVoid* object); +const simVoid* _simGetObject(int objID); +simVoid _simGetObjectLocalTransformation(const simVoid* object,simFloat* pos,simFloat* quat,simBool excludeFirstJointTransformation); +simVoid _simSetObjectLocalTransformation(simVoid* object,const simFloat* pos,const simFloat* quat); +simVoid _simSetObjectCumulativeTransformation(simVoid* object,const simFloat* pos,const simFloat* quat,simBool keepChildrenInPlace); +simVoid _simGetObjectCumulativeTransformation(const simVoid* object,simFloat* pos,simFloat* quat,simBool excludeFirstJointTransformation); +simBool _simIsShapeDynamicallyStatic(const simVoid* shape); +simInt _simGetTreeDynamicProperty(const simVoid* object); +simInt _simGetDummyLinkType(const simVoid* dummy,simInt* linkedDummyID); +simInt _simGetJointMode(const simVoid* joint); +simBool _simIsJointInHybridOperation(const simVoid* joint); +simVoid _simDisableDynamicTreeForManipulation(const simVoid* object,simBool disableFlag); +simBool _simIsShapeDynamicallyRespondable(const simVoid* shape); +simInt _simGetDynamicCollisionMask(const simVoid* shape); +const simVoid* _simGetLastParentForLocalGlobalCollidable(const simVoid* shape); +simVoid _simSetShapeIsStaticAndNotRespondableButDynamicTag(const simVoid* shape,simBool tag); +simBool _simGetShapeIsStaticAndNotRespondableButDynamicTag(const simVoid* shape); +simVoid _simSetJointPosition(const simVoid* joint,simFloat pos); +simFloat _simGetJointPosition(const simVoid* joint); +simVoid _simSetDynamicMotorPositionControlTargetPosition(const simVoid* joint,simFloat pos); +simVoid _simGetInitialDynamicVelocity(const simVoid* shape,simFloat* vel); +simVoid _simSetInitialDynamicVelocity(simVoid* shape,const simFloat* vel); +simVoid _simGetInitialDynamicAngVelocity(const simVoid* shape,simFloat* angularVel); +simVoid _simSetInitialDynamicAngVelocity(simVoid* shape,const simFloat* angularVel); +simBool _simGetStartSleeping(const simVoid* shape); +simBool _simGetWasPutToSleepOnce(const simVoid* shape); +simBool _simGetDynamicsFullRefreshFlag(const simVoid* object); +simVoid _simSetDynamicsFullRefreshFlag(const simVoid* object,simBool flag); +simVoid _simSetGeomProxyDynamicsFullRefreshFlag(simVoid* geomData,simBool flag); +simBool _simGetGeomProxyDynamicsFullRefreshFlag(const simVoid* geomData); +simVoid _simSetShapeDynamicVelocity(simVoid* shape,const simFloat* linear,const simFloat* angular); +simVoid _simGetAdditionalForceAndTorque(const simVoid* shape,simFloat* force,simFloat* torque); +simVoid _simClearAdditionalForceAndTorque(const simVoid* shape); +simBool _simGetJointPositionInterval(const simVoid* joint,simFloat* minValue,simFloat* rangeValue); +simInt _simGetJointType(const simVoid* joint); +simBool _simIsForceSensorBroken(const simVoid* forceSensor); +simVoid _simGetDynamicForceSensorLocalTransformationPart2(const simVoid* forceSensor,simFloat* pos,simFloat* quat); +simBool _simIsDynamicMotorEnabled(const simVoid* joint); +simBool _simIsDynamicMotorPositionCtrlEnabled(const simVoid* joint); +simBool _simIsDynamicMotorTorqueModulationEnabled(const simVoid* joint); +simVoid _simGetMotorPid(const simVoid* joint,simFloat* pParam,simFloat* iParam,simFloat* dParam); +simFloat _simGetDynamicMotorTargetPosition(const simVoid* joint); +simFloat _simGetDynamicMotorTargetVelocity(const simVoid* joint); +simFloat _simGetDynamicMotorMaxForce(const simVoid* joint); +simFloat _simGetDynamicMotorUpperLimitVelocity(const simVoid* joint); +simVoid _simSetDynamicMotorReflectedPositionFromDynamicEngine(simVoid* joint,simFloat pos); +simVoid _simSetJointSphericalTransformation(simVoid* joint,const simFloat* quat); +simVoid _simAddForceSensorCumulativeForcesAndTorques(simVoid* forceSensor,const simFloat* force,const simFloat* torque,int totalPassesCount); +simVoid _simAddJointCumulativeForcesOrTorques(simVoid* joint,simFloat forceOrTorque,int totalPassesCount); +simVoid _simSetDynamicJointLocalTransformationPart2(simVoid* joint,const simFloat* pos,const simFloat* quat); +simVoid _simSetDynamicForceSensorLocalTransformationPart2(simVoid* forceSensor,const simFloat* pos,const simFloat* quat); +simVoid _simSetDynamicJointLocalTransformationPart2IsValid(simVoid* joint,simBool valid); +simVoid _simSetDynamicForceSensorLocalTransformationPart2IsValid(simVoid* forceSensor,simBool valid); +const simVoid* _simGetGeomWrapFromGeomProxy(const simVoid* geomData); +simVoid _simGetLocalInertiaFrame(const simVoid* geomInfo,simFloat* pos,simFloat* quat); +simInt _simGetPurePrimitiveType(const simVoid* geomInfo); +simBool _simIsGeomWrapGeometric(const simVoid* geomInfo); +simBool _simIsGeomWrapConvex(const simVoid* geomInfo); +simInt _simGetGeometricCount(const simVoid* geomInfo); +simVoid _simGetAllGeometrics(const simVoid* geomInfo,simVoid** allGeometrics); +simVoid _simGetPurePrimitiveSizes(const simVoid* geometric,simFloat* sizes); +simVoid _simMakeDynamicAnnouncement(int announceType); +simVoid _simGetVerticesLocalFrame(const simVoid* geometric,simFloat* pos,simFloat* quat); +const simFloat* _simGetHeightfieldData(const simVoid* geometric,simInt* xCount,simInt* yCount,simFloat* minHeight,simFloat* maxHeight); +simVoid _simGetCumulativeMeshes(const simVoid* geomInfo,simFloat** vertices,simInt* verticesSize,simInt** indices,simInt* indicesSize); +simFloat _simGetMass(const simVoid* geomInfo); +simVoid _simGetPrincipalMomentOfInertia(const simVoid* geomInfo,simFloat* inertia); +simVoid _simGetGravity(simFloat* gravity); +simInt _simGetTimeDiffInMs(simInt previousTime); +simBool _simDoEntitiesCollide(simInt entity1ID,simInt entity2ID,simInt* cacheBuffer,simBool overrideCollidableFlagIfShape1,simBool overrideCollidableFlagIfShape2,simBool pathOrMotionPlanningRoutineCalling); +simBool _simGetDistanceBetweenEntitiesIfSmaller(simInt entity1ID,simInt entity2ID,simFloat* distance,simFloat* ray,simInt* cacheBuffer,simBool overrideMeasurableFlagIfNonCollection1,simBool overrideMeasurableFlagIfNonCollection2,simBool pathPlanningRoutineCalling); +simInt _simHandleJointControl(const simVoid* joint,simInt auxV,const simInt* inputValuesInt,const simFloat* inputValuesFloat,simFloat* outputValues); +simInt _simHandleCustomContact(simInt objHandle1,simInt objHandle2,simInt engine,simInt* dataInt,simFloat* dataFloat); +const simVoid* _simGetIkGroupObject(int ikGroupID); +simInt _simMpHandleIkGroupObject(const simVoid* ikGroup); +simFloat _simGetPureHollowScaling(const simVoid* geometric); +simInt _simGetJointCallbackCallOrder(const simVoid* joint); +simVoid _simDynCallback(const simInt* intData,const simFloat* floatData); + + +// Following courtesy of Stephen James: +simInt simExtLaunchUIThread(const simChar* applicationName,simInt options,const simChar* sceneOrModelOrUiToLoad,const simChar* applicationDir_); +simInt simExtCanInitSimThread(); +simInt simExtSimThreadInit(); +simInt simExtSimThreadDestroy(); +simInt simExtPostExitRequest(); +simInt simExtGetExitRequest(); +simInt simExtStep(simBool stepIfRunning); +simInt simExtCallScriptFunction(simInt scriptHandleOrType, const simChar* functionNameAtScriptName, + const simInt* inIntData, simInt inIntCnt, + const simFloat* inFloatData, simInt inFloatCnt, + const simChar** inStringData, simInt inStringCnt, + const simChar* inBufferData, simInt inBufferCnt, + simInt** outIntData, simInt* outIntCnt, + simFloat** outFloatData, simInt* outFloatCnt, + simChar*** outStringData, simInt* outStringCnt, + simChar** outBufferData, simInt* outBufferSize); + + +// Deprecated begin +simInt simGetMaterialId(const simChar* materialName); +simInt simGetShapeMaterial(simInt shapeHandle); +simInt simHandleVarious(); +simInt simSerialPortOpen(simInt portNumber,simInt baudRate,simVoid* reserved1,simVoid* reserved2); +simInt simSerialPortClose(simInt portNumber); +simInt simSerialPortSend(simInt portNumber,const simChar* data,simInt dataLength); +simInt simSerialPortRead(simInt portNumber,simChar* buffer,simInt dataLengthToRead); +simInt simJointGetForce(simInt jointHandle,simFloat* forceOrTorque); +simInt simGetPathPlanningHandle(const simChar* pathPlanningObjectName); +simInt simGetMotionPlanningHandle(const simChar* motionPlanningObjectName); +simInt simGetMpConfigForTipPose(simInt motionPlanningObjectHandle,simInt options,simFloat closeNodesDistance,simInt trialCount,const simFloat* tipPose,simInt maxTimeInMs,simFloat* outputJointPositions,const simFloat* referenceConfigs,simInt referenceConfigCount,const simFloat* jointWeights,const simInt* jointBehaviour,simInt correctionPasses); +simFloat* simFindMpPath(simInt motionPlanningObjectHandle,const simFloat* startConfig,const simFloat* goalConfig,simInt options,simFloat stepSize,simInt* outputConfigsCnt,simInt maxTimeInMs,simFloat* reserved,const simInt* auxIntParams,const simFloat* auxFloatParams); +simFloat* simSimplifyMpPath(simInt motionPlanningObjectHandle,const simFloat* pathBuffer,simInt configCnt,simInt options,simFloat stepSize,simInt increment,simInt* outputConfigsCnt,simInt maxTimeInMs,simFloat* reserved,const simInt* auxIntParams,const simFloat* auxFloatParams); +simFloat* simFindIkPath(simInt motionPlanningObjectHandle,const simFloat* startConfig,const simFloat* goalPose,simInt options,simFloat stepSize,simInt* outputConfigsCnt,simFloat* reserved,const simInt* auxIntParams,const simFloat* auxFloatParams); +simFloat* simGetMpConfigTransition(simInt motionPlanningObjectHandle,const simFloat* startConfig,const simFloat* goalConfig,simInt options,const simInt* select,simFloat calcStepSize,simFloat maxOutStepSize,simInt wayPointCnt,const simFloat* wayPoints,simInt* outputConfigsCnt,const simInt* auxIntParams,const simFloat* auxFloatParams); +simInt simCreateMotionPlanning(simInt jointCnt,const simInt* jointHandles,const simInt* jointRangeSubdivisions,const simFloat* jointMetricWeights,simInt options,const simInt* intParams,const simFloat* floatParams,const simVoid* reserved); +simInt simRemoveMotionPlanning(simInt motionPlanningHandle); +simInt simSearchPath(simInt pathPlanningObjectHandle,simFloat maximumSearchTime); +simInt simInitializePathSearch(simInt pathPlanningObjectHandle,simFloat maximumSearchTime,simFloat searchTimeStep); +simInt simPerformPathSearchStep(simInt temporaryPathSearchObject,simBool abortSearch); +simInt simLockInterface(simBool locked); +simInt simCopyPasteSelectedObjects(); +simInt simResetPath(simInt pathHandle); +simInt simHandlePath(simInt pathHandle,simFloat deltaTime); +simInt simResetJoint(simInt jointHandle); +simInt simHandleJoint(simInt jointHandle,simFloat deltaTime); +simInt simAppendScriptArrayEntry(const simChar* reservedSetToNull,simInt scriptHandleOrType,const simChar* arrayNameAtScriptName,const simChar* keyName,const simChar* data,const simInt* what); +simInt simClearScriptVariable(const simChar* reservedSetToNull,simInt scriptHandleOrType,const simChar* variableNameAtScriptName); +simVoid _simGetJointOdeParameters(const simVoid* joint,simFloat* stopERP,simFloat* stopCFM,simFloat* bounce,simFloat* fudge,simFloat* normalCFM); +simVoid _simGetJointBulletParameters(const simVoid* joint,simFloat* stopERP,simFloat* stopCFM,simFloat* normalCFM); +simVoid _simGetOdeMaxContactFrictionCFMandERP(const simVoid* geomInfo,simInt* maxContacts,simFloat* friction,simFloat* cfm,simFloat* erp); +simBool _simGetBulletCollisionMargin(const simVoid* geomInfo,simFloat* margin,simInt* otherProp); +simBool _simGetBulletStickyContact(const simVoid* geomInfo); +simFloat _simGetBulletRestitution(const simVoid* geomInfo); +simVoid _simGetVortexParameters(const simVoid* object,simInt version,simFloat* floatParams,simInt* intParams); +simVoid _simGetNewtonParameters(const simVoid* object,simInt* version,simFloat* floatParams,simInt* intParams); +simVoid _simGetDamping(const simVoid* geomInfo,simFloat* linDamping,simFloat* angDamping); +simFloat _simGetFriction(const simVoid* geomInfo); +simInt simAddSceneCustomData(simInt header,const simChar* data,simInt dataLength); +simInt simGetSceneCustomDataLength(simInt header); +simInt simGetSceneCustomData(simInt header,simChar* data); +simInt simAddObjectCustomData(simInt objectHandle,simInt header,const simChar* data,simInt dataLength); +simInt simGetObjectCustomDataLength(simInt objectHandle,simInt header); +simInt simGetObjectCustomData(simInt objectHandle,simInt header,simChar* data); +simInt simCreateUI(const simChar* uiName,simInt menuAttributes,const simInt* clientSize,const simInt* cellSize,simInt* buttonHandles); +simInt simCreateUIButton(simInt uiHandle,const simInt* position,const simInt* size,simInt buttonProperty); +simInt simGetUIHandle(const simChar* uiName); +simInt simGetUIProperty(simInt uiHandle); +simInt simGetUIEventButton(simInt uiHandle,simInt* auxiliaryValues); +simInt simSetUIProperty(simInt uiHandle,simInt elementProperty); +simInt simGetUIButtonProperty(simInt uiHandle,simInt buttonHandle); +simInt simSetUIButtonProperty(simInt uiHandle,simInt buttonHandle,simInt buttonProperty); +simInt simGetUIButtonSize(simInt uiHandle,simInt buttonHandle,simInt* size); +simInt simSetUIButtonLabel(simInt uiHandle,simInt buttonHandle,const simChar* upStateLabel,const simChar* downStateLabel); +simChar* simGetUIButtonLabel(simInt uiHandle,simInt buttonHandle); +simInt simSetUISlider(simInt uiHandle,simInt buttonHandle,simInt position); +simInt simGetUISlider(simInt uiHandle,simInt buttonHandle); +simInt simSetUIButtonColor(simInt uiHandle,simInt buttonHandle,const simFloat* upStateColor,const simFloat* downStateColor,const simFloat* labelColor); +simInt simSetUIButtonTexture(simInt uiHandle,simInt buttonHandle,const simInt* size,const simChar* textureData); +simInt simCreateUIButtonArray(simInt uiHandle,simInt buttonHandle); +simInt simSetUIButtonArrayColor(simInt uiHandle,simInt buttonHandle,const simInt* position,const simFloat* color); +simInt simDeleteUIButtonArray(simInt uiHandle,simInt buttonHandle); +simInt simRemoveUI(simInt uiHandle); +simInt simSetUIPosition(simInt uiHandle,const simInt* position); +simInt simGetUIPosition(simInt uiHandle,simInt* position); +simInt simLoadUI(const simChar* filename,simInt maxCount,simInt* uiHandles); +simInt simSaveUI(simInt count,const simInt* uiHandles,const simChar* filename); +simInt simHandleGeneralCallbackScript(simInt callbackId,simInt callbackTag,simVoid* additionalData); +simInt simRegisterCustomLuaFunction(const simChar* funcName,const simChar* callTips,const simInt* inputArgumentTypes,simVoid(*callBack)(struct SLuaCallBack* p)); +simInt simRegisterCustomLuaVariable(const simChar* varName,const simChar* varValue); +simInt simRegisterContactCallback(simInt(*callBack)(simInt,simInt,simInt,simInt*,simFloat*)); +simInt simRegisterJointCtrlCallback(simInt(*callBack)(simInt,simInt,simInt,const simInt*,const simFloat*,simFloat*)); +simInt simGetMechanismHandle(const simChar* mechanismName); +simInt simHandleMechanism(simInt mechanismHandle); +simInt simHandleCustomizationScripts(simInt callType); +simInt simSetVisionSensorFilter(simInt visionSensorHandle,simInt filterIndex,simInt options,const simInt* pSizes,const simUChar* bytes,const simInt* ints,const simFloat* floats,const simUChar* custom); +simInt simGetVisionSensorFilter(simInt visionSensorHandle,simInt filterIndex,simInt* options,simInt* pSizes,simUChar** bytes,simInt** ints,simFloat** floats,simUChar** custom); +simChar* simGetScriptSimulationParameter(simInt scriptHandle,const simChar* parameterName,simInt* parameterLength); +simInt simSetScriptSimulationParameter(simInt scriptHandle,const simChar* parameterName,const simChar* parameterValue,simInt parameterLength); +simInt simSetJointForce(simInt objectHandle,simFloat forceOrTorque); +simInt simHandleMill(simInt millHandle,simFloat* removedSurfaceAndVolume); +simInt simResetMill(simInt millHandle); +simInt simResetMilling(simInt objectHandle); +simInt simApplyMilling(simInt objectHandle); +simBool _simGetParentFollowsDynamic(const simVoid* shape); +simInt simGetNameSuffix(const simChar* name); +simInt simSetNameSuffix(simInt nameSuffixNumber); +simInt simAddStatusbarMessage(const simChar* message); +simChar* simGetScriptRawBuffer(simInt scriptHandle,simInt bufferHandle); +simInt simSetScriptRawBuffer(simInt scriptHandle,const simChar* buffer,simInt bufferSize); +simInt simReleaseScriptRawBuffer(simInt scriptHandle,simInt bufferHandle); + +""") + +cwd = os.getcwd() +cffi_path = os.path.join(cwd, 'cffi_build') + +ffibuilder.set_source( + "pyrep.backend._sim_cffi", + """ + #include "sim.h" // the C header of the library + """, + libraries=['coppeliaSim'], + library_dirs=[os.environ['COPPELIASIM_ROOT']], + include_dirs=[cffi_path]) + +# For some reason, cffi makes it such that it looks for libv_rep.so.1 +# rather than libv_rep.so. So we add a symlink. +path = os.path.join(os.environ['COPPELIASIM_ROOT'], 'libcoppeliaSim.so') +if not os.path.exists(path + '.1'): + print('creating symlink: %s -> %s' % (path + '.1', path)) + os.symlink(path, path + '.1') + +# Copy lua functions to the VREP_ROOT +print('copying lua file: %s -> %s' % ('pyrep/backend', + os.environ['COPPELIASIM_ROOT'])) +lua_script_fname = 'simAddOnScript_PyRep.lua' +copyfile(os.path.join('pyrep/backend', lua_script_fname), + os.path.join(os.environ['COPPELIASIM_ROOT'], lua_script_fname)) + +if __name__ == "__main__": + ffibuilder.compile(verbose=True) diff --git a/external/pyrep/cffi_build/sim.h b/external/pyrep/cffi_build/sim.h new file mode 100644 index 0000000000000000000000000000000000000000..ff294dffadb20792fa91bd1061de6c6f1da09467 --- /dev/null +++ b/external/pyrep/cffi_build/sim.h @@ -0,0 +1,712 @@ + +// ============== +// simTypes.h +// ============== + +// Various types used in the interface functions: +typedef unsigned char simBool; +typedef char simChar; +typedef int simInt; +typedef float simFloat; +typedef double simDouble; +typedef void simVoid; +typedef unsigned char simUChar; +typedef unsigned int simUInt; +typedef unsigned long long int simUInt64; + +struct SScriptCallBack +{ + simInt objectID; + simInt scriptID; + simInt stackID; + simChar waitUntilZero; + simChar* raiseErrorWithMessage; +}; + +struct SShapeVizInfo +{ + simFloat* vertices; + simInt verticesSize; + simInt* indices; + simInt indicesSize; + simFloat shadingAngle; + simFloat* normals; + simFloat colors[9]; + simChar* texture; /*rgba*/ + simInt textureId; + simInt textureRes[2]; + simFloat* textureCoords; + simInt textureApplyMode; + simInt textureOptions; /* not just textures options */ +}; + +struct SLuaCallBack +{ + simInt objectID; + simBool* inputBool; + simInt* inputInt; + simFloat* inputFloat; + simChar* inputChar; + simInt inputArgCount; + simInt* inputArgTypeAndSize; + simBool* outputBool; + simInt* outputInt; + simFloat* outputFloat; + simChar* outputChar; + simInt outputArgCount; + simInt* outputArgTypeAndSize; + simChar waitUntilZero; + simChar* inputCharBuff; + simChar* outputCharBuff; + simInt scriptID; + simDouble* inputDouble; + simDouble* outputDouble; +}; + +struct SSyncMsg +{ + unsigned char msg; + void* data; + size_t dataSize; +}; + +struct SSyncRt +{ + unsigned char objTypes[3]; + int objHandles[3]; +}; + +typedef int (*contactCallback)(int,int,int,int*,float*); +typedef int (*jointCtrlCallback)(int,int,int,const int*,const float*,float*); + + +// ============== +// sim.h +// ============== + +simInt simRunSimulator(const simChar* applicationName,simInt options,simVoid(*initCallBack)(),simVoid(*loopCallBack)(),simVoid(*deinitCallBack)()); +simInt simRunSimulatorEx(const simChar* applicationName,simInt options,simVoid(*initCallBack)(),simVoid(*loopCallBack)(),simVoid(*deinitCallBack)(),simInt stopDelay,const simChar* sceneOrModelToLoad); +simVoid* simGetMainWindow(simInt type); +simChar* simGetLastError(); +simInt simSetBooleanParameter(simInt parameter,simBool boolState); +simInt simGetBooleanParameter(simInt parameter); +simInt simSetBoolParameter(simInt parameter,simBool boolState); +simInt simGetBoolParameter(simInt parameter); +simInt simSetIntegerParameter(simInt parameter,simInt intState); +simInt simGetIntegerParameter(simInt parameter,simInt* intState); +simInt simSetInt32Parameter(simInt parameter,simInt intState); +simInt simGetInt32Parameter(simInt parameter,simInt* intState); +simInt simGetUInt64Parameter(simInt parameter,simUInt64* intState); +simInt simSetFloatingParameter(simInt parameter,simFloat floatState); +simInt simGetFloatingParameter(simInt parameter,simFloat* floatState); +simInt simSetFloatParameter(simInt parameter,simFloat floatState); +simInt simGetFloatParameter(simInt parameter,simFloat* floatState); +simInt simSetStringParameter(simInt parameter,const simChar* str); +simChar* simGetStringParameter(simInt parameter); +simInt simGetObjectHandle(const simChar* objectName); +simInt simRemoveObject(simInt objectHandle); +simInt simRemoveModel(simInt objectHandle); +simChar* simGetObjectName(simInt objectHandle); +simInt simGetObjects(simInt index,simInt objectType); +simInt simSetObjectName(simInt objectHandle,const simChar* objectName); +simInt simGetCollectionHandle(const simChar* collectionName); +simInt simRemoveCollection(simInt collectionHandle); +simInt simEmptyCollection(simInt collectionHandle); +simChar* simGetCollectionName(simInt collectionHandle); +simInt simSetCollectionName(simInt collectionHandle,const simChar* collectionName); +simInt simGetObjectMatrix(simInt objectHandle,simInt relativeToObjectHandle,simFloat* matrix); +simInt simSetObjectMatrix(simInt objectHandle,simInt relativeToObjectHandle,const simFloat* matrix); +simInt simGetObjectPosition(simInt objectHandle,simInt relativeToObjectHandle,simFloat* position); +simInt simSetObjectPosition(simInt objectHandle,simInt relativeToObjectHandle,const simFloat* position); +simInt simGetObjectOrientation(simInt objectHandle,simInt relativeToObjectHandle,simFloat* eulerAngles); +simInt simGetObjectQuaternion(simInt objectHandle,simInt relativeToObjectHandle,simFloat* quaternion); +simInt simSetObjectQuaternion(simInt objectHandle,simInt relativeToObjectHandle,const simFloat* quaternion); +simInt simSetObjectOrientation(simInt objectHandle,simInt relativeToObjectHandle,const simFloat* eulerAngles); +simInt simGetJointPosition(simInt objectHandle,simFloat* position); +simInt simSetJointPosition(simInt objectHandle,simFloat position); +simInt simSetJointTargetPosition(simInt objectHandle,simFloat targetPosition); +simInt simGetJointTargetPosition(simInt objectHandle,simFloat* targetPosition); +simInt simSetJointMaxForce(simInt objectHandle,simFloat forceOrTorque); +simInt simGetPathPosition(simInt objectHandle,simFloat* position); +simInt simSetPathPosition(simInt objectHandle,simFloat position); +simInt simGetPathLength(simInt objectHandle,simFloat* length); +simInt simGetJointMatrix(simInt objectHandle,simFloat* matrix); +simInt simSetSphericalJointMatrix(simInt objectHandle,const simFloat* matrix); +simInt simGetJointInterval(simInt objectHandle,simBool* cyclic,simFloat* interval); +simInt simSetJointInterval(simInt objectHandle,simBool cyclic,const simFloat* interval); +simInt simGetObjectParent(simInt objectHandle); +simInt simGetObjectChild(simInt objectHandle,simInt index); +simInt simSetObjectParent(simInt objectHandle,simInt parentObjectHandle,simBool keepInPlace); +simInt simGetObjectType(simInt objectHandle); +simInt simGetJointType(simInt objectHandle); +simInt simBuildIdentityMatrix(simFloat* matrix); +simInt simCopyMatrix(const simFloat* matrixIn,simFloat* matrixOut); +simInt simBuildMatrix(const simFloat* position,const simFloat* eulerAngles,simFloat* matrix); +simInt simBuildMatrixQ(const simFloat* position,const simFloat* quaternion,simFloat* matrix); +simInt simGetEulerAnglesFromMatrix(const simFloat* matrix,simFloat* eulerAngles); +simInt simGetQuaternionFromMatrix(const simFloat* matrix,simFloat* quaternion); +simInt simInvertMatrix(simFloat* matrix); +simInt simMultiplyMatrices(const simFloat* matrixIn1,const simFloat* matrixIn2,simFloat* matrixOut); +simInt simInterpolateMatrices(const simFloat* matrixIn1,const simFloat* matrixIn2,simFloat interpolFactor,simFloat* matrixOut); +simInt simTransformVector(const simFloat* matrix,simFloat* vect); +simInt simReservedCommand(simInt v,simInt w); +simFloat simGetSimulationTime(); +simInt simGetSimulationState(); +simFloat simGetSystemTime(); +simInt simGetSystemTimeInMilliseconds(); // deprecated +simUInt simGetSystemTimeInMs(simInt previousTime); +simInt simLoadScene(const simChar* filename); +simInt simCloseScene(); +simInt simSaveScene(const simChar* filename); +simInt simLoadModel(const simChar* filename); +simInt simSaveModel(simInt baseOfModelHandle,const simChar* filename); +simChar* simGetSimulatorMessage(simInt* messageID,simInt* auxiliaryData,simInt* returnedDataSize); +simInt simAddModuleMenuEntry(const simChar* entryLabel,simInt itemCount,simInt* itemHandles); +simInt simSetModuleMenuItemState(simInt itemHandle,simInt state,const simChar* label); +simInt simDoesFileExist(const simChar* filename); +simInt simIsObjectInSelection(simInt objectHandle); +simInt simAddObjectToSelection(simInt what,simInt objectHandle); +simInt simRemoveObjectFromSelection(simInt what,simInt objectHandle); +simInt simGetObjectSelectionSize(); +simInt simGetObjectLastSelection(); +simInt simGetObjectSelection(simInt* objectHandles); +simInt simHandleCollision(simInt collisionObjectHandle); +simInt simReadCollision(simInt collisionObjectHandle); +simInt simHandleDistance(simInt distanceObjectHandle,simFloat* smallestDistance); +simInt simReadDistance(simInt distanceObjectHandle,simFloat* smallestDistance); +simInt simHandleProximitySensor(simInt sensorHandle,simFloat* detectedPoint,simInt* detectedObjectHandle,simFloat* normalVector); +simInt simReadProximitySensor(simInt sensorHandle,simFloat* detectedPoint,simInt* detectedObjectHandle,simFloat* normalVector); +simInt simHandleIkGroup(simInt ikGroupHandle); +simInt simCheckIkGroup(simInt ikGroupHandle,simInt jointCnt,const simInt* jointHandles,simFloat* jointValues,const simInt* jointOptions); +simInt simHandleDynamics(simFloat deltaTime); +simInt simGetScriptHandle(const simChar* scriptName); +simInt simSetScriptText(simInt scriptHandle,const simChar* scriptText); +const simChar* simGetScriptText(simInt scriptHandle); +simInt simGetScriptProperty(simInt scriptHandle,simInt* scriptProperty,simInt* associatedObjectHandle); +simInt simAssociateScriptWithObject(simInt scriptHandle,simInt associatedObjectHandle); +simInt simGetScript(simInt index); +simInt simGetScriptAssociatedWithObject(simInt objectHandle); +simInt simGetCustomizationScriptAssociatedWithObject(simInt objectHandle); +simInt simGetObjectAssociatedWithScript(simInt scriptHandle); +simChar* simGetScriptName(simInt scriptHandle); +simInt simHandleMainScript(); +simInt simResetScript(simInt scriptHandle); +simInt simAddScript(simInt scriptProperty); +simInt simRemoveScript(simInt scriptHandle); +simInt simRefreshDialogs(simInt refreshDegree); +simInt simGetCollisionHandle(const simChar* collisionObjectName); +simInt simGetDistanceHandle(const simChar* distanceObjectName); +simInt simGetIkGroupHandle(const simChar* ikGroupName); +simInt simResetCollision(simInt collisionObjectHandle); +simInt simResetDistance(simInt distanceObjectHandle); +simInt simResetProximitySensor(simInt sensorHandle); +simInt simCheckProximitySensor(simInt sensorHandle,simInt entityHandle,simFloat* detectedPoint); +simInt simCheckProximitySensorEx(simInt sensorHandle,simInt entityHandle,simInt detectionMode,simFloat detectionThreshold,simFloat maxAngle,simFloat* detectedPoint,simInt* detectedObjectHandle,simFloat* normalVector); +simInt simCheckProximitySensorEx2(simInt sensorHandle,simFloat* vertexPointer,simInt itemType,simInt itemCount,simInt detectionMode,simFloat detectionThreshold,simFloat maxAngle,simFloat* detectedPoint,simFloat* normalVector); +simChar* simCreateBuffer(simInt size); +simInt simReleaseBuffer(const simChar* buffer); +simInt simCheckCollision(simInt entity1Handle,simInt entity2Handle); +simInt simCheckCollisionEx(simInt entity1Handle,simInt entity2Handle,simFloat** intersectionSegments); +simInt simCheckDistance(simInt entity1Handle,simInt entity2Handle,simFloat threshold,simFloat* distanceData); +simChar* simGetObjectConfiguration(simInt objectHandle); +simInt simSetObjectConfiguration(const simChar* data); +simChar* simGetConfigurationTree(simInt objectHandle); +simInt simSetConfigurationTree(const simChar* data); +simInt simSetSimulationTimeStep(simFloat timeStep); +simFloat simGetSimulationTimeStep(); +simInt simGetRealTimeSimulation(); +simInt simIsRealTimeSimulationStepNeeded(); +simInt simAdjustRealTimeTimer(simInt instanceIndex,simFloat deltaTime); +simInt simGetSimulationPassesPerRenderingPass(); +simInt simAdvanceSimulationByOneStep(); +simInt simStartSimulation(); +simInt simStopSimulation(); +simInt simPauseSimulation(); +simInt simLoadModule(const simChar* filenameAndPath,const simChar* pluginName); +simInt simUnloadModule(simInt pluginhandle); +simVoid* simSendModuleMessage(simInt message,simInt* auxiliaryData,simVoid* customData,simInt* replyData); +simVoid* simBroadcastMessage(simInt* auxiliaryData,simVoid* customData,simInt* replyData); +simChar* simGetModuleName(simInt index,simUChar* moduleVersion); +simInt simFloatingViewAdd(simFloat posX,simFloat posY,simFloat sizeX,simFloat sizeY,simInt options); +simInt simFloatingViewRemove(simInt floatingViewHandle); +simInt simAdjustView(simInt viewHandleOrIndex,simInt associatedViewableObjectHandle,simInt options,const simChar* viewLabel); +simInt simSetLastError(const simChar* funcName,const simChar* errorMessage); +simInt simHandleGraph(simInt graphHandle,simFloat simulationTime); +simInt simResetGraph(simInt graphHandle); +simInt simSetNavigationMode(simInt navigationMode); +simInt simGetNavigationMode(); +simInt simSetPage(simInt index); +simInt simGetPage(); +simInt simDisplayDialog(const simChar* titleText,const simChar* mainText,simInt dialogType,const simChar* initialText,const simFloat* titleColors,const simFloat* dialogColors,simInt* elementHandle); +simInt simGetDialogResult(simInt genericDialogHandle); +simChar* simGetDialogInput(simInt genericDialogHandle); +simInt simEndDialog(simInt genericDialogHandle); +simInt simRegisterScriptCallbackFunction(const simChar* funcNameAtPluginName,const simChar* callTips,simVoid(*callBack)(struct SScriptCallBack* cb)); +simInt simRegisterScriptVariable(const simChar* varNameAtPluginName,const simChar* varValue,simInt stackHandle); +simInt simSetJointTargetVelocity(simInt objectHandle,simFloat targetVelocity); +simInt simGetJointTargetVelocity(simInt objectHandle,simFloat* targetVelocity); +simInt simSetPathTargetNominalVelocity(simInt objectHandle,simFloat targetNominalVelocity); +simInt simCopyPasteObjects(simInt* objectHandles,simInt objectCount,simInt options); +simInt simScaleSelectedObjects(simFloat scalingFactor,simBool scalePositionsToo); +simInt simScaleObjects(const simInt* objectHandles,simInt objectCount,simFloat scalingFactor,simBool scalePositionsToo); +simInt simDeleteSelectedObjects(); +simInt simGetObjectUniqueIdentifier(simInt objectHandle,simInt* uniqueIdentifier); +simInt simSendData(simInt targetID,simInt dataHeader,const simChar* dataName,const simChar* data,simInt dataLength,simInt antennaHandle,simFloat actionRadius,simFloat emissionAngle1,simFloat emissionAngle2,simFloat persistence); +simChar* simReceiveData(simInt dataHeader,const simChar* dataName,simInt antennaHandle,simInt index,simInt* dataLength,simInt* senderID,simInt* dataHeaderR,simChar** dataNameR); +simInt simSetGraphUserData(simInt graphHandle,const simChar* dataStreamName,simFloat data); +simInt simAddDrawingObject(simInt objectType,simFloat size,simFloat duplicateTolerance,simInt parentObjectHandle,simInt maxItemCount,const simFloat* ambient_diffuse,const simFloat* setToNULL,const simFloat* specular,const simFloat* emission); +simInt simRemoveDrawingObject(simInt objectHandle); +simInt simAddDrawingObjectItem(simInt objectHandle,const simFloat* itemData); +simInt simAddParticleObject(simInt objectType,simFloat size,simFloat density,const simVoid* params,simFloat lifeTime,simInt maxItemCount,const simFloat* ambient_diffuse,const simFloat* setToNULL,const simFloat* specular,const simFloat* emission); +simInt simRemoveParticleObject(simInt objectHandle); +simInt simAddParticleObjectItem(simInt objectHandle,const simFloat* itemData); +simFloat simGetObjectSizeFactor(simInt objectHandle); +simInt simAnnounceSceneContentChange(); +simInt simSetIntegerSignal(const simChar* signalName,simInt signalValue); +simInt simGetIntegerSignal(const simChar* signalName,simInt* signalValue); +simInt simClearIntegerSignal(const simChar* signalName); +simInt simSetFloatSignal(const simChar* signalName,simFloat signalValue); +simInt simGetFloatSignal(const simChar* signalName,simFloat* signalValue); +simInt simClearFloatSignal(const simChar* signalName); +simInt simSetDoubleSignal(const simChar* signalName,simDouble signalValue); +simInt simGetDoubleSignal(const simChar* signalName,simDouble* signalValue); +simInt simClearDoubleSignal(const simChar* signalName); +simInt simSetStringSignal(const simChar* signalName,const simChar* signalValue,simInt stringLength); +simChar* simGetStringSignal(const simChar* signalName,simInt* stringLength); +simInt simClearStringSignal(const simChar* signalName); +simChar* simGetSignalName(simInt signalIndex,simInt signalType); +simInt simSetObjectProperty(simInt objectHandle,simInt prop); +simInt simGetObjectProperty(simInt objectHandle); +simInt simSetObjectSpecialProperty(simInt objectHandle,simInt prop); +simInt simGetObjectSpecialProperty(simInt objectHandle); +simInt simGetPositionOnPath(simInt pathHandle,simFloat relativeDistance,simFloat* position); +simInt simGetDataOnPath(simInt pathHandle,simFloat relativeDistance,simInt dataType,simInt* intData,simFloat* floatData); +simInt simGetOrientationOnPath(simInt pathHandle,simFloat relativeDistance,simFloat* eulerAngles); +simInt simGetClosestPositionOnPath(simInt pathHandle,simFloat* absolutePosition,simFloat* pathPosition); +simInt simReadForceSensor(simInt objectHandle,simFloat* forceVector,simFloat* torqueVector); +simInt simBreakForceSensor(simInt objectHandle); +simInt simGetShapeVertex(simInt shapeHandle,simInt groupElementIndex,simInt vertexIndex,simFloat* relativePosition); +simInt simGetShapeTriangle(simInt shapeHandle,simInt groupElementIndex,simInt triangleIndex,simInt* vertexIndices,simFloat* triangleNormals); +simInt simSetLightParameters(simInt objectHandle,simInt state,const simFloat* setToNULL,const simFloat* diffusePart,const simFloat* specularPart); +simInt simGetLightParameters(simInt objectHandle,simFloat* setToNULL,simFloat* diffusePart,simFloat* specularPart); +simInt simGetVelocity(simInt shapeHandle,simFloat* linearVelocity,simFloat* angularVelocity); +simInt simGetObjectVelocity(simInt objectHandle,simFloat* linearVelocity,simFloat* angularVelocity); +simInt simAddForceAndTorque(simInt shapeHandle,const simFloat* force,const simFloat* torque); +simInt simAddForce(simInt shapeHandle,const simFloat* position,const simFloat* force); +simInt simSetExplicitHandling(simInt generalObjectHandle,int explicitFlags); +simInt simGetExplicitHandling(simInt generalObjectHandle); +simInt simGetLinkDummy(simInt dummyHandle); +simInt simSetLinkDummy(simInt dummyHandle,simInt linkedDummyHandle); +simInt simSetModelProperty(simInt objectHandle,simInt modelProperty); +simInt simGetModelProperty(simInt objectHandle); +simInt simSetShapeColor(simInt shapeHandle,const simChar* colorName,simInt colorComponent,const simFloat* rgbData); +simInt simGetShapeColor(simInt shapeHandle,const simChar* colorName,simInt colorComponent,simFloat* rgbData); +simInt simResetDynamicObject(simInt objectHandle); +simInt simSetJointMode(simInt jointHandle,simInt jointMode,simInt options); +simInt simGetJointMode(simInt jointHandle,simInt* options); +simInt simSerialOpen(const simChar* portString,simInt baudRate,simVoid* reserved1,simVoid* reserved2); +simInt simSerialClose(simInt portHandle); +simInt simSerialSend(simInt portHandle,const simChar* data,simInt dataLength); +simInt simSerialRead(simInt portHandle,simChar* buffer,simInt dataLengthToRead); +simInt simSerialCheck(simInt portHandle); +simInt simGetContactInfo(simInt dynamicPass,simInt objectHandle,simInt index,simInt* objectHandles,simFloat* contactInfo); +simInt simSetThreadIsFree(simBool freeMode); +simInt simTubeOpen(simInt dataHeader,const simChar* dataName,simInt readBufferSize,simBool notUsedButKeepZero); +simInt simTubeClose(simInt tubeHandle); +simInt simTubeWrite(simInt tubeHandle,const simChar* data,simInt dataLength); +simChar* simTubeRead(simInt tubeHandle,simInt* dataLength); +simInt simTubeStatus(simInt tubeHandle,simInt* readPacketsCount,simInt* writePacketsCount); +simInt simAuxiliaryConsoleOpen(const simChar* title,simInt maxLines,simInt mode,const simInt* position,const simInt* size,const simFloat* textColor,const simFloat* backgroundColor); +simInt simAuxiliaryConsoleClose(simInt consoleHandle); +simInt simAuxiliaryConsoleShow(simInt consoleHandle,simBool showState); +simInt simAuxiliaryConsolePrint(simInt consoleHandle,const simChar* text); +simInt simImportShape(simInt fileformat,const simChar* pathAndFilename,simInt options,simFloat identicalVerticeTolerance,simFloat scalingFactor); +simInt simImportMesh(simInt fileformat,const simChar* pathAndFilename,simInt options,simFloat identicalVerticeTolerance,simFloat scalingFactor,simFloat*** vertices,simInt** verticesSizes,simInt*** indices,simInt** indicesSizes,simFloat*** reserved,simChar*** names); +simInt simExportMesh(simInt fileformat,const simChar* pathAndFilename,simInt options,simFloat scalingFactor,simInt elementCount,const simFloat** vertices,const simInt* verticesSizes,const simInt** indices,const simInt* indicesSizes,simFloat** reserved,const simChar** names); +simInt simCreateMeshShape(simInt options,simFloat shadingAngle,const simFloat* vertices,simInt verticesSize,const simInt* indices,simInt indicesSize,simFloat* reserved); +simInt simCreatePureShape(simInt primitiveType,simInt options,const simFloat* sizes,simFloat mass,const simInt* precision); +simInt simCreateHeightfieldShape(simInt options,simFloat shadingAngle,simInt xPointCount,simInt yPointCount,simFloat xSize,const simFloat* heights); +simInt simGetShapeMesh(simInt shapeHandle,simFloat** vertices,simInt* verticesSize,simInt** indices,simInt* indicesSize,simFloat** normals); +simInt simAddBanner(const simChar* label,simFloat size,simInt options,const simFloat* positionAndEulerAngles,simInt parentObjectHandle,const simFloat* labelColors,const simFloat* backgroundColors); +simInt simRemoveBanner(simInt bannerID); +simInt simCreateJoint(simInt jointType,simInt jointMode,simInt options,const simFloat* sizes,const simFloat* colorA,const simFloat* colorB); +simInt simGetObjectIntParameter(simInt objectHandle,simInt parameterID,simInt* parameter); +simInt simSetObjectIntParameter(simInt objectHandle,simInt parameterID,simInt parameter); +simInt simGetObjectInt32Parameter(simInt objectHandle,simInt parameterID,simInt* parameter); +simInt simSetObjectInt32Parameter(simInt objectHandle,simInt parameterID,simInt parameter); +simInt simGetObjectFloatParameter(simInt objectHandle,simInt parameterID,simFloat* parameter); +simInt simSetObjectFloatParameter(simInt objectHandle,simInt parameterID,simFloat parameter); +simChar* simGetObjectStringParameter(simInt objectHandle,simInt parameterID,simInt* parameterLength); +simInt simSetObjectStringParameter(simInt objectHandle,simInt parameterID,simChar* parameter,simInt parameterLength); +simInt simSetSimulationPassesPerRenderingPass(simInt p); +simInt simGetRotationAxis(const simFloat* matrixStart,const simFloat* matrixGoal,simFloat* axis,simFloat* angle); +simInt simRotateAroundAxis(const simFloat* matrixIn,const simFloat* axis,const simFloat* axisPos,simFloat angle,simFloat* matrixOut); +simInt simGetJointForce(simInt jointHandle,simFloat* forceOrTorque); +simInt simGetJointMaxForce(simInt jointHandle,simFloat* forceOrTorque); +simInt simSetArrayParameter(simInt parameter,const simVoid* arrayOfValues); +simInt simGetArrayParameter(simInt parameter,simVoid* arrayOfValues); +simInt simSetIkGroupProperties(simInt ikGroupHandle,simInt resolutionMethod,simInt maxIterations,simFloat damping,void* reserved); +simInt simSetIkElementProperties(simInt ikGroupHandle,simInt tipDummyHandle,simInt constraints,const simFloat* precision,const simFloat* weight,void* reserved); +simInt simCameraFitToView(simInt viewHandleOrIndex,simInt objectCount,const simInt* objectHandles,simInt options,simFloat scaling); +simInt simPersistentDataWrite(const simChar* dataName,const simChar* dataValue,simInt dataLength,simInt options); +simChar* simPersistentDataRead(const simChar* dataName,simInt* dataLength); +simInt simIsHandleValid(simInt generalObjectHandle,simInt generalObjectType); +simInt simHandleVisionSensor(simInt visionSensorHandle,simFloat** auxValues,simInt** auxValuesCount); +simInt simReadVisionSensor(simInt visionSensorHandle,simFloat** auxValues,simInt** auxValuesCount); +simInt simResetVisionSensor(simInt visionSensorHandle); +simInt simCheckVisionSensor(simInt visionSensorHandle,simInt entityHandle,simFloat** auxValues,simInt** auxValuesCount); +simFloat* simCheckVisionSensorEx(simInt visionSensorHandle,simInt entityHandle,simBool returnImage); +simInt simGetVisionSensorResolution(simInt visionSensorHandle,simInt* resolution); +simFloat* simGetVisionSensorImage(simInt visionSensorHandle); +simUChar* simGetVisionSensorCharImage(simInt visionSensorHandle,simInt* resolutionX,simInt* resolutionY); +simFloat* simGetVisionSensorDepthBuffer(simInt visionSensorHandle); +simInt simSetVisionSensorImage(simInt visionSensorHandle,const simFloat* image); +simInt simSetVisionSensorCharImage(simInt visionSensorHandle,const simUChar* image); +simInt simRMLPosition(simInt dofs,simDouble timeStep,simInt flags,const simDouble* currentPosVelAccel,const simDouble* maxVelAccelJerk,const simBool* selection,const simDouble* targetPosVel,simDouble* newPosVelAccel,simVoid* auxData); +simInt simRMLVelocity(simInt dofs,simDouble timeStep,simInt flags,const simDouble* currentPosVelAccel,const simDouble* maxAccelJerk,const simBool* selection,const simDouble* targetVel,simDouble* newPosVelAccel,simVoid* auxData); +simInt simRMLPos(simInt dofs,simDouble smallestTimeStep,simInt flags,const simDouble* currentPosVelAccel,const simDouble* maxVelAccelJerk,const simBool* selection,const simDouble* targetPosVel,simVoid* auxData); +simInt simRMLVel(simInt dofs,simDouble smallestTimeStep,simInt flags,const simDouble* currentPosVelAccel,const simDouble* maxAccelJerk,const simBool* selection,const simDouble* targetVel,simVoid* auxData); +simInt simRMLStep(simInt handle,simDouble timeStep,simDouble* newPosVelAccel,simVoid* auxData,simVoid* reserved); +simInt simRMLRemove(simInt handle); +simChar* simFileDialog(simInt mode,const simChar* title,const simChar* startPath,const simChar* initName,const simChar* extName,const simChar* ext); +simInt simMsgBox(simInt dlgType,simInt buttons,const simChar* title,const simChar* message); +simInt simCreateDummy(simFloat size,const simFloat* color); +simInt simSetShapeMassAndInertia(simInt shapeHandle,simFloat mass,const simFloat* inertiaMatrix,const simFloat* centerOfMass,const simFloat* transformation); +simInt simGetShapeMassAndInertia(simInt shapeHandle,simFloat* mass,simFloat* inertiaMatrix,simFloat* centerOfMass,const simFloat* transformation); +simInt simGroupShapes(const simInt* shapeHandles,simInt shapeCount); +simInt* simUngroupShape(simInt shapeHandle,simInt* shapeCount); +simInt simCreateProximitySensor(simInt sensorType,simInt subType,simInt options,const simInt* intParams,const simFloat* floatParams,const simFloat* color); +simInt simCreateForceSensor(simInt options,const simInt* intParams,const simFloat* floatParams,const simFloat* color); +simInt simCreateVisionSensor(simInt options,const simInt* intParams,const simFloat* floatParams,const simFloat* color); +simInt simConvexDecompose(simInt shapeHandle,simInt options,const simInt* intParams,const simFloat* floatParams); +simInt simCreatePath(simInt attributes,const simInt* intParams,const simFloat* floatParams,const simFloat* color); +simInt simInsertPathCtrlPoints(simInt pathHandle,simInt options,simInt startIndex,simInt ptCnt,const simVoid* ptData); +simInt simCutPathCtrlPoints(simInt pathHandle,simInt startIndex,simInt ptCnt); +simFloat* simGetIkGroupMatrix(simInt ikGroupHandle,simInt options,simInt* matrixSize); +simInt simAddGhost(simInt ghostGroup,simInt objectHandle,simInt options,simFloat startTime,simFloat endTime,const simFloat* color); +simInt simModifyGhost(simInt ghostGroup,simInt ghostId,simInt operation,simFloat floatValue,simInt options,simInt optionsMask,const simFloat* colorOrTransformation); +simVoid simQuitSimulator(simBool ignoredArgument); +simInt simGetThreadId(); +simInt simLockResources(simInt lockType,simInt reserved); +simInt simUnlockResources(simInt lockHandle); +simInt simEnableEventCallback(simInt eventCallbackType,const simChar* plugin,simInt reserved); +simInt simSetShapeMaterial(simInt shapeHandle,simInt materialIdOrShapeHandle); +simInt simGetTextureId(const simChar* textureName,simInt* resolution); +simChar* simReadTexture(simInt textureId,simInt options,simInt posX,simInt posY,simInt sizeX,simInt sizeY); +simInt simWriteTexture(simInt textureId,simInt options,const simChar* data,simInt posX,simInt posY,simInt sizeX,simInt sizeY,simFloat interpol); +simInt simCreateTexture(const simChar* fileName,simInt options,const simFloat* planeSizes,const simFloat* scalingUV,const simFloat* xy_g,simInt fixedResolution,simInt* textureId,simInt* resolution,const simVoid* reserved); +simInt simWriteCustomDataBlock(simInt objectHandle,const simChar* tagName,const simChar* data,simInt dataSize); +simChar* simReadCustomDataBlock(simInt objectHandle,const simChar* tagName,simInt* dataSize); +simChar* simReadCustomDataBlockTags(simInt objectHandle,simInt* tagCount); +simInt simAddPointCloud(simInt pageMask,simInt layerMask,simInt objectHandle,simInt options,simFloat pointSize,simInt ptCnt,const simFloat* pointCoordinates,const simChar* defaultColors,const simChar* pointColors,const simFloat* pointNormals); +simInt simModifyPointCloud(simInt pointCloudHandle,simInt operation,const simInt* intParam,const simFloat* floatParam); +simInt simGetShapeGeomInfo(simInt shapeHandle,simInt* intData,simFloat* floatData,simVoid* reserved); +simInt* simGetObjectsInTree(simInt treeBaseHandle,simInt objectType,simInt options,simInt* objectCount); +simInt simSetObjectSizeValues(simInt objectHandle,const simFloat* sizeValues); +simInt simGetObjectSizeValues(simInt objectHandle,simFloat* sizeValues); +simInt simScaleObject(simInt objectHandle,simFloat xScale,simFloat yScale,simFloat zScale,simInt options); +simInt simSetShapeTexture(simInt shapeHandle,simInt textureId,simInt mappingMode,simInt options,const simFloat* uvScaling,const simFloat* position,const simFloat* orientation); +simInt simGetShapeTextureId(simInt shapeHandle); +simInt* simGetCollectionObjects(simInt collectionHandle,simInt* objectCount); +simInt simSetScriptAttribute(simInt scriptHandle,simInt attributeID,simFloat floatVal,simInt intOrBoolVal); +simInt simGetScriptAttribute(simInt scriptHandle,simInt attributeID,simFloat* floatVal,simInt* intOrBoolVal); +simInt simReorientShapeBoundingBox(simInt shapeHandle,simInt relativeToHandle,simInt reservedSetToZero); +simInt simSwitchThread(); +simInt simCreateIkGroup(simInt options,const simInt* intParams,const simFloat* floatParams,const simVoid* reserved); +simInt simRemoveIkGroup(simInt ikGroupHandle); +simInt simCreateIkElement(simInt ikGroupHandle,simInt options,const simInt* intParams,const simFloat* floatParams,const simVoid* reserved); +simInt simCreateCollection(const simChar* collectionName,simInt options); +simInt simAddObjectToCollection(simInt collectionHandle,simInt objectHandle,simInt what,simInt options); +simInt simSaveImage(const simUChar* image,const simInt* resolution,simInt options,const simChar* filename,simInt quality,simVoid* reserved); +simUChar* simLoadImage(simInt* resolution,simInt options,const simChar* filename,simVoid* reserved); +simUChar* simGetScaledImage(const simUChar* imageIn,const simInt* resolutionIn,simInt* resolutionOut,simInt options,simVoid* reserved); +simInt simTransformImage(simUChar* image,const simInt* resolution,simInt options,const simFloat* floatParams,const simInt* intParams,simVoid* reserved); +simInt simGetQHull(const simFloat* inVertices,simInt inVerticesL,simFloat** verticesOut,simInt* verticesOutL,simInt** indicesOut,simInt* indicesOutL,simInt reserved1,const simFloat* reserved2); +simInt simGetDecimatedMesh(const simFloat* inVertices,simInt inVerticesL,const simInt* inIndices,simInt inIndicesL,simFloat** verticesOut,simInt* verticesOutL,simInt** indicesOut,simInt* indicesOutL,simFloat decimationPercent,simInt reserved1,const simFloat* reserved2); +simInt simExportIk(const simChar* pathAndFilename,simInt reserved1,simVoid* reserved2); +simInt simCallScriptFunctionEx(simInt scriptHandleOrType,const simChar* functionNameAtScriptName,simInt stackId); +simInt simComputeJacobian(simInt ikGroupHandle,simInt options,simVoid* reserved); +simInt simGetConfigForTipPose(simInt ikGroupHandle,simInt jointCnt,const simInt* jointHandles,simFloat thresholdDist,simInt maxTimeInMs,simFloat* retConfig,const simFloat* metric,simInt collisionPairCnt,const simInt* collisionPairs,const simInt* jointOptions,const simFloat* lowLimits,const simFloat* ranges,simVoid* reserved); +simFloat* simGenerateIkPath(simInt ikGroupHandle,simInt jointCnt,const simInt* jointHandles,simInt ptCnt,simInt collisionPairCnt,const simInt* collisionPairs,const simInt* jointOptions,simVoid* reserved); +simChar* simGetExtensionString(simInt objectHandle,simInt index,const char* key); +simInt simComputeMassAndInertia(simInt shapeHandle,simFloat density); +simInt simCreateStack(); +simInt simReleaseStack(simInt stackHandle); +simInt simCopyStack(simInt stackHandle); +simInt simPushNullOntoStack(simInt stackHandle); +simInt simPushBoolOntoStack(simInt stackHandle,simBool value); +simInt simPushInt32OntoStack(simInt stackHandle,simInt value); +simInt simPushFloatOntoStack(simInt stackHandle,simFloat value); +simInt simPushDoubleOntoStack(simInt stackHandle,simDouble value); +simInt simPushStringOntoStack(simInt stackHandle,const simChar* value,simInt stringSize); +simInt simPushUInt8TableOntoStack(simInt stackHandle,const simUChar* values,simInt valueCnt); +simInt simPushInt32TableOntoStack(simInt stackHandle,const simInt* values,simInt valueCnt); +simInt simPushFloatTableOntoStack(simInt stackHandle,const simFloat* values,simInt valueCnt); +simInt simPushDoubleTableOntoStack(simInt stackHandle,const simDouble* values,simInt valueCnt); +simInt simPushTableOntoStack(simInt stackHandle); +simInt simInsertDataIntoStackTable(simInt stackHandle); +simInt simGetStackSize(simInt stackHandle); +simInt simPopStackItem(simInt stackHandle,simInt count); +simInt simMoveStackItemToTop(simInt stackHandle,simInt cIndex); +simInt simIsStackValueNull(simInt stackHandle); +simInt simGetStackBoolValue(simInt stackHandle,simBool* boolValue); +simInt simGetStackInt32Value(simInt stackHandle,simInt* numberValue); +simInt simGetStackFloatValue(simInt stackHandle,simFloat* numberValue); +simInt simGetStackDoubleValue(simInt stackHandle,simDouble* numberValue); +simChar* simGetStackStringValue(simInt stackHandle,simInt* stringSize); +simInt simGetStackTableInfo(simInt stackHandle,simInt infoType); +simInt simGetStackUInt8Table(simInt stackHandle,simUChar* array,simInt count); +simInt simGetStackInt32Table(simInt stackHandle,simInt* array,simInt count); +simInt simGetStackFloatTable(simInt stackHandle,simFloat* array,simInt count); +simInt simGetStackDoubleTable(simInt stackHandle,simDouble* array,simInt count); +simInt simUnfoldStackTable(simInt stackHandle); +simInt simDebugStack(simInt stackHandle,simInt cIndex); +simInt simSetScriptVariable(simInt scriptHandleOrType,const simChar* variableNameAtScriptName,simInt stackHandle); +simFloat simGetEngineFloatParameter(simInt paramId,simInt objectHandle,const simVoid* object,simBool* ok); +simInt simGetEngineInt32Parameter(simInt paramId,simInt objectHandle,const simVoid* object,simBool* ok); +simBool simGetEngineBoolParameter(simInt paramId,simInt objectHandle,const simVoid* object,simBool* ok); +simInt simSetEngineFloatParameter(simInt paramId,simInt objectHandle,const simVoid* object,simFloat val); +simInt simSetEngineInt32Parameter(simInt paramId,simInt objectHandle,const simVoid* object,simInt val); +simInt simSetEngineBoolParameter(simInt paramId,simInt objectHandle,const simVoid* object,simBool val); +simInt simCreateOctree(simFloat voxelSize,simInt options,simFloat pointSize,simVoid* reserved); +simInt simCreatePointCloud(simFloat maxVoxelSize,simInt maxPtCntPerVoxel,simInt options,simFloat pointSize,simVoid* reserved); +simInt simSetPointCloudOptions(simInt pointCloudHandle,simFloat maxVoxelSize,simInt maxPtCntPerVoxel,simInt options,simFloat pointSize,simVoid* reserved); +simInt simGetPointCloudOptions(simInt pointCloudHandle,simFloat* maxVoxelSize,simInt* maxPtCntPerVoxel,simInt* options,simFloat* pointSize,simVoid* reserved); +simInt simInsertVoxelsIntoOctree(simInt octreeHandle,simInt options,const simFloat* pts,simInt ptCnt,const simUChar* color,const simUInt* tag,simVoid* reserved); +simInt simRemoveVoxelsFromOctree(simInt octreeHandle,simInt options,const simFloat* pts,simInt ptCnt,simVoid* reserved); +simInt simInsertPointsIntoPointCloud(simInt pointCloudHandle,simInt options,const simFloat* pts,simInt ptCnt,const simUChar* color,simVoid* optionalValues); +simInt simRemovePointsFromPointCloud(simInt pointCloudHandle,simInt options,const simFloat* pts,simInt ptCnt,simFloat tolerance,simVoid* reserved); +simInt simIntersectPointsWithPointCloud(simInt pointCloudHandle,simInt options,const simFloat* pts,simInt ptCnt,simFloat tolerance,simVoid* reserved); +const float* simGetOctreeVoxels(simInt octreeHandle,simInt* ptCnt,simVoid* reserved); +const float* simGetPointCloudPoints(simInt pointCloudHandle,simInt* ptCnt,simVoid* reserved); +simInt simInsertObjectIntoOctree(simInt octreeHandle,simInt objectHandle,simInt options,const simUChar* color,simUInt tag,simVoid* reserved); +simInt simSubtractObjectFromOctree(simInt octreeHandle,simInt objectHandle,simInt options,simVoid* reserved); +simInt simInsertObjectIntoPointCloud(simInt pointCloudHandle,simInt objectHandle,simInt options,simFloat gridSize,const simUChar* color,simVoid* optionalValues); +simInt simSubtractObjectFromPointCloud(simInt pointCloudHandle,simInt objectHandle,simInt options,simFloat tolerance,simVoid* reserved); +simInt simCheckOctreePointOccupancy(simInt octreeHandle,simInt options,const simFloat* points,simInt ptCnt,simUInt* tag,simUInt64* location,simVoid* reserved); +simChar* simOpenTextEditor(const simChar* initText,const simChar* xml,simInt* various); +simChar* simPackTable(simInt stackHandle,simInt* bufferSize); +simInt simUnpackTable(simInt stackHandle,const simChar* buffer,simInt bufferSize); +simInt simSetReferencedHandles(simInt objectHandle,simInt count,const simInt* referencedHandles,const simInt* reserved1,const simInt* reserved2); +simInt simGetReferencedHandles(simInt objectHandle,simInt** referencedHandles,simInt** reserved1,simInt** reserved2); +simInt simGetShapeViz(simInt shapeHandle,simInt index,struct SShapeVizInfo* info); +simInt simExecuteScriptString(simInt scriptHandleOrType,const simChar* stringAtScriptName,simInt stackHandle); +simChar* simGetApiFunc(simInt scriptHandleOrType,const simChar* apiWord); +simChar* simGetApiInfo(simInt scriptHandleOrType,const simChar* apiWord); +simInt simSetModuleInfo(const simChar* moduleName,simInt infoType,const simChar* stringInfo,simInt intInfo); +simInt simGetModuleInfo(const simChar* moduleName,simInt infoType,simChar** stringInfo,simInt* intInfo); +simInt simIsDeprecated(const simChar* funcOrConst); +simChar* simGetPersistentDataTags(simInt* tagCount); +simInt simEventNotification(const simChar* event); +simInt simApplyTexture(simInt shapeHandle,const simFloat* textureCoordinates,simInt textCoordSize,const simUChar* texture,const simInt* textureResolution,simInt options); +simInt simSetJointDependency(simInt jointHandle,simInt masterJointHandle,simFloat offset,simFloat coeff); +simInt simSetStringNamedParam(const simChar* paramName,const simChar* stringParam,simInt paramLength); +simChar* simGetStringNamedParam(const simChar* paramName,simInt* paramLength); +simChar* simGetUserParameter(simInt objectHandle,const simChar* parameterName,simInt* parameterLength); +simInt simSetUserParameter(simInt objectHandle,const simChar* parameterName,const simChar* parameterValue,simInt parameterLength); +simInt simAddLog(const simChar* pluginName,simInt verbosityLevel,const simChar* logMsg); + + + +simInt _simGetContactCallbackCount(); +const void* _simGetContactCallback(simInt index); +simVoid _simSetDynamicSimulationIconCode(simVoid* object,simInt code); +simVoid _simSetDynamicObjectFlagForVisualization(simVoid* object,simInt flag); +simInt _simGetObjectListSize(simInt objType); +const simVoid* _simGetObjectFromIndex(simInt objType,simInt index); +simInt _simGetObjectID(const simVoid* object); +simInt _simGetObjectType(const simVoid* object); +const simVoid** _simGetObjectChildren(const simVoid* object,simInt* count); +const simVoid* _simGetGeomProxyFromShape(const simVoid* shape); +const simVoid* _simGetParentObject(const simVoid* object); +const simVoid* _simGetObject(int objID); +simVoid _simGetObjectLocalTransformation(const simVoid* object,simFloat* pos,simFloat* quat,simBool excludeFirstJointTransformation); +simVoid _simSetObjectLocalTransformation(simVoid* object,const simFloat* pos,const simFloat* quat); +simVoid _simSetObjectCumulativeTransformation(simVoid* object,const simFloat* pos,const simFloat* quat,simBool keepChildrenInPlace); +simVoid _simGetObjectCumulativeTransformation(const simVoid* object,simFloat* pos,simFloat* quat,simBool excludeFirstJointTransformation); +simBool _simIsShapeDynamicallyStatic(const simVoid* shape); +simInt _simGetTreeDynamicProperty(const simVoid* object); +simInt _simGetDummyLinkType(const simVoid* dummy,simInt* linkedDummyID); +simInt _simGetJointMode(const simVoid* joint); +simBool _simIsJointInHybridOperation(const simVoid* joint); +simVoid _simDisableDynamicTreeForManipulation(const simVoid* object,simBool disableFlag); +simBool _simIsShapeDynamicallyRespondable(const simVoid* shape); +simInt _simGetDynamicCollisionMask(const simVoid* shape); +const simVoid* _simGetLastParentForLocalGlobalCollidable(const simVoid* shape); +simVoid _simSetShapeIsStaticAndNotRespondableButDynamicTag(const simVoid* shape,simBool tag); +simBool _simGetShapeIsStaticAndNotRespondableButDynamicTag(const simVoid* shape); +simVoid _simSetJointPosition(const simVoid* joint,simFloat pos); +simFloat _simGetJointPosition(const simVoid* joint); +simVoid _simSetDynamicMotorPositionControlTargetPosition(const simVoid* joint,simFloat pos); +simVoid _simGetInitialDynamicVelocity(const simVoid* shape,simFloat* vel); +simVoid _simSetInitialDynamicVelocity(simVoid* shape,const simFloat* vel); +simVoid _simGetInitialDynamicAngVelocity(const simVoid* shape,simFloat* angularVel); +simVoid _simSetInitialDynamicAngVelocity(simVoid* shape,const simFloat* angularVel); +simBool _simGetStartSleeping(const simVoid* shape); +simBool _simGetWasPutToSleepOnce(const simVoid* shape); +simBool _simGetDynamicsFullRefreshFlag(const simVoid* object); +simVoid _simSetDynamicsFullRefreshFlag(const simVoid* object,simBool flag); +simVoid _simSetGeomProxyDynamicsFullRefreshFlag(simVoid* geomData,simBool flag); +simBool _simGetGeomProxyDynamicsFullRefreshFlag(const simVoid* geomData); +simVoid _simSetShapeDynamicVelocity(simVoid* shape,const simFloat* linear,const simFloat* angular); +simVoid _simGetAdditionalForceAndTorque(const simVoid* shape,simFloat* force,simFloat* torque); +simVoid _simClearAdditionalForceAndTorque(const simVoid* shape); +simBool _simGetJointPositionInterval(const simVoid* joint,simFloat* minValue,simFloat* rangeValue); +simInt _simGetJointType(const simVoid* joint); +simBool _simIsForceSensorBroken(const simVoid* forceSensor); +simVoid _simGetDynamicForceSensorLocalTransformationPart2(const simVoid* forceSensor,simFloat* pos,simFloat* quat); +simBool _simIsDynamicMotorEnabled(const simVoid* joint); +simBool _simIsDynamicMotorPositionCtrlEnabled(const simVoid* joint); +simBool _simIsDynamicMotorTorqueModulationEnabled(const simVoid* joint); +simVoid _simGetMotorPid(const simVoid* joint,simFloat* pParam,simFloat* iParam,simFloat* dParam); +simFloat _simGetDynamicMotorTargetPosition(const simVoid* joint); +simFloat _simGetDynamicMotorTargetVelocity(const simVoid* joint); +simFloat _simGetDynamicMotorMaxForce(const simVoid* joint); +simFloat _simGetDynamicMotorUpperLimitVelocity(const simVoid* joint); +simVoid _simSetDynamicMotorReflectedPositionFromDynamicEngine(simVoid* joint,simFloat pos); +simVoid _simSetJointSphericalTransformation(simVoid* joint,const simFloat* quat); +simVoid _simAddForceSensorCumulativeForcesAndTorques(simVoid* forceSensor,const simFloat* force,const simFloat* torque,int totalPassesCount); +simVoid _simAddJointCumulativeForcesOrTorques(simVoid* joint,simFloat forceOrTorque,int totalPassesCount); +simVoid _simSetDynamicJointLocalTransformationPart2(simVoid* joint,const simFloat* pos,const simFloat* quat); +simVoid _simSetDynamicForceSensorLocalTransformationPart2(simVoid* forceSensor,const simFloat* pos,const simFloat* quat); +simVoid _simSetDynamicJointLocalTransformationPart2IsValid(simVoid* joint,simBool valid); +simVoid _simSetDynamicForceSensorLocalTransformationPart2IsValid(simVoid* forceSensor,simBool valid); +const simVoid* _simGetGeomWrapFromGeomProxy(const simVoid* geomData); +simVoid _simGetLocalInertiaFrame(const simVoid* geomInfo,simFloat* pos,simFloat* quat); +simInt _simGetPurePrimitiveType(const simVoid* geomInfo); +simBool _simIsGeomWrapGeometric(const simVoid* geomInfo); +simBool _simIsGeomWrapConvex(const simVoid* geomInfo); +simInt _simGetGeometricCount(const simVoid* geomInfo); +simVoid _simGetAllGeometrics(const simVoid* geomInfo,simVoid** allGeometrics); +simVoid _simGetPurePrimitiveSizes(const simVoid* geometric,simFloat* sizes); +simVoid _simMakeDynamicAnnouncement(int announceType); +simVoid _simGetVerticesLocalFrame(const simVoid* geometric,simFloat* pos,simFloat* quat); +const simFloat* _simGetHeightfieldData(const simVoid* geometric,simInt* xCount,simInt* yCount,simFloat* minHeight,simFloat* maxHeight); +simVoid _simGetCumulativeMeshes(const simVoid* geomInfo,simFloat** vertices,simInt* verticesSize,simInt** indices,simInt* indicesSize); +simFloat _simGetMass(const simVoid* geomInfo); +simVoid _simGetPrincipalMomentOfInertia(const simVoid* geomInfo,simFloat* inertia); +simVoid _simGetGravity(simFloat* gravity); +simInt _simGetTimeDiffInMs(simInt previousTime); +simBool _simDoEntitiesCollide(simInt entity1ID,simInt entity2ID,simInt* cacheBuffer,simBool overrideCollidableFlagIfShape1,simBool overrideCollidableFlagIfShape2,simBool pathOrMotionPlanningRoutineCalling); +simBool _simGetDistanceBetweenEntitiesIfSmaller(simInt entity1ID,simInt entity2ID,simFloat* distance,simFloat* ray,simInt* cacheBuffer,simBool overrideMeasurableFlagIfNonCollection1,simBool overrideMeasurableFlagIfNonCollection2,simBool pathPlanningRoutineCalling); +simInt _simHandleJointControl(const simVoid* joint,simInt auxV,const simInt* inputValuesInt,const simFloat* inputValuesFloat,simFloat* outputValues); +simInt _simHandleCustomContact(simInt objHandle1,simInt objHandle2,simInt engine,simInt* dataInt,simFloat* dataFloat); +const simVoid* _simGetIkGroupObject(int ikGroupID); +simInt _simMpHandleIkGroupObject(const simVoid* ikGroup); +simFloat _simGetPureHollowScaling(const simVoid* geometric); +simInt _simGetJointCallbackCallOrder(const simVoid* joint); +simVoid _simDynCallback(const simInt* intData,const simFloat* floatData); + + +// Following courtesy of Stephen James: +simInt simExtLaunchUIThread(const simChar* applicationName,simInt options,const simChar* sceneOrModelOrUiToLoad,const simChar* applicationDir_); +simInt simExtCanInitSimThread(); +simInt simExtSimThreadInit(); +simInt simExtSimThreadDestroy(); +simInt simExtPostExitRequest(); +simInt simExtGetExitRequest(); +simInt simExtStep(simBool stepIfRunning); +simInt simExtCallScriptFunction(simInt scriptHandleOrType, const simChar* functionNameAtScriptName, + const simInt* inIntData, simInt inIntCnt, + const simFloat* inFloatData, simInt inFloatCnt, + const simChar** inStringData, simInt inStringCnt, + const simChar* inBufferData, simInt inBufferCnt, + simInt** outIntData, simInt* outIntCnt, + simFloat** outFloatData, simInt* outFloatCnt, + simChar*** outStringData, simInt* outStringCnt, + simChar** outBufferData, simInt* outBufferSize); + + +// Deprecated begin +simInt simGetMaterialId(const simChar* materialName); +simInt simGetShapeMaterial(simInt shapeHandle); +simInt simHandleVarious(); +simInt simSerialPortOpen(simInt portNumber,simInt baudRate,simVoid* reserved1,simVoid* reserved2); +simInt simSerialPortClose(simInt portNumber); +simInt simSerialPortSend(simInt portNumber,const simChar* data,simInt dataLength); +simInt simSerialPortRead(simInt portNumber,simChar* buffer,simInt dataLengthToRead); +simInt simJointGetForce(simInt jointHandle,simFloat* forceOrTorque); +simInt simGetPathPlanningHandle(const simChar* pathPlanningObjectName); +simInt simGetMotionPlanningHandle(const simChar* motionPlanningObjectName); +simInt simGetMpConfigForTipPose(simInt motionPlanningObjectHandle,simInt options,simFloat closeNodesDistance,simInt trialCount,const simFloat* tipPose,simInt maxTimeInMs,simFloat* outputJointPositions,const simFloat* referenceConfigs,simInt referenceConfigCount,const simFloat* jointWeights,const simInt* jointBehaviour,simInt correctionPasses); +simFloat* simFindMpPath(simInt motionPlanningObjectHandle,const simFloat* startConfig,const simFloat* goalConfig,simInt options,simFloat stepSize,simInt* outputConfigsCnt,simInt maxTimeInMs,simFloat* reserved,const simInt* auxIntParams,const simFloat* auxFloatParams); +simFloat* simSimplifyMpPath(simInt motionPlanningObjectHandle,const simFloat* pathBuffer,simInt configCnt,simInt options,simFloat stepSize,simInt increment,simInt* outputConfigsCnt,simInt maxTimeInMs,simFloat* reserved,const simInt* auxIntParams,const simFloat* auxFloatParams); +simFloat* simFindIkPath(simInt motionPlanningObjectHandle,const simFloat* startConfig,const simFloat* goalPose,simInt options,simFloat stepSize,simInt* outputConfigsCnt,simFloat* reserved,const simInt* auxIntParams,const simFloat* auxFloatParams); +simFloat* simGetMpConfigTransition(simInt motionPlanningObjectHandle,const simFloat* startConfig,const simFloat* goalConfig,simInt options,const simInt* select,simFloat calcStepSize,simFloat maxOutStepSize,simInt wayPointCnt,const simFloat* wayPoints,simInt* outputConfigsCnt,const simInt* auxIntParams,const simFloat* auxFloatParams); +simInt simCreateMotionPlanning(simInt jointCnt,const simInt* jointHandles,const simInt* jointRangeSubdivisions,const simFloat* jointMetricWeights,simInt options,const simInt* intParams,const simFloat* floatParams,const simVoid* reserved); +simInt simRemoveMotionPlanning(simInt motionPlanningHandle); +simInt simSearchPath(simInt pathPlanningObjectHandle,simFloat maximumSearchTime); +simInt simInitializePathSearch(simInt pathPlanningObjectHandle,simFloat maximumSearchTime,simFloat searchTimeStep); +simInt simPerformPathSearchStep(simInt temporaryPathSearchObject,simBool abortSearch); +simInt simLockInterface(simBool locked); +simInt simCopyPasteSelectedObjects(); +simInt simResetPath(simInt pathHandle); +simInt simHandlePath(simInt pathHandle,simFloat deltaTime); +simInt simResetJoint(simInt jointHandle); +simInt simHandleJoint(simInt jointHandle,simFloat deltaTime); +simInt simAppendScriptArrayEntry(const simChar* reservedSetToNull,simInt scriptHandleOrType,const simChar* arrayNameAtScriptName,const simChar* keyName,const simChar* data,const simInt* what); +simInt simClearScriptVariable(const simChar* reservedSetToNull,simInt scriptHandleOrType,const simChar* variableNameAtScriptName); +simVoid _simGetJointOdeParameters(const simVoid* joint,simFloat* stopERP,simFloat* stopCFM,simFloat* bounce,simFloat* fudge,simFloat* normalCFM); +simVoid _simGetJointBulletParameters(const simVoid* joint,simFloat* stopERP,simFloat* stopCFM,simFloat* normalCFM); +simVoid _simGetOdeMaxContactFrictionCFMandERP(const simVoid* geomInfo,simInt* maxContacts,simFloat* friction,simFloat* cfm,simFloat* erp); +simBool _simGetBulletCollisionMargin(const simVoid* geomInfo,simFloat* margin,simInt* otherProp); +simBool _simGetBulletStickyContact(const simVoid* geomInfo); +simFloat _simGetBulletRestitution(const simVoid* geomInfo); +simVoid _simGetVortexParameters(const simVoid* object,simInt version,simFloat* floatParams,simInt* intParams); +simVoid _simGetNewtonParameters(const simVoid* object,simInt* version,simFloat* floatParams,simInt* intParams); +simVoid _simGetDamping(const simVoid* geomInfo,simFloat* linDamping,simFloat* angDamping); +simFloat _simGetFriction(const simVoid* geomInfo); +simInt simAddSceneCustomData(simInt header,const simChar* data,simInt dataLength); +simInt simGetSceneCustomDataLength(simInt header); +simInt simGetSceneCustomData(simInt header,simChar* data); +simInt simAddObjectCustomData(simInt objectHandle,simInt header,const simChar* data,simInt dataLength); +simInt simGetObjectCustomDataLength(simInt objectHandle,simInt header); +simInt simGetObjectCustomData(simInt objectHandle,simInt header,simChar* data); +simInt simCreateUI(const simChar* uiName,simInt menuAttributes,const simInt* clientSize,const simInt* cellSize,simInt* buttonHandles); +simInt simCreateUIButton(simInt uiHandle,const simInt* position,const simInt* size,simInt buttonProperty); +simInt simGetUIHandle(const simChar* uiName); +simInt simGetUIProperty(simInt uiHandle); +simInt simGetUIEventButton(simInt uiHandle,simInt* auxiliaryValues); +simInt simSetUIProperty(simInt uiHandle,simInt elementProperty); +simInt simGetUIButtonProperty(simInt uiHandle,simInt buttonHandle); +simInt simSetUIButtonProperty(simInt uiHandle,simInt buttonHandle,simInt buttonProperty); +simInt simGetUIButtonSize(simInt uiHandle,simInt buttonHandle,simInt* size); +simInt simSetUIButtonLabel(simInt uiHandle,simInt buttonHandle,const simChar* upStateLabel,const simChar* downStateLabel); +simChar* simGetUIButtonLabel(simInt uiHandle,simInt buttonHandle); +simInt simSetUISlider(simInt uiHandle,simInt buttonHandle,simInt position); +simInt simGetUISlider(simInt uiHandle,simInt buttonHandle); +simInt simSetUIButtonColor(simInt uiHandle,simInt buttonHandle,const simFloat* upStateColor,const simFloat* downStateColor,const simFloat* labelColor); +simInt simSetUIButtonTexture(simInt uiHandle,simInt buttonHandle,const simInt* size,const simChar* textureData); +simInt simCreateUIButtonArray(simInt uiHandle,simInt buttonHandle); +simInt simSetUIButtonArrayColor(simInt uiHandle,simInt buttonHandle,const simInt* position,const simFloat* color); +simInt simDeleteUIButtonArray(simInt uiHandle,simInt buttonHandle); +simInt simRemoveUI(simInt uiHandle); +simInt simSetUIPosition(simInt uiHandle,const simInt* position); +simInt simGetUIPosition(simInt uiHandle,simInt* position); +simInt simLoadUI(const simChar* filename,simInt maxCount,simInt* uiHandles); +simInt simSaveUI(simInt count,const simInt* uiHandles,const simChar* filename); +simInt simHandleGeneralCallbackScript(simInt callbackId,simInt callbackTag,simVoid* additionalData); +simInt simRegisterCustomLuaFunction(const simChar* funcName,const simChar* callTips,const simInt* inputArgumentTypes,simVoid(*callBack)(struct SLuaCallBack* p)); +simInt simRegisterCustomLuaVariable(const simChar* varName,const simChar* varValue); +simInt simRegisterContactCallback(simInt(*callBack)(simInt,simInt,simInt,simInt*,simFloat*)); +simInt simRegisterJointCtrlCallback(simInt(*callBack)(simInt,simInt,simInt,const simInt*,const simFloat*,simFloat*)); +simInt simGetMechanismHandle(const simChar* mechanismName); +simInt simHandleMechanism(simInt mechanismHandle); +simInt simHandleCustomizationScripts(simInt callType); +simInt simSetVisionSensorFilter(simInt visionSensorHandle,simInt filterIndex,simInt options,const simInt* pSizes,const simUChar* bytes,const simInt* ints,const simFloat* floats,const simUChar* custom); +simInt simGetVisionSensorFilter(simInt visionSensorHandle,simInt filterIndex,simInt* options,simInt* pSizes,simUChar** bytes,simInt** ints,simFloat** floats,simUChar** custom); +simChar* simGetScriptSimulationParameter(simInt scriptHandle,const simChar* parameterName,simInt* parameterLength); +simInt simSetScriptSimulationParameter(simInt scriptHandle,const simChar* parameterName,const simChar* parameterValue,simInt parameterLength); +simInt simSetJointForce(simInt objectHandle,simFloat forceOrTorque); +simInt simHandleMill(simInt millHandle,simFloat* removedSurfaceAndVolume); +simInt simResetMill(simInt millHandle); +simInt simResetMilling(simInt objectHandle); +simInt simApplyMilling(simInt objectHandle); +simBool _simGetParentFollowsDynamic(const simVoid* shape); +simInt simGetNameSuffix(const simChar* name); +simInt simSetNameSuffix(simInt nameSuffixNumber); +simInt simAddStatusbarMessage(const simChar* message); +simChar* simGetScriptRawBuffer(simInt scriptHandle,simInt bufferHandle); +simInt simSetScriptRawBuffer(simInt scriptHandle,const simChar* buffer,simInt bufferSize); +simInt simReleaseScriptRawBuffer(simInt scriptHandle,simInt bufferHandle); +// Deprecated end \ No newline at end of file diff --git a/external/pyrep/docs/Makefile b/external/pyrep/docs/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..14ebbfec1c66e53f04bb35f59d18c3b8b11a87af --- /dev/null +++ b/external/pyrep/docs/Makefile @@ -0,0 +1,19 @@ +# Minimal makefile for Sphinx documentation +# + +# You can set these variables from the command line. +SPHINXOPTS = +SPHINXBUILD = sphinx-build +SOURCEDIR = source +BUILDDIR = _build + +# Put it first so that "make" without argument is like "make help". +help: + @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) + +.PHONY: help Makefile + +# Catch-all target: route all unknown targets to Sphinx using the new +# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). +%: Makefile + @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) diff --git a/external/pyrep/docs/make.bat b/external/pyrep/docs/make.bat new file mode 100644 index 0000000000000000000000000000000000000000..27f573b87af11e2cbbd9f54eb1ee285a58550146 --- /dev/null +++ b/external/pyrep/docs/make.bat @@ -0,0 +1,35 @@ +@ECHO OFF + +pushd %~dp0 + +REM Command file for Sphinx documentation + +if "%SPHINXBUILD%" == "" ( + set SPHINXBUILD=sphinx-build +) +set SOURCEDIR=. +set BUILDDIR=_build + +if "%1" == "" goto help + +%SPHINXBUILD% >NUL 2>NUL +if errorlevel 9009 ( + echo. + echo.The 'sphinx-build' command was not found. Make sure you have Sphinx + echo.installed, then set the SPHINXBUILD environment variable to point + echo.to the full path of the 'sphinx-build' executable. Alternatively you + echo.may add the Sphinx directory to PATH. + echo. + echo.If you don't have Sphinx installed, grab it from + echo.http://sphinx-doc.org/ + exit /b 1 +) + +%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% +goto end + +:help +%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% + +:end +popd diff --git a/external/pyrep/docs/source/conf.py b/external/pyrep/docs/source/conf.py new file mode 100644 index 0000000000000000000000000000000000000000..4cf517f5fd5f80763e1d55a449bfe002ed225119 --- /dev/null +++ b/external/pyrep/docs/source/conf.py @@ -0,0 +1,62 @@ +# Configuration file for the Sphinx documentation builder. +# +# This file only contains a selection of the most common options. For a full +# list see the documentation: +# http://www.sphinx-doc.org/en/master/config + +# -- Path setup -------------------------------------------------------------- + +# If extensions (or modules to document with autodoc) are in another directory, +# add these directories to sys.path here. If the directory is relative to the +# documentation root, use os.path.abspath to make it absolute, like shown here. +# +import os +import sys +sys.path.insert(0, os.path.abspath('../../')) + + +# -- Project information ----------------------------------------------------- + +project = 'PyRep' +copyright = '2019, Stephen James' +author = 'Stephen James' + + +# -- General configuration --------------------------------------------------- + +# Add any Sphinx extension module names here, as strings. They can be +# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom +# ones. +extensions = [ + 'sphinx.ext.autodoc', + 'sphinx.ext.coverage', + 'sphinx.ext.napoleon' +] + +autodoc_mock_imports = ["pyrep.backend._sim_cffi"] + +# Add any paths that contain templates here, relative to this directory. +templates_path = ['_templates'] + +# List of patterns, relative to source directory, that match files and +# directories to ignore when looking for source files. +# This pattern also affects html_static_path and html_extra_path. +exclude_patterns = [] + + +# -- Options for HTML output ------------------------------------------------- + +# The theme to use for HTML and HTML Help pages. See the documentation for +# a list of builtin themes. +# +html_theme = 'sphinx_rtd_theme' + +# Add any paths that contain custom static files (such as style sheets) here, +# relative to this directory. They are copied after the builtin static files, +# so a file named "default.css" will overwrite the builtin "default.css". +html_static_path = ['_static'] + +master_doc = 'index' + + +# -- Extension configuration ------------------------------------------------- diff --git a/external/pyrep/docs/source/index.rst b/external/pyrep/docs/source/index.rst new file mode 100644 index 0000000000000000000000000000000000000000..0a5c3be243462826eb65b24e8ed982b146bca825 --- /dev/null +++ b/external/pyrep/docs/source/index.rst @@ -0,0 +1,24 @@ +.. PyRep documentation master file, created by + sphinx-quickstart on Sun May 12 18:33:59 2019. + You can adapt this file completely to your liking, but it should at least + contain the root `toctree` directive. + +Welcome to PyRep's documentation! +================================= + +PyRep is a toolkit for robot learning research, built on top of the virtual robotics experimentation platform (V-REP). + +See the `Github page `_ for install instructions and examples. + +.. toctree:: + :maxdepth: 4 + :caption: Contents: + + pyrep + +Indices and tables +================== + +* :ref:`genindex` +* :ref:`modindex` +* :ref:`search` diff --git a/external/pyrep/docs/source/modules.rst b/external/pyrep/docs/source/modules.rst new file mode 100644 index 0000000000000000000000000000000000000000..a04c93ec0933cfa52319c370778c8c5c88f2e5ee --- /dev/null +++ b/external/pyrep/docs/source/modules.rst @@ -0,0 +1,7 @@ +pyrep +===== + +.. toctree:: + :maxdepth: 4 + + pyrep diff --git a/external/pyrep/docs/source/pyrep.objects.rst b/external/pyrep/docs/source/pyrep.objects.rst new file mode 100644 index 0000000000000000000000000000000000000000..69b35e86a1d5375e399aee63069cb76cae40b227 --- /dev/null +++ b/external/pyrep/docs/source/pyrep.objects.rst @@ -0,0 +1,78 @@ +pyrep.objects package +===================== + +Submodules +---------- + +pyrep.objects.cartesian\_path module +------------------------------------ + +.. automodule:: pyrep.objects.cartesian_path + :members: + :undoc-members: + :show-inheritance: + +pyrep.objects.dummy module +-------------------------- + +.. automodule:: pyrep.objects.dummy + :members: + :undoc-members: + :show-inheritance: + +pyrep.objects.force\_sensor module +---------------------------------- + +.. automodule:: pyrep.objects.force_sensor + :members: + :undoc-members: + :show-inheritance: + +pyrep.objects.joint module +-------------------------- + +.. automodule:: pyrep.objects.joint + :members: + :undoc-members: + :show-inheritance: + +pyrep.objects.object module +--------------------------- + +.. automodule:: pyrep.objects.object + :members: + :undoc-members: + :show-inheritance: + +pyrep.objects.proximity\_sensor module +-------------------------------------- + +.. automodule:: pyrep.objects.proximity_sensor + :members: + :undoc-members: + :show-inheritance: + +pyrep.objects.shape module +-------------------------- + +.. automodule:: pyrep.objects.shape + :members: + :undoc-members: + :show-inheritance: + +pyrep.objects.vision\_sensor module +----------------------------------- + +.. automodule:: pyrep.objects.vision_sensor + :members: + :undoc-members: + :show-inheritance: + + +Module contents +--------------- + +.. automodule:: pyrep.objects + :members: + :undoc-members: + :show-inheritance: diff --git a/external/pyrep/docs/source/pyrep.robots.arms.rst b/external/pyrep/docs/source/pyrep.robots.arms.rst new file mode 100644 index 0000000000000000000000000000000000000000..6fcaba32a9bb71e6c26824ab3379f3e859166bbc --- /dev/null +++ b/external/pyrep/docs/source/pyrep.robots.arms.rst @@ -0,0 +1,46 @@ +pyrep.robots.arms package +========================= + +Submodules +---------- + +pyrep.robots.arms.arm module +---------------------------- + +.. automodule:: pyrep.robots.arms.arm + :members: + :undoc-members: + :show-inheritance: + +pyrep.robots.arms.configuration\_path module +-------------------------------------------- + +.. automodule:: pyrep.robots.arms.configuration_path + :members: + :undoc-members: + :show-inheritance: + +pyrep.robots.arms.mico module +----------------------------- + +.. automodule:: pyrep.robots.arms.mico + :members: + :undoc-members: + :show-inheritance: + +pyrep.robots.arms.panda module +------------------------------ + +.. automodule:: pyrep.robots.arms.panda + :members: + :undoc-members: + :show-inheritance: + + +Module contents +--------------- + +.. automodule:: pyrep.robots.arms + :members: + :undoc-members: + :show-inheritance: diff --git a/external/pyrep/docs/source/pyrep.robots.end_effectors.rst b/external/pyrep/docs/source/pyrep.robots.end_effectors.rst new file mode 100644 index 0000000000000000000000000000000000000000..a568096421eafdb7b11e176e68582918fe32df99 --- /dev/null +++ b/external/pyrep/docs/source/pyrep.robots.end_effectors.rst @@ -0,0 +1,38 @@ +pyrep.robots.end\_effectors package +=================================== + +Submodules +---------- + +pyrep.robots.end\_effectors.gripper module +------------------------------------------ + +.. automodule:: pyrep.robots.end_effectors.gripper + :members: + :undoc-members: + :show-inheritance: + +pyrep.robots.end\_effectors.mico\_gripper module +------------------------------------------------ + +.. automodule:: pyrep.robots.end_effectors.mico_gripper + :members: + :undoc-members: + :show-inheritance: + +pyrep.robots.end\_effectors.panda\_gripper module +------------------------------------------------- + +.. automodule:: pyrep.robots.end_effectors.panda_gripper + :members: + :undoc-members: + :show-inheritance: + + +Module contents +--------------- + +.. automodule:: pyrep.robots.end_effectors + :members: + :undoc-members: + :show-inheritance: diff --git a/external/pyrep/docs/source/pyrep.robots.rst b/external/pyrep/docs/source/pyrep.robots.rst new file mode 100644 index 0000000000000000000000000000000000000000..99b4f67c11ec45bd987fee4c4a225ad00610d738 --- /dev/null +++ b/external/pyrep/docs/source/pyrep.robots.rst @@ -0,0 +1,30 @@ +pyrep.robots package +==================== + +Subpackages +----------- + +.. toctree:: + + pyrep.robots.arms + pyrep.robots.end_effectors + +Submodules +---------- + +pyrep.robots.robot\_component module +------------------------------------ + +.. automodule:: pyrep.robots.robot_component + :members: + :undoc-members: + :show-inheritance: + + +Module contents +--------------- + +.. automodule:: pyrep.robots + :members: + :undoc-members: + :show-inheritance: diff --git a/external/pyrep/docs/source/pyrep.rst b/external/pyrep/docs/source/pyrep.rst new file mode 100644 index 0000000000000000000000000000000000000000..00c2ec36bf74a98de2064ff3ad200d311d7322f5 --- /dev/null +++ b/external/pyrep/docs/source/pyrep.rst @@ -0,0 +1,47 @@ +pyrep package +============= + +Subpackages +----------- + +.. toctree:: + + pyrep.backend + pyrep.objects + pyrep.robots + +Submodules +---------- + +pyrep.const module +------------------ + +.. automodule:: pyrep.const + :members: + :undoc-members: + :show-inheritance: + +pyrep.errors module +------------------- + +.. automodule:: pyrep.errors + :members: + :undoc-members: + :show-inheritance: + +pyrep.pyrep module +------------------ + +.. automodule:: pyrep.pyrep + :members: + :undoc-members: + :show-inheritance: + + +Module contents +--------------- + +.. automodule:: pyrep + :members: + :undoc-members: + :show-inheritance: diff --git a/external/pyrep/docs/source/pyrep.textures.rst b/external/pyrep/docs/source/pyrep.textures.rst new file mode 100644 index 0000000000000000000000000000000000000000..d7d239566b81f4226cfb80655ae6254480a78970 --- /dev/null +++ b/external/pyrep/docs/source/pyrep.textures.rst @@ -0,0 +1,22 @@ +pyrep.objects package +===================== + +Submodules +---------- + +pyrep.textures.texture module +------------------------------------ + +.. automodule:: pyrep.textures.texture + :members: + :undoc-members: + :show-inheritance: + + +Module contents +--------------- + +.. automodule:: pyrep.textures + :members: + :undoc-members: + :show-inheritance: diff --git a/external/pyrep/examples/example_baxter_pick_and_pass.py b/external/pyrep/examples/example_baxter_pick_and_pass.py new file mode 100644 index 0000000000000000000000000000000000000000..b9578744c8e6180964e894f5136404fb89a5f819 --- /dev/null +++ b/external/pyrep/examples/example_baxter_pick_and_pass.py @@ -0,0 +1,115 @@ +""" +A baxter picks up a cup with its left arm and then passes it to its right arm. +This script contains examples of: + - Path planning (linear and non-linear). + - Using multiple arms. + - Using a gripper. +""" +from os.path import dirname, join, abspath +from pyrep import PyRep +from pyrep.robots.arms.baxter import BaxterLeft, BaxterRight +from pyrep.robots.end_effectors.baxter_gripper import BaxterGripper +from pyrep.objects.dummy import Dummy +from pyrep.objects.shape import Shape + +SCENE_FILE = join(dirname(abspath(__file__)), 'scene_baxter_pick_and_pass.ttt') +pr = PyRep() + +pr.launch(SCENE_FILE, headless=False) +pr.start() + +baxter_left = BaxterLeft() +baxter_right = BaxterRight() +baxter_gripper_left = BaxterGripper(0) +baxter_gripper_right = BaxterGripper(1) + +cup = Shape('Cup') +waypoints = [Dummy('waypoint%d' % i) for i in range(7)] + +print('Planning path for left arm to cup ...') +path = baxter_left.get_path(position=waypoints[0].get_position(), + quaternion=waypoints[0].get_quaternion()) +path.visualize() # Let's see what the path looks like +print('Executing plan ...') +done = False +while not done: + done = path.step() + pr.step() +path.clear_visualization() + +print('Planning path closer to cup ...') +path = baxter_left.get_path(position=waypoints[1].get_position(), + quaternion=waypoints[1].get_quaternion()) +print('Executing plan ...') +done = False +while not done: + done = path.step() + pr.step() + +print('Closing left gripper ...') +while not baxter_gripper_left.actuate(0.0, 0.4): + pr.step() +baxter_gripper_left.grasp(cup) + +print('Planning path to lift cup ...') +path = baxter_left.get_path(position=waypoints[2].get_position(), + quaternion=waypoints[2].get_quaternion(), + ignore_collisions=True) +print('Executing plan ...') +done = False +while not done: + done = path.step() + pr.step() + +print('Planning path for right arm to cup ...') +path = baxter_right.get_path(position=waypoints[3].get_position(), + quaternion=waypoints[3].get_quaternion()) +print('Executing Plan ...') +done = False +while not done: + done = path.step() + pr.step() + +print('Planning path closer to cup ...') +path = baxter_right.get_path(position=waypoints[4].get_position(), + quaternion=waypoints[4].get_quaternion()) +print('Executing plan ...') +done = False +while not done: + done = path.step() + pr.step() + +print('Closing right gripper ...') +while not baxter_gripper_right.actuate(0.0, 0.4): + pr.step() + +print('Opening left gripper ...') +while not baxter_gripper_left.actuate(1.0, 0.4): + pr.step() + +# Left gripper releases, right gripper grasps. +baxter_gripper_left.release() +baxter_gripper_right.grasp(cup) +pr.step() + +print('Planning path for left arm to home position ...') +path_l = baxter_left.get_path(position=waypoints[5].get_position(), + quaternion=waypoints[5].get_quaternion()) + +print('Planning path for right arm to home position ...') +path_r = baxter_right.get_path(position=waypoints[6].get_position(), + quaternion=waypoints[6].get_quaternion()) + +print('Executing plan on both arms ...') +done_l = done_r = False +while not done_l or not done_r: + if not done_l: + done_l = path_l.step() + if not done_r: + done_r = path_r.step() + pr.step() + +print('Done ...') +input('Press enter to finish ...') +pr.stop() +pr.shutdown() diff --git a/external/pyrep/examples/example_locobot_stack_cube.py b/external/pyrep/examples/example_locobot_stack_cube.py new file mode 100644 index 0000000000000000000000000000000000000000..3a849b5f36cede3483e452111ab66065ccca8eab --- /dev/null +++ b/external/pyrep/examples/example_locobot_stack_cube.py @@ -0,0 +1,96 @@ +""" +Facebook/CMU LoCoBot drives to a cube, picks it up, and takes it to a target. +This script contains examples of: + - Linear mobile paths on a non-holonomic platform + - How to use the combination of a mobile base, manipulator, and gripper. +""" +from os.path import dirname, join, abspath +from pyrep import PyRep +from pyrep.robots.mobiles.locobot import LoCoBot +from pyrep.robots.arms.locobot_arm import LoCoBotArm +from pyrep.robots.end_effectors.locobot_gripper import LoCoBotGripper +from pyrep.objects.shape import Shape +from pyrep.objects.dummy import Dummy + +SCENE_FILE = join(dirname(abspath(__file__)), 'scene_locobot_stack_cube.ttt') +pr = PyRep() +pr.launch(SCENE_FILE, headless=False) +pr.start() + +base = LoCoBot() +arm = LoCoBotArm() +gripper = LoCoBotGripper() + +base.set_motor_locked_at_zero_velocity(True) + + +def drive_to_position(position, orientation): + base_path = base.get_linear_path(position, orientation) + base_path.visualize() + done = False + while not done: + done = base_path.step() + pr.step() + pr.step() + + +def move_arm(position, quaternion, ignore_collisions=False): + arm_path = arm.get_path(position, + quaternion=quaternion, + ignore_collisions=ignore_collisions) + arm_path.visualize() + done = False + while not done: + done = arm_path.step() + pr.step() + arm_path.clear_visualization() + + +cuboid = Shape('cuboid') +goal = Shape('goal') +grasp_point = Dummy('grasp_point') + +drive_pos = cuboid.get_position() +drive_pos[1] -= 0.3 + +print('Driving to cube ...') +drive_to_position(drive_pos, 0) + +grasp_point_raised = grasp_point.get_position() +grasp_point_raised[2] += 0.075 + +print('Move arm above cube ...') +move_arm(grasp_point_raised, grasp_point.get_quaternion()) + +print('Arm approach cube ...') +move_arm(grasp_point.get_position(), grasp_point.get_quaternion(), True) + +print('Closing gripper ...') +while not gripper.actuate(0.0, 0.4): + pr.step() +gripper.grasp(cuboid) + +print('Lift cube ...') +move_arm(grasp_point_raised, grasp_point.get_quaternion(), True) + +drive_pos = goal.get_position() +drive_pos[1] -= 0.35 + +print('Driving to goal ...') +drive_to_position(drive_pos, 0) + +goal_point_raised = goal.get_position() +goal_point_raised[2] += 0.05 + +print('Move arm above goal ...') +move_arm(goal_point_raised, grasp_point.get_quaternion()) + +print('Drop cube ...') +gripper.release() +while not gripper.actuate(1.0, 0.4): + pr.step() + +print('Done!') + +pr.stop() +pr.shutdown() diff --git a/external/pyrep/examples/example_panda_end_effector_control.py b/external/pyrep/examples/example_panda_end_effector_control.py new file mode 100644 index 0000000000000000000000000000000000000000..52961af25e0163c5484e3dcf9f9b4e5e5fa8f7eb --- /dev/null +++ b/external/pyrep/examples/example_panda_end_effector_control.py @@ -0,0 +1,35 @@ +""" +A Franka Panda moves using delta end effector pose control. +This script contains examples of: + - IK calculations. + - Joint movement by setting joint target positions. +""" +from os.path import dirname, join, abspath +from pyrep import PyRep +from pyrep.robots.arms.panda import Panda + +SCENE_FILE = join(dirname(abspath(__file__)), 'scene_panda_reach_target.ttt') +DELTA = 0.01 +pr = PyRep() +pr.launch(SCENE_FILE, headless=False) +pr.start() +agent = Panda() + +starting_joint_positions = agent.get_joint_positions() +pos, quat = agent.get_tip().get_position(), agent.get_tip().get_quaternion() + + +def move(index, delta): + pos[index] += delta + new_joint_angles = agent.solve_ik_via_jacobian(pos, quaternion=quat) + agent.set_joint_target_positions(new_joint_angles) + pr.step() + + +[move(2, -DELTA) for _ in range(20)] +[move(1, -DELTA) for _ in range(20)] +[move(2, DELTA) for _ in range(10)] +[move(1, DELTA) for _ in range(20)] + +pr.stop() +pr.shutdown() diff --git a/external/pyrep/examples/example_panda_ik.py b/external/pyrep/examples/example_panda_ik.py new file mode 100644 index 0000000000000000000000000000000000000000..2abb0b0b164a62e4fe2d26b67424ee021ff1eeb4 --- /dev/null +++ b/external/pyrep/examples/example_panda_ik.py @@ -0,0 +1,41 @@ +""" +A Franka Panda inverse kinematics example +This script contains examples of: + - IK calculations. +""" +from os.path import dirname, join, abspath +from pyrep import PyRep +from pyrep.errors import IKError +from pyrep.robots.arms.panda import Panda + +SCENE_FILE = join(dirname(abspath(__file__)), 'scene_panda_reach_target.ttt') +pr = PyRep() +pr.launch(SCENE_FILE, headless=False, responsive_ui=True) +pr.start() +agent = Panda() + +starting_joint_positions = agent.get_joint_positions() +(x, y, z), q = agent.get_tip().get_position(), agent.get_tip().get_quaternion() + +# Try solving via linearisation +new_joint_pos = agent.solve_ik_via_jacobian([x, y, z - 0.01], quaternion=q) +new_joint_pos = agent.solve_ik_via_jacobian([x, y, z - 0.05], quaternion=q) +new_joint_pos = agent.solve_ik_via_jacobian([x, y, z - 0.1], quaternion=q) +new_joint_pos = agent.solve_ik_via_jacobian([x, y, z - 0.2], quaternion=q) + +# This will fail because the distance between start and goal is too far +try: + new_joint_pos = agent.solve_ik_via_jacobian([x, y, z - 0.4], quaternion=q) +except IKError: + # So let's swap to an alternative IK method... + # This returns 'max_configs' number of joint positions + input('Press key to run solve_ik_via_sampling...') + new_joint_pos = agent.solve_ik_via_sampling([x, y, z - 0.4], quaternion=q)[0] + +# Because the arm is in Forxe/Torque mode, we need to temporarily disable +# dynamics in order to instantaneously move joints. +agent.set_joint_positions(new_joint_pos, disable_dynamics=True) +input('Press any key to finish...') + +pr.stop() +pr.shutdown() diff --git a/external/pyrep/examples/example_panda_reach_target.py b/external/pyrep/examples/example_panda_reach_target.py new file mode 100644 index 0000000000000000000000000000000000000000..4436a60f9199c1882260e73818d14d528c5c2917 --- /dev/null +++ b/external/pyrep/examples/example_panda_reach_target.py @@ -0,0 +1,59 @@ +""" +A Franka Panda reaches for 10 randomly places targets. +This script contains examples of: + - Linear (IK) paths. + - Scene manipulation (creating an object and moving it). +""" +from os.path import dirname, join, abspath +from pyrep import PyRep +from pyrep.robots.arms.panda import Panda +from pyrep.objects.shape import Shape +from pyrep.const import PrimitiveShape +from pyrep.errors import ConfigurationPathError +import numpy as np +import math + +LOOPS = 10 +SCENE_FILE = join(dirname(abspath(__file__)), 'scene_panda_reach_target.ttt') +pr = PyRep() +pr.launch(SCENE_FILE, headless=False) +pr.start() +agent = Panda() + +# We could have made this target in the scene, but lets create one dynamically +target = Shape.create(type=PrimitiveShape.SPHERE, + size=[0.05, 0.05, 0.05], + color=[1.0, 0.1, 0.1], + static=True, respondable=False) + +position_min, position_max = [0.8, -0.2, 1.0], [1.0, 0.2, 1.4] + +starting_joint_positions = agent.get_joint_positions() + +for i in range(LOOPS): + + # Reset the arm at the start of each 'episode' + agent.set_joint_positions(starting_joint_positions) + + # Get a random position within a cuboid and set the target position + pos = list(np.random.uniform(position_min, position_max)) + target.set_position(pos) + + # Get a path to the target (rotate so z points down) + try: + path = agent.get_path( + position=pos, euler=[0, math.radians(180), 0]) + except ConfigurationPathError as e: + print('Could not find path') + continue + + # Step the simulation and advance the agent along the path + done = False + while not done: + done = path.step() + pr.step() + + print('Reached target %d!' % i) + +pr.stop() +pr.shutdown() diff --git a/external/pyrep/examples/example_reinforcement_learning_env.py b/external/pyrep/examples/example_reinforcement_learning_env.py new file mode 100644 index 0000000000000000000000000000000000000000..92ae4978f2d9538002c6050238c20ca7b69bbb4a --- /dev/null +++ b/external/pyrep/examples/example_reinforcement_learning_env.py @@ -0,0 +1,90 @@ +""" +An example of how one might use PyRep to create their RL environments. +In this case, the Franka Panda must reach a randomly placed target. +This script contains examples of: + - RL environment example. + - Scene manipulation. + - Environment resets. + - Setting joint properties (control loop disabled, motor locked at 0 vel) +""" +from os.path import dirname, join, abspath +from pyrep import PyRep +from pyrep.robots.arms.panda import Panda +from pyrep.objects.shape import Shape +import numpy as np + +SCENE_FILE = join(dirname(abspath(__file__)), + 'scene_reinforcement_learning_env.ttt') +POS_MIN, POS_MAX = [0.8, -0.2, 1.0], [1.0, 0.2, 1.4] +EPISODES = 5 +EPISODE_LENGTH = 200 + + +class ReacherEnv(object): + + def __init__(self): + self.pr = PyRep() + self.pr.launch(SCENE_FILE, headless=False) + self.pr.start() + self.agent = Panda() + self.agent.set_control_loop_enabled(False) + self.agent.set_motor_locked_at_zero_velocity(True) + self.target = Shape('target') + self.agent_ee_tip = self.agent.get_tip() + self.initial_joint_positions = self.agent.get_joint_positions() + + def _get_state(self): + # Return state containing arm joint angles/velocities & target position + return np.concatenate([self.agent.get_joint_positions(), + self.agent.get_joint_velocities(), + self.target.get_position()]) + + def reset(self): + # Get a random position within a cuboid and set the target position + pos = list(np.random.uniform(POS_MIN, POS_MAX)) + self.target.set_position(pos) + self.agent.set_joint_positions(self.initial_joint_positions) + return self._get_state() + + def step(self, action): + self.agent.set_joint_target_velocities(action) # Execute action on arm + self.pr.step() # Step the physics simulation + ax, ay, az = self.agent_ee_tip.get_position() + tx, ty, tz = self.target.get_position() + # Reward is negative distance to target + reward = -np.sqrt((ax - tx) ** 2 + (ay - ty) ** 2 + (az - tz) ** 2) + return reward, self._get_state() + + def shutdown(self): + self.pr.stop() + self.pr.shutdown() + + +class Agent(object): + + def act(self, state): + del state + return list(np.random.uniform(-1.0, 1.0, size=(7,))) + + def learn(self, replay_buffer): + del replay_buffer + pass + + +env = ReacherEnv() +agent = Agent() +replay_buffer = [] + +for e in range(EPISODES): + + print('Starting episode %d' % e) + state = env.reset() + for i in range(EPISODE_LENGTH): + action = agent.act(state) + reward, next_state = env.step(action) + replay_buffer.append((state, action, reward, next_state)) + state = next_state + agent.learn(replay_buffer) + +print('Done!') +env.shutdown() diff --git a/external/pyrep/examples/example_turtlebot_navigation.py b/external/pyrep/examples/example_turtlebot_navigation.py new file mode 100644 index 0000000000000000000000000000000000000000..f5755711551a30dac876ebfb9d71c981c27a59a9 --- /dev/null +++ b/external/pyrep/examples/example_turtlebot_navigation.py @@ -0,0 +1,53 @@ +""" +A turtlebot reaches for 4 randomly places targets. +This script contains examples of: + - Non-linear mobile paths to reach a target with collision avoidance +""" +from os.path import dirname, join, abspath +from pyrep import PyRep +from pyrep.robots.mobiles.turtlebot import TurtleBot +from pyrep.objects.shape import Shape +from pyrep.const import PrimitiveShape +import numpy as np + +LOOPS = 4 +SCENE_FILE = join(dirname(abspath(__file__)), 'scene_turtlebot_navigation.ttt') +pr = PyRep() +pr.launch(SCENE_FILE, headless=False) +pr.start() +agent = TurtleBot() + +# We could have made this target in the scene, but lets create one dynamically +target = Shape.create(type=PrimitiveShape.SPHERE, + size=[0.05, 0.05, 0.05], + color=[1.0, 0.1, 0.1], + static=True, respondable=False) + +position_min, position_max = [-0.5, 1, 0.1], [0.5, 1.5, 0.1] + +starting_pose = agent.get_2d_pose() + +agent.set_motor_locked_at_zero_velocity(True) + +for i in range(LOOPS): + agent.set_2d_pose(starting_pose) + + # Get a random position within a cuboid and set the target position + pos = list(np.random.uniform(position_min, position_max)) + target.set_position(pos) + + path = agent.get_nonlinear_path(position=pos, angle=0) + + path.visualize() + done = False + + while not done: + done = path.step() + pr.step() + + path.clear_visualization() + + print('Reached target %d!' % i) + +pr.stop() +pr.shutdown() diff --git a/external/pyrep/examples/example_youbot_navigation.py b/external/pyrep/examples/example_youbot_navigation.py new file mode 100644 index 0000000000000000000000000000000000000000..0aac66f466b87b11d23cb5e661f665849ebee553 --- /dev/null +++ b/external/pyrep/examples/example_youbot_navigation.py @@ -0,0 +1,51 @@ +""" +A Kuka youBot reaches for 4 randomly places targets. +This script contains examples of: + - Linear mobile paths with an omnidirectional robot to reach a target. +""" +from os.path import dirname, join, abspath +from pyrep import PyRep +from pyrep.robots.mobiles.youbot import YouBot +from pyrep.objects.shape import Shape +from pyrep.const import PrimitiveShape +import numpy as np + +LOOPS = 4 +SCENE_FILE = join(dirname(abspath(__file__)), 'scene_youbot_navigation.ttt') +pr = PyRep() +pr.launch(SCENE_FILE, headless=False) +pr.start() +agent = YouBot() + +# We could have made this target in the scene, but lets create one dynamically +target = Shape.create(type=PrimitiveShape.SPHERE, + size=[0.05, 0.05, 0.05], + color=[1.0, 0.1, 0.1], + static=True, respondable=False) + +position_min, position_max = [-0.5, 1.4, 0.1], [1.0, 0.5, 0.1] + +starting_pose = agent.get_2d_pose() + +for i in range(LOOPS): + agent.set_2d_pose(starting_pose) + + # Get a random position within a cuboid and set the target position + pos = list(np.random.uniform(position_min, position_max)) + target.set_position(pos) + + path = agent.get_linear_path(position=pos, angle=0) + + path.visualize() + + done = False + while not done: + done = path.step() + pr.step() + + path.clear_visualization() + + print('Reached target %d!' % i) + +pr.stop() +pr.shutdown() diff --git a/external/pyrep/pyrep/backend/__init__.py b/external/pyrep/pyrep/backend/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/external/pyrep/pyrep/backend/sim.py b/external/pyrep/pyrep/backend/sim.py new file mode 100644 index 0000000000000000000000000000000000000000..ee720eece3a014a172b950e22bad3be4b1ae395c --- /dev/null +++ b/external/pyrep/pyrep/backend/sim.py @@ -0,0 +1,1500 @@ +from .simConst import * +from ._sim_cffi import ffi, lib +import numpy as np +import collections + + +SShapeVizInfo = collections.namedtuple( + 'SShapeVizInfo', + [ + 'vertices', + 'indices', + 'normals', + 'shadingAngle', + 'colors', + 'texture', + 'textureId', + 'textureRes', + 'textureCoords', + 'textureApplyMode', + 'textureOptions', + ], +) + + +def _check_return(ret): + if ret < 0: + raise RuntimeError( + 'The call failed on the V-REP side. Return value: %d' % ret) + + +def _check_null_return(val): + if val == ffi.NULL: + raise RuntimeError( + 'The call failed on the V-REP side by returning null.') + + +def _check_set_object_parameter(ret): + if ret == 0: + raise RuntimeError( + 'Parameter could not be set (e.g. because the parameterID doesn\'t ' + 'exist, or because the specified object doesn\'t correspond to the ' + 'correct type)') + + +def simExtLaunchUIThread(options, scene, pyrep_root): + lib.simExtLaunchUIThread( + 'PyRep'.encode('ascii'), options, scene.encode('ascii'), + pyrep_root.encode('ascii')) + + +def simExtSimThreadInit(): + lib.simExtSimThreadInit() + + +def simExtCanInitSimThread(): + return bool(lib.simExtCanInitSimThread()) + + +def simExtSimThreadDestroy(): + lib.simExtSimThreadDestroy() + + +def simExtPostExitRequest(): + lib.simExtPostExitRequest() + + +def simExtGetExitRequest(): + return bool(lib.simExtGetExitRequest()) + + +def simExtStep(stepIfRunning=True): + lib.simExtStep(stepIfRunning) + + +def simStartSimulation(): + lib.simStartSimulation() + + +def simStopSimulation(): + lib.simStopSimulation() + + +def simPauseSimulation(): + return lib.simPauseSimulation() + + +def simQuitSimulator(doNotDisplayMessages): + lib.simQuitSimulator(doNotDisplayMessages) + + +def hasObjectHandle(objectName): + handle = lib.simGetObjectHandle(objectName.encode('ascii')) + if handle: + return handle >= 0 + return False + +def simGetObjectHandle(objectName): + handle = lib.simGetObjectHandle(objectName.encode('ascii')) + if handle < 0: + raise RuntimeError('Handle %s does not exist.' % objectName) + return handle + + +def simGetIkGroupHandle(ikGroupName): + handle = lib.simGetIkGroupHandle(ikGroupName.encode('ascii')) + if handle <= 0: + raise RuntimeError('Ik group does not exist.') + return handle + + +def simSetIkElementProperties(ikGroupHandle, tipDummyHandle, constraints, + precision=None, weight=None): + if precision is None: + precision = ffi.NULL + if weight is None: + weight = ffi.NULL + reserved = ffi.NULL + ret = lib.simSetIkElementProperties( + ikGroupHandle, tipDummyHandle, constraints, precision, weight, reserved) + _check_return(ret) + return ret + + +def simSetIkGroupProperties(ikGroupHandle, resolutionMethod, maxIterations, damping): + reserved = ffi.NULL + ret = lib.simSetIkGroupProperties( + ikGroupHandle, resolutionMethod, maxIterations, damping, reserved) + _check_return(ret) + return ret + + +def simGetObjectPosition(objectHandle, relativeToObjectHandle): + position = ffi.new('float[3]') + lib.simGetObjectPosition(objectHandle, relativeToObjectHandle, position) + return list(position) + + +def simGetJointPosition(jointHandle): + position = ffi.new('float *') + lib.simGetJointPosition(jointHandle, position) + return position[0] + + +def simSetJointPosition(jointHandle, position): + lib.simSetJointPosition(jointHandle, position) + + +def simGetJointMatrix(jointHandle): + matrix = ffi.new('float[12]') + lib.simGetJointMatrix(jointHandle, matrix) + return list(matrix) + + +def simSetSphericalJointMatrix(jointHandle, matrix): + lib.simSetSphericalJointMatrix(jointHandle, matrix) + + +def simGetJointTargetVelocity(jointHandle): + vel = ffi.new('float *') + lib.simGetJointTargetVelocity(jointHandle, vel) + return vel[0] + + +def simSetJointTargetVelocity(jointHandle, targetVelocity): + lib.simSetJointTargetVelocity(jointHandle, targetVelocity) + + +def simGetJointTargetPosition(jointHandle): + position = ffi.new('float *') + lib.simGetJointTargetPosition(jointHandle, position) + return position[0] + + +def simSetJointTargetPosition(jointHandle, targetPosition): + lib.simSetJointTargetPosition(jointHandle, targetPosition) + + +def simGetJointForce(jointHandle): + force = ffi.new('float *') + ret = lib.simGetJointForce(jointHandle, force) + _check_return(ret) + if ret == 0: + raise RuntimeError('No value available yet.') + return force[0] + + +def simSetJointForce(jointHandle, force): + lib.simSetJointForce(jointHandle, force) + + +def simGetJointMaxForce(jointHandle): + force = ffi.new('float *') + ret = lib.simGetJointMaxForce(jointHandle, force) + _check_return(ret) + if ret == 0: + raise RuntimeError('No value available yet.') + return force[0] + + +def simSetJointMaxForce(jointHandle, force): + lib.simSetJointMaxForce(jointHandle, force) + + +def simGetJointInterval(jointHandle): + cyclic = ffi.new('char *') + interval = ffi.new('float [2]') + ret = lib.simGetJointInterval(jointHandle, cyclic, interval) + _check_return(ret) + return ffi.string(cyclic).decode('utf-8') != '', list(interval) + + +def simSetJointInterval(jointHandle, cyclic, interval): + ret = lib.simSetJointInterval(jointHandle, cyclic, interval) + _check_return(ret) + + +def simCreateForceSensor(options, intParams, floatParams, color): + if color is None: + color = ffi.NULL + handle = lib.simCreateForceSensor(options, intParams, floatParams, color) + _check_return(handle) + return handle + + +def simBreakForceSensor(forceSensorHandle): + lib.simBreakForceSensor(forceSensorHandle) + + +def simReadForceSensor(forceSensorHandle): + forceVector = ffi.new('float[3]') + torqueVector = ffi.new('float[3]') + state = lib.simReadForceSensor(forceSensorHandle, forceVector, torqueVector) + return state, list(forceVector), list(torqueVector) + + +def simReleaseBuffer(pointer): + lib.simReleaseBuffer(pointer) + + +def simCreateVisionSensor(options, intParams, floatParams, color): + if color is None: + color = ffi.NULL + ret = lib.simCreateVisionSensor(options, intParams, floatParams, color) + _check_return(ret) + return ret + + +def simHandleVisionSensor(sensorHandle): + auxValues = ffi.new('float **') + auxValuesCount = ffi.new('int **') + ret = lib.simHandleVisionSensor( + sensorHandle, auxValues, auxValuesCount) + _check_return(ret) + + k1 = 0 + outAuxValues = [] + for i in range(auxValuesCount[0][0]): + k2 = k1 + auxValuesCount[0][i + 1] + outAuxValues.extend([x for x in auxValues[0][k1:k2]]) + + simReleaseBuffer(ffi.cast('char *', auxValues[0])) + simReleaseBuffer(ffi.cast('char *', auxValuesCount[0])) + return ret, outAuxValues + + +def simReadVisionSensor(sensorHandle): + auxValues = ffi.new('float **') + auxValuesCount = ffi.new('int **') + state = lib.simReadVisionSensor(sensorHandle, auxValues, auxValuesCount) + auxValues2 = [] + if state == 0: + s = 0 + for i in range(auxValuesCount[0]): + auxValues2.append(auxValues[s:s+auxValuesCount[i+1]]) + s += auxValuesCount[i+1] + #free C buffers + simReleaseBuffer(auxValues) + simReleaseBuffer(auxValuesCount) + return state, auxValues2 + + +def simGetVisionSensorImage(sensorHandle, resolution): + img_buffer = lib.simGetVisionSensorImage(sensorHandle) + T = ffi.getctype(ffi.typeof(img_buffer).item) # Buffer data type + s = ffi.sizeof(T) # datatype size + np_T = np.dtype('f{:d}'.format(s)) # Numpy equivalent, e.g. float is 'f4' + # Wrap the buffer with numpy. + img = np.frombuffer(ffi.buffer(img_buffer, resolution[0]*resolution[1]*3*s), np_T) + img = img.reshape(resolution[1], resolution[0], 3) + img = np.flip(img, 0).copy() # Image is upside-down + simReleaseBuffer(ffi.cast('char *', img_buffer)) + return img + + +def simGetVisionSensorDepthBuffer(sensorHandle, resolution, in_meters): + if in_meters: + sensorHandle += sim_handleflag_depthbuffermeters + img_buffer = lib.simGetVisionSensorDepthBuffer(sensorHandle) + T = ffi.getctype(ffi.typeof(img_buffer).item) # Buffer data type + s = ffi.sizeof(T) # datatype size + np_T = np.dtype('f{:d}'.format(s)) # Numpy equivalent, e.g. float is 'f4' + # Wrap the buffer with numpy. + img = np.frombuffer(ffi.buffer(img_buffer, resolution[0]*resolution[1]*s), np_T) + img = img.reshape(resolution[1], resolution[0]) + img = np.flip(img, 0).copy() # Image is upside-down + simReleaseBuffer(ffi.cast('char *', img_buffer)) + return img + + +def simGetVisionSensorResolution(sensorHandle): + resolution = ffi.new('int[2]') + ret = lib.simGetVisionSensorResolution(sensorHandle, resolution) + _check_return(ret) + return list(resolution) + + +def simGetObjectChild(parentObjectHandle, childIndex): + val = lib.simGetObjectChild(parentObjectHandle, childIndex) + _check_return(val) + return val + + +def simGetObjectParent(childObjectHandle): + val = lib.simGetObjectParent(childObjectHandle) + _check_return(val) + return val + + +def simReadProximitySensor(sensorHandle): + detectedPoint = ffi.new('float[3]') + detectedObjectHandle = ffi.new('int *') + detectedSurfaceNormalVector = ffi.new('float[3]') + state = lib.simReadProximitySensor( + sensorHandle, detectedPoint, detectedObjectHandle, + detectedSurfaceNormalVector) + _check_return(state) + return (state, detectedObjectHandle, list(detectedPoint), + list(detectedSurfaceNormalVector)) + + +def simCheckProximitySensor(sensorHandle, entityHandle): + detectedPoint = ffi.new('float[3]') + state = lib.simCheckProximitySensor( + sensorHandle, entityHandle, detectedPoint) + _check_return(state) + return state, list(detectedPoint) + + +def simLoadModel(modelPathAndName): + val = lib.simLoadModel(modelPathAndName.encode('ascii')) + _check_return(val) + return val + + +def simLoadScene(scenePathAndName): + val = lib.simLoadScene(scenePathAndName.encode('ascii')) + _check_return(val) + return val + + +def simSaveModel(modelHandle, modelPathAndName): + val = lib.simSaveModel(modelHandle, modelPathAndName.encode('ascii')) + _check_return(val) + return val + + +def simSaveScene(filename): + val = lib.simSaveScene(filename.encode('ascii')) + _check_return(val) + return val + + +def simGetObjectName(objectHandle): + name_raw = lib.simGetObjectName(objectHandle) + if name_raw == ffi.NULL: + return '' + name = ffi.string(name_raw).decode('utf-8') + simReleaseBuffer(name_raw) + return name + + +def simSetObjectName(objectHandle, name): + ret = lib.simSetObjectName(objectHandle, name.encode('ascii')) + _check_return(ret) + + +def simAddStatusbarMessage(message): + return lib.simAddStatusbarMessage(message.encode('ascii')) + + +def simGetObjectOrientation(objectHandle, relativeToObjectHandle): + eulerAngles = ffi.new('float[3]') + ret = lib.simGetObjectOrientation( + objectHandle, relativeToObjectHandle, eulerAngles) + _check_return(ret) + return list(eulerAngles) + + +def simGetObjectQuaternion(objectHandle, relativeToObjectHandle): + quaternion = ffi.new('float[4]') + ret = lib.simGetObjectQuaternion( + objectHandle, relativeToObjectHandle, quaternion) + _check_return(ret) + return list(quaternion) + + +def simSetObjectOrientation(objectHandle, relativeToObjectHandle, eulerAngles): + ret = lib.simSetObjectOrientation( + objectHandle, relativeToObjectHandle, eulerAngles) + _check_return(ret) + + +def simSetObjectQuaternion(objectHandle, relativeToObjectHandle, quaternion): + ret = lib.simSetObjectQuaternion( + objectHandle, relativeToObjectHandle, quaternion) + _check_return(ret) + + +def simSetObjectPosition(objectHandle, relativeToObjectHandle, position): + ret = lib.simSetObjectPosition( + objectHandle, relativeToObjectHandle, position) + _check_return(ret) + + +def simSetObjectParent(objectHandle, parentObject, keepInPlace): + ret = lib.simSetObjectParent(objectHandle, parentObject, keepInPlace) + _check_return(ret) + + +def simGetArrayParameter(paramIdentifier): + paramValues = ffi.new('float[3]') + ret = lib.simGetArrayParameter(paramIdentifier, paramValues) + _check_return(ret) + return list(paramValues) + + +def simSetArrayParameter(paramIdentifier, paramValues): + ret = lib.simSetArrayParameter(paramIdentifier, paramValues) + _check_return(ret) + + +def simGetBoolParameter(parameter): + ret = lib.simGetBoolParameter(parameter) + _check_return(ret) + return ret + + +def simSetBoolParameter(parameter, value): + ret = lib.simSetBoolParameter(parameter, value) + _check_return(ret) + + +def simGetInt32Parameter(parameter): + ret = lib.simGetInt32Parameter(parameter) + _check_return(ret) + return ret + + +def simSetInt32Parameter(parameter, value): + ret = lib.simSetInt32Parameter(parameter, value) + _check_return(ret) + + +def simGetFloatParameter(parameter): + ret = lib.simGetFloatParameter(parameter) + _check_return(ret) + return ret + + +def simSetFloatParameter(parameter, value): + ret = lib.simSetFloatParameter(parameter, value) + _check_return(ret) + + +def simSetStringParameter(parameter, value): + ret = lib.simSetStringParameter(parameter, value.encode('ascii')) + _check_return(ret) + + +def simGetStringParameter(parameter): + val = lib.simGetStringParameter(parameter) + _check_null_return(val) + sval = ffi.string(val).decode('utf-8') + simReleaseBuffer(val) + return sval + + +def simGetEngineFloatParameter(parameter, objectHandle): + ok = ffi.new('unsigned char *') + ret = lib.simGetEngineFloatParameter(parameter, objectHandle, ffi.NULL, ok) + _check_return(ret) + return ret + + +def simSetEngineFloatParameter(parameter, objectHandle, val): + ret = lib.simSetEngineFloatParameter(parameter, objectHandle, ffi.NULL, + val) + _check_return(ret) + return ret + + +def simGetCollisionHandle(collisionObjectName): + ret = lib.simGetCollisionHandle(collisionObjectName.encode('ascii')) + _check_return(ret) + return ret + + +def simGetCollectionHandle(collectionName): + ret = lib.simGetCollectionHandle(collectionName.encode('ascii')) + _check_return(ret) + return ret + + +def simGetDistanceHandle(distanceObjectName): + ret = lib.simGetDistanceHandle(distanceObjectName.encode('ascii')) + _check_return(ret) + return ret + + +def simReadCollision(collisionObjectHandle): + ret = lib.simReadCollision(collisionObjectHandle) + _check_return(ret) + return ret + + +def simReadDistance(distanceObjectHandle): + minimumDistance = ffi.new('float *') + ret = lib.simReadDistance(distanceObjectHandle, minimumDistance) + _check_return(ret) + return minimumDistance[0] + + +def simHandleDistance(distanceObjectHandle): + minimumDistance = ffi.new('float *') + ret = lib.simHandleDistance(distanceObjectHandle, minimumDistance) + _check_return(ret) + return ret + + +def simRemoveObject(objectHandle): + ret = lib.simRemoveObject(objectHandle) + _check_return(ret) + + +def simRemoveModel(objectHandle): + ret = lib.simRemoveModel(objectHandle) + _check_return(ret) + + +def simCloseScene(): + ret = lib.simCloseScene() + _check_return(ret) + + +def simGetObjects(objectType): + prev_handle = 0 + i = 0 + handles = [] + while prev_handle != -1: + prev_handle = lib.simGetObjects(i, objectType) + i += 1 + if prev_handle > -1: + handles.append(prev_handle) + return handles + + +def simSetObjectInt32Parameter(objectHandle, parameter, value): + ret = lib.simSetObjectInt32Parameter(objectHandle, parameter, value) + _check_set_object_parameter(ret) + _check_return(ret) + + +def simGetObjectInt32Parameter(objectHandle, parameter): + value = ffi.new('int *') + ret = lib.simGetObjectInt32Parameter(objectHandle, parameter, value) + _check_set_object_parameter(ret) + _check_return(ret) + return value[0] + + +def simSetObjectFloatParameter(objectHandle, parameter, value): + ret = lib.simSetObjectFloatParameter(objectHandle, parameter, value) + _check_set_object_parameter(ret) + _check_return(ret) + + +def simGetObjectFloatParameter(objectHandle, parameter): + value = ffi.new('float *') + ret = lib.simGetObjectFloatParameter(objectHandle, parameter, value) + _check_set_object_parameter(ret) + _check_return(ret) + return value[0] + + +def simGetModelProperty(objectHandle): + ret = lib.simGetModelProperty(objectHandle) + _check_return(ret) + return ret + + +def simSetModelProperty(objectHandle, prop): + ret = lib.simSetModelProperty(objectHandle, prop) + _check_return(ret) + + +def simGetObjectSpecialProperty(objectHandle): + ret = lib.simGetObjectSpecialProperty(objectHandle) + _check_return(ret) + return ret + + +def simSetObjectSpecialProperty(objectHandle, prop): + ret = lib.simSetObjectSpecialProperty(objectHandle, prop) + _check_return(ret) + + +def simCreateDummy(size, color): + if color is None: + color = ffi.NULL + ret = lib.simCreateDummy(size, color) + _check_return(ret) + return ret + + +def simGetObjectVelocity(objectHandle): + linearVel = ffi.new('float[3]') + angularVel = ffi.new('float[3]') + ret = lib.simGetObjectVelocity(objectHandle, linearVel, angularVel) + _check_return(ret) + return list(linearVel), list(angularVel) + + +def simCreateStack(): + ret = lib.simCreateStack() + _check_return(ret) + return ret + + +def simReleaseStack(stackHandle): + ret = lib.simReleaseStack(stackHandle) + _check_return(ret) + + +def simPushInt32OntoStack(stackHandle, value): + ret = lib.simPushInt32OntoStack(stackHandle, value) + _check_return(ret) + + +def simGetStackInt32Value(stackHandle): + value = ffi.new('int *') + ret = lib.simGetStackInt32Value(stackHandle, value) + _check_return(ret) + return value[0] + + +def simPushFloatOntoStack(stackHandle, value): + ret = lib.simPushFloatOntoStack(stackHandle, value) + _check_return(ret) + + +def simGetStackFloatValue(stackHandle): + value = ffi.new('float *') + ret = lib.simGetStackFloatValue(stackHandle, value) + _check_return(ret) + return value[0] + + +def simPushStringOntoStack(stackHandle, value): + ret = lib.simPushStringOntoStack(stackHandle, value.encode('ascii'), 0) + _check_return(ret) + + +def simGetStackStringValue(stackHandle): + val = lib.simGetStackFloatValue(stackHandle, ffi.NULL) + _check_null_return(val) + sval = ffi.string(val).decode('utf-8') + simReleaseBuffer(val) + return sval + + +def simExtCallScriptFunction(functionNameAtScriptName, scriptHandleOrType, + inputInts, inputFloats, inputStrings, inputBuffer): + char_pointers = [] + for s in inputStrings: + char_pointers.append(ffi.new('char[]', s.encode('ascii'))) + strIn = ffi.new('char *[]', char_pointers) + outInt = ffi.new('int **') + outIntCnt = ffi.new('int *') + outFloat = ffi.new('float **') + outFloatCnt = ffi.new('int *') + outString = ffi.new('char ***') + outStringCnt = ffi.new('int *') + outBuffer = ffi.new('char **') + outBufferSize = ffi.new('int *') + + ret = lib.simExtCallScriptFunction( + scriptHandleOrType, functionNameAtScriptName.encode('ascii'), + inputInts, len(inputInts), + inputFloats, len(inputFloats), + strIn, len(inputStrings), + str(inputBuffer).encode('ascii'), len(str(inputBuffer)), + outInt, outIntCnt, outFloat, outFloatCnt, + outString, outStringCnt, outBuffer, outBufferSize) + _check_return(ret) + + ret_ints = [outInt[0][i] for i in range(outIntCnt[0])] + ret_floats = [outFloat[0][i] for i in range(outFloatCnt[0])] + ret_strings = [ffi.string(outString[0][i]).decode('utf-8') + for i in range(outStringCnt[0])] + ret_buffer = '' + if outBufferSize[0] > 0: + ret_buffer = ffi.string(outBuffer[0]).decode('utf-8') + + simReleaseBuffer(ffi.cast('char *', outInt[0])) + simReleaseBuffer(ffi.cast('char *', outFloat[0])) + [simReleaseBuffer(outString[0][i]) for i in range(outStringCnt[0])] + simReleaseBuffer(outBuffer[0]) + + return ret_ints, ret_floats, ret_strings, ret_buffer + + +def simCreatePureShape(primitiveType, options, sizes, mass, precision): + if precision is None: + precision = ffi.NULL + handle = lib.simCreatePureShape( + primitiveType, options, sizes, mass, precision) + _check_return(handle) + return handle + + +def simGroupShapes(shapeHandles, merge=False): + l = len(shapeHandles) + handle = lib.simGroupShapes(shapeHandles, -l if merge else l) + _check_return(handle) + return handle + + +def simGetShapeColor(shapeHandle, colorName, colorComponent): + rgbData = ffi.new('float[3]') + if colorName is None or len(colorName) == 0: + colorName = ffi.NULL + res = lib.simGetShapeColor(shapeHandle, colorName, colorComponent, rgbData) + _check_return(res) + return list(rgbData) + + +def simSetShapeColor(shapeHandle, colorName, colorComponent, rgbData): + if colorName is None or len(colorName) == 0: + colorName = ffi.NULL + res = lib.simSetShapeColor(shapeHandle, colorName, colorComponent, rgbData) + _check_return(res) + + +def simReorientShapeBoundingBox(shapeHandle, relativeToHandle): + ret = lib.simReorientShapeBoundingBox(shapeHandle, relativeToHandle, 0) + _check_return(ret) + + +def simGetObjectMatrix(objectHandle, relativeToObjectHandle): + matrix = ffi.new('float[12]') + ret = lib.simGetObjectMatrix(objectHandle, relativeToObjectHandle, matrix) + _check_return(ret) + return list(matrix) + + +def simGetObjectsInTree(treeBaseHandle, objectType, options): + objectCount = ffi.new('int *') + handles = lib.simGetObjectsInTree(treeBaseHandle, objectType, options, + objectCount) + _check_null_return(handles) + ret = [handles[i] for i in range(objectCount[0])] + simReleaseBuffer(ffi.cast('char *', handles)) + return ret + + +def simGetExtensionString(objectHandle, index, key): + ext = lib.simGetExtensionString(objectHandle, index, key.encode('ascii')) + if ext == ffi.NULL: + return '' + exts = ffi.string(ext).decode('utf-8') + simReleaseBuffer(ext) + return exts + + +def simGetObjectType(objectHandle): + ret = lib.simGetObjectType(objectHandle) + _check_return(ret) + return ret + + +def simGetConfigurationTree(objectHandle): + config = lib.simGetConfigurationTree(objectHandle) + _check_null_return(config) + # TODO: Not use what to do about the encoding here + # configs = ffi.string(config) + # simReleaseBuffer(config) + return config + + +def simSetConfigurationTree(data): + ret = lib.simSetConfigurationTree(data) + _check_return(ret) + + +def simRotateAroundAxis(matrix, axis, axisPos, angle): + matrixOut = ffi.new('float[12]') + ret = lib.simRotateAroundAxis(matrix, axis, axisPos, angle, matrixOut) + _check_return(ret) + return list(matrixOut) + + +def simSetObjectMatrix(objectHandle, relativeToObjectHandle, matrix): + ret = lib.simSetObjectMatrix(objectHandle, relativeToObjectHandle, matrix) + _check_return(ret) + + +def simCheckCollision(entity1Handle, entity2Handle): + state = lib.simCheckCollision(entity1Handle, entity2Handle) + _check_return(state) + return state + + +def simGetPositionOnPath(pathHandle, relativeDistance): + position = ffi.new('float[3]') + ret = lib.simGetPositionOnPath(pathHandle, relativeDistance, position) + _check_return(ret) + return list(position) + + +def simGetOrientationOnPath(pathHandle, relativeDistance): + orientation = ffi.new('float[3]') + ret = lib.simGetOrientationOnPath(pathHandle, relativeDistance, orientation) + _check_return(ret) + return list(orientation) + + +def simAddDrawingObject(objectType, size, duplicateTolerance, + parentObjectHandle, maxItemCount, ambient_diffuse=None, + specular=None, emission=None): + """ + + :param objectType: A drawing object type. e.g. sim_drawing_points. + :param size: Size of the item. Width of lines or size of points are in + pixels, other sizes are in meters. + :param duplicateTolerance: If different from 0.0, then will only add the + item if there is no other item within duplicateTolerance distance. + :param parentObjectHandle: Handle of the scene object where the drawing + items should keep attached to. + :param maxItemCount: Maximum number of items this object can hold. + :param ambient_diffuse: Ambient/diffuse color. + :param specular: Default specular color. + :param emission: Default emissive color. + :return: Handle of the drawing object. + """ + if ambient_diffuse is None: + ambient_diffuse = ffi.NULL + if specular is None: + specular = ffi.NULL + if emission is None: + emission = ffi.NULL + handle = lib.simAddDrawingObject( + objectType, size, duplicateTolerance, parentObjectHandle, maxItemCount, + ambient_diffuse, ffi.NULL, specular, emission) + _check_return(handle) + return handle + + +def simRemoveDrawingObject(objectHandle): + ret = lib.simRemoveDrawingObject(objectHandle) + _check_return(ret) + + +def simAddDrawingObjectItem(objectHandle, itemData): + """ + + :param objectHandle: Handle of a drawing object. + :param itemData: If the item is a point item, 3 values are required (x;y;z). + If the item is a line item, 6 values are required, and if the item is a + triangle item, 9 values are required. If None, then the drawing object + is emptied of all its items. + :return: + """ + if itemData is None: + itemData = ffi.NULL + ret = lib.simAddDrawingObjectItem(objectHandle, itemData) + _check_return(ret) + + +def simGetSimulationTimeStep(): + step = lib.simGetSimulationTimeStep() + _check_return(step) + return step + + +def simResetDynamicObject(objectHandle): + ret = lib.simResetDynamicObject(objectHandle) + _check_return(ret) + + +def simGetJointType(objectHandle): + type = lib.simGetJointType(objectHandle) + _check_return(type) + return type + + +def simRMLPos(dofs, smallestTimeStep, flags, currentPosVelAccel, + maxVelAccelJerk, selection, targetPosVel): + smallestTimeStep = ffi.cast('double', smallestTimeStep) + handle = lib.simRMLPos(dofs, smallestTimeStep, flags, currentPosVelAccel, + maxVelAccelJerk, selection, targetPosVel, ffi.NULL) + _check_return(handle) + return handle + + +def simRMLVel(dofs, smallestTimeStep, flags, currentPosVelAccel, maxAccelJerk, + selection, targetVel): + handle = lib.simRMLVel(dofs, smallestTimeStep, flags, currentPosVelAccel, + maxAccelJerk, selection, targetVel, ffi.NULL) + _check_return(handle) + return handle + + +def simRMLStep(handle, timeStep, dofs): + newPosVelAccel = ffi.new('double[%d]' % (dofs * 3)) + # timeStep = ffi.cast('double', timeStep) + state = lib.simRMLStep(handle, timeStep, newPosVelAccel, ffi.NULL, ffi.NULL) + _check_return(state) + return state, list(newPosVelAccel) + + +def simRMLRemove(handle): + ret = lib.simRMLRemove(handle) + _check_return(ret) + + +def simImportMesh(fileformat, pathAndFilename, options, + identicalVerticeTolerance, scalingFactor): + outVerticies = ffi.new('float ***') + outVerticiesCount = ffi.new('int **') + outIndices = ffi.new('int ***') + outIndicesCount = ffi.new('int **') + outNames = ffi.new('char ***') + count = lib.simImportMesh( + fileformat, pathAndFilename.encode('ascii'), options, + identicalVerticeTolerance, scalingFactor, outVerticies, + outVerticiesCount, outIndices, outIndicesCount, ffi.NULL, outNames) + _check_return(count) + retVerticies = [[outVerticies[0][i][j] + for j in range(outVerticiesCount[0][i])] + for i in range(count)] + retIndices = [[outIndices[0][i][j] + for j in range(outIndicesCount[0][i])] + for i in range(count)] + retNames = [ffi.string(outNames[0][i]).decode('utf-8') + for i in range(count)] + for i in range(count): + simReleaseBuffer(ffi.cast('char *', outVerticies[0][i])) + simReleaseBuffer(ffi.cast('char *', outIndices[0][i])) + simReleaseBuffer(outNames[0][i]) + simReleaseBuffer(ffi.cast('char *', outVerticies[0])) + simReleaseBuffer(ffi.cast('char *', outVerticiesCount[0])) + simReleaseBuffer(ffi.cast('char *', outIndices[0])) + simReleaseBuffer(ffi.cast('char *', outIndicesCount[0])) + simReleaseBuffer(ffi.cast('char *', outNames[0])) + return retVerticies, retIndices, retNames + + +def simImportShape(fileformat, pathAndFilename, options, + identicalVerticeTolerance, scalingFactor): + handle = lib.simImportShape( + fileformat, pathAndFilename.encode('ascii'), options, + identicalVerticeTolerance, scalingFactor) + _check_return(handle) + return handle + + +def simCreateMeshShape(options, shadingAngle, vertices, indices): + ret = lib.simCreateMeshShape(options, shadingAngle, vertices, len(vertices), + indices, len(indices), ffi.NULL) + return ret + + +def simGetShapeMesh(shapeHandle): + outVerticies = ffi.new('float **') + outVerticiesCount = ffi.new('int *') + outIndices = ffi.new('int **') + outIndicesCount = ffi.new('int *') + # outNormals is 3 times the size of outIndicesCount + outNormals = ffi.new('float **') + + ret = lib.simGetShapeMesh(shapeHandle, outVerticies, outVerticiesCount, + outIndices, outIndicesCount, outNormals) + _check_return(ret) + retVerticies = [outVerticies[0][i] + for i in range(outVerticiesCount[0])] + retIndices = [outIndices[0][i] + for i in range(outIndicesCount[0])] + outNormals = [outIndices[0][i] + for i in range(outIndicesCount[0] * 3)] + + simReleaseBuffer(ffi.cast('char *', outVerticies[0])) + simReleaseBuffer(ffi.cast('char *', outIndices[0])) + simReleaseBuffer(ffi.cast('char *', outNormals[0])) + + return retVerticies, retIndices, outNormals + + +def simGetShapeViz(shapeHandle, index): + info = ffi.new('struct SShapeVizInfo *') + ret = lib.simGetShapeViz(shapeHandle, index, info) + _check_return(ret) + + vertices = [info.vertices[i] for i in range(info.verticesSize)] + indices = [info.indices[i] for i in range(info.indicesSize)] + normals = [info.normals[i] for i in range(info.indicesSize * 3)] + colors = list(info.colors) + textureSize = info.textureRes[0] * info.textureRes[1] * 4 + if textureSize == 0: + texture = [] + textureCoords = [] + else: + texture = np.frombuffer( + ffi.buffer(info.texture, textureSize), np.uint8) + texture = texture.tolist() + textureCoords = [info.textureCoords[i] for i in + range(info.indicesSize * 2)] + + return SShapeVizInfo( + vertices=vertices, + indices=indices, + normals=normals, + shadingAngle=info.shadingAngle, + colors=colors, + texture=texture, + textureId=info.textureId, + textureRes=info.textureRes, + textureCoords=textureCoords, + textureApplyMode=info.textureApplyMode, + textureOptions=info.textureOptions, + ) + + +def simConvexDecompose(shapeHandle, options, intParams, floatParams): + return lib.simConvexDecompose(shapeHandle, options, intParams, floatParams) + + +def simGetJointMode(shapeHandle): + options = ffi.new('int*') + mode = lib.simGetJointMode(shapeHandle, options) + _check_return(mode) + return mode + + +def simSetJointMode(shapeHandle, mode): + options = 0 + ret = lib.simSetJointMode(shapeHandle, mode, options) + _check_return(ret) + + +def simCreatePath(attributes, intParams, floatParams, color): + handle = lib.simCreatePath(attributes, intParams, floatParams, color + [0.]*3 + [0.25]*3 + [0.]*3) + _check_return(handle) + return handle + + +def simAddScript(type): + handle = lib.simAddScript(type) + _check_return(handle) + return handle + + +def simAssociateScriptWithObject(scriptHandle, objectHandle): + ret = lib.simAssociateScriptWithObject(scriptHandle, objectHandle) + _check_return(ret) + + +def simSetScriptText(scriptHandle, scriptText): + ret = lib.simSetScriptText(scriptHandle, scriptText.encode('ascii')) + _check_return(ret) + + +def simGetScriptText(scriptHandle): + ret = lib.simGetScriptText(scriptHandle) + ret = ffi.string(ret).decode('utf-8') + return ret + + +def simGetScriptAssociatedWithObject(objectHandle): + ret = lib.simGetScriptAssociatedWithObject(objectHandle) + return ret + + +def simApplyTexture(shapeHandle, textureCoordinates, textCoordSize, + texture, textureResolution, options): + ret = lib.simApplyTexture(shapeHandle, textureCoordinates, textCoordSize, + texture, textureResolution, options) + _check_return(ret) + return ret + + +def simCreateTexture(fileName, options): + # The textureID param that is returned from simCreateTexture seems + # to be incorrect (in regards to calling simGetShapeTextureId on the + # generated plane). + handle = lib.simCreateTexture(fileName.encode('ascii'), options, ffi.NULL, + ffi.NULL, ffi.NULL, 0, ffi.NULL, ffi.NULL, + ffi.NULL) + _check_return(handle) + return handle + + +def simSetShapeTexture(shapeHandle, textureId, mappingMode, options, uvScaling, + position, orientation): + if position is None: + position = ffi.NULL + if orientation is None: + orientation = ffi.NULL + + handle = lib.simSetShapeTexture(shapeHandle, textureId, mappingMode, + options, uvScaling, position, orientation) + _check_return(handle) + + +def simGetShapeTextureId(objectHandle): + ret = lib.simGetShapeTextureId(objectHandle) + _check_return(ret) + return ret + + +def simCopyPasteObjects(objectHandles, options): + handles = ffi.new('int[]', objectHandles) + ret = lib.simCopyPasteObjects(handles, len(objectHandles), options) + _check_return(ret) + return list(handles) + + +def simHandleIkGroup(ikGroupHandle): + ret = lib.simHandleIkGroup(ikGroupHandle) + _check_return(ret) + return ret + + +def simCheckIkGroup(ikGroupHandle, jointHandles): + jointValues = ffi.new('float[%d]' % len(jointHandles)) + ret = lib.simCheckIkGroup( + ikGroupHandle, len(jointHandles), jointHandles, jointValues, ffi.NULL) + _check_return(ret) + return ret, list(jointValues) + + +def simComputeJacobian(ikGroupHandle, options): + # Only works when joints that are in IK or hybrid mode + ret = lib.simComputeJacobian(ikGroupHandle, options, ffi.NULL) + _check_return(ret) + + +def simGetIkGroupMatrix(ikGroupHandle, options): + matrixSize = ffi.new('int[2]') + ret = lib.simGetIkGroupMatrix(ikGroupHandle, options, matrixSize) + flatJacobian = [ret[i] for i in range(matrixSize[0] * matrixSize[1])] + # matrixSize[0] represents the row count of the Jacobian. + # matrixSize[0] represents the column count of the Jacobian. + return flatJacobian, list(matrixSize) + + +def simCheckDistance(entity1Handle, entity2Handle, threshold): + distanceData = ffi.new('float [7]') + ret = lib.simCheckDistance( + entity1Handle, entity2Handle, threshold, distanceData) + _check_return(ret) + return list(distanceData) + + +def simSetExplicitHandling(generalObjectHandle, explicitFlags): + ret = lib.simSetExplicitHandling(generalObjectHandle, explicitFlags) + _check_return(ret) + + +def simGetExplicitHandling(generalObjectHandle): + flag = lib.simGetExplicitHandling(generalObjectHandle) + _check_return(flag) + return flag + + +def simUngroupShape(shapeHandle): + count = ffi.new('int*') + shapes = lib.simUngroupShape(shapeHandle, count) + _check_null_return(shapes) + handles = [shapes[i] for i in range(count[0])] + # simReleaseBuffer(shapes) + return handles + + +def simInvertMatrix(matrix): + c_matrix = ffi.new('float []', matrix) + ret = lib.simInvertMatrix(c_matrix) + _check_return(ret) + return list(c_matrix) + + +def simMultiplyMatrices(inMatrix1, inMatrix2): + outMatrix = ffi.new('float []', len(inMatrix1)) + ret = lib.simMultiplyMatrices(inMatrix1, inMatrix2, outMatrix) + _check_return(ret) + _check_null_return(outMatrix) + return list(outMatrix) + + +def simGetEulerAnglesFromMatrix(rotationMatrix): + eulerAngles = ffi.new('float [3]') + ret = lib.simGetEulerAnglesFromMatrix(rotationMatrix, eulerAngles) + _check_return(ret) + _check_null_return(eulerAngles) + return list(eulerAngles) + + +def simGetSimulationTime(): + time = lib.simGetSimulationTime() + _check_return(time) + return time + + +def simSetIntegerSignal(signalName, signalValue): + ret = lib.simSetIntegerSignal(signalName.encode('ascii'), signalValue) + _check_return(ret) + + +def simGetIntegerSignal(signalName): + val = ffi.new('int*') + ret = lib.simGetIntegerSignal(signalName.encode('ascii'), val) + _check_return(ret) + return ret, val[0] + + +def simClearIntegerSignal(signalName): + ret = lib.simClearIntegerSignal(signalName.encode('ascii')) + _check_return(ret) + return ret + + +def simSetFloatSignal(signalName, signalValue): + ret = lib.simSetFloatSignal(signalName.encode('ascii'), signalValue) + _check_return(ret) + + +def simGetFloatSignal(signalName): + val = ffi.new('float*') + ret = lib.simGetFloatSignal(signalName.encode('ascii'), val) + _check_return(ret) + return ret, val[0] + + +def simClearFloatSignal(signalName): + ret = lib.simClearFloatSignal(signalName.encode('ascii')) + _check_return(ret) + return ret + + +def simSetDoubleSignal(signalName, signalValue): + ret = lib.simSetDoubleSignal(signalName.encode('ascii'), signalValue) + _check_return(ret) + + +def simGetDoubleSignal(signalName): + val = ffi.new('double*') + ret = lib.simGetDoubleSignal(signalName.encode('ascii'), val) + _check_return(ret) + return ret, val[0] + + +def simClearDoubleSignal(signalName): + ret = lib.simClearDoubleSignal(signalName.encode('ascii')) + _check_return(ret) + return ret + + +def simSetStringSignal(signalName, signalValue): + ret = lib.simSetStringSignal( + signalName.encode('ascii'), signalValue.encode('ascii'), + len(signalValue)) + _check_return(ret) + + +def simGetStringSignal(signalName): + valLen = ffi.new('int*') + str_ret = lib.simGetStringSignal(signalName.encode('ascii'), valLen) + if str_ret == ffi.NULL: + # No value. + return 0, None + val = ffi.string(str_ret[0:valLen[0]]).decode('utf-8') + simReleaseBuffer(ffi.cast('char *', str_ret)) + return 1, val + + +def simClearStringSignal(signalName): + ret = lib.simClearStringSignal(signalName.encode('ascii')) + _check_return(ret) + return ret + + +def simSetUserParameter(objectHandle, parameterName, parameterValue): + # TODO: currently not used by PyRep. + # User params functionality missing in CoppeliaSim. + parameterLength = len(parameterValue) + ret = lib.simSetUserParameter( + objectHandle, parameterName.encode('ascii'), + parameterValue.encode('ascii'), parameterLength) + _check_return(ret) + + +def simGetUserParameter(objectHandle, parameterName): + # TODO: currently not used by PyRep. + # User params functionality missing in CoppeliaSim. + parameterLength = ffi.new('int*') + parameterValue = lib.simGetUserParameter( + objectHandle, parameterName.encode('ascii'), parameterLength) + _check_null_return(parameterValue) + val = ffi.string((parameterValue[0][:parameterLength[0]])).decode('utf-8') + simReleaseBuffer(ffi.cast('char *', parameterValue)) + return val + + +def simCreateOctree(voxelSize, options, pointSize): + ret = lib.simCreateOctree(voxelSize, options, pointSize, ffi.NULL) + _check_return(ret) + return ret + + +def simInsertVoxelsIntoOctree(octreeHandle, options, points, color, tag): + if color is None: + color = ffi.NULL + if tag is None: + tag = ffi.NULL + ret = lib.simInsertVoxelsIntoOctree(octreeHandle, options, points, + len(points)//3, color, tag, ffi.NULL) + _check_return(ret) + return ret + + +def simRemoveVoxelsFromOctree(octreeHandle, options, points): + if points is None: + points = ffi.NULL + if points is ffi.NULL: + pointCount = 0 + else: + pointCount = len(points)//3 + ret = lib.simRemoveVoxelsFromOctree(octreeHandle, options, points, + pointCount, ffi.NULL) + _check_return(ret) + return ret + + +def simGetOctreeVoxels(octreeHandle): + pointCountPointer = ffi.new('int *') + ret = lib.simGetOctreeVoxels(octreeHandle, pointCountPointer, ffi.NULL) + if ret == ffi.NULL: + return [] + pointCount = pointCountPointer[0] + return list(ret[0:pointCount*3]) + + +def simInsertObjectIntoOctree(octreeHandle, objectHandle, options, + color, tag): + if color is None: + color = ffi.NULL + ret = lib.simInsertObjectIntoOctree(octreeHandle, objectHandle, options, + color, tag, ffi.NULL) + _check_return(ret) + return ret + + +def simSubtractObjectFromOctree(octreeHandle, objectHandle, options): + ret = lib.simSubtractObjectFromOctree(octreeHandle, objectHandle, options, + ffi.NULL) + _check_return(ret) + return ret + + +def simCheckOctreePointOccupancy(octreeHandle, options, points): + ret = lib.simCheckOctreePointOccupancy(octreeHandle, options, points, + len(points)//3, ffi.NULL, ffi.NULL, + ffi.NULL) + _check_return(ret) + if ret == 1: + return True + else: + return False + + +def simGetContactInfo(contact_obj_handle, get_contact_normal): + index = 0 + contact_list = [] + result = 1 + + while result > 0: + if get_contact_normal: + contact = ffi.new('float[9]') + ext = sim_handleflag_extended + else: + contact = ffi.new('float[6]') + ext = 0 + + object_handles = ffi.new('int[2]') + result = lib.simGetContactInfo(sim_handle_all, contact_obj_handle, index + ext, object_handles, + contact) + contact_info = { + "contact": list(contact), + "contact_handles": list(object_handles) + } + contact_list.append(contact_info) + index += 1 + contact_list.pop(-1) # remove the all zero value + return contact_list + + +def simGetConfigForTipPose(ikGroupHandle, jointHandles, thresholdDist, maxTimeInMs, metric, collisionPairs, jointOptions, lowLimits, ranges): + jointCnt = len(jointHandles) + collisionPairCnt = len(collisionPairs) // 2 + collisionPairs = ffi.NULL if len(collisionPairs) == 0 else collisionPairs + retConfigm = ffi.new('float[%d]' % jointCnt) + reserved = ffi.NULL + metric = ffi.NULL if metric is None else metric + jointOptions = ffi.NULL if jointOptions is None else jointOptions + ret = lib.simGetConfigForTipPose( + ikGroupHandle, jointCnt, jointHandles, thresholdDist, + maxTimeInMs, retConfigm, metric, collisionPairCnt, collisionPairs, + jointOptions, lowLimits, ranges, reserved) + _check_return(ret) + _check_null_return(retConfigm) + return list(retConfigm) if ret == 1 else [] + + +def generateIkPath(ikGroupHandle, jointHandles, ptCnt, collisionPairs, jointOptions): + jointCnt = len(jointHandles) + collisionPairCnt = len(collisionPairs) // 2 + collisionPairs = ffi.NULL if len(collisionPairs) == 0 else collisionPairs + reserved = ffi.NULL + jointOptions = ffi.NULL if jointOptions is None else jointOptions + ret = lib.simGenerateIkPath( + ikGroupHandle, jointCnt, jointHandles, ptCnt, collisionPairCnt, + collisionPairs, jointOptions, reserved) + return [] if ret == ffi.NULL else [ret[i] for i in range(ptCnt * jointCnt)] + + +def simGetDecimatedMesh(inVertices, inIndices, decimationPercent): + outVerticies = ffi.new('float **') + outVerticiesCount = ffi.new('int *') + outIndices = ffi.new('int **') + outIndicesCount = ffi.new('int *') + # outNormals is 3 times the size of outIndicesCount + # outNormals = ffi.new('float **') + + ret = lib.simGetDecimatedMesh(inVertices, len(inVertices), + inIndices, len(inIndices), + outVerticies, outVerticiesCount, + outIndices, outIndicesCount, + decimationPercent, 0, ffi.NULL) + _check_return(ret) + retVerticies = [outVerticies[0][i] + for i in range(outVerticiesCount[0])] + retIndices = [outIndices[0][i] + for i in range(outIndicesCount[0])] + + simReleaseBuffer(ffi.cast('char *', outVerticies[0])) + simReleaseBuffer(ffi.cast('char *', outIndices[0])) + + return retVerticies, retIndices + + +def simComputeMassAndInertia(shapeHandle, density): + ret = lib.simComputeMassAndInertia(shapeHandle, density) + _check_return(ret) + return ret + + +def simAddForce(shapeHandle, position, force): + ret = lib.simAddForce(shapeHandle, position, force) + _check_return(ret) + + +def simAddForceAndTorque(shapeHandle, force, torque): + ret = lib.simAddForceAndTorque(shapeHandle, + ffi.NULL if force is None else force, + ffi.NULL if torque is None else torque) + _check_return(ret) + + +def simSetLightParameters(shapeHandle, state, diffusePart=None, specularPart=None): + ret = lib.simSetLightParameters(shapeHandle, state, ffi.NULL, + ffi.NULL if diffusePart is None else diffusePart, + ffi.NULL if specularPart is None else specularPart) + _check_return(ret) + + +def simGetLightParameters(shapeHandle): + diffusePart = ffi.new('float[3]') + specularPart = ffi.new('float[3]') + ret = lib.simGetLightParameters(shapeHandle, ffi.NULL, diffusePart, specularPart) + _check_return(ret) + return ret, list(diffusePart), list(specularPart) diff --git a/external/pyrep/pyrep/backend/simAddOnScript_PyRep.lua b/external/pyrep/pyrep/backend/simAddOnScript_PyRep.lua new file mode 100644 index 0000000000000000000000000000000000000000..1e99e41d2281c79e450c6d851a7290be37c01a58 --- /dev/null +++ b/external/pyrep/pyrep/backend/simAddOnScript_PyRep.lua @@ -0,0 +1,410 @@ +-- Additional PyRep functionality. To be placed in the CoppeliaSim root directory. + +function sysCall_init() +end + +function sysCall_cleanup() +end + +function sysCall_addOnScriptSuspend() +end + +function sysCall_addOnScriptResume() +end + +function sysCall_nonSimulation() +end + +function sysCall_beforeMainScript() +end + +function sysCall_beforeInstanceSwitch() +end + +function sysCall_afterInstanceSwitch() +end + +function sysCall_beforeSimulation() +end + +function sysCall_afterSimulation() +end + +_getConfig=function(jh) + -- Returns the current robot configuration + local config={} + for i=1,#jh,1 do + config[i]=sim.getJointPosition(jh[i]) + end + return config +end + +_setConfig=function(jh, config) + -- Applies the specified configuration to the robot + if config then + for i=1,#jh,1 do + sim.setJointPosition(jh[i],config[i]) + end + end +end + +_getConfigDistance=function(jointHandles,config1,config2) + -- Returns the distance (in configuration space) between two configurations + local d=0 + for i=1,#jointHandles,1 do + -- TODO *metric[i] should be here to give a weight to each joint. + local dx=(config1[i]-config2[i])*1.0 + d=d+dx*dx + end + return math.sqrt(d) +end + +_sliceFromOffset=function(array, offset) + sliced = {} + for i=1,#array-offset,1 do + sliced[i] = array[i+offset] + end + return sliced +end + +_findPath=function(goalConfigs,cnt,jointHandles,algorithm,collisionPairs) + -- Here we do path planning between the specified start and goal configurations. We run the search cnt times, + -- and return the shortest path, and its length + + local startConfig = _getConfig(jointHandles) + local task=simOMPL.createTask('task') + simOMPL.setVerboseLevel(task, 0) + + alg = _getAlgorithm(algorithm) + + simOMPL.setAlgorithm(task,alg) + + local jSpaces={} + for i=1,#jointHandles,1 do + jh = jointHandles[i] + cyclic, interval = sim.getJointInterval(jh) + -- If there are huge intervals, then limit them + if interval[1] < -6.28 and interval[2] > 6.28 then + pos=sim.getJointPosition(jh) + interval[1] = -6.28 + interval[2] = 6.28 + end + local proj=i + if i>3 then proj=0 end + jSpaces[i]=simOMPL.createStateSpace('j_space'..i,simOMPL.StateSpaceType.joint_position,jh,{interval[1]},{interval[2]},proj) + end + + simOMPL.setStateSpace(task, jSpaces) + if collisionPairs ~= nil then + simOMPL.setCollisionPairs(task, collisionPairs) + end + simOMPL.setStartState(task, startConfig) + simOMPL.setGoalState(task, goalConfigs[1]) + for i=2,#goalConfigs,1 do + simOMPL.addGoalState(task,goalConfigs[i]) + end + local path=nil + local l=999999999999 + for i=1,cnt,1 do + search_time = 4 + local res,_path=simOMPL.compute(task,search_time,-1,300) + + -- Path can sometimes touch on invalid state during simplifying + if res and _path then + local is_valid=true + local jhl=#jointHandles + local pc=#_path/jhl + for i=1,pc-1,1 do + local config={} + for j=1,jhl,1 do + config[j]=_path[(i-1)*jhl+j] + end + is_valid=simOMPL.isStateValid(task, config) + if not is_valid then + break + end + end + + if is_valid then + local _l=_getPathLength(_path, jointHandles) + if _lmatchingScore) then + s=1 + if (score<0) then s=-1 end + matchingScore=math.abs(score) + bestMatch={v[1]*s,v[2]*s,v[3]*s} + end + end + angle=math.atan2(bestMatch[2],bestMatch[1]) + m=sim.buildMatrix(p2,{0,0,angle}) + + table.insert(m,angle-math.pi/2) + + return {},m,{},'' +end + +getNonlinearPathMobile=function(inInts,inFloats,inStrings,inBuffer) + algorithm = inStrings[1] + robotHandle = inInts[1] + targetHandle = inInts[2] + collisionHandle=inInts[3] + ignoreCollisions=inInts[4] + bd=inFloats[1] + path_pts=inInts[5] + + collisionPairs={collisionHandle,sim.handle_all} + + if ignoreCollisions==1 then + collisionPairs=nil + end + + t=simOMPL.createTask('t') + simOMPL.setVerboseLevel(t, 0) + ss=simOMPL.createStateSpace('2d',simOMPL.StateSpaceType.dubins,robotHandle,{-bd,-bd},{bd,bd},1) + state_h = simOMPL.setStateSpace(t,{ss}) + simOMPL.setDubinsParams(ss,0.1,true) + simOMPL.setAlgorithm(t,_getAlgorithm(algorithm)) + + if collisionPairs ~= nil then + simOMPL.setCollisionPairs(t, collisionPairs) + end + + startpos=sim.getObjectPosition(robotHandle,-1) + startorient=sim.getObjectOrientation(robotHandle,-1) + startpose={startpos[1],startpos[2],startorient[3]} + + simOMPL.setStartState(t,startpose) + + goalpos=sim.getObjectPosition(targetHandle,-1) + goalorient=sim.getObjectOrientation(targetHandle,-1) + goalpose={goalpos[1],goalpos[2],goalorient[3]} + + simOMPL.setGoalState(t,goalpose) + + r,path=simOMPL.compute(t,4,-1,path_pts) + + simOMPL.destroyTask(t) + + return {},path,{},'' +end + +handleSpherical=function(inInts,inFloats,inStrings,inBuffer) + local depth_handle=inInts[1] + local rgb_handle=inInts[2] + local six_sensor_handles = {inInts[3], inInts[4], inInts[5], inInts[6], inInts[7], inInts[8]} + simVision.handleSpherical(rgb_handle, six_sensor_handles, 360, 180, depth_handle) + return {},{},{},'' +end \ No newline at end of file diff --git a/external/pyrep/pyrep/backend/simConst.py b/external/pyrep/pyrep/backend/simConst.py new file mode 100644 index 0000000000000000000000000000000000000000..07c13ab5390b65fdd7c9a4196665b878195ce067 --- /dev/null +++ b/external/pyrep/pyrep/backend/simConst.py @@ -0,0 +1,1726 @@ +# This file is automatically generated by generate_simConst.py from simConst.h + +SIM_PROGRAM_VERSION_NB = 40100 +SIM_PROGRAM_REVISION_NB = 1 +SIMX_VERSION = 11 +SIMX_HEADER_SIZE = 18 +simx_headeroffset_crc = 0 +simx_headeroffset_version = 2 +simx_headeroffset_message_id = 3 +simx_headeroffset_client_time = 7 +simx_headeroffset_server_time = 11 +simx_headeroffset_scene_id = 15 +simx_headeroffset_server_state = 17 +SIMX_SUBHEADER_SIZE = 26 +simx_cmdheaderoffset_mem_size = 0 +simx_cmdheaderoffset_full_mem_size = 4 +simx_cmdheaderoffset_pdata_offset0 = 8 +simx_cmdheaderoffset_pdata_offset1 = 10 +simx_cmdheaderoffset_cmd = 14 +simx_cmdheaderoffset_delay_or_split = 18 +simx_cmdheaderoffset_sim_time = 20 +simx_cmdheaderoffset_status = 24 +simx_cmdheaderoffset_reserved = 25 +sim_object_shape_type = 0 +sim_object_joint_type = 1 +sim_object_graph_type = 2 +sim_object_camera_type = 3 +sim_object_dummy_type = 4 +sim_object_proximitysensor_type = 5 +sim_object_reserved1 = 6 +sim_object_reserved2 = 7 +sim_object_path_type = 8 +sim_object_visionsensor_type = 9 +sim_object_reserved3 = 10 +sim_object_mill_type = 11 +sim_object_forcesensor_type = 12 +sim_object_light_type = 13 +sim_object_mirror_type = 14 +sim_object_octree_type = 15 +sim_object_pointcloud_type = 16 +sim_object_type_end = 108 + +sim_appobj_object_type = 109 +sim_appobj_collision_type = 110 +sim_appobj_distance_type = 111 +sim_appobj_simulation_type = 112 +sim_appobj_ik_type = 113 +sim_appobj_constraintsolver_type_old = 114 +sim_appobj_collection_type = 115 +sim_appobj_ui_type = 116 +sim_appobj_script_type = 117 +sim_appobj_pathplanning_type = 118 +sim_appobj_RESERVED_type = 119 +sim_appobj_texture_type = 120 +sim_appobj_motionplanning_type_old = 121 + +sim_ik_pseudo_inverse_method = 0 +sim_ik_damped_least_squares_method = 1 +sim_ik_jacobian_transpose_method = 2 + +sim_ik_x_constraint = 1 +sim_ik_y_constraint = 2 +sim_ik_z_constraint = 4 +sim_ik_alpha_beta_constraint = 8 +sim_ik_gamma_constraint = 16 +sim_ik_avoidance_constraint_old = 64 + +sim_ikresult_not_performed = 0 +sim_ikresult_success = 1 +sim_ikresult_fail = 2 + +sim_light_omnidirectional_subtype = 1 +sim_light_spot_subtype = 2 +sim_light_directional_subtype = 3 +sim_joint_revolute_subtype = 10 +sim_joint_prismatic_subtype = 11 +sim_joint_spherical_subtype = 12 +sim_shape_simpleshape_subtype = 20 +sim_shape_multishape_subtype = 21 +sim_proximitysensor_pyramid_subtype = 30 +sim_proximitysensor_cylinder_subtype = 31 +sim_proximitysensor_disc_subtype = 32 +sim_proximitysensor_cone_subtype = 33 +sim_proximitysensor_ray_subtype = 34 +sim_mill_pyramid_subtype = 40 +sim_mill_cylinder_subtype = 41 +sim_mill_disc_subtype = 42 +sim_mill_cone_subtype = 43 +sim_object_no_subtype = 200 + +sim_objectspecialproperty_collidable = 1 +sim_objectspecialproperty_measurable = 2 +sim_objectspecialproperty_detectable_ultrasonic = 16 +sim_objectspecialproperty_detectable_infrared = 32 +sim_objectspecialproperty_detectable_laser = 64 +sim_objectspecialproperty_detectable_inductive = 128 +sim_objectspecialproperty_detectable_capacitive = 256 +sim_objectspecialproperty_renderable = 512 +sim_objectspecialproperty_detectable_all = 496 +sim_objectspecialproperty_cuttable_old = 1024 +sim_objectspecialproperty_pathplanning_ignored = 2048 + +sim_modelproperty_not_collidable = 1 +sim_modelproperty_not_measurable = 2 +sim_modelproperty_not_renderable = 4 +sim_modelproperty_not_detectable = 8 +sim_modelproperty_not_cuttable_old = 16 +sim_modelproperty_not_dynamic = 32 +sim_modelproperty_not_respondable = 64 +sim_modelproperty_not_reset = 128 +sim_modelproperty_not_visible = 256 +sim_modelproperty_scripts_inactive = 512 +sim_modelproperty_not_showasinsidemodel = 1024 +sim_modelproperty_not_model = 61440 + +sim_message_ui_button_state_change = 0 +sim_message_reserved9 = 1 +sim_message_object_selection_changed = 2 +sim_message_reserved10 = 3 +sim_message_model_loaded = 4 +sim_message_reserved11 = 5 +sim_message_keypress = 6 +sim_message_bannerclicked = 7 +sim_message_scene_loaded = 8 +sim_message_prox_sensor_select_down = 9 +sim_message_prox_sensor_select_up = 10 +sim_message_pick_select_down = 11 +sim_message_for_c_api_only_start = 256 +sim_message_reserved1 = 257 +sim_message_reserved2 = 258 +sim_message_reserved3 = 259 +sim_message_eventcallback_scenesave = 260 +sim_message_eventcallback_modelsave = 261 +sim_message_eventcallback_moduleopen = 262 +sim_message_eventcallback_modulehandle = 263 +sim_message_eventcallback_moduleclose = 264 +sim_message_reserved4 = 265 +sim_message_reserved5 = 266 +sim_message_reserved6 = 267 +sim_message_reserved7 = 268 +sim_message_eventcallback_instancepass = 269 +sim_message_eventcallback_broadcast = 270 +sim_message_eventcallback_imagefilter_enumreset = 271 +sim_message_eventcallback_imagefilter_enumerate = 272 +sim_message_eventcallback_imagefilter_adjustparams = 273 +sim_message_eventcallback_imagefilter_reserved = 274 +sim_message_eventcallback_imagefilter_process = 275 +sim_message_eventcallback_reserved1 = 276 +sim_message_eventcallback_reserved2 = 277 +sim_message_eventcallback_reserved3 = 278 +sim_message_eventcallback_reserved4 = 279 +sim_message_eventcallback_abouttoundo = 280 +sim_message_eventcallback_undoperformed = 281 +sim_message_eventcallback_abouttoredo = 282 +sim_message_eventcallback_redoperformed = 283 +sim_message_eventcallback_scripticondblclick = 284 +sim_message_eventcallback_simulationabouttostart = 285 +sim_message_eventcallback_simulationended = 286 +sim_message_eventcallback_reserved5 = 287 +sim_message_eventcallback_keypress = 288 +sim_message_eventcallback_modulehandleinsensingpart = 289 +sim_message_eventcallback_renderingpass = 290 +sim_message_eventcallback_bannerclicked = 291 +sim_message_eventcallback_menuitemselected = 292 +sim_message_eventcallback_refreshdialogs = 293 +sim_message_eventcallback_sceneloaded = 294 +sim_message_eventcallback_modelloaded = 295 +sim_message_eventcallback_instanceswitch = 296 +sim_message_eventcallback_guipass = 297 +sim_message_eventcallback_mainscriptabouttobecalled = 298 +sim_message_eventcallback_rmlposition = 299 +sim_message_eventcallback_rmlvelocity = 300 +sim_message_eventcallback_reserved18 = 301 +sim_message_eventcallback_reserved19 = 302 +sim_message_eventcallback_pathplanningplugin = 303 +sim_message_eventcallback_colladaplugin = 304 +sim_message_eventcallback_opengl = 305 +sim_message_eventcallback_openglframe = 306 +sim_message_eventcallback_openglcameraview = 307 +sim_message_eventcallback_proxsensorselectdown = 308 +sim_message_eventcallback_proxsensorselectup = 309 +sim_message_eventcallback_pickselectdown = 310 +sim_message_eventcallback_rmlpos = 311 +sim_message_eventcallback_rmlvel = 312 +sim_message_eventcallback_rmlstep = 313 +sim_message_eventcallback_rmlremove = 314 +sim_message_eventcallback_rmlinfo = 315 +sim_message_eventcallback_beforerendering = 316 +sim_message_eventcallback_extrenderer_start = 317 +sim_message_eventcallback_extrenderer_light = 318 +sim_message_eventcallback_extrenderer_mesh = 319 +sim_message_eventcallback_extrenderer_stop = 320 +sim_message_eventcallback_reserved6 = 321 +sim_message_eventcallback_reserved7 = 322 +sim_message_eventcallback_reserved8 = 323 +sim_message_eventcallback_reserved9 = 324 +sim_message_eventcallback_reserved10 = 325 +sim_message_eventcallback_reserved11 = 326 +sim_message_eventcallback_reserved12 = 327 +sim_message_eventcallback_reserved13 = 328 +sim_message_eventcallback_reserved14 = 329 +sim_message_eventcallback_reserved15 = 330 +sim_message_eventcallback_reserved16 = 331 +sim_message_eventcallback_reserved17 = 332 +sim_message_eventcallback_extrenderer_triangles = 333 +sim_message_eventcallback_simulationabouttoend = 334 +sim_message_eventcallback_instanceabouttoswitch = 335 +sim_message_eventcallback_lastinstancepass = 336 +sim_message_eventcallback_uipass = 337 +sim_message_simulation_start_resume_request = 4096 +sim_message_simulation_pause_request = 4097 +sim_message_simulation_stop_request = 4098 + +sim_displayattribute_renderpass = 1 +sim_displayattribute_depthpass = 2 +sim_displayattribute_pickpass = 4 +sim_displayattribute_selected = 8 +sim_displayattribute_groupselection_old = 16 +sim_displayattribute_mainselection = 32 +sim_displayattribute_forcewireframe = 64 +sim_displayattribute_forbidwireframe = 128 +sim_displayattribute_forbidedges = 256 +sim_displayattribute_originalcolors = 512 +sim_displayattribute_ignorelayer = 1024 +sim_displayattribute_forvisionsensor = 2048 +sim_displayattribute_colorcodedpickpass = 4096 +sim_displayattribute_colorcoded = 8192 +sim_displayattribute_trianglewireframe = 16384 +sim_displayattribute_inertiaonly = 32768 +sim_displayattribute_thickEdges = 65536 +sim_displayattribute_dynamiccontentonly = 131072 +sim_displayattribute_mirror = 262144 +sim_displayattribute_useauxcomponent = 524288 +sim_displayattribute_ignorerenderableflag = 1048576 +sim_displayattribute_noopenglcallbacks = 2097152 +sim_displayattribute_FREE = 4194304 +sim_displayattribute_noghosts = 8388608 +sim_displayattribute_nopointclouds = 16777216 +sim_displayattribute_nodrawingobjects = 33554432 +sim_displayattribute_noparticles = 67108864 +sim_displayattribute_colorcodedtriangles = 134217728 + +sim_objectproperty_reserved1 = 0 +sim_objectproperty_reserved2 = 1 +sim_objectproperty_reserved3 = 2 +sim_objectproperty_reserved4 = 3 +sim_objectproperty_reserved5 = 4 +sim_objectproperty_reserved6 = 8 +sim_objectproperty_collapsed = 16 +sim_objectproperty_selectable = 32 +sim_objectproperty_reserved7 = 64 +sim_objectproperty_selectmodelbaseinstead = 128 +sim_objectproperty_dontshowasinsidemodel = 256 +sim_objectproperty_canupdatedna = 1024 +sim_objectproperty_selectinvisible = 2048 +sim_objectproperty_depthinvisible = 4096 +sim_objectproperty_cannotdelete = 8192 +sim_objectproperty_cannotdeleteduringsim = 16384 + +sim_lua_arg_nil = 0 +sim_lua_arg_bool = 1 +sim_lua_arg_int = 2 +sim_lua_arg_float = 3 +sim_lua_arg_string = 4 +sim_lua_arg_invalid = 5 +sim_lua_arg_charbuff = 6 +sim_lua_arg_double = 7 +sim_lua_arg_table = 8 + +sim_script_arg_null = 0 +sim_script_arg_bool = 1 +sim_script_arg_int32 = 2 +sim_script_arg_float = 3 +sim_script_arg_string = 4 +sim_script_arg_invalid = 5 +sim_script_arg_charbuff = 6 +sim_script_arg_double = 7 +sim_script_arg_table = 8 + +sim_ui_menu_title = 1 +sim_ui_menu_minimize = 2 +sim_ui_menu_close = 4 +sim_ui_menu_systemblock = 8 + +sim_ui_property_visible = 1 +sim_ui_property_visibleduringsimulationonly = 2 +sim_ui_property_moveable = 4 +sim_ui_property_relativetoleftborder = 8 +sim_ui_property_relativetotopborder = 16 +sim_ui_property_fixedwidthfont = 32 +sim_ui_property_systemblock = 64 +sim_ui_property_settocenter = 128 +sim_ui_property_rolledup = 256 +sim_ui_property_selectassociatedobject = 512 +sim_ui_property_visiblewhenobjectselected = 1024 +sim_ui_property_systemblockcanmovetofront = 2048 +sim_ui_property_pauseactive = 4096 + +sim_buttonproperty_button = 0 +sim_buttonproperty_label = 1 +sim_buttonproperty_slider = 2 +sim_buttonproperty_editbox = 3 +sim_buttonproperty_staydown = 8 +sim_buttonproperty_enabled = 16 +sim_buttonproperty_borderless = 32 +sim_buttonproperty_horizontallycentered = 64 +sim_buttonproperty_ignoremouse = 128 +sim_buttonproperty_isdown = 256 +sim_buttonproperty_transparent = 512 +sim_buttonproperty_nobackgroundcolor = 1024 +sim_buttonproperty_rollupaction = 2048 +sim_buttonproperty_closeaction = 4096 +sim_buttonproperty_verticallycentered = 8192 +sim_buttonproperty_downupevent = 16384 + +sim_simulation_stopped = 0 +sim_simulation_paused = 8 +sim_simulation_advancing = 16 +sim_simulation_advancing_firstafterstop = 16 +sim_simulation_advancing_running = 17 +sim_simulation_advancing_lastbeforepause = 19 +sim_simulation_advancing_firstafterpause = 20 +sim_simulation_advancing_abouttostop = 21 +sim_simulation_advancing_lastbeforestop = 22 + +sim_script_no_error = 0 +sim_script_main_script_nonexistent = 1 +sim_script_main_script_not_called = 2 +sim_script_reentrance_error = 4 +sim_script_lua_error = 8 +sim_script_call_error = 16 + +sim_scripttype_mainscript = 0 +sim_scripttype_childscript = 1 +sim_scripttype_addonscript = 2 +sim_scripttype_addonfunction = 3 +sim_scripttype_jointctrlcallback_old = 4 +sim_scripttype_contactcallback_old = 5 +sim_scripttype_customizationscript = 6 +sim_scripttype_generalcallback_old = 7 +sim_scripttype_sandboxscript = 8 +sim_scripttype_threaded = 240 + +sim_syscb_init = 0 +sim_syscb_cleanup = 1 +sim_syscb_nonsimulation = 2 +sim_syscb_beforesimulation = 3 +sim_syscb_aftersimulation = 4 +sim_syscb_actuation = 5 +sim_syscb_sensing = 6 +sim_syscb_suspended = 7 +sim_syscb_suspend = 8 +sim_syscb_resume = 9 +sim_syscb_beforeinstanceswitch = 10 +sim_syscb_afterinstanceswitch = 11 +sim_syscb_beforecopy = 12 +sim_syscb_aftercopy = 13 +sim_syscb_aos_run = 14 +sim_syscb_aos_suspend = 15 +sim_syscb_aos_resume = 16 +sim_syscb_jointcallback = 17 +sim_syscb_contactcallback = 18 +sim_syscb_customcallback1 = 19 +sim_syscb_customcallback2 = 20 +sim_syscb_customcallback3 = 21 +sim_syscb_customcallback4 = 22 +sim_syscb_beforedelete = 23 +sim_syscb_afterdelete = 24 +sim_syscb_aftercreate = 25 +sim_syscb_threadmain = 26 +sim_syscb_dyncallback = 27 +sim_syscb_beforemainscript = 28 +sim_syscb_vision = 29 +sim_syscb_trigger = 30 +sim_syscb_userconfig = 31 +sim_syscb_xr = 200 +sim_syscb_br = 200 + +sim_customizationscriptattribute_activeduringsimulation = 0 +sim_scriptattribute_executionorder = 1 +sim_scriptattribute_executioncount = 2 +sim_childscriptattribute_automaticcascadingcalls = 3 +sim_scriptattribute_enabled = 4 +sim_childscriptattribute_enabled = 4 +sim_customizationscriptattribute_cleanupbeforesave = 5 +sim_scriptattribute_debuglevel = 6 +sim_scriptattribute_scripttype = 7 + +sim_scriptexecorder_first = 0 +sim_scriptexecorder_normal = 1 +sim_scriptexecorder_last = 2 + +sim_scripttreetraversal_reverse = 0 +sim_scripttreetraversal_forward = 1 +sim_scripttreetraversal_parent = 2 + +sim_scriptdebug_none = 0 +sim_scriptdebug_syscalls = 1 +sim_scriptdebug_vars_interval = 2 +sim_scriptdebug_allcalls = 3 +sim_scriptdebug_vars = 4 +sim_scriptdebug_callsandvars = 5 + +sim_scriptthreadresume_launch = -2 +sim_scriptthreadresume_allnotyetresumed = -1 +sim_scriptthreadresume_default = 0 +sim_scriptthreadresume_actuation_first = 1 +sim_scriptthreadresume_actuation_last = 2 +sim_scriptthreadresume_sensing_first = 3 +sim_scriptthreadresume_sensing_last = 4 +sim_scriptthreadresume_custom = 5 + +sim_callbackid_rossubscriber = 1 +sim_callbackid_dynstep = 2 +sim_callbackid_userdefined = 1000 + +sim_api_error_report = 1 +sim_api_error_output = 2 +sim_api_warning_output = 4 +sim_api_errormessage_ignore = 0 +sim_api_errormessage_report = 1 +sim_api_errormessage_output = 2 + +sim_handle_all = -2 +sim_handle_all_except_explicit = -3 +sim_handle_self = -4 +sim_handle_main_script = -5 +sim_handle_tree = -6 +sim_handle_chain = -7 +sim_handle_single = -8 +sim_handle_default = -9 +sim_handle_all_except_self = -10 +sim_handle_parent = -11 +sim_handle_scene = -12 +sim_handle_app = -13 + +sim_handleflag_assembly = 4194304 +sim_handleflag_togglevisibility = 4194304 +sim_handleflag_extended = 4194304 +sim_handleflag_greyscale = 4194304 +sim_handleflag_codedstring = 4194304 +sim_handleflag_wxyzquaternion = 4194304 +sim_handleflag_reljointbaseframe = 4194304 +sim_handleflag_abscoords = 8388608 +sim_handleflag_depthbuffer = 8388608 +sim_handleflag_depthbuffermeters = 8388608 +sim_handleflag_keeporiginal = 4194304 +sim_handleflag_camera = 4194304 +sim_handleflag_altname = 4194304 +sim_handleflag_axis = 4194304 +sim_handleflag_resetforce = 4194304 +sim_handleflag_resettorque = 8388608 +sim_handleflag_resetforcetorque = 12582912 +sim_handleflag_model = 8388608 +sim_handleflag_rawvalue = 16777216 +sim_handleflag_silenterror = 33554432 + +sim_distcalcmethod_dl = 0 +sim_distcalcmethod_dac = 1 +sim_distcalcmethod_max_dl_dac = 2 +sim_distcalcmethod_dl_and_dac = 3 +sim_distcalcmethod_sqrt_dl2_and_dac2 = 4 +sim_distcalcmethod_dl_if_nonzero = 5 +sim_distcalcmethod_dac_if_nonzero = 6 + +sim_dlgstyle_message = 0 +sim_dlgstyle_input = 1 +sim_dlgstyle_ok = 2 +sim_dlgstyle_ok_cancel = 3 +sim_dlgstyle_yes_no = 4 +sim_dlgstyle_dont_center = 32 + +sim_dlgret_still_open = 0 +sim_dlgret_ok = 1 +sim_dlgret_cancel = 2 +sim_dlgret_yes = 3 +sim_dlgret_no = 4 + +sim_pathproperty_show_line = 1 +sim_pathproperty_show_orientation = 2 +sim_pathproperty_closed_path = 4 +sim_pathproperty_automatic_orientation = 8 +sim_pathproperty_invert_velocity_deprecated = 16 +sim_pathproperty_infinite_acceleration_deprecated = 32 +sim_pathproperty_flat_path = 64 +sim_pathproperty_show_position = 128 +sim_pathproperty_auto_velocity_profile_translation_deprecated = 256 +sim_pathproperty_auto_velocity_profile_rotation_deprecated = 512 +sim_pathproperty_endpoints_at_zero_deprecated = 1024 +sim_pathproperty_keep_x_up = 2048 + +sim_drawing_points = 0 +sim_drawing_lines = 1 +sim_drawing_triangles = 2 +sim_drawing_trianglepoints = 3 +sim_drawing_quadpoints = 4 +sim_drawing_discpoints = 5 +sim_drawing_cubepoints = 6 +sim_drawing_spherepoints = 7 +sim_drawing_itemcolors = 32 +sim_drawing_vertexcolors = 64 +sim_drawing_itemsizes = 128 +sim_drawing_backfaceculling = 256 +sim_drawing_wireframe = 512 +sim_drawing_painttag = 1024 +sim_drawing_followparentvisibility = 2048 +sim_drawing_cyclic = 4096 +sim_drawing_50percenttransparency = 8192 +sim_drawing_25percenttransparency = 16384 +sim_drawing_12percenttransparency = 32768 +sim_drawing_emissioncolor = 65536 +sim_drawing_facingcamera = 131072 +sim_drawing_overlay = 262144 +sim_drawing_itemtransparency = 524288 +sim_drawing_persistent = 1048576 +sim_drawing_auxchannelcolor1 = 2097152 +sim_drawing_auxchannelcolor2 = 4194304 + +sim_banner_left = 1 +sim_banner_right = 2 +sim_banner_nobackground = 4 +sim_banner_overlay = 8 +sim_banner_followparentvisibility = 16 +sim_banner_clickselectsparent = 32 +sim_banner_clicktriggersevent = 64 +sim_banner_facingcamera = 128 +sim_banner_fullyfacingcamera = 256 +sim_banner_backfaceculling = 512 +sim_banner_keepsamesize = 1024 +sim_banner_bitmapfont = 2048 + +sim_particle_points1 = 0 +sim_particle_points2 = 1 +sim_particle_points4 = 2 +sim_particle_roughspheres = 3 +sim_particle_spheres = 4 +sim_particle_respondable1to4 = 32 +sim_particle_respondable5to8 = 64 +sim_particle_particlerespondable = 128 +sim_particle_ignoresgravity = 256 +sim_particle_invisible = 512 +sim_particle_itemsizes = 1024 +sim_particle_itemdensities = 2048 +sim_particle_itemcolors = 4096 +sim_particle_cyclic = 8192 +sim_particle_emissioncolor = 16384 +sim_particle_water = 32768 +sim_particle_painttag = 65536 + +sim_boolparam_hierarchy_visible = 0 +sim_boolparam_console_visible = 1 +sim_boolparam_collision_handling_enabled = 2 +sim_boolparam_distance_handling_enabled = 3 +sim_boolparam_ik_handling_enabled = 4 +sim_boolparam_gcs_handling_enabled = 5 +sim_boolparam_dynamics_handling_enabled = 6 +sim_boolparam_joint_motion_handling_enabled_deprecated = 7 +sim_boolparam_path_motion_handling_enabled_deprecated = 8 +sim_boolparam_proximity_sensor_handling_enabled = 9 +sim_boolparam_vision_sensor_handling_enabled = 10 +sim_boolparam_mill_handling_enabled = 11 +sim_boolparam_browser_visible = 12 +sim_boolparam_scene_and_model_load_messages = 13 +sim_reserved0 = 14 +sim_boolparam_shape_textures_are_visible = 15 +sim_boolparam_display_enabled = 16 +sim_boolparam_infotext_visible = 17 +sim_boolparam_statustext_open = 18 +sim_boolparam_fog_enabled = 19 +sim_boolparam_rml2_available = 20 +sim_boolparam_rml4_available = 21 +sim_boolparam_mirrors_enabled = 22 +sim_boolparam_aux_clip_planes_enabled = 23 +sim_boolparam_reserved3 = 24 +sim_boolparam_realtime_simulation = 25 +sim_boolparam_use_glfinish_cmd = 26 +sim_boolparam_force_show_wireless_emission = 27 +sim_boolparam_force_show_wireless_reception = 28 +sim_boolparam_video_recording_triggered = 29 +sim_boolparam_reserved1 = 30 +sim_boolparam_reserved2 = 31 +sim_boolparam_threaded_rendering_enabled_old = 32 +sim_boolparam_fullscreen = 33 +sim_boolparam_headless = 34 +sim_boolparam_hierarchy_toolbarbutton_enabled = 35 +sim_boolparam_browser_toolbarbutton_enabled = 36 +sim_boolparam_objectshift_toolbarbutton_enabled = 37 +sim_boolparam_objectrotate_toolbarbutton_enabled = 38 +sim_boolparam_force_calcstruct_all_visible = 39 +sim_boolparam_force_calcstruct_all = 40 +sim_boolparam_exit_request = 41 +sim_boolparam_play_toolbarbutton_enabled = 42 +sim_boolparam_pause_toolbarbutton_enabled = 43 +sim_boolparam_stop_toolbarbutton_enabled = 44 +sim_boolparam_waiting_for_trigger = 45 +sim_boolparam_objproperties_toolbarbutton_enabled = 46 +sim_boolparam_calcmodules_toolbarbutton_enabled = 47 +sim_boolparam_rosinterface_donotrunmainscript = 48 +sim_boolparam_online_mode = 49 +sim_boolparam_xr_partrepository = 50 +sim_boolparam_xr_palletrepository = 51 +sim_boolparam_scene_closing = 52 +sim_boolparam_show_w_emitters = 53 +sim_boolparam_show_w_receivers = 54 +sim_boolparam_xr_jobfunc = 55 + +sim_intparam_error_report_mode = 0 +sim_intparam_program_version = 1 +sim_intparam_instance_count = 2 +sim_intparam_custom_cmd_start_id = 3 +sim_intparam_compilation_version = 4 +sim_intparam_current_page = 5 +sim_intparam_flymode_camera_handle = 6 +sim_intparam_dynamic_step_divider = 7 +sim_intparam_dynamic_engine = 8 +sim_intparam_server_port_start = 9 +sim_intparam_server_port_range = 10 +sim_intparam_visible_layers = 11 +sim_intparam_infotext_style = 12 +sim_intparam_settings = 13 +sim_intparam_edit_mode_type = 14 +sim_intparam_server_port_next = 15 +sim_intparam_qt_version = 16 +sim_intparam_event_flags_read_old = 17 +sim_intparam_event_flags_read_clear_old = 18 +sim_intparam_platform = 19 +sim_intparam_scene_unique_id = 20 +sim_intparam_work_thread_count = 21 +sim_intparam_mouse_x = 22 +sim_intparam_mouse_y = 23 +sim_intparam_core_count = 24 +sim_intparam_work_thread_calc_time_ms = 25 +sim_intparam_idle_fps = 26 +sim_intparam_prox_sensor_select_down = 27 +sim_intparam_prox_sensor_select_up = 28 +sim_intparam_stop_request_counter = 29 +sim_intparam_program_revision = 30 +sim_intparam_mouse_buttons = 31 +sim_intparam_dynamic_warning_disabled_mask = 32 +sim_intparam_simulation_warning_disabled_mask = 33 +sim_intparam_scene_index = 34 +sim_intparam_motionplanning_seed = 35 +sim_intparam_speedmodifier = 36 +sim_intparam_dynamic_iteration_count = 37 +sim_intparam_job_count = 38 +sim_intparam_program_full_version = 39 +sim_intparam_verbosity = 40 +sim_intparam_statusbarverbosity = 41 +sim_intparam_dlgverbosity = 42 +sim_intparam_videoencoder_index = 43 + +sim_uint64param_simulation_time_step_ns = 0 +sim_uint64param_simulation_time_ns = 1 + +sim_floatparam_rand = 0 +sim_floatparam_simulation_time_step = 1 +sim_floatparam_stereo_distance = 2 +sim_floatparam_dynamic_step_size = 3 +sim_floatparam_mouse_wheel_zoom_factor = 4 + +sim_stringparam_application_path = 0 +sim_stringparam_video_filename = 1 +sim_stringparam_app_arg1 = 2 +sim_stringparam_app_arg2 = 3 +sim_stringparam_app_arg3 = 4 +sim_stringparam_app_arg4 = 5 +sim_stringparam_app_arg5 = 6 +sim_stringparam_app_arg6 = 7 +sim_stringparam_app_arg7 = 8 +sim_stringparam_app_arg8 = 9 +sim_stringparam_app_arg9 = 10 +sim_stringparam_additional_addonscript1 = 11 +sim_stringparam_additional_addonscript_firstscene = 11 +sim_stringparam_additional_addonscript2 = 12 +sim_stringparam_additional_addonscript = 12 +sim_stringparam_scene_path_and_name = 13 +sim_stringparam_scene_path = 14 +sim_stringparam_scene_name = 15 +sim_stringparam_remoteapi_temp_file_dir = 16 +sim_stringparam_job = 17 +sim_stringparam_job0 = 18 +sim_stringparam_job99 = 117 +sim_stringparam_scene_unique_id = 118 +sim_stringparam_machine_id = 119 +sim_stringparam_machine_id_legacy = 120 +sim_stringparam_verbosity = 121 +sim_stringparam_statusbarverbosity = 122 +sim_stringparam_dlgverbosity = 123 +sim_stringparam_consolelogfilter = 124 +sim_stringparam_startupscriptstring = 125 + +sim_arrayparam_gravity = 0 +sim_arrayparam_fog = 1 +sim_arrayparam_fog_color = 2 +sim_arrayparam_background_color1 = 3 +sim_arrayparam_background_color2 = 4 +sim_arrayparam_ambient_light = 5 +sim_arrayparam_random_euler = 6 + +sim_gui_menubar = 1 +sim_gui_popups = 2 +sim_gui_toolbar1 = 4 +sim_gui_toolbar2 = 8 +sim_gui_hierarchy = 16 +sim_gui_infobar = 32 +sim_gui_statusbar = 64 +sim_gui_scripteditor = 128 +sim_gui_scriptsimulationparameters = 256 +sim_gui_dialogs = 512 +sim_gui_browser = 1024 +sim_gui_all = 65535 +sim_gui_headless = 65536 +sim_autostart = 131072 +sim_autoquit = 262144 + +sim_jointmode_passive = 0 +sim_jointmode_motion_deprecated = 1 +sim_jointmode_ik = 2 +sim_jointmode_reserved_previously_ikdependent = 3 +sim_jointmode_dependent = 4 +sim_jointmode_force = 5 + +sim_verbosity_useglobal = -1 +sim_verbosity_none = 100 +sim_verbosity_errors = 200 +sim_verbosity_warnings = 300 +sim_verbosity_loadinfos = 400 +sim_verbosity_questions = 410 +sim_verbosity_scripterrors = 420 +sim_verbosity_scriptwarnings = 430 +sim_verbosity_scriptinfos = 450 +sim_verbosity_msgs = 450 +sim_verbosity_infos = 500 +sim_verbosity_debug = 600 +sim_verbosity_trace = 700 +sim_verbosity_tracelua = 800 +sim_verbosity_traceall = 900 +sim_verbosity_default = 400 +sim_verbosity_undecorated = 61440 + +sim_moduleinfo_extversionstr = 0 +sim_moduleinfo_builddatestr = 1 +sim_moduleinfo_extversionint = 2 +sim_moduleinfo_verbosity = 3 +sim_moduleinfo_statusbarverbosity = 4 + +sim_navigation_passive = 0 +sim_navigation_camerashift = 1 +sim_navigation_camerarotate = 2 +sim_navigation_camerazoom = 3 +sim_navigation_cameratilt = 4 +sim_navigation_cameraangle = 5 +sim_navigation_camerafly = 6 +sim_navigation_objectshift = 7 +sim_navigation_objectrotate = 8 +sim_navigation_reserved2 = 9 +sim_navigation_reserved3 = 10 +sim_navigation_reserved4 = 11 +sim_navigation_reserved5 = 12 +sim_navigation_reserved6 = 13 +sim_navigation_createpathpoint = 256 +sim_navigation_clickselection = 512 +sim_navigation_ctrlselection = 1024 +sim_navigation_shiftselection = 2048 +sim_navigation_camerazoomwheel = 4096 +sim_navigation_camerarotaterightbutton = 8192 +sim_navigation_camerarotatemiddlebutton = 8192 + +simrml_phase_sync_if_possible = 0 +simrml_only_time_sync = 1 +simrml_only_phase_sync = 2 +simrml_no_sync = 3 +simrml_keep_target_vel = 0 +simrml_recompute_trajectory = 4 +simrml_disable_extremum_motion_states_calc = 8 +simrml_keep_current_vel_if_fallback_strategy = 16 + +sim_filedlg_type_load = 0 +sim_filedlg_type_save = 1 +sim_filedlg_type_load_multiple = 2 +sim_filedlg_type_folder = 3 + +sim_msgbox_type_info = 0 +sim_msgbox_type_question = 1 +sim_msgbox_type_warning = 2 +sim_msgbox_type_critical = 3 + +sim_msgbox_buttons_ok = 0 +sim_msgbox_buttons_yesno = 1 +sim_msgbox_buttons_yesnocancel = 2 +sim_msgbox_buttons_okcancel = 3 + +sim_msgbox_return_cancel = 0 +sim_msgbox_return_no = 1 +sim_msgbox_return_yes = 2 +sim_msgbox_return_ok = 3 +sim_msgbox_return_error = 4 + +sim_physics_bullet = 0 +sim_physics_ode = 1 +sim_physics_vortex = 2 +sim_physics_newton = 3 + +sim_pure_primitive_none = 0 +sim_pure_primitive_plane = 1 +sim_pure_primitive_disc = 2 +sim_pure_primitive_cuboid = 3 +sim_pure_primitive_spheroid = 4 +sim_pure_primitive_cylinder = 5 +sim_pure_primitive_cone = 6 +sim_pure_primitive_heightfield = 7 + +sim_dummy_linktype_dynamics_loop_closure = 0 +sim_dummy_linktype_dynamics_force_constraint = 1 +sim_dummy_linktype_gcs_loop_closure = 2 +sim_dummy_linktype_gcs_tip = 3 +sim_dummy_linktype_gcs_target = 4 +sim_dummy_linktype_ik_tip_target = 5 +sim_dummy_linktype_reserved = 6 + +sim_texturemap_plane = 0 +sim_texturemap_cylinder = 1 +sim_texturemap_sphere = 2 +sim_texturemap_cube = 3 + +sim_pathplanning_holonomic = 0 +sim_pathplanning_reserved = 1 +sim_pathplanning_nonholonomic = 2 + +sim_holonomicpathplanning_xy = 0 +sim_holonomicpathplanning_xg = 1 +sim_holonomicpathplanning_xyz = 2 +sim_holonomicpathplanning_xyg = 3 +sim_holonomicpathplanning_abg = 4 +sim_holonomicpathplanning_xyzg = 5 +sim_holonomicpathplanning_xabg = 6 +sim_holonomicpathplanning_xyabg = 7 +sim_holonomicpathplanning_xyzabg = 8 + +sim_lock_ui_wants_to_read = 0 +sim_lock_ui_wants_to_write = 1 +sim_lock_nonui_wants_to_write = 2 + +sim_colorcomponent_ambient = 0 +sim_colorcomponent_ambient_diffuse = 0 +sim_colorcomponent_diffuse = 1 +sim_colorcomponent_specular = 2 +sim_colorcomponent_emission = 3 +sim_colorcomponent_transparency = 4 +sim_colorcomponent_auxiliary = 5 + +sim_volume_pyramid = 0 +sim_volume_cylinder = 1 +sim_volume_disc = 2 +sim_volume_cone = 3 +sim_volume_ray = 4 +sim_volume_randomizedray = 5 + +sim_pov_pattern_null = 0 +sim_pov_white_marble = 1 +sim_pov_blood_marble = 2 +sim_pov_blue_agate = 3 +sim_pov_sapphire_agate = 4 +sim_pov_brown_agate = 5 +sim_pov_pink_granite = 6 +sim_pov_pink_alabaster = 7 +sim_pov_cherry_wood = 8 +sim_pov_pine_wood = 9 +sim_pov_dark_wood = 10 +sim_pov_tan_wood = 11 +sim_pov_white_wood = 12 +sim_pov_tom_wood = 13 +sim_pov_dmf_wood1 = 14 +sim_pov_dmf_wood2 = 15 +sim_pov_dmf_wood3 = 16 +sim_pov_dmf_wood4 = 17 +sim_pov_dmf_wood5 = 18 +sim_pov_dmf_wood6 = 19 +sim_pov_dmf_light_oak = 20 +sim_pov_dmf_dark_oak = 21 +sim_pov_emb_wood1 = 22 +sim_pov_yellow_pine = 23 +sim_pov_rose_wood = 24 +sim_pov_sandal_wood = 25 +sim_pov_glass = 26 +sim_pov_glass2 = 27 +sim_pov_glass3 = 28 +sim_pov_green_glass = 29 +sim_pov_light_glass = 30 +sim_pov_bold_glass = 31 +sim_pov_wine_bottle = 32 +sim_pov_beer_bottle = 33 +sim_pov_ruby_glass = 34 +sim_pov_blue_glass = 35 +sim_pov_yellow_glass = 36 +sim_pov_orange_glass = 37 +sim_pov_vicks_bottle_glass = 38 +sim_pov_chrome_metal = 39 +sim_pov_brass_metal = 40 +sim_pov_copper_metal = 41 +sim_pov_bronze_metal = 42 +sim_pov_silver_metal = 43 +sim_pov_gold_metal = 44 +sim_pov_polished_chrome = 45 +sim_pov_polished_brass = 46 +sim_pov_new_brass = 47 +sim_pov_spun_brass = 48 +sim_pov_brushed_aluminum = 49 +sim_pov_silver1 = 50 +sim_pov_silver2 = 51 +sim_pov_silver3 = 52 +sim_pov_brass_valley = 53 +sim_pov_rust = 54 +sim_pov_rusty_iron = 55 +sim_pov_soft_silver = 56 +sim_pov_new_penny = 57 +sim_pov_tinny_brass = 58 +sim_pov_gold_nugget = 59 +sim_pov_aluminum = 60 +sim_pov_bright_bronze = 61 +sim_pov_water = 62 +sim_pov_cork = 63 +sim_pov_lightning = 64 +sim_pov_mirror = 65 + +sim_objintparam_visibility_layer = 10 +sim_objfloatparam_abs_x_velocity = 11 +sim_objfloatparam_abs_y_velocity = 12 +sim_objfloatparam_abs_z_velocity = 13 +sim_objfloatparam_abs_rot_velocity = 14 +sim_objfloatparam_objbbox_min_x = 15 +sim_objfloatparam_objbbox_min_y = 16 +sim_objfloatparam_objbbox_min_z = 17 +sim_objfloatparam_objbbox_max_x = 18 +sim_objfloatparam_objbbox_max_y = 19 +sim_objfloatparam_objbbox_max_z = 20 +sim_objfloatparam_modelbbox_min_x = 21 +sim_objfloatparam_modelbbox_min_y = 22 +sim_objfloatparam_modelbbox_min_z = 23 +sim_objfloatparam_modelbbox_max_x = 24 +sim_objfloatparam_modelbbox_max_y = 25 +sim_objfloatparam_modelbbox_max_z = 26 +sim_objintparam_collection_self_collision_indicator = 27 +sim_objfloatparam_transparency_offset = 28 +sim_objintparam_child_role = 29 +sim_objintparam_parent_role = 30 +sim_objintparam_manipulation_permissions = 31 +sim_objintparam_illumination_handle = 32 +sim_objstringparam_dna = 33 +sim_objfloatparam_size_factor = 34 +sim_objstringparam_unique_id = 35 +sim_objintparam_visible = 36 +sim_objparam_end = 999 +sim_visionfloatparam_near_clipping = 1000 +sim_visionfloatparam_far_clipping = 1001 +sim_visionintparam_resolution_x = 1002 +sim_visionintparam_resolution_y = 1003 +sim_visionfloatparam_perspective_angle = 1004 +sim_visionfloatparam_ortho_size = 1005 +sim_visionintparam_disabled_light_components = 1006 +sim_visionintparam_rendering_attributes = 1007 +sim_visionintparam_entity_to_render = 1008 +sim_visionintparam_windowed_size_x = 1009 +sim_visionintparam_windowed_size_y = 1010 +sim_visionintparam_windowed_pos_x = 1011 +sim_visionintparam_windowed_pos_y = 1012 +sim_visionintparam_pov_focal_blur = 1013 +sim_visionfloatparam_pov_blur_distance = 1014 +sim_visionfloatparam_pov_aperture = 1015 +sim_visionintparam_pov_blur_sampled = 1016 +sim_visionintparam_render_mode = 1017 +sim_visionintparam_perspective_operation = 1018 +sim_jointintparam_motor_enabled = 2000 +sim_jointintparam_ctrl_enabled = 2001 +sim_jointfloatparam_pid_p = 2002 +sim_jointfloatparam_pid_i = 2003 +sim_jointfloatparam_pid_d = 2004 +sim_jointfloatparam_intrinsic_x = 2005 +sim_jointfloatparam_intrinsic_y = 2006 +sim_jointfloatparam_intrinsic_z = 2007 +sim_jointfloatparam_intrinsic_qx = 2008 +sim_jointfloatparam_intrinsic_qy = 2009 +sim_jointfloatparam_intrinsic_qz = 2010 +sim_jointfloatparam_intrinsic_qw = 2011 +sim_jointfloatparam_velocity = 2012 +sim_jointfloatparam_spherical_qx = 2013 +sim_jointfloatparam_spherical_qy = 2014 +sim_jointfloatparam_spherical_qz = 2015 +sim_jointfloatparam_spherical_qw = 2016 +sim_jointfloatparam_upper_limit = 2017 +sim_jointfloatparam_kc_k = 2018 +sim_jointfloatparam_kc_c = 2019 +sim_jointfloatparam_ik_weight = 2021 +sim_jointfloatparam_error_x = 2022 +sim_jointfloatparam_error_y = 2023 +sim_jointfloatparam_error_z = 2024 +sim_jointfloatparam_error_a = 2025 +sim_jointfloatparam_error_b = 2026 +sim_jointfloatparam_error_g = 2027 +sim_jointfloatparam_error_pos = 2028 +sim_jointfloatparam_error_angle = 2029 +sim_jointintparam_velocity_lock = 2030 +sim_jointintparam_vortex_dep_handle = 2031 +sim_jointfloatparam_vortex_dep_multiplication = 2032 +sim_jointfloatparam_vortex_dep_offset = 2033 +sim_shapefloatparam_init_velocity_x = 3000 +sim_shapefloatparam_init_velocity_y = 3001 +sim_shapefloatparam_init_velocity_z = 3002 +sim_shapeintparam_static = 3003 +sim_shapeintparam_respondable = 3004 +sim_shapefloatparam_mass = 3005 +sim_shapefloatparam_texture_x = 3006 +sim_shapefloatparam_texture_y = 3007 +sim_shapefloatparam_texture_z = 3008 +sim_shapefloatparam_texture_a = 3009 +sim_shapefloatparam_texture_b = 3010 +sim_shapefloatparam_texture_g = 3011 +sim_shapefloatparam_texture_scaling_x = 3012 +sim_shapefloatparam_texture_scaling_y = 3013 +sim_shapeintparam_culling = 3014 +sim_shapeintparam_wireframe = 3015 +sim_shapeintparam_compound = 3016 +sim_shapeintparam_convex = 3017 +sim_shapeintparam_convex_check = 3018 +sim_shapeintparam_respondable_mask = 3019 +sim_shapefloatparam_init_velocity_a = 3020 +sim_shapefloatparam_init_ang_velocity_x = 3020 +sim_shapefloatparam_init_velocity_b = 3021 +sim_shapefloatparam_init_ang_velocity_y = 3021 +sim_shapefloatparam_init_velocity_g = 3022 +sim_shapefloatparam_init_ang_velocity_z = 3022 +sim_shapestringparam_color_name = 3023 +sim_shapeintparam_edge_visibility = 3024 +sim_shapefloatparam_shading_angle = 3025 +sim_shapefloatparam_edge_angle = 3026 +sim_shapeintparam_edge_borders_hidden = 3027 +sim_proxintparam_ray_invisibility = 4000 +sim_proxintparam_volume_type = 4001 +sim_proxintparam_entity_to_detect = 4002 +sim_forcefloatparam_error_x = 5000 +sim_forcefloatparam_error_y = 5001 +sim_forcefloatparam_error_z = 5002 +sim_forcefloatparam_error_a = 5003 +sim_forcefloatparam_error_b = 5004 +sim_forcefloatparam_error_g = 5005 +sim_forcefloatparam_error_pos = 5006 +sim_forcefloatparam_error_angle = 5007 +sim_lightintparam_pov_casts_shadows = 8000 +sim_lightfloatparam_spot_exponent = 8001 +sim_lightfloatparam_spot_cutoff = 8002 +sim_lightfloatparam_const_attenuation = 8003 +sim_lightfloatparam_lin_attenuation = 8004 +sim_lightfloatparam_quad_attenuation = 8005 +sim_cameraintparam_disabled_light_components = 9000 +sim_camerafloatparam_perspective_angle = 9001 +sim_camerafloatparam_ortho_size = 9002 +sim_cameraintparam_rendering_attributes = 9003 +sim_cameraintparam_pov_focal_blur = 9004 +sim_camerafloatparam_pov_blur_distance = 9005 +sim_camerafloatparam_pov_aperture = 9006 +sim_cameraintparam_pov_blur_samples = 9007 +sim_camerafloatparam_near_clipping = 9008 +sim_camerafloatparam_far_clipping = 9009 +sim_dummyintparam_link_type = 10000 +sim_dummyintparam_follow_path = 10001 +sim_dummyfloatparam_follow_path_offset = 10002 +sim_millintparam_volume_type = 11000 +sim_mirrorfloatparam_width = 12000 +sim_mirrorfloatparam_height = 12001 +sim_mirrorfloatparam_reflectance = 12002 +sim_mirrorintparam_enable = 12003 +sim_pplanfloatparam_x_min = 20000 +sim_pplanfloatparam_x_range = 20001 +sim_pplanfloatparam_y_min = 20002 +sim_pplanfloatparam_y_range = 20003 +sim_pplanfloatparam_z_min = 20004 +sim_pplanfloatparam_z_range = 20005 +sim_pplanfloatparam_delta_min = 20006 +sim_pplanfloatparam_delta_range = 20007 +sim_mplanintparam_nodes_computed_old = 25000 +sim_mplanintparam_prepare_nodes_old = 25001 +sim_mplanintparam_clear_nodes_old = 25002 + +sim_stack_table_circular_ref = -4 +sim_stack_table_not_table = -3 +sim_stack_table_map = -2 +sim_stack_table_empty = 0 + +sim_bullet_global_float_start = 0 +sim_bullet_global_stepsize = 1 +sim_bullet_global_internalscalingfactor = 2 +sim_bullet_global_collisionmarginfactor = 3 +sim_bullet_global_float_end = 4 +sim_bullet_global_int_start = 1000 +sim_bullet_global_constraintsolvingiterations = 1001 +sim_bullet_global_bitcoded = 1002 +sim_bullet_global_constraintsolvertype = 1003 +sim_bullet_global_int_end = 1004 +sim_bullet_global_bool_start = 2000 +sim_bullet_global_fullinternalscaling = 2001 +sim_bullet_global_bool_end = 2002 +sim_bullet_joint_float_start = 3000 +sim_bullet_joint_stoperp = 3001 +sim_bullet_joint_stopcfm = 3002 +sim_bullet_joint_normalcfm = 3003 +sim_bullet_joint_float_end = 3004 +sim_bullet_joint_int_start = 4000 +sim_bullet_joint_int_end = 4001 +sim_bullet_joint_bool_start = 5000 +sim_bullet_joint_bool_end = 5001 +sim_bullet_body_float_start = 6000 +sim_bullet_body_restitution = 6001 +sim_bullet_body_oldfriction = 6002 +sim_bullet_body_friction = 6003 +sim_bullet_body_lineardamping = 6004 +sim_bullet_body_angulardamping = 6005 +sim_bullet_body_nondefaultcollisionmargingfactor = 6006 +sim_bullet_body_nondefaultcollisionmargingfactorconvex = 6007 +sim_bullet_body_float_end = 6008 +sim_bullet_body_int_start = 7000 +sim_bullet_body_bitcoded = 7001 +sim_bullet_body_int_end = 7002 +sim_bullet_body_bool_start = 8000 +sim_bullet_body_sticky = 8001 +sim_bullet_body_usenondefaultcollisionmargin = 8002 +sim_bullet_body_usenondefaultcollisionmarginconvex = 8003 +sim_bullet_body_autoshrinkconvex = 8004 +sim_bullet_body_bool_end = 8005 +sim_ode_global_float_start = 9000 +sim_ode_global_stepsize = 9001 +sim_ode_global_internalscalingfactor = 9002 +sim_ode_global_cfm = 9003 +sim_ode_global_erp = 9004 +sim_ode_global_float_end = 9005 +sim_ode_global_int_start = 10000 +sim_ode_global_constraintsolvingiterations = 10001 +sim_ode_global_bitcoded = 10002 +sim_ode_global_randomseed = 10003 +sim_ode_global_int_end = 10004 +sim_ode_global_bool_start = 11000 +sim_ode_global_fullinternalscaling = 11001 +sim_ode_global_quickstep = 11002 +sim_ode_global_bool_end = 11003 +sim_ode_joint_float_start = 12000 +sim_ode_joint_stoperp = 12001 +sim_ode_joint_stopcfm = 12002 +sim_ode_joint_bounce = 12003 +sim_ode_joint_fudgefactor = 12004 +sim_ode_joint_normalcfm = 12005 +sim_ode_joint_float_end = 12006 +sim_ode_joint_int_start = 13000 +sim_ode_joint_int_end = 13001 +sim_ode_joint_bool_start = 14000 +sim_ode_joint_bool_end = 14001 +sim_ode_body_float_start = 15000 +sim_ode_body_friction = 15001 +sim_ode_body_softerp = 15002 +sim_ode_body_softcfm = 15003 +sim_ode_body_lineardamping = 15004 +sim_ode_body_angulardamping = 15005 +sim_ode_body_float_end = 15006 +sim_ode_body_int_start = 16000 +sim_ode_body_maxcontacts = 16001 +sim_ode_body_int_end = 16002 +sim_ode_body_bool_start = 17000 +sim_ode_body_bool_end = 17001 +sim_vortex_global_float_start = 18000 +sim_vortex_global_stepsize = 18001 +sim_vortex_global_internalscalingfactor = 18002 +sim_vortex_global_contacttolerance = 18003 +sim_vortex_global_constraintlinearcompliance = 18004 +sim_vortex_global_constraintlineardamping = 18005 +sim_vortex_global_constraintlinearkineticloss = 18006 +sim_vortex_global_constraintangularcompliance = 18007 +sim_vortex_global_constraintangulardamping = 18008 +sim_vortex_global_constraintangularkineticloss = 18009 +sim_vortex_global_float_end = 18010 +sim_vortex_global_int_start = 19000 +sim_vortex_global_bitcoded = 19001 +sim_vortex_global_int_end = 19002 +sim_vortex_global_bool_start = 20000 +sim_vortex_global_autosleep = 20001 +sim_vortex_global_multithreading = 20002 +sim_vortex_global_bool_end = 20003 +sim_vortex_joint_float_start = 21000 +sim_vortex_joint_lowerlimitdamping = 21001 +sim_vortex_joint_upperlimitdamping = 21002 +sim_vortex_joint_lowerlimitstiffness = 21003 +sim_vortex_joint_upperlimitstiffness = 21004 +sim_vortex_joint_lowerlimitrestitution = 21005 +sim_vortex_joint_upperlimitrestitution = 21006 +sim_vortex_joint_lowerlimitmaxforce = 21007 +sim_vortex_joint_upperlimitmaxforce = 21008 +sim_vortex_joint_motorconstraintfrictioncoeff = 21009 +sim_vortex_joint_motorconstraintfrictionmaxforce = 21010 +sim_vortex_joint_motorconstraintfrictionloss = 21011 +sim_vortex_joint_p0loss = 21012 +sim_vortex_joint_p0stiffness = 21013 +sim_vortex_joint_p0damping = 21014 +sim_vortex_joint_p0frictioncoeff = 21015 +sim_vortex_joint_p0frictionmaxforce = 21016 +sim_vortex_joint_p0frictionloss = 21017 +sim_vortex_joint_p1loss = 21018 +sim_vortex_joint_p1stiffness = 21019 +sim_vortex_joint_p1damping = 21020 +sim_vortex_joint_p1frictioncoeff = 21021 +sim_vortex_joint_p1frictionmaxforce = 21022 +sim_vortex_joint_p1frictionloss = 21023 +sim_vortex_joint_p2loss = 21024 +sim_vortex_joint_p2stiffness = 21025 +sim_vortex_joint_p2damping = 21026 +sim_vortex_joint_p2frictioncoeff = 21027 +sim_vortex_joint_p2frictionmaxforce = 21028 +sim_vortex_joint_p2frictionloss = 21029 +sim_vortex_joint_a0loss = 21030 +sim_vortex_joint_a0stiffness = 21031 +sim_vortex_joint_a0damping = 21032 +sim_vortex_joint_a0frictioncoeff = 21033 +sim_vortex_joint_a0frictionmaxforce = 21034 +sim_vortex_joint_a0frictionloss = 21035 +sim_vortex_joint_a1loss = 21036 +sim_vortex_joint_a1stiffness = 21037 +sim_vortex_joint_a1damping = 21038 +sim_vortex_joint_a1frictioncoeff = 21039 +sim_vortex_joint_a1frictionmaxforce = 21040 +sim_vortex_joint_a1frictionloss = 21041 +sim_vortex_joint_a2loss = 21042 +sim_vortex_joint_a2stiffness = 21043 +sim_vortex_joint_a2damping = 21044 +sim_vortex_joint_a2frictioncoeff = 21045 +sim_vortex_joint_a2frictionmaxforce = 21046 +sim_vortex_joint_a2frictionloss = 21047 +sim_vortex_joint_dependencyfactor = 21048 +sim_vortex_joint_dependencyoffset = 21049 +sim_vortex_joint_float_end = 21050 +sim_vortex_joint_int_start = 22000 +sim_vortex_joint_bitcoded = 22001 +sim_vortex_joint_relaxationenabledbc = 22002 +sim_vortex_joint_frictionenabledbc = 22003 +sim_vortex_joint_frictionproportionalbc = 22004 +sim_vortex_joint_objectid = 22005 +sim_vortex_joint_dependentobjectid = 22006 +sim_vortex_joint_int_end = 22007 +sim_vortex_joint_bool_start = 23000 +sim_vortex_joint_motorfrictionenabled = 23001 +sim_vortex_joint_proportionalmotorfriction = 23002 +sim_vortex_joint_bool_end = 23003 +sim_vortex_body_float_start = 24000 +sim_vortex_body_primlinearaxisfriction = 24001 +sim_vortex_body_seclinearaxisfriction = 24002 +sim_vortex_body_primangularaxisfriction = 24003 +sim_vortex_body_secangularaxisfriction = 24004 +sim_vortex_body_normalangularaxisfriction = 24005 +sim_vortex_body_primlinearaxisstaticfrictionscale = 24006 +sim_vortex_body_seclinearaxisstaticfrictionscale = 24007 +sim_vortex_body_primangularaxisstaticfrictionscale = 24008 +sim_vortex_body_secangularaxisstaticfrictionscale = 24009 +sim_vortex_body_normalangularaxisstaticfrictionscale = 24010 +sim_vortex_body_compliance = 24011 +sim_vortex_body_damping = 24012 +sim_vortex_body_restitution = 24013 +sim_vortex_body_restitutionthreshold = 24014 +sim_vortex_body_adhesiveforce = 24015 +sim_vortex_body_linearvelocitydamping = 24016 +sim_vortex_body_angularvelocitydamping = 24017 +sim_vortex_body_primlinearaxisslide = 24018 +sim_vortex_body_seclinearaxisslide = 24019 +sim_vortex_body_primangularaxisslide = 24020 +sim_vortex_body_secangularaxisslide = 24021 +sim_vortex_body_normalangularaxisslide = 24022 +sim_vortex_body_primlinearaxisslip = 24023 +sim_vortex_body_seclinearaxisslip = 24024 +sim_vortex_body_primangularaxisslip = 24025 +sim_vortex_body_secangularaxisslip = 24026 +sim_vortex_body_normalangularaxisslip = 24027 +sim_vortex_body_autosleeplinearspeedthreshold = 24028 +sim_vortex_body_autosleeplinearaccelthreshold = 24029 +sim_vortex_body_autosleepangularspeedthreshold = 24030 +sim_vortex_body_autosleepangularaccelthreshold = 24031 +sim_vortex_body_skinthickness = 24032 +sim_vortex_body_autoangulardampingtensionratio = 24033 +sim_vortex_body_primaxisvectorx = 24034 +sim_vortex_body_primaxisvectory = 24035 +sim_vortex_body_primaxisvectorz = 24036 +sim_vortex_body_float_end = 24037 +sim_vortex_body_int_start = 25000 +sim_vortex_body_primlinearaxisfrictionmodel = 25001 +sim_vortex_body_seclinearaxisfrictionmodel = 25002 +sim_vortex_body_primangulararaxisfrictionmodel = 25003 +sim_vortex_body_secmangulararaxisfrictionmodel = 25004 +sim_vortex_body_normalmangulararaxisfrictionmodel = 25005 +sim_vortex_body_bitcoded = 25006 +sim_vortex_body_autosleepsteplivethreshold = 25007 +sim_vortex_body_materialuniqueid = 25008 +sim_vortex_body_int_end = 25009 +sim_vortex_body_bool_start = 26000 +sim_vortex_body_pureshapesasconvex = 26001 +sim_vortex_body_convexshapesasrandom = 26002 +sim_vortex_body_randomshapesasterrain = 26003 +sim_vortex_body_fastmoving = 26004 +sim_vortex_body_autoslip = 26005 +sim_vortex_body_seclinaxissameasprimlinaxis = 26006 +sim_vortex_body_secangaxissameasprimangaxis = 26007 +sim_vortex_body_normangaxissameasprimangaxis = 26008 +sim_vortex_body_autoangulardamping = 26009 +sim_vortex_body_bool_end = 26010 +sim_newton_global_float_start = 27000 +sim_newton_global_stepsize = 27001 +sim_newton_global_contactmergetolerance = 27002 +sim_newton_global_float_end = 27003 +sim_newton_global_int_start = 28000 +sim_newton_global_constraintsolvingiterations = 28001 +sim_newton_global_bitcoded = 28002 +sim_newton_global_int_end = 28003 +sim_newton_global_bool_start = 29000 +sim_newton_global_multithreading = 29001 +sim_newton_global_exactsolver = 29002 +sim_newton_global_highjointaccuracy = 29003 +sim_newton_global_bool_end = 29004 +sim_newton_joint_float_start = 30000 +sim_newton_joint_dependencyfactor = 30001 +sim_newton_joint_dependencyoffset = 30002 +sim_newton_joint_float_end = 30003 +sim_newton_joint_int_start = 31000 +sim_newton_joint_objectid = 31001 +sim_newton_joint_dependentobjectid = 31002 +sim_newton_joint_int_end = 31003 +sim_newton_joint_bool_start = 32000 +sim_newton_joint_bool_end = 32001 +sim_newton_body_float_start = 33000 +sim_newton_body_staticfriction = 33001 +sim_newton_body_kineticfriction = 33002 +sim_newton_body_restitution = 33003 +sim_newton_body_lineardrag = 33004 +sim_newton_body_angulardrag = 33005 +sim_newton_body_float_end = 33006 +sim_newton_body_int_start = 34000 +sim_newton_body_bitcoded = 34001 +sim_newton_body_int_end = 34002 +sim_newton_body_bool_start = 35000 +sim_newton_body_fastmoving = 35001 +sim_newton_body_bool_end = 35002 + +sim_vortex_bodyfrictionmodel_box = 0 +sim_vortex_bodyfrictionmodel_scaledbox = 1 +sim_vortex_bodyfrictionmodel_proplow = 2 +sim_vortex_bodyfrictionmodel_prophigh = 3 +sim_vortex_bodyfrictionmodel_scaledboxfast = 4 +sim_vortex_bodyfrictionmodel_neutral = 5 +sim_vortex_bodyfrictionmodel_none = 6 + +sim_bullet_constraintsolvertype_sequentialimpulse = 0 +sim_bullet_constraintsolvertype_nncg = 1 +sim_bullet_constraintsolvertype_dantzig = 2 +sim_bullet_constraintsolvertype_projectedgaussseidel = 3 + +sim_objdynprop_dynamic = 1 +sim_objdynprop_respondable = 2 + +sim_announce_pureconenotsupported = 0 +sim_announce_purespheroidnotsupported = 1 +sim_announce_containsnonpurenonconvexshapes = 2 +sim_announce_containsstaticshapesondynamicconstruction = 3 +sim_announce_purehollowshapenotsupported = 4 +sim_announce_vortexpluginisdemo = 5 +sim_announce_newtondynamicrandommeshnotsupported = 6 + +sim_dynamicsimicon_none = 0 +sim_dynamicsimicon_objectisdynamicallysimulated = 1 +sim_dynamicsimicon_objectisnotdynamicallyenabled = 2 + +sim_filtercomponent_originalimage_deprecated = 1 +sim_filtercomponent_originaldepth_deprecated = 2 +sim_filtercomponent_uniformimage_deprecated = 3 +sim_filtercomponent_tooutput_deprecated = 4 +sim_filtercomponent_tobuffer1_deprecated = 5 +sim_filtercomponent_tobuffer2_deprecated = 6 +sim_filtercomponent_frombuffer1_deprecated = 7 +sim_filtercomponent_frombuffer2_deprecated = 8 +sim_filtercomponent_swapbuffers_deprecated = 9 +sim_filtercomponent_addbuffer1_deprecated = 10 +sim_filtercomponent_subtractbuffer1_deprecated = 11 +sim_filtercomponent_multiplywithbuffer1_deprecated = 12 +sim_filtercomponent_horizontalflip_deprecated = 13 +sim_filtercomponent_verticalflip_deprecated = 14 +sim_filtercomponent_rotate_deprecated = 15 +sim_filtercomponent_shift_deprecated = 16 +sim_filtercomponent_resize_deprecated = 17 +sim_filtercomponent_3x3filter_deprecated = 18 +sim_filtercomponent_5x5filter_deprecated = 19 +sim_filtercomponent_sharpen_deprecated = 20 +sim_filtercomponent_edge_deprecated = 21 +sim_filtercomponent_rectangularcut_deprecated = 22 +sim_filtercomponent_circularcut_deprecated = 23 +sim_filtercomponent_normalize_deprecated = 24 +sim_filtercomponent_intensityscale_deprecated = 25 +sim_filtercomponent_keeporremovecolors_deprecated = 26 +sim_filtercomponent_scaleandoffsetcolors_deprecated = 27 +sim_filtercomponent_binary_deprecated = 28 +sim_filtercomponent_swapwithbuffer1_deprecated = 29 +sim_filtercomponent_addtobuffer1_deprecated = 30 +sim_filtercomponent_subtractfrombuffer1_deprecated = 31 +sim_filtercomponent_correlationwithbuffer1_deprecated = 32 +sim_filtercomponent_colorsegmentation_deprecated = 33 +sim_filtercomponent_blobextraction_deprecated = 34 +sim_filtercomponent_imagetocoord_deprecated = 35 +sim_filtercomponent_pixelchange_deprecated = 36 +sim_filtercomponent_velodyne_deprecated = 37 +sim_filtercomponent_todepthoutput_deprecated = 38 +sim_filtercomponent_customized_deprecated = 1000 + +sim_buffer_uint8 = 0 +sim_buffer_int8 = 1 +sim_buffer_uint16 = 2 +sim_buffer_int16 = 3 +sim_buffer_uint32 = 4 +sim_buffer_int32 = 5 +sim_buffer_float = 6 +sim_buffer_double = 7 +sim_buffer_uint8rgb = 8 +sim_buffer_uint8bgr = 9 +sim_buffer_uint8rgba = 10 +sim_buffer_uint8argb = 11 +sim_buffer_base64 = 12 +sim_buffer_split = 13 +sim_buffer_clamp = 256 + +sim_imgcomb_vertical = 0 +sim_imgcomb_horizontal = 1 + +sim_dynmat_default = 2310013 +sim_dynmat_highfriction = 2310014 +sim_dynmat_lowfriction = 2310015 +sim_dynmat_nofriction = 2310016 +sim_dynmat_reststackgrasp = 2310017 +sim_dynmat_foot = 2310018 +sim_dynmat_wheel = 2310019 +sim_dynmat_gripper = 2310020 +sim_dynmat_floor = 2310021 + +sim_rendermode_opengl = 0 +sim_rendermode_auxchannels = 1 +sim_rendermode_colorcoded = 2 +sim_rendermode_povray = 3 +sim_rendermode_reserved = 4 +sim_rendermode_extrenderer = 5 +sim_rendermode_extrendererwindowed = 6 +sim_rendermode_opengl3 = 7 +sim_rendermode_opengl3windowed = 8 + +sim_syncobj_worldcont = 0 +sim_syncobj_world = 1 +sim_syncobj_ikgroup = 2 +sim_syncobj_ikelement = 3 +sim_syncobj_collision = 4 +sim_syncobj_distance = 5 +sim_syncobj_collection = 6 +sim_syncobj_collectionelement = 7 +sim_syncobj_color = 8 +sim_syncobj_sceneobjectstart = 9 +sim_syncobj_dummy = 9 +sim_syncobj_joint = 10 +sim_syncobj_sceneobjectend = 10 + +simx_cmdnull_start = 0 +simx_cmd_synchronous_enable = 1 +simx_cmd_synchronous_disable = 2 +simx_cmd_synchronous_next = 3 +simx_cmd_get_last_errors = 4 +simx_cmd_close_scene = 5 +simx_cmd_get_object_selection = 6 +simx_cmd_reserved1 = 7 +simx_cmd_reserved2 = 8 +simx_cmd_create_dummy = 9 +simx_cmd_kill_connection = 10 +simx_cmdnull_custom_start = 2048 +simx_cmd4bytes_start = 4096 +simx_cmd_get_joint_position = 4097 +simx_cmd_set_joint_position = 4098 +simx_cmd_get_vision_sensor_image_bw = 4099 +simx_cmd_get_vision_sensor_image_rgb = 4100 +simx_cmd_set_vision_sensor_image_bw = 4101 +simx_cmd_set_vision_sensor_image_rgb = 4102 +simx_cmd_start_pause_stop_simulation = 4103 +simx_cmd_set_joint_target_velocity = 4104 +simx_cmd_read_proximity_sensor = 4105 +simx_cmd_get_joint_matrix = 4106 +simx_cmd_set_spherical_joint_matrix = 4107 +simx_cmd_set_joint_target_position = 4108 +simx_cmd_get_joint_force = 4109 +simx_cmd_set_joint_force = 4110 +simx_cmd_read_force_sensor = 4111 +simx_cmd_break_force_sensor = 4112 +simx_cmd_read_vision_sensor = 4113 +simx_cmd_get_object_parent = 4114 +simx_cmd_spotcanbeused5 = 4115 +simx_cmd_aux_console_close = 4116 +simx_cmd_aux_console_print = 4117 +simx_cmd_aux_console_show = 4118 +simx_cmd_get_vision_sensor_depth_buffer = 4119 +simx_cmd_get_object_orientation = 4120 +simx_cmd_get_object_position = 4121 +simx_cmd_set_object_orientation = 4122 +simx_cmd_set_object_position = 4123 +simx_cmd_set_object_parent = 4124 +simx_cmd_get_array_parameter = 4125 +simx_cmd_set_array_parameter = 4126 +simx_cmd_get_boolean_parameter = 4127 +simx_cmd_set_boolean_parameter = 4128 +simx_cmd_get_integer_parameter = 4129 +simx_cmd_set_integer_parameter = 4130 +simx_cmd_get_floating_parameter = 4131 +simx_cmd_set_floating_parameter = 4132 +simx_cmd_get_string_parameter = 4133 +simx_cmd_read_collision = 4134 +simx_cmd_read_distance = 4135 +simx_cmd_remove_object = 4136 +simx_cmd_remove_ui = 4137 +simx_cmd_get_objects = 4138 +simx_cmd_end_dialog = 4139 +simx_cmd_get_dialog_input = 4140 +simx_cmd_get_dialog_result = 4141 +simx_cmd_copy_paste_objects = 4142 +simx_cmd_set_object_selection = 4143 +simx_cmd_spotcanbeused1 = 4144 +simx_cmd_spotcanbeused2 = 4145 +simx_cmd_spotcanbeused3 = 4146 +simx_cmd_spotcanbeused4 = 4147 +simx_cmd_get_model_property = 4148 +simx_cmd_set_model_property = 4149 +simx_cmd_get_object_velocity = 4150 +simx_cmd_remove_model = 4151 +simx_cmd_get_joint_max_force = 4152 +simx_cmd4bytes_custom_start = 6144 +simx_cmd_set_object_quaternion = 6145 +simx_cmd8bytes_start = 8192 +simx_cmd_get_ui_slider = 8193 +simx_cmd_set_ui_slider = 8194 +simx_cmd_get_ui_event_button = 8195 +simx_cmd_get_ui_button_property = 8196 +simx_cmd_set_ui_button_property = 8197 +simx_cmd_set_ui_button_label = 8198 +simx_cmd_get_object_float_parameter = 8199 +simx_cmd_get_object_int_parameter = 8200 +simx_cmd_set_object_float_parameter = 8201 +simx_cmd_set_object_int_parameter = 8202 +simx_cmd_get_object_child = 8203 +simx_cmd_get_object_group_data = 8204 +simx_cmd_get_object_orientation2 = 8205 +simx_cmd_get_object_position2 = 8206 +simx_cmd8bytes_custom_start = 10240 +simx_cmd_get_object_quaternion = 10241 +simx_cmd1string_start = 12288 +simx_cmd_get_object_handle = 12289 +simx_cmd_load_scene = 12290 +simx_cmd_load_model = 12291 +simx_cmd_transfer_file = 12292 +simx_cmd_load_ui = 12293 +simx_cmd_erase_file = 12294 +simx_cmd_get_ui_handle = 12295 +simx_cmd_add_statusbar_message = 12296 +simx_cmd_aux_console_open = 12297 +simx_cmd_get_collision_handle = 12298 +simx_cmd_get_distance_handle = 12299 +simx_cmd_display_dialog = 12300 +simx_cmd_clear_float_signal = 12301 +simx_cmd_clear_integer_signal = 12302 +simx_cmd_clear_string_signal = 12303 +simx_cmd_get_float_signal = 12304 +simx_cmd_get_integer_signal = 12305 +simx_cmd_get_string_signal = 12306 +simx_cmd_set_float_signal = 12307 +simx_cmd_set_integer_signal = 12308 +simx_cmd_set_string_signal = 12309 +simx_cmd_append_string_signal = 12310 +simx_cmd_write_string_stream = 12310 +simx_cmd_get_and_clear_string_signal = 12311 +simx_cmd_read_string_stream = 12312 +simx_cmd_get_collection_handle = 12313 +simx_cmd4bytes2strings_start = 13312 +simx_cmd_call_script_function = 13313 +simx_cmd4bytes2strings_end = 13568 +simx_cmd1string_custom_start = 14336 +simx_cmdreserved_start = 16384 +simx_cmdmask = 65535 +simx_opmode_oneshot = 0 +simx_opmode_blocking = 65536 +simx_opmode_oneshot_wait = 65536 +simx_opmode_streaming = 131072 +simx_opmode_continuous = 131072 +simx_opmode_oneshot_split = 196608 +simx_opmode_streaming_split = 262144 +simx_opmode_continuous_split = 262144 +simx_opmode_discontinue = 327680 +simx_opmode_buffer = 393216 +simx_opmode_remove = 458752 + +simx_return_ok = 0 +simx_return_novalue_flag = 1 +simx_return_timeout_flag = 2 +simx_return_illegal_opmode_flag = 4 +simx_return_remote_error_flag = 8 +simx_return_split_progress_flag = 16 +simx_return_local_error_flag = 32 +simx_return_initialize_error_flag = 64 + +simx_error_noerror = 0 +simx_error_novalue_flag = 1 +simx_error_timeout_flag = 2 +simx_error_illegal_opmode_flag = 4 +simx_error_remote_error_flag = 8 +simx_error_split_progress_flag = 16 +simx_error_local_error_flag = 32 +simx_error_initialize_error_flag = 64 + +simros_strmcmdnull_start = 0 +simros_strmcmd_get_object_selection = 1 +simros_strmcmd_get_info = 2 +simros_strmcmdnull_subscriber_start = 2048 +simros_strmcmd_add_status_bar_message = 2049 +simros_strmcmd_set_object_selection = 2050 +simros_strmcmd_set_joint_state = 2051 +simros_strmcmdint_start = 4096 +simros_strmcmd_get_array_parameter = 4097 +simros_strmcmd_get_boolean_parameter = 4098 +simros_strmcmd_get_dialog_result = 4099 +simros_strmcmd_get_floating_parameter = 4100 +simros_strmcmd_get_integer_parameter = 4101 +simros_strmcmd_get_joint_state = 4102 +simros_strmcmd_get_object_parent = 4103 +simros_strmcmd_get_objects = 4104 +simros_strmcmd_get_string_parameter = 4105 +simros_strmcmd_get_ui_event_button = 4106 +simros_strmcmd_get_vision_sensor_depth_buffer = 4107 +simros_strmcmd_get_vision_sensor_image = 4108 +simros_strmcmd_read_collision = 4109 +simros_strmcmd_read_distance = 4110 +simros_strmcmd_read_force_sensor = 4111 +simros_strmcmd_read_proximity_sensor = 4112 +simros_strmcmd_read_vision_sensor = 4113 +simros_strmcmd_get_vision_sensor_info = 4114 +simros_strmcmd_get_range_finder_data = 4115 +simros_strmcmd_get_laser_scanner_data = 4116 +simros_strmcmd_get_odom_data = 4117 +simros_strmcmd_get_depth_sensor_data = 4118 +simros_strmcmdint_subscriber_start = 6144 +simros_strmcmd_auxiliary_console_print = 6145 +simros_strmcmd_set_array_parameter = 6146 +simros_strmcmd_set_boolean_parameter = 6147 +simros_strmcmd_set_floating_parameter = 6148 +simros_strmcmd_set_integer_parameter = 6149 +simros_strmcmd_set_joint_force = 6150 +simros_strmcmd_set_joint_position = 6151 +simros_strmcmd_set_joint_target_position = 6152 +simros_strmcmd_set_joint_target_velocity = 6153 +simros_strmcmd_set_vision_sensor_image = 6154 +simros_strmcmd_set_joy_sensor = 6155 +simros_strmcmd_set_twist_command = 6156 +simros_strmcmdintint_start = 8192 +simros_strmcmd_get_object_pose = 8193 +simros_strmcmd_get_object_float_parameter = 8194 +simros_strmcmd_get_object_int_parameter = 8195 +simros_strmcmd_get_ui_button_property = 8196 +simros_strmcmd_get_ui_slider = 8197 +simros_strmcmd_get_transform = 8198 +simros_strmcmd_get_object_group_data = 8199 +simros_strmcmdintint_subscriber_start = 10240 +simros_strmcmd_set_object_float_parameter = 10241 +simros_strmcmd_set_object_int_parameter = 10242 +simros_strmcmd_set_object_pose = 10243 +simros_strmcmd_set_object_position = 10244 +simros_strmcmd_set_object_quaternion = 10245 +simros_strmcmd_set_ui_button_label = 10246 +simros_strmcmd_set_ui_button_property = 10247 +simros_strmcmd_set_ui_slider = 10248 +simros_strmcmdstring_start = 12288 +simros_strmcmd_get_float_signal = 12289 +simros_strmcmd_get_integer_signal = 12290 +simros_strmcmd_get_string_signal = 12291 +simros_strmcmd_reserved1 = 12292 +simros_strmcmd_get_and_clear_string_signal = 12293 +simros_strmcmdstring_subscriber_start = 14336 +simros_strmcmd_clear_float_signal = 14337 +simros_strmcmd_clear_integer_signal = 14338 +simros_strmcmd_clear_string_signal = 14339 +simros_strmcmd_set_float_signal = 14340 +simros_strmcmd_set_integer_signal = 14341 +simros_strmcmd_set_string_signal = 14342 +simros_strmcmd_reserved2 = 14343 +simros_strmcmd_append_string_signal = 14344 +simros_strmcmd_set_joint_trajectory = 14345 +simros_strmcmdintstring_start = 16384 +simros_strmcmd_get_twist_status = 16385 +simros_strmcmd_receive_data_from_script_function = 16386 +simros_strmcmdintstring_subscriber_start = 18432 +simros_strmcmd_send_data_to_script_function = 18433 +simros_strmcmdreserved_start = 20480 + +# Followings are copied from official simConst.py (so possibly deprecated in C++ API) +sim_appobj_constraintsolver_type = 114 +sim_boolparam_full_model_copy_from_api = 24 +sim_boolparam_joint_motion_handling_enabled = 7 +sim_boolparam_path_motion_handling_enabled = 8 +sim_boolparam_threaded_rendering_enabled = 32 +sim_ik_avoidance_constraint = 64 +sim_intparam_event_flags_read = 17 +sim_intparam_event_flags_read_clear = 18 +sim_jointmode_ikdependent = 3 +sim_jointmode_motion = 1 +sim_modelproperty_not_cuttable = 16 +sim_mplanintparam_clear_nodes = 25002 +sim_mplanintparam_nodes_computed = 25000 +sim_mplanintparam_prepare_nodes = 25001 +sim_navigation_ikmanip = 12 +sim_navigation_jointpathtest = 11 +sim_navigation_objectmultipleselection = 13 +sim_object_volume_type = 10 +sim_objectspecialproperty_cuttable = 1024 +sim_pathproperty_auto_velocity_profile_rotation = 512 +sim_pathproperty_auto_velocity_profile_translation = 256 +sim_pathproperty_endpoints_at_zero = 1024 +sim_pathproperty_infinite_acceleration = 32 +sim_pathproperty_invert_velocity = 16 +sim_scripttype_contactcallback = 5 +sim_scripttype_generalcallback = 7 +sim_scripttype_jointctrlcallback = 4 \ No newline at end of file diff --git a/external/pyrep/pyrep/backend/utils.py b/external/pyrep/pyrep/backend/utils.py new file mode 100644 index 0000000000000000000000000000000000000000..3dcc30d356d24124eb9d2dc0cfbc2d5007b70bef --- /dev/null +++ b/external/pyrep/pyrep/backend/utils.py @@ -0,0 +1,76 @@ +from threading import Lock +from typing import List, Tuple +from pyrep.backend import sim +from pyrep.objects.object import Object +from pyrep.objects.shape import Shape +from pyrep.objects.dummy import Dummy +from pyrep.objects.cartesian_path import CartesianPath +from pyrep.objects.joint import Joint +from pyrep.objects.vision_sensor import VisionSensor +from pyrep.objects.force_sensor import ForceSensor +from pyrep.objects.proximity_sensor import ProximitySensor +from pyrep.objects.camera import Camera +from pyrep.objects.octree import Octree + +step_lock = Lock() + + +def to_type(handle: int) -> Object: + """Converts an object handle to the correct sub-type. + + :param handle: The internal handle of an object. + :return: The sub-type of this object. + """ + t = sim.simGetObjectType(handle) + if t == sim.sim_object_shape_type: + return Shape(handle) + elif t == sim.sim_object_dummy_type: + return Dummy(handle) + elif t == sim.sim_object_path_type: + return CartesianPath(handle) + elif t == sim.sim_object_joint_type: + return Joint(handle) + elif t == sim.sim_object_visionsensor_type: + return VisionSensor(handle) + elif t == sim.sim_object_forcesensor_type: + return ForceSensor(handle) + elif t == sim.sim_object_proximitysensor_type: + return ProximitySensor(handle) + elif t == sim.sim_object_camera_type: + return Camera(handle) + elif t == sim.sim_object_octree_type: + return Octree(handle) + raise ValueError + + +def script_call(function_name_at_script_name: str, + script_handle_or_type: int, + ints=(), floats=(), strings=(), bytes='') -> ( + Tuple[List[int], List[float], List[str], str]): + """Calls a script function (from a plugin, the main client application, + or from another script). This represents a callback inside of a script. + + :param function_name_at_script_name: A string representing the function + name and script name, e.g. myFunctionName@theScriptName. When the + script is not associated with an object, then just specify the + function name. + :param script_handle_or_type: The handle of the script, otherwise the + type of the script. + :param ints: The input ints to the script. + :param floats: The input floats to the script. + :param strings: The input strings to the script. + :param bytes: The input bytes to the script (as a string). + :return: Any number of return values from the called Lua function. + """ + return sim.simExtCallScriptFunction( + function_name_at_script_name, script_handle_or_type, list(ints), + list(floats), list(strings), bytes) + + +def _is_in_ipython(): + try: + __IPYTHON__ + return True + except NameError: + pass + return False diff --git a/external/pyrep/pyrep/misc/__init__.py b/external/pyrep/pyrep/misc/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/external/pyrep/pyrep/misc/distance.py b/external/pyrep/pyrep/misc/distance.py new file mode 100644 index 0000000000000000000000000000000000000000..43e3338073158fc727b2a053b2350551530200c4 --- /dev/null +++ b/external/pyrep/pyrep/misc/distance.py @@ -0,0 +1,49 @@ +from pyrep.errors import PyRepError +from pyrep.backend import sim +from typing import Union + + +class Distance(object): + """Allows registering distance objects which are measurable entity-pairs.""" + + def __init__(self, name_or_handle: Union[str, int]): + raise PyRepError( + 'Currently there is an error in CoppeliaSim with distance objects. ' + 'As soon as CoppeliaSim resolves this issue, this error will be ' + 'removed.') + self._handle: int + if isinstance(name_or_handle, int): + self._handle = name_or_handle + else: + self._handle = sim.simGetDistanceHandle(name_or_handle) + # The entity needs to be set as explicit handling for reads to work. + if not sim.simGetExplicitHandling(self._handle): + sim.simSetExplicitHandling(self._handle, 1) + + def __eq__(self, other: object): + if not isinstance(other, Distance): + raise NotImplementedError + return self.get_handle() == other.get_handle() + + def get_handle(self) -> int: + """Gets the internal handle of this object. + + :return: The internal handle. + """ + return self._handle + + def read(self) -> Union[float, None]: + """Reads the distance of a registered distance object. + + :raises: PyRepError if no objects could be measured. + + :return: The smallest distance between the 2 entities or None if no + measurement could be made. + """ + num_measurements = sim.simHandleDistance(self._handle) + if num_measurements == 0: + raise PyRepError( + 'Could not make a measurement. Are both entities associated ' + 'with the distance object marked as measurable?') + return (None if num_measurements == 0 + else sim.simReadDistance(self._handle)) diff --git a/external/pyrep/pyrep/misc/signals.py b/external/pyrep/pyrep/misc/signals.py new file mode 100644 index 0000000000000000000000000000000000000000..c1513af427023d395880eee081c47e0e371396f0 --- /dev/null +++ b/external/pyrep/pyrep/misc/signals.py @@ -0,0 +1,102 @@ +from pyrep.errors import PyRepError +from pyrep.backend import sim +from typing import Any + + +class Signal(object): + """Signals can be seen as global variables. + + Four types of signals are currently supported: + integer-, floating-, double-, and string-type signals. + Signals can be defined, redefined, read and cleared. + """ + + def __init__(self, name): + self._name = name + + def set(self, value) -> None: + """Sets the value of this signal. + + :param value: The value of the signal. + """ + pass + + def get(self) -> Any: + """Gets the value of this signal. + + :raises PyRepError if signal does not exist. + :return: The value of the signal. + """ + pass + + def clear(self) -> int: + """Clears the value of this signal. + + :return: The number of signals cleared. Either 0 or 1. + """ + pass + + def _check_signal(self, value: int, type_name: str) -> None: + if value == 0: + raise PyRepError('Signal %s of type %s does not exist.' % ( + self._name, type_name)) + + +class IntegerSignal(Signal): + """An integer-type signal.""" + + def set(self, value) -> None: + sim.simSetIntegerSignal(self._name, value) + + def get(self) -> int: + ret, value = sim.simGetIntegerSignal(self._name) + self._check_signal(ret, 'int') + return value + + def clear(self) -> int: + return sim.simClearIntegerSignal(self._name) + + +class FloatSignal(Signal): + """An float-type signal.""" + + def set(self, value) -> None: + sim.simSetFloatSignal(self._name, value) + + def get(self) -> float: + ret, value = sim.simGetFloatSignal(self._name) + self._check_signal(ret, 'float') + return value + + def clear(self) -> int: + return sim.simClearFloatSignal(self._name) + + +class DoubleSignal(Signal): + """An double-type signal.""" + + def set(self, value) -> None: + sim.simSetDoubleSignal(self._name, value) + + def get(self) -> float: + ret, value = sim.simGetDoubleSignal(self._name) + self._check_signal(ret, 'double') + return value + + def clear(self) -> int: + return sim.simClearDoubleSignal(self._name) + + +class StringSignal(Signal): + """An string-type signal.""" + + def set(self, value) -> None: + sim.simSetStringSignal(self._name, value) + + def get(self) -> str: + ret, value = sim.simGetStringSignal(self._name) + self._check_signal(ret, 'string') + return value + + def clear(self) -> int: + return sim.simClearStringSignal(self._name) diff --git a/external/pyrep/pyrep/objects/__init__.py b/external/pyrep/pyrep/objects/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..6860e72114b5a3e1deaf22b564183bfd533975c4 --- /dev/null +++ b/external/pyrep/pyrep/objects/__init__.py @@ -0,0 +1,10 @@ +from pyrep.objects.object import Object +from pyrep.objects.cartesian_path import CartesianPath +from pyrep.objects.dummy import Dummy +from pyrep.objects.force_sensor import ForceSensor +from pyrep.objects.joint import Joint +from pyrep.objects.proximity_sensor import ProximitySensor +from pyrep.objects.shape import Shape +from pyrep.objects.vision_sensor import VisionSensor +from pyrep.objects.octree import Octree +from pyrep.objects.camera import Camera diff --git a/external/pyrep/pyrep/objects/camera.py b/external/pyrep/pyrep/objects/camera.py new file mode 100644 index 0000000000000000000000000000000000000000..90536bc2360ec96d5c1d476875e76846074b87f2 --- /dev/null +++ b/external/pyrep/pyrep/objects/camera.py @@ -0,0 +1,21 @@ +from typing import Union +from pyrep.objects.object import Object, object_type_to_class +from pyrep.const import ObjectType + + +class Camera(Object): + """Cameras can be associated with views. + """ + + def __init__(self, name_or_handle: Union[str, int]): + super().__init__(name_or_handle) + + @staticmethod + def create(): + raise NotImplementedError("API does not provide simCreateCamera.") + + def _get_requested_type(self) -> ObjectType: + return ObjectType.CAMERA + + +object_type_to_class[ObjectType.CAMERA] = Camera diff --git a/external/pyrep/pyrep/objects/cartesian_path.py b/external/pyrep/pyrep/objects/cartesian_path.py new file mode 100644 index 0000000000000000000000000000000000000000..32e57024521e4105a54fae46aa07a1542ae68dd1 --- /dev/null +++ b/external/pyrep/pyrep/objects/cartesian_path.py @@ -0,0 +1,107 @@ +from typing import Tuple, List +from pyrep.backend import sim +from pyrep.objects.object import Object, object_type_to_class +from pyrep.const import ObjectType + + +class CartesianPath(Object): + """An object that defines a cartesian path or trajectory in space. + """ + + @staticmethod + def create(show_line: bool = True, show_orientation: bool = True, + show_position: bool = True, closed_path: bool = False, + automatic_orientation: bool = True, flat_path: bool = False, + keep_x_up: bool = False, line_size: int = 1, + length_calculation_method: int = sim.sim_distcalcmethod_dl_if_nonzero, control_point_size: float = 0.01, + ang_to_lin_conv_coeff: float = 1., virt_dist_scale_factor: float = 1., + path_color: tuple = (0.1, 0.75, 1.)) -> 'CartesianPath': + """Creates a cartesian path and inserts in the scene. + + :param show_line: Shows line in UI. + :param show_position: Shows line in UI. + :param show_orientation: Shows orientation in UI. + :param closed_path: If set, then a path's last control point will be + linked to its first control point to close the path and make its + operation cyclic. A minimum of 3 control points are required for + a path to be closed. + :param automatic_orientation: If set, then all control points and + Bezier point's orientation will automatically be calculated in + order to have a point's z-axis along the path, and its y-axis + pointing outwards its curvature (if keep x up is enabled, the + y-axis is not particularly constrained). If disabled, the user + determines the control point's orientation and the Bezier points' + orientation will be interpolated from the path's control points' + orientation. + :param flat_path: If set, then all control points (and subsequently all + Bezier points) will be constraint to the z=0 plane of the path + object's local reference frame. + :param keep_x_up: If set, then the automatic orientation functionality + will align each Bezier point's z-axis along the path and keep its + x-axis pointing along the path object's z-axis. + :param line_size: Size of the line in pixels. + :param length_calculation_method: Method for calculating the path length. See + https://www.coppeliarobotics.com/helpFiles/en/apiConstants.htm#distanceCalculationMethods + :param control_point_size: Size of the control points in the path. + :param ang_to_lin_conv_coeff: The angular to linear conversion coefficient. + :param virt_dist_scale_factor: The virtual distance scaling factor. + :param path_color: Ambient diffuse rgb color of the path. + + :return: The newly created cartesian path. + """ + attributes = 0 + if show_line: + attributes |= sim.sim_pathproperty_show_line + if show_orientation: + attributes |= sim.sim_pathproperty_show_orientation + if closed_path: + attributes |= sim.sim_pathproperty_closed_path + if automatic_orientation: + attributes |= sim.sim_pathproperty_automatic_orientation + if flat_path: + attributes |= sim.sim_pathproperty_flat_path + if show_position: + attributes |= sim.sim_pathproperty_show_position + if keep_x_up: + attributes |= sim.sim_pathproperty_keep_x_up + + handle = sim.simCreatePath(attributes, [line_size, length_calculation_method, 0], + [control_point_size, ang_to_lin_conv_coeff, virt_dist_scale_factor], + list(path_color)) + return CartesianPath(handle) + + def _get_requested_type(self) -> ObjectType: + return ObjectType.PATH + + def get_pose_on_path(self, relative_distance: float + ) -> Tuple[List[float], List[float]]: + """Retrieves the absolute interpolated pose of a point along the path. + + :param relative_distance: A value between 0 and 1, where 0 is the + beginning of the path, and 1 the end of the path. + :return: A tuple containing the x, y, z position, and the x, y, z + orientation of the point on the path (in radians). + """ + pos = sim.simGetPositionOnPath(self._handle, relative_distance) + ori = sim.simGetOrientationOnPath(self._handle, relative_distance) + return pos, ori + + def insert_control_points(self, poses: List[List[float]]) -> None: + """Inserts one or several control points into the path. + + :param poses: A list of lists containing 6 values representing the pose + of each of the new control points. Orientation in radians. + """ + data = [] + for p in poses: + data.extend(p) + self._script_call('insertPathControlPoint@PyRep', + ints=[self._handle, len(poses)], floats=data) + + def _script_call(self, func: str, ints=(), floats=(), strings=(), bytes=''): + return sim.simExtCallScriptFunction( + func, sim.sim_scripttype_addonscript, + list(ints), list(floats), list(strings), bytes) + + +object_type_to_class[ObjectType.PATH] = CartesianPath diff --git a/external/pyrep/pyrep/objects/dummy.py b/external/pyrep/pyrep/objects/dummy.py new file mode 100644 index 0000000000000000000000000000000000000000..7f7934e2b449fa1a4e77d52d67dce3b3d0fc7467 --- /dev/null +++ b/external/pyrep/pyrep/objects/dummy.py @@ -0,0 +1,26 @@ +from pyrep.objects.object import Object, object_type_to_class +from pyrep.const import ObjectType +from pyrep.backend import sim + + +class Dummy(Object): + """A point with orientation. + + Dummies are multipurpose objects that can have many different applications. + """ + + @staticmethod + def create(size=0.01) -> 'Dummy': + """Creates a dummy object and inserts in the scene. + + :param size: The size of the dummy object. + :return: The newly created Dummy. + """ + handle = sim.simCreateDummy(size, None) + return Dummy(handle) + + def _get_requested_type(self) -> ObjectType: + return ObjectType.DUMMY + + +object_type_to_class[ObjectType.DUMMY] = Dummy diff --git a/external/pyrep/pyrep/objects/force_sensor.py b/external/pyrep/pyrep/objects/force_sensor.py new file mode 100644 index 0000000000000000000000000000000000000000..f450455ea2c7d22a4a87f329d879e3d7299093db --- /dev/null +++ b/external/pyrep/pyrep/objects/force_sensor.py @@ -0,0 +1,34 @@ +from typing import Tuple, List +from pyrep.backend import sim +from pyrep.objects.object import Object, object_type_to_class +from pyrep.const import ObjectType + + +class ForceSensor(Object): + """An object able to measure forces and torques that are applied to it. + """ + + def _get_requested_type(self) -> ObjectType: + return ObjectType.FORCE_SENSOR + + @classmethod + def create(cls, sensor_size=0.01) -> 'ForceSensor': + options = 0 # force and torque threshold are disabled + intParams = [0, 0, 0, 0, 0] + floatParams = [sensor_size, 0, 0, 0, 0] + handle = sim.simCreateForceSensor(options=0, intParams=intParams, + floatParams=floatParams, color=None) + return cls(handle) + + def read(self) -> Tuple[List[float], List[float]]: + """Reads the force and torque applied to a force sensor. + + :return: A tuple containing the applied forces along the + sensor's x, y and z-axes, and the torques along the + sensor's x, y and z-axes. + """ + _, forces, torques = sim.simReadForceSensor(self._handle) + return forces, torques + + +object_type_to_class[ObjectType.FORCE_SENSOR] = ForceSensor diff --git a/external/pyrep/pyrep/objects/joint.py b/external/pyrep/pyrep/objects/joint.py new file mode 100644 index 0000000000000000000000000000000000000000..4ab0d6d835feb1f16f4cb1e6042af1c8c8e20585 --- /dev/null +++ b/external/pyrep/pyrep/objects/joint.py @@ -0,0 +1,255 @@ +from typing import Tuple, List, Union +from pyrep.backend import sim, utils +from pyrep.const import JointType, JointMode +from pyrep.objects.object import Object, object_type_to_class +from pyrep.const import ObjectType + + +class Joint(Object): + """A joint or actuator. + + Four types are supported: revolute joints, prismatic joints, + screws and spherical joints. + """ + + def __init__(self, name_or_handle: Union[str, int]): + super().__init__(name_or_handle) + + def _get_requested_type(self) -> ObjectType: + return ObjectType.JOINT + + def get_joint_type(self) -> JointType: + """Retrieves the type of a joint. + + :return: The type of the joint. + """ + return JointType(sim.simGetJointType(self._handle)) + + def get_joint_position(self) -> float: + """Retrieves the intrinsic position of a joint. + + This function cannot be used with spherical joints. + + :return: Intrinsic position of the joint. This is a one-dimensional + value: if the joint is revolute, the rotation angle is returned, + if the joint is prismatic, the translation amount is returned, etc. + """ + return sim.simGetJointPosition(self._handle) + + def set_joint_position(self, position: float, + disable_dynamics: bool = False) -> None: + """Sets the intrinsic position of the joint. + + :param disable_dynamics: If True, then the position can be set even + when the joint mode is in Force mode. It will disable dynamics, + move the joint, and then re-enable dynamics. + + :param position: Position of a joint (angular or linear + values depending on the joint type). + """ + if not disable_dynamics: + sim.simSetJointPosition(self._handle, position) + return + + is_model = self.is_model() + if not is_model: + self.set_model(True) + + prior = sim.simGetModelProperty(self.get_handle()) + p = prior | sim.sim_modelproperty_not_dynamic + # Disable the dynamics + sim.simSetModelProperty(self._handle, p) + with utils.step_lock: + sim.simExtStep(True) # Have to step for changes to take effect + + sim.simSetJointPosition(self._handle, position) + self.set_joint_target_position(position) + + with utils.step_lock: + sim.simExtStep(True) # Have to step for changes to take effect + # Re-enable the dynamics + sim.simSetModelProperty(self._handle, prior) + self.set_model(is_model) + + def get_joint_target_position(self) -> float: + """Retrieves the target position of a joint. + + :return: Target position of the joint (angular or linear value + depending on the joint type). + """ + return sim.simGetJointTargetPosition(self._handle) + + def set_joint_target_position(self, position: float) -> None: + """Sets the target position of a joint. + + This command makes only sense when the joint is in torque/force mode + (also make sure that the joint's motor and position control + are enabled). + + :param position: Target position of the joint (angular or linear + value depending on the joint type). + """ + sim.simSetJointTargetPosition(self._handle, position) + + def get_joint_target_velocity(self) -> float: + """Retrieves the intrinsic target velocity of a non-spherical joint. + + :return: Target velocity of the joint (linear or angular velocity + depending on the joint-type). + """ + return sim.simGetJointTargetVelocity(self._handle) + + def set_joint_target_velocity(self, velocity: float) -> None: + """Sets the intrinsic target velocity of a non-spherical joint. + + This command makes only sense when the joint mode is torque/force + mode: the dynamics functionality and the joint motor have to be + enabled (position control should however be disabled). + + :param velocity: Target velocity of the joint (linear or angular + velocity depending on the joint-type). + """ + sim.simSetJointTargetVelocity(self._handle, velocity) + + def get_joint_force(self) -> float: + """Retrieves the force or torque applied along/about its active axis. + + This function retrieves meaningful information only if the joint is + prismatic or revolute, and is dynamically enabled. With the Bullet + engine, this function returns the force or torque applied to the joint + motor (torques from joint limits are not taken into account). With the + ODE and Vortex engine, this function returns the total force or torque + applied to a joint along/about its z-axis. + + :return: The force or the torque applied to the joint along/about + its z-axis. + """ + return sim.simGetJointForce(self._handle) + + def set_joint_force(self, force: float) -> None: + """Sets the maximum force or torque that a joint can exert. + + The joint will apply that force/torque until the joint target velocity + has been reached. To apply a negative force/torque, set a negative + target velocity. This function has no effect when the joint is not + dynamically enabled, or when it is a spherical joint. + + :param force: The maximum force or torque that the joint can exert. + This cannot be a negative value. + """ + sim.simSetJointMaxForce(self._handle, force) + + def get_joint_velocity(self) -> float: + """Get the current joint velocity. + + :return: Velocity of the joint (linear or angular velocity depending + on the joint-type). + """ + return sim.simGetObjectFloatParameter( + self._handle, sim.sim_jointfloatparam_velocity) + + def get_joint_interval(self) -> Tuple[bool, List[float]]: + """Retrieves the interval parameters of a joint. + + :return: A tuple containing a bool indicates whether the joint is cyclic + (the joint varies between -pi and +pi in a cyclic manner), and a + list containing the interval of the joint. interval[0] is the joint + minimum allowed value, interval[1] is the joint range (the maximum + allowed value is interval[0]+interval[1]). When the joint is + "cyclic", then the interval parameters don't have any meaning. + """ + cyclic, interval = sim.simGetJointInterval(self._handle) + return cyclic, interval + + def set_joint_interval(self, cyclic: bool, interval: List[float]) -> None: + """Sets the interval parameters of a joint (i.e. range values). + + The attributes or interval parameters might have no effect, depending + on the joint-type. + + :param cyclic: Indicates whether the joint is cyclic. + Only revolute joints with a pitch of 0 can be cyclic. + :param interval: Interval of the joint. interval[0] is the joint minimum + allowed value, interval[1] is the joint range (i.e. the maximum + allowed value is interval[0]+interval[1]). + """ + sim.simSetJointInterval(self._handle, cyclic, interval) + + def get_joint_upper_velocity_limit(self) -> float: + """Gets the joints upper velocity limit. + + :return: The upper velocity limit. + """ + return sim.simGetObjectFloatParameter( + self._handle, sim.sim_jointfloatparam_upper_limit) + + def is_control_loop_enabled(self) -> bool: + """Gets whether the control loop is enable. + + :return: True if the control loop is enabled. + """ + return sim.simGetObjectInt32Parameter( + self._handle, sim.sim_jointintparam_ctrl_enabled) + + def set_control_loop_enabled(self, value: bool) -> None: + """Sets whether the control loop is enable. + + :param value: The new value for the control loop state. + """ + sim.simSetObjectInt32Parameter( + self._handle, sim.sim_jointintparam_ctrl_enabled, value) + + def is_motor_enabled(self) -> bool: + """Gets whether the motor is enable. + + :return: True if the motor is enabled. + """ + return sim.simGetObjectInt32Parameter( + self._handle, sim.sim_jointintparam_motor_enabled) + + def set_motor_enabled(self, value: bool) -> None: + """Sets whether the motor is enable. + + :param value: The new value for the motor state. + """ + sim.simSetObjectInt32Parameter( + self._handle, sim.sim_jointintparam_motor_enabled, value) + + def is_motor_locked_at_zero_velocity(self) -> bool: + """Gets if the motor is locked when target velocity is zero. + + When enabled in velocity mode and its target velocity is zero, then the + joint is locked in place. + + :return: If the motor will be locked at zero velocity. + """ + return sim.simGetObjectInt32Parameter( + self._handle, sim.sim_jointintparam_velocity_lock) + + def set_motor_locked_at_zero_velocity(self, value: bool) -> None: + """Set if the motor is locked when target velocity is zero. + + When enabled in velocity mode and its target velocity is zero, then the + joint is locked in place. + + :param value: If the motor should be locked at zero velocity. + """ + sim.simSetObjectInt32Parameter( + self._handle, sim.sim_jointintparam_velocity_lock, value) + + def get_joint_mode(self) -> JointMode: + """Retrieves the operation mode of the joint. + + :return: The joint mode. + """ + return JointMode(sim.simGetJointMode(self._handle)) + + def set_joint_mode(self, value: JointMode) -> None: + """Sets the operation mode of the joint. + + :param value: The new joint mode value. + """ + sim.simSetJointMode(self._handle, value.value) + + +object_type_to_class[ObjectType.JOINT] = Joint diff --git a/external/pyrep/pyrep/objects/light.py b/external/pyrep/pyrep/objects/light.py new file mode 100644 index 0000000000000000000000000000000000000000..aaf0e3b3a7549d811d2be1e503b08c4f001babc2 --- /dev/null +++ b/external/pyrep/pyrep/objects/light.py @@ -0,0 +1,125 @@ +import warnings +import numpy as np +from typing import Union +from pyrep.backend import sim +from pyrep.const import ObjectType +from pyrep.objects.object import Object, object_type_to_class + + +class Light(Object): + """A light. + """ + + def __init__(self, name_or_handle: Union[str, int]): + super().__init__(name_or_handle) + + def _get_requested_type(self) -> ObjectType: + return ObjectType.LIGHT + + # On and Off + + def turn_on(self): + """ Turn the light on. + """ + sim.simSetLightParameters(self._handle, True) + + def turn_off(self): + """ Turn the light off. + """ + sim.simSetLightParameters(self._handle, False) + + def is_on(self): + """ Determines whether the light is on. + return: Boolean + """ + return sim.simGetLightParameters(self._handle)[0] + + def is_off(self): + """ Determines whether the light is off. + return: Boolean + """ + return not sim.simGetLightParameters(self._handle)[0] + + # Get and Set Color + + def get_diffuse(self): + """ Get the diffuse colors of the light. + return: 3-vector np.array of diffuse colors + """ + return np.asarray(sim.simGetLightParameters(self._handle)[1]) + + def set_diffuse(self, diffuse): + """ Set the diffuse colors of the light. + """ + sim.simSetLightParameters(self._handle, self.is_on(), list(diffuse)) + + def get_specular(self): + """ Get the specular colors of the light. + return: 3-vector np.array of specular colors + """ + return np.asarray(sim.simGetLightParameters(self._handle)[2]) + + def set_specular(self, specular): + """ Set the specular colors of the light. + """ + sim.simSetLightParameters(self._handle, self.is_on(), specularPart=list(specular)) + + # Intensity Properties + + def get_intensity_properties(self): + """ Gets light intensity properties. + + :return: The light intensity properties cast_shadows, spot_exponent, spot_cutoff, const_atten_factor, + linear_atten_factor, quad_atten_factor + """ + cast_shadows = sim.simGetObjectInt32Parameter(self._handle, sim.sim_lightintparam_pov_casts_shadows) + spot_exponent = sim.simGetObjectFloatParameter(self._handle, sim.sim_lightfloatparam_spot_exponent) + spot_cutoff = sim.simGetObjectFloatParameter(self._handle, sim.sim_lightfloatparam_spot_cutoff) + const_atten_factor = sim.simGetObjectFloatParameter(self._handle, sim.sim_lightfloatparam_const_attenuation) + linear_atten_factor = sim.simGetObjectFloatParameter(self._handle, sim.sim_lightfloatparam_lin_attenuation) + quad_atten_factor = sim.simGetObjectFloatParameter(self._handle, sim.sim_lightfloatparam_quad_attenuation) + return bool(cast_shadows), spot_exponent, spot_cutoff, const_atten_factor, linear_atten_factor,\ + quad_atten_factor + + def set_intensity_properties(self, cast_shadows=None, spot_exponent=None, spot_cutoff=None, const_atten_factor=None, + linear_atten_factor=None, quad_atten_factor=None): + """ Set light intensity properties. + + :param cast_shadows: POV-Ray light casts shadows + :param spot_exponent: light spot exponent + :param spot_cutoff: light spot cutoff + :param const_atten_factor: light constant attenuation factor, currently not supported + :param linear_atten_factor: light linear attenuation factor, currently not supported + :param quad_atten_factor: light quadratic attenuation factor, currently not supported + """ + if cast_shadows is not None: + sim.simSetObjectInt32Parameter( + self._handle, sim.sim_lightintparam_pov_casts_shadows, int(cast_shadows)) + if spot_exponent is not None: + if spot_exponent % 1 != 0: + warnings.warn('spot exponent must be an integer, rounding input of {} to {}'.format( + spot_exponent, round(spot_exponent))) + sim.simSetObjectFloatParameter( + self._handle, sim.sim_lightfloatparam_spot_exponent, float(round(spot_exponent))) + if spot_cutoff is not None: + spot_cutoff = float(spot_cutoff) + if spot_cutoff > np.pi/2: + warnings.warn('Tried to set spot_cutoff to {}, but the maximum allowed value is pi/2,' + 'therefore setting to pi/2'.format(spot_cutoff)) + sim.simSetObjectFloatParameter( + self._handle, sim.sim_lightfloatparam_spot_cutoff, float(spot_cutoff)) + if const_atten_factor is not None: + raise Exception('CoppeliaSim currently does not support setting attenuation factors') + # sim.simSetObjectFloatParameter( + # self._handle, sim.sim_lightfloatparam_const_attenuation, float(const_atten_factor)) + if linear_atten_factor is not None: + raise Exception('CoppeliaSim currently does not support setting attenuation factors') + # sim.simSetObjectFloatParameter( + # self._handle, sim.sim_lightfloatparam_lin_attenuation, float(linear_atten_factor)) + if quad_atten_factor is not None: + raise Exception('CoppeliaSim currently does not support setting attenuation factors') + # sim.simSetObjectFloatParameter( + # self._handle, sim.sim_lightfloatparam_quad_attenuation, float(quad_atten_factor)) + + +object_type_to_class[ObjectType.LIGHT] = Light diff --git a/external/pyrep/pyrep/objects/object.py b/external/pyrep/pyrep/objects/object.py new file mode 100644 index 0000000000000000000000000000000000000000..a4da64dc26be4b2476cc4bb988ba4b12910ac27c --- /dev/null +++ b/external/pyrep/pyrep/objects/object.py @@ -0,0 +1,756 @@ +import warnings + +from pyrep.backend import sim +from pyrep.errors import * +from pyrep.const import ObjectType +from pyrep.errors import WrongObjectTypeError +from typing import Any, Dict, List, Tuple, Union +import numpy as np + + +object_type_to_class: Dict[ObjectType, Any] = {} + + +class Object(object): + """Base class for V-REP scene objects that are used for building a scene. + + Objects are visible in the scene hierarchy and in the scene view. + """ + + def __init__(self, name_or_handle: Union[str, int]): + if isinstance(name_or_handle, int): + self._handle = name_or_handle + else: + self._handle = sim.simGetObjectHandle(name_or_handle) + assert_type = self._get_requested_type() + actual = ObjectType(sim.simGetObjectType(self._handle)) + if actual != assert_type: + raise WrongObjectTypeError( + 'You requested object of type %s, but the actual type was ' + '%s' % (assert_type.name, actual.name)) + + def __eq__(self, other: object): + if not isinstance(other, Object): + raise NotImplementedError + return self.get_handle() == other.get_handle() + + @staticmethod + def exists(name: str) -> bool: + """Checks if the given object is in the scene. + + :param id: name/id of object. If the name is appended by a "@alt" + suffix, then the object handle based on the object's alternative + name will be retrieved. + :return: True of the object exists. + """ + return sim.hasObjectHandle(name) + + + @staticmethod + def get_object_type(name: str) -> ObjectType: + """Gets the type of the object. + + :return: Type of the object. + """ + return ObjectType(sim.simGetObjectType(sim.simGetObjectHandle(name))) + + @staticmethod + def get_object_name(name_or_handle: Union[str, int]) -> str: + """Gets object name. + + :return: Object name. + """ + if isinstance(name_or_handle, int): + name = sim.simGetObjectName(name_or_handle) + else: + name = name_or_handle + return name + + @staticmethod + def get_object(name_or_handle: str) -> 'Object': + """Gets object retrieved by name. + + :return: The object. + """ + name = Object.get_object_name(name_or_handle) + object_type = Object.get_object_type(name) + cls = object_type_to_class[object_type] + return cls(name) + + def _get_requested_type(self) -> ObjectType: + """Used for internally checking assumptions user made about object type. + + :return: Type of the object. + """ + raise NotImplementedError('Must be overridden.') + + def get_type(self) -> ObjectType: + """Gets the type of the object. + + :return: Type of the object. + """ + return ObjectType(sim.simGetObjectType(self._handle)) + + def get_handle(self) -> int: + """Gets the internal handle of this object. + + :return: The internal handle. + """ + return self._handle + + def still_exists(self) -> bool: + """Gets whether this object is still in the scene or not. + + :return: Whether the object exists or not. + """ + return sim.simGetObjectName(self._handle) != '' + + def get_name(self) -> str: + """Gets the objects name in the scene. + + :return: The objects name. + """ + return sim.simGetObjectName(self._handle) + + def set_name(self, name: str) -> None: + """Sets the objects name in the scene. + """ + sim.simSetObjectName(self._handle, name) + + def get_position(self, relative_to=None) -> np.ndarray: + """Gets the position of this object. + + :param relative_to: Indicates relative to which reference frame we want + the position. Specify None to retrieve the absolute position, or an + Object relative to whose reference frame we want the position. + :return: An array containing the x, y, z position of the object. + """ + relto = -1 if relative_to is None else relative_to.get_handle() + position = sim.simGetObjectPosition(self._handle, relto) + return np.array(position, dtype=np.float64) + + def set_position(self, position: Union[list, np.ndarray], relative_to=None, + reset_dynamics=True) -> None: + """Sets the position of this object. + + :param position: A list containing the x, y, z position of the object. + :param relative_to: Indicates relative to which reference frame the + the position is specified. Specify None to set the absolute + position, or an Object relative to whose reference frame the + position is specified. + :param reset_dynamics: If we want to reset the dynamics when moving + an object instantaneously. + """ + relto = -1 if relative_to is None else relative_to.get_handle() + if reset_dynamics: + for ob in self.get_objects_in_tree(exclude_base=False): + ob.reset_dynamic_object() + + sim.simSetObjectPosition(self._handle, relto, list(position)) + + def get_orientation(self, relative_to=None) -> np.ndarray: + """Gets the orientation of this object. + + :param relative_to: Indicates relative to which reference frame we want + the orientation. Specify None to retrieve the absolute orientation, + or an Object relative to whose reference frame we want the + orientation. + :return: A list containing the x, y, z orientation of the + object (in radians). + """ + relto = -1 if relative_to is None else relative_to.get_handle() + orientation = sim.simGetObjectOrientation(self._handle, relto) + return np.array(orientation, dtype=np.float64) + + def set_orientation(self, orientation: Union[list, np.ndarray], + relative_to=None, reset_dynamics=True) -> None: + """Sets the orientation of this object. + + :param orientation: An array containing the x, y, z orientation of + the object (in radians). + :param relative_to: Indicates relative to which reference frame the + the orientation is specified. Specify None to set the absolute + orientation, or an Object relative to whose reference frame the + orientation is specified. + :param reset_dynamics: If we want to reset the dynamics when rotating + an object instantaneously. + """ + relto = -1 if relative_to is None else relative_to.get_handle() + if reset_dynamics: + for ob in self.get_objects_in_tree(exclude_base=False): + ob.reset_dynamic_object() + sim.simSetObjectOrientation(self._handle, relto, list(orientation)) + + def get_quaternion(self, relative_to=None) -> np.ndarray: + """Retrieves the quaternion (x,y,z,w) of an object. + + :param relative_to: Indicates relative to which reference frame we want + the orientation. Specify None to retrieve the absolute orientation, + or an Object relative to whose reference frame we want the + orientation. + :return: A list containing the quaternion (x,y,z,w). + """ + relto = -1 if relative_to is None else relative_to.get_handle() + quaternion = sim.simGetObjectQuaternion(self._handle, relto) + return np.array(quaternion, dtype=np.float64) + + def set_quaternion(self, quaternion: Union[list, np.ndarray], + relative_to=None, reset_dynamics=True) -> None: + """Sets the orientation of this object. + + If the quaternion is not normalised, it will be normalised for you. + + :param quaternion: An array containing the quaternion (x,y,z,w). + :param relative_to: Indicates relative to which reference frame the + the orientation is specified. Specify None to set the absolute + orientation, or an Object relative to whose reference frame the + orientation is specified. + :param reset_dynamics: If we want to reset the dynamics when rotating + an object instantaneously. + """ + assert len(quaternion) == 4 + quaternion = np.asarray(quaternion) + norm = np.linalg.norm(quaternion) + if norm != 1.0: + quaternion = quaternion / norm + relto = -1 if relative_to is None else relative_to.get_handle() + if reset_dynamics: + for ob in self.get_objects_in_tree(exclude_base=False): + ob.reset_dynamic_object() + sim.simSetObjectQuaternion(self._handle, relto, list(quaternion)) + + def get_pose(self, relative_to=None) -> np.ndarray: + """Retrieves the position and quaternion of an object + + :param relative_to: Indicates relative to which reference frame we want + the pose. Specify None to retrieve the absolute pose, or an Object + relative to whose reference frame we want the pose. + :return: An array containing the (X,Y,Z,Qx,Qy,Qz,Qw) pose of + the object. + """ + position = self.get_position(relative_to) + quaternion = self.get_quaternion(relative_to) + return np.r_[position, quaternion] + + def set_pose(self, pose: Union[list, np.ndarray], relative_to=None, + reset_dynamics=True) -> None: + """Sets the position and quaternion of an object. + + :param pose: An array containing the (X,Y,Z,Qx,Qy,Qz,Qw) pose of + the object. + :param relative_to: Indicates relative to which reference frame the + the pose is specified. Specify None to set the absolute pose, or an + Object relative to whose reference frame the pose is specified. + :param reset_dynamics: If we want to reset the dynamics when rotating + an object instantaneously. + """ + assert len(pose) == 7 + self.set_position(pose[:3], relative_to, reset_dynamics) + self.set_quaternion(pose[3:], relative_to, reset_dynamics) + + def get_velocity(self) -> Tuple[np.ndarray, np.ndarray]: + """Get the velocity of this object. + + :return: A pair of linear and angular velocity. + """ + linear_vel, angular_vel = sim.simGetObjectVelocity(self._handle) + linear_vel = np.array(linear_vel, dtype=np.float64) + angular_vel = np.array(angular_vel, dtype=np.float64) + return linear_vel, angular_vel + + def get_parent(self) -> Union['Object', None]: + """Gets the parent of this object in the scene hierarchy. + + :return: The parent of this object, or None if it doesn't have a parent. + """ + try: + handle = sim.simGetObjectParent(self._handle) + except RuntimeError: + # Most probably no parent. + return None + object_type = ObjectType(sim.simGetObjectType(handle)) + cls = object_type_to_class.get(object_type, Object) + return cls(handle) + + def set_parent(self, parent_object: Union['Object', None], + keep_in_place=True) -> None: + """Sets this objects parent object in the scene hierarchy. + + :param parent_object: The object that will become parent, or None if + the object should become parentless. + :param keep_in_place: Indicates whether the object's absolute position + and orientation should stay same + """ + parent = -1 if parent_object is None else parent_object.get_handle() + sim.simSetObjectParent(self._handle, parent, keep_in_place) + + def get_matrix(self, relative_to=None) -> np.ndarray: + """Retrieves the transformation matrix of this object. + + :param relative_to: Indicates relative to which reference frame we want + the matrix. Specify None to retrieve the absolute transformation + matrix, or an Object relative to whose reference frame we want the + transformation matrix. + :return: A 4x4 transformation matrix. + """ + relto = -1 if relative_to is None else relative_to.get_handle() + m = sim.simGetObjectMatrix(self._handle, relto) + m_np = np.array(m).reshape((3, 4)) + return np.concatenate([m_np, [np.array([0, 0, 0, 1])]]) + + def set_matrix(self, matrix: np.ndarray, relative_to=None) -> None: + """Sets the transformation matrix of this object. + + :param relative_to: Indicates relative to which reference frame the + matrix is specified. Specify None to set the absolute transformation + matrix, or an Object relative to whose reference frame the + transformation matrix is specified. + :param matrix: A 4x4 transformation matrix. + """ + if not isinstance(matrix, np.ndarray): + raise ValueError('Expected Numpy 4x4 array.') + relto = -1 if relative_to is None else relative_to.get_handle() + sim.simSetObjectMatrix( + self._handle, relto, matrix[:3, :4].reshape((12)).tolist()) + + def is_collidable(self) -> bool: + """Whether the object is collidable or not. + + :return: If the object is collidable. + """ + return self._get_property(sim.sim_objectspecialproperty_collidable) + + def set_collidable(self, value: bool) -> None: + """Set whether the object is collidable or not. + + :param value: The new value of the collidable state. + """ + self._set_property(sim.sim_objectspecialproperty_collidable, value) + + def get_contact(self, contact_obj=None, get_contact_normal: bool = True) -> List: + """Get the contact point and force with other object + + :param contact_obj: The object want to check contact info with, set to None to get contact with all objects + :param get_contact_normal: Weather get the force and direction + :return: a list of all the contact info + """ + contact_info = sim.simGetContactInfo(self.get_handle(), get_contact_normal) + if contact_obj is None: + return contact_info + else: + result = [] + check_handle = contact_obj.get_handle() + for contact in contact_info: + if check_handle in contact['contact_handles']: + result.append(contact) + return result + + def is_measurable(self) -> bool: + """Whether the object is measurable or not. + + :return: If the object is measurable. + """ + return self._get_property(sim.sim_objectspecialproperty_measurable) + + def set_measurable(self, value: bool): + """Set whether the object is measurable or not. + + :param value: The new value of the measurable state. + """ + self._set_property(sim.sim_objectspecialproperty_measurable, value) + + def is_detectable(self) -> bool: + """Whether the object is detectable or not. + + :return: If the object is detectable. + """ + return self._get_property(sim.sim_objectspecialproperty_detectable_all) + + def set_detectable(self, value: bool): + """Set whether the object is detectable or not. + + :param value: The new value of the detectable state. + """ + self._set_property(sim.sim_objectspecialproperty_detectable_all, value) + + def is_renderable(self) -> bool: + """Whether the object is renderable or not. + + :return: If the object is renderable. + """ + return self._get_property(sim.sim_objectspecialproperty_renderable) + + def set_renderable(self, value: bool): + """Set whether the object is renderable or not. + + :param value: The new value of the renderable state. + """ + self._set_property(sim.sim_objectspecialproperty_renderable, value) + + def is_model(self) -> bool: + """Whether the object is a model or not. + + :return: If the object is a model. + """ + prop = sim.simGetModelProperty(self._handle) + return not (prop & sim.sim_modelproperty_not_model) + + def set_model(self, value: bool): + """Set whether the object is a model or not. + + :param value: True to set as a model. + """ + current = sim.simGetModelProperty(self._handle) + current |= sim.sim_modelproperty_not_model + if value: + current -= sim.sim_modelproperty_not_model + sim.simSetModelProperty(self._handle, current) + + def remove(self) -> None: + """Removes this object/model from the scene. + + :raises: ObjectAlreadyRemoved if the object is no longer on the scene. + """ + try: + if self.is_model(): + sim.simRemoveModel(self._handle) + else: + sim.simRemoveObject(self._handle) + except RuntimeError as e: + raise ObjectAlreadyRemovedError( + 'The object/model was already deleted.') from e + + def reset_dynamic_object(self) -> None: + """Dynamically resets an object that is dynamically simulated. + + This means that the object representation in the dynamics engine is + removed, and added again. This can be useful when the set-up of a + dynamically simulated chain needs to be modified during simulation + (e.g. joint or shape attachement position/orientation changed). + It should be noted that calling this on a dynamically simulated object + might slightly change its position/orientation relative to its parent + (since the object will be disconnected from the dynamics world in its + current position/orientation), so the user is in charge of rectifying + for that. + """ + sim.simResetDynamicObject(self._handle) + + def get_bounding_box(self) -> List[float]: + """Gets the bounding box (relative to the object reference frame). + + :return: A list containing the min x, max x, min y, max y, min z, max z + positions. + """ + params = [sim.sim_objfloatparam_objbbox_min_x, + sim.sim_objfloatparam_objbbox_max_x, + sim.sim_objfloatparam_objbbox_min_y, + sim.sim_objfloatparam_objbbox_max_y, + sim.sim_objfloatparam_objbbox_min_z, + sim.sim_objfloatparam_objbbox_max_z] + return [sim.simGetObjectFloatParameter( + self._handle, p) for p in params] + + def get_extension_string(self) -> str: + """A string that describes additional environment/object properties. + + :return: The extension string. + """ + return sim.simGetExtensionString(self._handle, -1, '') + + def get_configuration_tree(self) -> bytes: + """Retrieves configuration information for a hierarchy tree. + + Configuration includes object relative positions/orientations, + joint/path values. Calling :py:meth:`PyRep.set_configuration_tree` at a + later time, will restore the object configuration + (use this function to temporarily save object + positions/orientations/joint/path values). + + :return: The configuration tree. + """ + return sim.simGetConfigurationTree(self._handle) + + def rotate(self, rotation: List[float]) -> None: + """Rotates a transformation matrix. + + :param rotation: The x, y, z rotation to perform (in radians). + """ + m = sim.simGetObjectMatrix(self._handle, -1) + x_axis = [m[0], m[4], m[8]] + y_axis = [m[1], m[5], m[9]] + z_axis = [m[2], m[6], m[10]] + axis_pos = sim.simGetObjectPosition(self._handle, -1) + m = sim.simRotateAroundAxis(m, z_axis, axis_pos, rotation[2]) + m = sim.simRotateAroundAxis(m, y_axis, axis_pos, rotation[1]) + m = sim.simRotateAroundAxis(m, x_axis, axis_pos, rotation[0]) + sim.simSetObjectMatrix(self._handle, -1, m) + + def check_collision(self, obj: 'Object' = None) -> bool: + """Checks whether two entities are colliding. + + :param obj: The other collidable object to check collision against, + or None to check against all collidable objects. Note that objects + must be marked as collidable! + :return: If the object is colliding. + """ + handle = sim.sim_handle_all if obj is None else obj.get_handle() + return sim.simCheckCollision(self._handle, handle) == 1 + + # === Model specific methods === + + def is_model_collidable(self) -> bool: + """Whether the model is collidable or not. + + :raises: ObjectIsNotModel if the object is not a model. + :return: If the model is collidable. + """ + return self._get_model_property( + sim.sim_modelproperty_not_collidable) + + def set_model_collidable(self, value: bool): + """Set whether the model is collidable or not. + + :param value: The new value of the collidable state of the model. + :raises: ObjectIsNotModel if the object is not a model. + """ + self._set_model_property( + sim.sim_modelproperty_not_collidable, value) + + def is_model_measurable(self) -> bool: + """Whether the model is measurable or not. + + :raises: ObjectIsNotModel if the object is not a model. + :return: If the model is measurable. + """ + return self._get_model_property( + sim.sim_modelproperty_not_measurable) + + def set_model_measurable(self, value: bool): + """Set whether the model is measurable or not. + + :param value: The new value of the measurable state of the model. + :raises: ObjectIsNotModel if the object is not a model. + """ + self._set_model_property( + sim.sim_modelproperty_not_measurable, value) + + def is_model_detectable(self) -> bool: + """Whether the model is detectable or not. + + :raises: ObjectIsNotModel if the object is not a model. + :return: If the model is detectable. + """ + return self._get_model_property( + sim.sim_modelproperty_not_detectable) + + def set_model_detectable(self, value: bool): + """Set whether the model is detectable or not. + + :param value: The new value of the detectable state of the model. + :raises: ObjectIsNotModel if the object is not a model. + """ + self._set_model_property( + sim.sim_modelproperty_not_detectable, value) + + def is_model_renderable(self) -> bool: + """Whether the model is renderable or not. + + :raises: ObjectIsNotModel if the object is not a model. + :return: If the model is renderable. + """ + return self._get_model_property( + sim.sim_modelproperty_not_renderable) + + def set_model_renderable(self, value: bool): + """Set whether the model is renderable or not. + + :param value: The new value of the renderable state of the model. + :raises: ObjectIsNotModel if the object is not a model. + """ + self._set_model_property( + sim.sim_modelproperty_not_renderable, value) + + def is_model_dynamic(self) -> bool: + """Whether the model is dynamic or not. + + :raises: ObjectIsNotModel if the object is not a model. + :return: If the model is dynamic. + """ + return self._get_model_property( + sim.sim_modelproperty_not_dynamic) + + def set_model_dynamic(self, value: bool): + """Set whether the model is dynamic or not. + + :param value: The new value of the dynamic state of the model. + :raises: ObjectIsNotModel if the object is not a model. + """ + self._set_model_property( + sim.sim_modelproperty_not_dynamic, value) + + def is_model_respondable(self) -> bool: + """Whether the model is respondable or not. + + :raises: ObjectIsNotModel if the object is not a model. + :return: If the model is respondable. + """ + return self._get_model_property( + sim.sim_modelproperty_not_respondable) + + def set_model_respondable(self, value: bool): + """Set whether the model is respondable or not. + + :param value: The new value of the respondable state of the model. + :raises: ObjectIsNotModel if the object is not a model. + """ + self._set_model_property( + sim.sim_modelproperty_not_respondable, value) + + def save_model(self, path: str) -> None: + """Saves a model. + + Object can be turned to models via :py:meth:`Object.set_model`. + Any existing file with same name will be overwritten. + + :param path: model filename. The filename extension is required ("ttm"). + :raises: ObjectIsNotModel if the object is not a model. + """ + self._check_model() + sim.simSaveModel(self._handle, path) + + def get_model_bounding_box(self) -> List[float]: + """Gets the models bounding box (relative to models reference frame). + + :raises: ObjectIsNotModel if the object is not a model. + :return: A list containing the min x, max x, min y, max y, min z, max z + positions. + """ + self._check_model() + params = [sim.sim_objfloatparam_modelbbox_min_x, + sim.sim_objfloatparam_modelbbox_max_x, + sim.sim_objfloatparam_modelbbox_min_y, + sim.sim_objfloatparam_modelbbox_max_y, + sim.sim_objfloatparam_modelbbox_min_z, + sim.sim_objfloatparam_modelbbox_max_z] + return [sim.simGetObjectFloatParameter( + self._handle, p) for p in params] + + @staticmethod + def _get_objects_in_tree(root_object=None, object_type=ObjectType.ALL, + exclude_base=True, first_generation_only=False + ) -> List['Object']: + if root_object is None: + root_object = sim.sim_handle_scene + elif isinstance(root_object, Object): + root_object = root_object.get_handle() + elif not isinstance(root_object, int): + raise ValueError('root_object must be None, int or Object') + + options = 0 + if exclude_base: + options |= 1 + if first_generation_only: + options |= 2 + handles = sim.simGetObjectsInTree( + root_object, object_type.value, options) + objects = [] + for handle in handles: + try: + objects.append(Object.get_object(handle)) + except KeyError: + name = Object.get_object_name(handle) + type = Object.get_object_type(name) + warnings.warn( + "Object ({}, '{}') has {}, " + 'which is not supported'.format(handle, name, type)) + return objects + + def get_objects_in_tree(self, *args, **kwargs) -> List['Object']: + """Retrieves the objects in a given hierarchy tree. + + :param object_type: The object type to retrieve. + One of :py:class:`.ObjectType`. + :param exclude_base: Exclude the tree base from the returned list. + :param first_generation_only: Include in the returned list only the + object's first children. Otherwise, entire hierarchy is returned. + :return: A list of objects in the hierarchy tree. + """ + return self._get_objects_in_tree(self._handle, *args, **kwargs) + + def copy(self) -> 'Object': + """Copy and pastes object in the scene. + + The object is copied together with all its associated calculation + objects and associated scripts. + + :return: The new pasted object. + """ + return self.__class__((sim.simCopyPasteObjects([self._handle], 0)[0])) + + def check_distance(self, other: 'Object') -> float: + """Checks the minimum distance between two objects. + + :param other: The other object to check distance against. + :return: The distance between the objects. + """ + return sim.simCheckDistance( + self.get_handle(), other.get_handle(), -1)[6] + + def get_bullet_friction(self) -> float: + """Get bullet friction parameter. + + :return: The friction. + """ + return sim.simGetEngineFloatParameter(sim.sim_bullet_body_friction, + self._handle) + + def set_bullet_friction(self, friction) -> None: + """Set bullet friction parameter. + + :param friction: The friction to set. + """ + sim.simSetEngineFloatParameter(sim.sim_bullet_body_friction, + self._handle, friction) + + def get_explicit_handling(self) -> int: + """Get explicit handling flags. + + :return: The flag: enabled(1) or disabled(0). + """ + return sim.simGetExplicitHandling(self._handle) + + def set_explicit_handling(self, value: int) -> None: + """Set explicit handling flags. + + :param value: A flag to enable(1) or disable(0) explicit handling. + """ + sim.simSetExplicitHandling(self._handle, value) + + # === Private methods === + + def _check_model(self) -> None: + if not self.is_model(): + raise ObjectIsNotModelError( + "Object '%s' is not a model. Use 'set_model(True)' to convert.") + + def _get_model_property(self, prop_type: int) -> bool: + current = sim.simGetModelProperty(self._handle) + return (current & prop_type) == 0 + + def _set_model_property(self, prop_type: int, value: bool) -> None: + current = sim.simGetModelProperty(self._handle) + current |= prop_type # Makes is not X + if value: + current -= prop_type + sim.simSetModelProperty(self._handle, current) + + def _get_property(self, prop_type: int) -> bool: + current = sim.simGetObjectSpecialProperty(self._handle) + return current & prop_type + + def _set_property(self, prop_type: int, value: bool) -> None: + current = sim.simGetObjectSpecialProperty(self._handle) + current |= prop_type + if not value: + current -= prop_type + sim.simSetObjectSpecialProperty(self._handle, current) diff --git a/external/pyrep/pyrep/objects/octree.py b/external/pyrep/pyrep/objects/octree.py new file mode 100644 index 0000000000000000000000000000000000000000..a9422e867568ac3806248e499b877524c8a86c11 --- /dev/null +++ b/external/pyrep/pyrep/objects/octree.py @@ -0,0 +1,123 @@ +from pyrep.backend import sim +from typing import List, Optional, Union +from pyrep.objects.object import Object, object_type_to_class +from pyrep.const import ObjectType + +class Octree(Object): + """An octree object.""" + + def __init__(self, name_or_handle: Union[str, int]): + super().__init__(name_or_handle) + + @staticmethod + def create(voxel_size: float, point_size: Optional[float] = None, + options: int = 0) -> 'Octree': + """Creates an octree object and inserts in the scene. + + :param voxelSize: The resolution of octree voxels. + :param options: Octree options. + :param pointSize: Point representation size of voxels. + :return: The newly created Octree. + """ + if point_size is None: + point_size = voxel_size + handle = sim.simCreateOctree(voxel_size, options, point_size) + return Octree(handle) + + def _get_requested_type(self) -> ObjectType: + return ObjectType.OCTREE + + def insert_voxels(self, points: List[float], color: Optional[float] = None, + options: int = 0) -> None: + """Inserts voxels into the octree. + + :param points: A list of x,y,z numbers. + :param color: A list containing RGB data, or None. + :param options: Voxel insertion options. + """ + if not isinstance(points, list): + raise ValueError( + 'Octree.insert_voxels: points parameter is not a list.') + if len(points) % 3 != 0: + raise ValueError( + 'Octree.insert_voxels: points parameter length ' + 'not a multiple of 3.') + if color is not None: + if not isinstance(color, list): + raise ValueError( + 'Octree.insert_voxels: color parameter not a list.') + elif len(color) != 3: + raise ValueError( + 'Octree.insert_voxels: color parameter not an RGB list.') + sim.simInsertVoxelsIntoOctree(self._handle, options, points, color,None) + return + + def remove_voxels(self, points : Optional[List[float]], + options: int = 0) -> None: + """Remove voxels from the octree. + + :param points: A list of x,y,z numbers, or None to clear the octree. + :param options: Voxel removal options. + """ + if points is not None: + if not isinstance(points, list): + raise ValueError( + 'Octree.insert_voxels: points parameter is not a list.') + if len(points) % 3 != 0: + raise ValueError( + 'Octree.insert_voxels: points parameter length ' + 'not a multiple of 3.') + sim.simRemoveVoxelsFromOctree(self._handle, options, points) + + def get_voxels(self) -> list: + """Returns voxels from the octree. + + :return: List of voxel x,y,z coordinates. + """ + return sim.simGetOctreeVoxels(self._handle) + + def insert_object(self, obj: Object, color: Optional[float] = None, + options: int = 0) -> None: + """Inserts object into the octree. + + :param obj: Object to insert. + :param color: A list containing RGB data, or None. + :param options: Object insertion options. + """ + if color is not None: + if not isinstance(color, list): + raise ValueError( + 'Octree.insert_object: color parameter not a list.') + elif len(color) != 3: + raise ValueError( + 'Octree.insert_object: color parameter not an RGB list.') + sim.simInsertObjectIntoOctree(self._handle, obj.get_handle(), options, + color, 0) + return + + def subtract_object(self, obj: Object, options: int = 0) -> None: + """Subtract object from the octree. + + :param obj: Object to subtract. + :param options: Object subtraction options. + """ + sim.simSubtractObjectFromOctree(self._handle, obj.get_handle(), options) + return + + def check_point_occupancy(self, points: List[float], + options: int = 0) -> bool: + if not isinstance(points, list): + raise ValueError( + 'Octree.check_point_occupancy: points parameter is not a list.') + if len(points) % 3 != 0: + raise ValueError( + 'Octree._check_point_occupancy: points parameter length ' + 'not a multiple of 3.') + return sim.simCheckOctreePointOccupancy(self._handle, options, points) + + def clear_voxels(self) -> None: + """Clears all voxels from the octree. + """ + sim.simRemoveVoxelsFromOctree(self._handle, 0, None) + +object_type_to_class[ObjectType.OCTREE] = Octree diff --git a/external/pyrep/pyrep/objects/proximity_sensor.py b/external/pyrep/pyrep/objects/proximity_sensor.py new file mode 100644 index 0000000000000000000000000000000000000000..9f76332e4d63a5db77dfa9de89fb9725643048e1 --- /dev/null +++ b/external/pyrep/pyrep/objects/proximity_sensor.py @@ -0,0 +1,41 @@ +from math import sqrt + +from pyrep.backend import sim +from pyrep.objects.object import Object, object_type_to_class +from pyrep.const import ObjectType + + +class ProximitySensor(Object): + """Detects objects within a detection volume. + + V-REP supports pyramid-, cylinder-, disk-, cone- and ray-type proximity + sensors. + """ + + def _get_requested_type(self) -> ObjectType: + return ObjectType.PROXIMITY_SENSOR + + def read(self) -> float: + """Read the distance between sensor and first detected object. If + there is no detected object returns -1.0. It can be considered as + maximum measurable distance of the sensor. + + :return: Float distance to the first detected object + """ + state, _, points, _ = sim.simReadProximitySensor(self._handle) + if state: + return sqrt(points[0] ** 2 + points[1] ** 2 + points[2] ** 2) + return -1.0 + + def is_detected(self, obj: Object) -> bool: + """Checks whether the proximity sensor detects the indicated object. + + :param obj: The object to detect. + :return: Bool indicating if the object was detected. + """ + state, point = sim.simCheckProximitySensor( + self._handle, obj.get_handle()) + return state == 1 + + +object_type_to_class[ObjectType.PROXIMITY_SENSOR] = ProximitySensor diff --git a/external/pyrep/pyrep/objects/shape.py b/external/pyrep/pyrep/objects/shape.py new file mode 100644 index 0000000000000000000000000000000000000000..9fefc66086053839c186a85cdedd870f5fd14e67 --- /dev/null +++ b/external/pyrep/pyrep/objects/shape.py @@ -0,0 +1,584 @@ +from typing import List, Tuple +import numpy as np +from pyrep.backend import sim +from pyrep.objects.object import Object, object_type_to_class +from pyrep.const import ObjectType, PrimitiveShape, TextureMappingMode +from pyrep.textures.texture import Texture +import os +import collections + + +SShapeVizInfo = collections.namedtuple( + 'SShapeVizInfo', + [ + 'vertices', + 'indices', + 'normals', + 'shading_angle', + 'colors', + 'texture', + 'texture_id', + 'texture_coords', + 'texture_apply_mode', + 'texture_options', + ], +) + + +class Shape(Object): + """Shapes are rigid mesh objects that are composed of triangular faces. + """ + + @staticmethod + def create(type: PrimitiveShape, size: List[float], + mass=1., backface_culling=False, visible_edges=False, + smooth=False, respondable=True, + static=False, renderable=True, position=None, + orientation=None, color=None) -> 'Shape': + """Creates a primitive shape in the scene. + + :param type: The type of primitive to shape. One of: + PrimitiveShape.CUBOID + PrimitiveShape.SPHERE + PrimitiveShape.CYLINDER + PrimitiveShape.CONE + :param size: A list of the x, y, z dimensions. + :param mass: A float representing the mass of the object. + :param backface_culling: If backface culling is enabled. + :param visible_edges: If the object will have visible edges. + :param smooth: If the shape appears smooth. + :param respondable: Shape is responsible. + :param static: If the shape is static. + :param renderable: If the shape is renderable. + :param position: The x, y, z position. + :param orientation: The x, y, z orientation (in radians). + :param color: The r, g, b values of the shape. + :return: The created Shape object. + """ + options = 0 + if backface_culling: + options |= 1 + if visible_edges: + options |= 2 + if smooth: + options |= 4 + if respondable: + options |= 8 + if static: + options |= 16 + + handle = sim.simCreatePureShape(type.value, options, size, mass, None) + ob = Shape(handle) + ob.set_renderable(renderable) + if position is not None: + ob.set_position(position) + if orientation is not None: + ob.set_orientation(orientation) + if color is not None: + ob.set_color(color) + return ob + + @classmethod + def import_shape(cls, filename: str, scaling_factor=1.0, + keep_identical_vertices=False, ignore_color=False, + ignore_texture=False, reorient_bounding_box=False, + ignore_up_vector=False) -> 'Shape': + """Imports a shape with visuals from a file. + + :param filename: The location of the file to import. + :param scaling_factor: The scaling factor to apply to the imported vertices + :param keep_identical_vertices: Keep identical vertices. + :param ignore_color: Do not preserve colors. + :param ignore_texture: Do not preserve texture. + :param reorient_bounding_box: Reorient the shape's bounding box + with the world. + :param ignore_up_vector: Ignore up-vector coded in file. + :return: The Shape object. + """ + if not os.path.isfile(filename): + raise ValueError('Filename does not exist: ' + filename) + + options = 0 + if keep_identical_vertices: + options |= 1 + if ignore_color: + options |= 8 + if not ignore_texture: + options |= 16 + if reorient_bounding_box: + options |= 32 + if ignore_up_vector: + options |= 128 + + handle = sim.simImportShape(0, filename, options, 0, scaling_factor) + return cls(handle) + + @staticmethod + def import_mesh(filename: str, scaling_factor=1.0, + keep_identical_vertices=False, + ignore_up_vector=False) -> 'Shape': + """Imports a mesh from a file. + + :param filename: The location of the file to import. + :param scaling_factor: The scaling factor to apply to the imported vertices + :param keep_identical_vertices: Keep identical vertices. + :param ignore_up_vector: Ignore up-vector coded in file. + :return: The grouped Shape object. + """ + + if not os.path.isfile(filename): + raise ValueError('Filename does not exist: ' + filename) + + options = 0 + if keep_identical_vertices: + options |= 1 + if ignore_up_vector: + options |= 128 + + # fileformat is 0 as it is automatically detected. + # identicalVerticeTolerance has no effect. Setting to zero. + verticies, indices, names = sim.simImportMesh( + 0, filename, options, 0, scaling_factor) + mesh_objects = [] + for v, i, n in zip(verticies, indices, names): + mesh_ob = Shape.create_mesh(v, i) + mesh_objects.append(mesh_ob) + grouped = mesh_objects[0] + if len(mesh_objects) > 1: + handles = [o.get_handle() for o in mesh_objects] + handle = sim.simGroupShapes(handles) + grouped = Shape(handle) + return grouped + + @staticmethod + def create_mesh(vertices: List[float], indices: List[int], + shading_angle=None, backface_culling=False, + visible_edges=False) -> 'Shape': + """Creates a mesh shape. + + :param vertices: A list of vertices. + :param indices: A list of indices. + :param shading_angle: The shading angle (in radians). + :param backface_culling: To enable backface culling. + :param visible_edges: To enable visible edges. + :return: The newly created mesh. + """ + options = 0 + if backface_culling: + options |= 1 + if visible_edges: + options |= 2 + if shading_angle is None: + shading_angle = 20.0 * 3.1415 / 180.0 + handle = sim.simCreateMeshShape( + options, shading_angle, vertices, indices) + return Shape(handle) + + def _get_requested_type(self) -> ObjectType: + return ObjectType.SHAPE + + def is_respondable(self) -> bool: + """Whether the shape is respondable or not. + + :return: If the shape is respondable. + """ + return sim.simGetObjectInt32Parameter( + self._handle, sim.sim_shapeintparam_respondable) + + def set_respondable(self, value: bool) -> None: + """Set whether the shape is respondable or not. + + :param value: The new value of the respondable state of the shape. + """ + sim.simSetObjectInt32Parameter( + self._handle, sim.sim_shapeintparam_respondable, value) + self.reset_dynamic_object() + + def is_dynamic(self) -> bool: + """Whether the shape is dynamic or not. + + :return: If the shape is dynamic. + """ + return not sim.simGetObjectInt32Parameter( + self._handle, sim.sim_shapeintparam_static) + + def set_dynamic(self, value: bool) -> None: + """Set whether the shape is dynamic or not. + + :param value: The new value of the dynamic state of the shape. + """ + sim.simSetObjectInt32Parameter( + self._handle, sim.sim_shapeintparam_static, not value) + self.reset_dynamic_object() + + def get_color(self) -> List[float]: + """Gets the shape color. + + :return: The r, g, b values of the shape. + """ + return sim.simGetShapeColor( + self._handle, None, sim.sim_colorcomponent_ambient_diffuse) + + def set_color(self, color: List[float]) -> None: + """Sets the color of the shape. + + :param color: The r, g, b values of the shape. + """ + sim.simSetShapeColor( + self._handle, None, sim.sim_colorcomponent_ambient_diffuse, color) + + def get_transparency(self) -> float: + """Sets the transparency of the shape. + + :return: The transparency values of the shape. + """ + return sim.simGetShapeColor( + self._handle, None, sim.sim_colorcomponent_transparency)[0] + + def set_transparency(self, value: float) -> None: + """Sets the transparency of the shape. + + :param value: Value between 0 and 1. + """ + if 0 > value > 1: + raise ValueError('Value must be between 0 and 1.') + sim.simSetShapeColor( + self._handle, None, sim.sim_colorcomponent_transparency, [value]) + + def get_mass(self) -> float: + """Gets the mass of the shape. + + :return: A float representing the mass. + """ + return sim.simGetObjectFloatParameter(self._handle, + sim.sim_shapefloatparam_mass) + + def set_mass(self, mass: float) -> None: + """Sets the mass of the shape. + + :param mass: The new mass value. + """ + sim.simSetObjectFloatParameter( + self._handle, sim.sim_shapefloatparam_mass, mass) + + def compute_mass_and_inertia(self, density: float) -> None: + """Computes and applies the mass and inertia properties for a + convex shape (or convex compound shape), based on a density value. + + :param density: The density expressed in kg/m^3 + """ + ret = sim.simComputeMassAndInertia(self._handle, density) + if ret == 0: + raise ValueError( + 'The shape must be a convex shape (or convex compound shape)') + + + def get_mesh_data(self) -> Tuple[np.ndarray, np.ndarray, np.ndarray]: + """Retrieves a shape's mesh information. + + :param asnumpy: A flag to cast vertices as numpy array with reshape. + :return: A tuple containing a list of vertices, indices, and normals. + """ + vertices, indices, normals = sim.simGetShapeMesh(self._handle) + vertices = np.array(vertices, dtype=np.float64).reshape(-1, 3) + indices = np.array(indices, dtype=np.int64).reshape(-1, 3) + normals = np.array(normals, dtype=np.float64).reshape(-1, 3) + return vertices, indices, normals + + def decimate_mesh(self, percentage: float) -> 'Shape': + """Retrieves a shape's mesh information. + + :param percentage: The percentage of the desired decimation (0.1-0.9). + :return: A new shape that has a decimated mesh. + """ + if percentage < 0.1 or percentage > 0.9: + raise ValueError('percentage param must be between 0.1 and 0.9.') + # verts, inds, _ = self.get_mesh_data() + verts, inds, _ = sim.simGetShapeMesh(self._handle) + new_verts, new_inds = sim.simGetDecimatedMesh( + # verts.reshape(-1).tolist(), inds.reshape(-1).tolist(), percentage) + verts, inds, percentage) + s = Shape.create_mesh(new_verts, new_inds) + s.set_matrix(self.get_matrix()) + return s + + def get_convex_decomposition(self, morph=False, same=False, use_vhacd=False, + individual_meshes=False, + hacd_extra_points=True, hacd_face_points=True, + hacd_min_clusters=1, hacd_tri_target=500, + hacd_max_vertex=200, hacd_max_iter=4, + hacd_max_concavity=100, hacd_max_dist=30, + hacd_cluster_thresh=0.25, + vhacd_pca=False, vhacd_tetrahedron=False, + vhacd_res=100000, vhacd_depth=20, + vhacd_plane_downsample=4, + vhacd_hull_downsample=4, + vhacd_max_vertex=64, vhacd_concavity=0.0025, + vhacd_alpha=0.05, vhacd_beta=0.05, + vhacd_gamma=0.00125, vhacd_min_vol=0.0001 + ) -> 'Shape': + """ + Compute the convex decomposition of the shape using HACD or V-HACD + algorithms + :param morph: The shape will be morphed into its convex decomposition. + Otherwise a new shape will be created. + :param same: Use the same parameters as the last call to the function. + :param use_vhacd: Use V-HACD algorithm. + :param individual_meshes: Each individual mesh of a compound shape will + be handled on its own during decomposition, otherwise the + compound shape is considered as a single mesh. + :param hacd_extra_points: HACD: Extra points will be added when + computing the concavity. + :param hacd_face_points: HACD: Faces points will be added when computing + the concavity. + :param hacd_min_clusters: HACD: Minimum number of clusters to generate. + :param hacd_tri_target: HACD: Targeted number of triangles of the + decimated mesh. + :param hacd_max_vertex: HACD: Maximum number of vertices for each + generated convex hull. + :param hacd_max_iter: HACD: Maximum number of iterations. + :param hacd_max_concavity: HACD: The maximum allowed concavity. + :param hacd_max_dist: HACD: The maximum allowed distance to get convex + clusters connected. + :param hacd_cluster_thresh: HACD: The threshold to detect small + clusters, expressed as a fraction of the total mesh surface. + :param vhacd_pca: V-HACD: Enable PCA. + :param vhacd_tetrahedron: V-HACD: Tetrahedron-based approximate convex + decomposition. Otherwise, voxel-based decomposition is used. + :param vhacd_res: V-HACD: Resolution (10000-64000000) + :param vhacd_depth: V-HACD: Depth (1-32) + :param vhacd_plane_downsample: V-HACD: Plane downsampling (1-16) + :param vhacd_hull_downsample: V-HACD: Convex hull downsampling (1-16) + :param vhacd_max_vertex: V-HACD: Maximum number of vertices per convex + hull (4-1024) + :param vhacd_concavity: V-HACD: Concavity (0.0-1.0) + :param vhacd_alpha: V-HACD: Alpha (0.0-1.0) + :param vhacd_beta: V-HACD: Beta (0.0-1.0) + :param vhacd_gamma: V-HACD: Gamma (0.0-1.0) + :param vhacd_min_vol: V-HACD: Minimum volume per convex hull (0.0-0.01) + :return: Convex Decomposition of the shape. + """ + options = 0 + if morph: + options |= 1 + if same: + options |= 4 + if hacd_extra_points: + options |= 8 + if hacd_face_points: + options |= 16 + if individual_meshes: + options |= 32 + if use_vhacd: + options |= 128 + if vhacd_pca: + options |= 256 + if vhacd_tetrahedron: + options |= 512 + + int_params = [ + hacd_min_clusters, # [0] + hacd_tri_target, # [1] + hacd_max_vertex, # [2] + hacd_max_iter, # [3] + 0, # [4] + vhacd_res, # [5] + vhacd_depth, # [6] + vhacd_plane_downsample, # [7] + vhacd_hull_downsample, # [8] + vhacd_max_vertex # [9] + ] + + float_params = [ + hacd_max_concavity, # [0] + hacd_max_dist, # [1] + hacd_cluster_thresh, # [2] + 0.0, # [3] + 0.0, # [4] + vhacd_concavity, # [5] + vhacd_alpha, # [6] + vhacd_beta, # [7] + vhacd_gamma, # [8] + vhacd_min_vol # [9] + ] + + return Shape(sim.simConvexDecompose(self.get_handle(), options, + int_params, float_params)) + + def get_texture(self): + """Retrieves the texture from the shape. + :return: The texture associated with this object. + """ + return Texture(sim.simGetShapeTextureId(self.get_handle())) + + def remove_texture(self): + """Removes the texture from the shape. + """ + sim.simSetShapeTexture(self.get_handle(), -1, 0, 0, [1, 1], None, None) + + def set_texture(self, texture: Texture, mapping_mode: TextureMappingMode, + interpolate=True, decal_mode=False, repeat_along_u=False, + repeat_along_v=False, uv_scaling=[1., 1.], + position: List[float] = None, + orientation: List[float] = None): + """Applies a texture to a shape + + :param texture: The texture to add. + :param mapping_mode: The texture mapping mode. One of: + TextureMappingMode.PLANE + TextureMappingMode.CYLINDER + TextureMappingMode.SPHERE + TextureMappingMode.CUBE + :param interpolate: Adjacent texture pixels are not interpolated. + :param decal_mode: Texture is applied as a decal (its appearance + won't be influenced by light conditions). + :param repeat_along_u: Texture will be repeated along the U direction. + :param repeat_along_v: Texture will be repeated along the V direction. + :param uv_scaling: A list of 2 values containig the texture scaling + factors along the U and V directions. + :param position: A list of (x,y,z) values that indicate the texture + position on the shape. Can be None for default. + :param orientation: A list of 3 Euler angles that indicate the texture + orientation on the shape. Can be None for default. + """ + options = 0 + if not interpolate: + options |= 1 + if decal_mode: + options |= 2 + if repeat_along_u: + options |= 4 + if repeat_along_v: + options |= 8 + sim.simSetShapeTexture( + self.get_handle(), texture.get_texture_id(), mapping_mode.value, + options, list(uv_scaling), position, orientation) + + def ungroup(self) -> List['Shape']: + """Ungroups a compound shape into several simple shapes. + + :return: A list of shapes. + """ + handles = sim.simUngroupShape(self.get_handle()) + return [Shape(handle) for handle in handles] + + def apply_texture(self, texture_coords: np.ndarray, texture: np.ndarray, + interpolate: bool = True, decal_mode: bool = False, + is_rgba: bool = False, fliph: bool = False, + flipv: bool = False) -> None: + """Apply texture to the shape. + + :param texture_coords: A list of (u, v) values that indicate the + vertex position on the shape. For each of the shape's triangle, + there should be exactly 3 UV texture coordinate pairs + :param texture: The RGB or RGBA texture. + :param interpolate: A flag to interpolate adjacent texture pixels. + :param decal_mode: Texture is applied as a decal (its appearance + won't be influenced by light conditions). + :param is_rgba: A flag to use RGBA texture. + :param fliph: A flag to flip texture horizontally. + :param flipv: A flag to flip texture vertically. Note that CoppeliaSim + texture coordinates are flipped vertically compared with Pillow + and OpenCV and this flag must be true in general. + """ + texture_coords = np.asarray(texture_coords) + if not isinstance(texture, np.ndarray): + raise TypeError('texture must be np.ndarray type') + height, width = texture.shape[:2] + + options = 0 + if not interpolate: + options |= 1 + if decal_mode: + options |= 2 + if is_rgba: + options |= 16 + if fliph: + options |= 32 + if flipv: + options |= 64 + + sim.simApplyTexture( + self._handle, + textureCoordinates=texture_coords.flatten().tolist(), + textCoordSize=texture_coords.size, + texture=texture.flatten().tolist(), + textureResolution=(width, height), + options=options, + ) + + def get_shape_viz(self, index): + """Retrieves a shape's visual information. + + :param index: 0-based index of the shape element to retrieve + (compound shapes contain more than one shape element) + + :return: SShapeVizInfo. + """ + info = sim.simGetShapeViz(shapeHandle=self._handle, index=index) + + vertices = np.array(info.vertices, dtype=float).reshape(-1, 3) + indices = np.array(info.indices, dtype=float).reshape(-1, 3) + normals = np.array(info.normals, dtype=float).reshape(-1, 3) + colors = np.array(info.colors, dtype=float) + texture = np.array(info.texture, dtype=np.uint8).reshape( + info.textureRes[1], info.textureRes[0], 4) + textureCoords = np.array(info.textureCoords, dtype=float).reshape( + -1, 2) + + res = SShapeVizInfo( + vertices=vertices, + indices=indices, + normals=normals, + shading_angle=info.shadingAngle, + colors=colors, + texture=texture, + texture_id=info.textureId, + texture_coords=textureCoords, + texture_apply_mode=info.textureApplyMode, + texture_options=info.textureOptions, + ) + return res + + def reorient_bounding_box(self, relative_to=None) -> None: + relto = -1 if relative_to is None else relative_to.get_handle() + sim.simReorientShapeBoundingBox(self._handle, relto) + + def add_force(self, position: np.ndarray, force: np.ndarray, + reset_force_torque: bool = False) -> None: + """ + Adds a non-central force to a shape object that is dynamically enabled. + Added forces are cumulative. + + :param position: Relative position where the force should be applied. + :param force: The force (in relative coordinates) to add. + :param reset_force_torque: Clears the accumulated force and torque. + """ + h = (self._handle | sim.sim_handleflag_resetforcetorque + if reset_force_torque else self._handle) + sim.simAddForce(h, list(position), list(force)) + + def add_force_and_torque(self, force: np.ndarray, torque: np.ndarray, + reset_force: bool = False, + reset_torque: bool = False) -> None: + """ + Adds a force and/or torque to a shape object that is dynamically + enabled. Forces are applied at the center of mass. + Added forces and torques are cumulative. + + :param force: The force (in absolute coordinates) to add. + :param torque: The torque (in absolute coordinates) to add. + :param reset_force: Clears the accumulated force. + :param reset_torque: Clears the accumulated torque. + """ + h = self._handle + if reset_force: + h |= sim.sim_handleflag_resetforce + if reset_torque: + h |= sim.sim_handleflag_resettorque + sim.simAddForceAndTorque(h, + None if force is None else list(force), + None if torque is None else list(torque)) + + +object_type_to_class[ObjectType.SHAPE] = Shape diff --git a/external/pyrep/pyrep/objects/vision_sensor.py b/external/pyrep/pyrep/objects/vision_sensor.py new file mode 100644 index 0000000000000000000000000000000000000000..8e08bf26a1698825045e1d797c4cd1a30edb2117 --- /dev/null +++ b/external/pyrep/pyrep/objects/vision_sensor.py @@ -0,0 +1,423 @@ +import math +from typing import List, Union, Sequence +from pyrep.backend import sim +from pyrep.objects.object import Object, object_type_to_class +import numpy as np +from pyrep.const import ObjectType, PerspectiveMode, RenderMode + + +class VisionSensor(Object): + """A camera-type sensor, reacting to light, colors and images. + """ + + def __init__(self, name_or_handle: Union[str, int]): + super().__init__(name_or_handle) + self.resolution = sim.simGetVisionSensorResolution(self._handle) + + @staticmethod + def create(resolution: List[int], explicit_handling=False, + perspective_mode=True, show_volume_not_detecting=True, + show_volume_detecting=True, passive=False, + use_local_lights=False, show_fog=True, + near_clipping_plane=1e-2, far_clipping_plane=10.0, + view_angle=60.0, ortho_size=1.0, sensor_size=None, + background_color=None, + render_mode=RenderMode.OPENGL3, + position=None, orientation=None) -> 'VisionSensor': + """ Create a Vision Sensor + + :param resolution: List of the [x, y] resolution. + :param explicit_handling: Sensor will be explicitly handled. + :param perspective_mode: Sensor will be operated in Perspective Mode. + Orthographic mode if False. + :param show_volume_not_detecting: Sensor volume will be shown when not + detecting anything. + :param show_volume_detecting: Sensor will be shown when detecting. + :param passive: Sensor will be passive (use an external image). + :param use_local_lights: Sensor will use local lights. + :param show_fog: Sensor will show fog (if enabled). + :param near_clipping_plane: Near clipping plane. + :param far_clipping_plane: Far clipping plane. + :param view_angle: Perspective angle (in degrees) if in Perspective Mode. + :param ortho_size: Orthographic projection size [m] if in Orthographic + Mode. + :param sensor_size: Size [x, y, z] of the Vision Sensor object. + :param render_mode: Sensor rendering mode, one of: + RenderMode.OPENGL + RenderMode.OPENGL_AUXILIARY + RenderMode.OPENGL_COLOR_CODED + RenderMode.POV_RAY + RenderMode.EXTERNAL + RenderMode.EXTERNAL_WINDOWED + RenderMode.OPENGL3 + RenderMode.OPENGL3_WINDOWED + :param position: The [x, y, z] position, if specified. + :param orientation: The [x, y, z] orientation in radians, if specified. + :return: The created Vision Sensor. + """ + options = 0 + if explicit_handling: + options |= 1 + if perspective_mode: + options |= 2 + if not show_volume_not_detecting: + options |= 4 + if not show_volume_detecting: + options |= 8 + if passive: + options |= 16 + if use_local_lights: + options |= 32 + if not show_fog: + options |= 64 + + if background_color: #show_default_background_color: + options |= 128 + else: + background_color = [0.0, 0.0, 0.0] + + int_params = [ + resolution[0], # 0 + resolution[1], # 1 + 0, # 2 + 0 # 3 + ] + + if sensor_size is None: + sensor_size = [0.01, 0.01, 0.03] + # sensor_size[1] and sensor_size[2] should be 0 according to the documentation... + + float_params = [ + near_clipping_plane, # 0 + far_clipping_plane, # 1 + math.radians(view_angle) if perspective_mode else ortho_size, # 2 + sensor_size[0], # 3 + sensor_size[1], # 4 + sensor_size[2], # 5 + background_color[0], # 6 + background_color[1], # 7 + background_color[2], # 8 + 0.0, # 9 + 0.0, # 10 + ] + + + vs = VisionSensor( + sim.simCreateVisionSensor(options, int_params, float_params, None) + ) + vs.set_render_mode(render_mode) + if position is not None: + vs.set_position(position) + if orientation is not None: + vs.set_orientation(orientation) + return vs + + def _get_requested_type(self) -> ObjectType: + return ObjectType.VISION_SENSOR + + def handle_explicitly(self) -> None: + """Handle sensor explicitly. + + This enables capturing image (e.g., capture_rgb()) + without PyRep.step(). + """ + if not self.get_explicit_handling(): + raise RuntimeError('The explicit_handling is disabled. ' + 'Call set_explicit_handling(value=1) to enable explicit_handling first.') + sim.simHandleVisionSensor(self._handle) + + def capture_rgb(self) -> np.ndarray: + """Retrieves the rgb-image of a vision sensor. + + :return: A numpy array of size (width, height, 3) + """ + return sim.simGetVisionSensorImage(self._handle, self.resolution) + + def capture_depth(self, in_meters=False) -> np.ndarray: + """Retrieves the depth-image of a vision sensor. + + :param in_meters: Whether the depth should be returned in meters. + :return: A numpy array of size (width, height) + """ + return sim.simGetVisionSensorDepthBuffer( + self._handle, self.resolution, in_meters) + + def capture_pointcloud(self) -> np.ndarray: + """Retrieves point cloud in word frame. + + :return: A numpy array of size (width, height, 3) + """ + d = self.capture_depth(in_meters=True) + return self.pointcloud_from_depth(d) + + def pointcloud_from_depth(self, depth: np.ndarray) -> np.ndarray: + """Converts depth (in meters) to point cloud in word frame. + + :return: A numpy array of size (width, height, 3) + """ + intrinsics = self.get_intrinsic_matrix() + return VisionSensor.pointcloud_from_depth_and_camera_params( + depth, self.get_matrix(), intrinsics) + + @staticmethod + def pointcloud_from_depth_and_camera_params( + depth: np.ndarray, extrinsics: np.ndarray, + intrinsics: np.ndarray) -> np.ndarray: + """Converts depth (in meters) to point cloud in word frame. + :return: A numpy array of size (width, height, 3) + """ + upc = _create_uniform_pixel_coords_image(depth.shape) + pc = upc * np.expand_dims(depth, -1) + C = np.expand_dims(extrinsics[:3, 3], 0).T + R = extrinsics[:3, :3] + R_inv = R.T # inverse of rot matrix is transpose + R_inv_C = np.matmul(R_inv, C) + extrinsics = np.concatenate((R_inv, -R_inv_C), -1) + cam_proj_mat = np.matmul(intrinsics, extrinsics) + cam_proj_mat_homo = np.concatenate( + [cam_proj_mat, [np.array([0, 0, 0, 1])]]) + cam_proj_mat_inv = np.linalg.inv(cam_proj_mat_homo)[0:3] + world_coords_homo = np.expand_dims(_pixel_to_world_coords( + pc, cam_proj_mat_inv), 0) + world_coords = world_coords_homo[..., :-1][0] + return world_coords + + def get_intrinsic_matrix(self): + res = np.array(self.get_resolution()) + pp_offsets = res / 2 + ratio = res[0] / res[1] + pa_x = pa_y = math.radians(self.get_perspective_angle()) + if ratio > 1: + pa_y = 2 * np.arctan(np.tan(pa_y / 2) / ratio) + elif ratio < 1: + pa_x = 2 * np.arctan(np.tan(pa_x / 2) * ratio) + persp_angles = np.array([pa_x, pa_y]) + focal_lengths = -res / (2 * np.tan(persp_angles / 2)) + return np.array( + [[focal_lengths[0], 0., pp_offsets[0]], + [0., focal_lengths[1], pp_offsets[1]], + [0., 0., 1.]]) + + def get_resolution(self) -> List[int]: + """ Return the Sensor's resolution. + + :return: Resolution [x, y] + """ + return sim.simGetVisionSensorResolution(self._handle) + + def set_resolution(self, resolution: List[int]) -> None: + """ Set the Sensor's resolution. + + :param resolution: New resolution [x, y] + """ + sim.simSetObjectInt32Parameter( + self._handle, sim.sim_visionintparam_resolution_x, resolution[0] + ) + sim.simSetObjectInt32Parameter( + self._handle, sim.sim_visionintparam_resolution_y, resolution[1] + ) + self.resolution = resolution + + def get_perspective_mode(self) -> PerspectiveMode: + """ Retrieve the Sensor's perspective mode. + + :return: The current PerspectiveMode. + """ + perspective_mode = sim.simGetObjectInt32Parameter( + self._handle, sim.sim_visionintparam_perspective_operation, + ) + return PerspectiveMode(perspective_mode) + + def set_perspective_mode(self, perspective_mode: PerspectiveMode) -> None: + """ Set the Sensor's perspective mode. + + :param perspective_mode: The new perspective mode, one of: + PerspectiveMode.ORTHOGRAPHIC + PerspectiveMode.PERSPECTIVE + """ + sim.simSetObjectInt32Parameter( + self._handle, sim.sim_visionintparam_perspective_operation, + perspective_mode.value + ) + + def get_render_mode(self) -> RenderMode: + """ Retrieves the Sensor's rendering mode + + :return: RenderMode for the current rendering mode. + """ + render_mode = sim.simGetObjectInt32Parameter( + self._handle, sim.sim_visionintparam_render_mode + ) + return RenderMode(render_mode) + + def set_render_mode(self, render_mode: RenderMode) -> None: + """ Set the Sensor's rendering mode + + :param render_mode: The new sensor rendering mode, one of: + RenderMode.OPENGL + RenderMode.OPENGL_AUXILIARY + RenderMode.OPENGL_COLOR_CODED + RenderMode.POV_RAY + RenderMode.EXTERNAL + RenderMode.EXTERNAL_WINDOWED + RenderMode.OPENGL3 + RenderMode.OPENGL3_WINDOWED + """ + sim.simSetObjectInt32Parameter( + self._handle, sim.sim_visionintparam_render_mode, + render_mode.value + ) + + def get_windowed_size(self) -> Sequence[int]: + """Get the size of windowed rendering. + + :return: The (x, y) resolution of the window. 0 for full-screen. + """ + size_x = sim.simGetObjectInt32Parameter( + self._handle, sim.sim_visionintparam_windowed_size_x) + size_y = sim.simGetObjectInt32Parameter( + self._handle, sim.sim_visionintparam_windowed_size_y) + return size_x, size_y + + def set_windowed_size(self, resolution: Sequence[int] = (0, 0)) -> None: + """Set the size of windowed rendering. + + :param resolution: The (x, y) resolution of the window. + 0 for full-screen. + """ + sim.simSetObjectInt32Parameter( + self._handle, sim.sim_visionintparam_windowed_size_x, + resolution[0]) + sim.simSetObjectInt32Parameter( + self._handle, sim.sim_visionintparam_windowed_size_y, + resolution[1]) + + def get_perspective_angle(self) -> float: + """ Get the Sensor's perspective angle. + + :return: The sensor's perspective angle (in degrees). + """ + return math.degrees(sim.simGetObjectFloatParameter( + self._handle, sim.sim_visionfloatparam_perspective_angle + )) + + def set_perspective_angle(self, angle: float) -> None: + """ Set the Sensor's perspective angle. + + :param angle: New perspective angle (in degrees) + """ + sim.simSetObjectFloatParameter( + self._handle, sim.sim_visionfloatparam_perspective_angle, + math.radians(angle) + ) + + def get_orthographic_size(self) -> float: + """ Get the Sensor's orthographic size. + + :return: The sensor's orthographic size (in metres). + """ + return sim.simGetObjectFloatParameter( + self._handle, sim.sim_visionfloatparam_ortho_size + ) + + def set_orthographic_size(self, ortho_size: float) -> None: + """ Set the Sensor's orthographic size. + + :param angle: New orthographic size (in metres) + """ + sim.simSetObjectFloatParameter( + self._handle, sim.sim_visionfloatparam_ortho_size, ortho_size + ) + + def get_near_clipping_plane(self) -> float: + """ Get the Sensor's near clipping plane. + + :return: Near clipping plane (metres) + """ + return sim.simGetObjectFloatParameter( + self._handle, sim.sim_visionfloatparam_near_clipping + ) + + def set_near_clipping_plane(self, near_clipping: float) -> None: + """ Set the Sensor's near clipping plane. + + :param near_clipping: New near clipping plane (in metres) + """ + sim.simSetObjectFloatParameter( + self._handle, sim.sim_visionfloatparam_near_clipping, near_clipping + ) + + def get_far_clipping_plane(self) -> float: + """ Get the Sensor's far clipping plane. + + :return: Near clipping plane (metres) + """ + return sim.simGetObjectFloatParameter( + self._handle, sim.sim_visionfloatparam_far_clipping + ) + + def set_far_clipping_plane(self, far_clipping: float) -> None: + """ Set the Sensor's far clipping plane. + + :param far_clipping: New far clipping plane (in metres) + """ + sim.simSetObjectFloatParameter( + self._handle, sim.sim_visionfloatparam_far_clipping, far_clipping + ) + + def set_entity_to_render(self, entity_to_render: int) -> None: + """ Set the entity to render to the Sensor, this can be an object or more usefully a collection. + -1 to render all objects in scene. + + :param entity_to_render: Handle of the entity to render + """ + sim.simSetObjectInt32Parameter( + self._handle, sim.sim_visionintparam_entity_to_render, entity_to_render + ) + + def get_entity_to_render(self) -> None: + """ Get the entity to render to the Sensor, this can be an object or more usefully a collection. + -1 if all objects in scene are rendered. + + :return: Handle of the entity to render + """ + return sim.simGetObjectInt32Parameter( + self._handle, sim.sim_visionintparam_entity_to_render + ) + + +def _create_uniform_pixel_coords_image(resolution: np.ndarray): + pixel_x_coords = np.reshape( + np.tile(np.arange(resolution[1]), [resolution[0]]), + (resolution[0], resolution[1], 1)).astype(np.float32) + pixel_y_coords = np.reshape( + np.tile(np.arange(resolution[0]), [resolution[1]]), + (resolution[1], resolution[0], 1)).astype(np.float32) + pixel_y_coords = np.transpose(pixel_y_coords, (1, 0, 2)) + uniform_pixel_coords = np.concatenate( + (pixel_x_coords, pixel_y_coords, np.ones_like(pixel_x_coords)), -1) + return uniform_pixel_coords + + +def _transform(coords, trans): + h, w = coords.shape[:2] + coords = np.reshape(coords, (h * w, -1)) + coords = np.transpose(coords, (1, 0)) + transformed_coords_vector = np.matmul(trans, coords) + transformed_coords_vector = np.transpose( + transformed_coords_vector, (1, 0)) + return np.reshape(transformed_coords_vector, + (h, w, -1)) + + +def _pixel_to_world_coords(pixel_coords, cam_proj_mat_inv): + h, w = pixel_coords.shape[:2] + pixel_coords = np.concatenate( + [pixel_coords, np.ones((h, w, 1))], -1) + world_coords = _transform(pixel_coords, cam_proj_mat_inv) + world_coords_homo = np.concatenate( + [world_coords, np.ones((h, w, 1))], axis=-1) + return world_coords_homo + + +object_type_to_class[ObjectType.VISION_SENSOR] = VisionSensor diff --git a/external/pyrep/pyrep/robots/arms/__init__.py b/external/pyrep/pyrep/robots/arms/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/external/pyrep/pyrep/robots/arms/arm.py b/external/pyrep/pyrep/robots/arms/arm.py new file mode 100644 index 0000000000000000000000000000000000000000..7bccc9d5c8c1f42daba710560d0c917b43ae038c --- /dev/null +++ b/external/pyrep/pyrep/robots/arms/arm.py @@ -0,0 +1,496 @@ +import logging + +from ctypes import alignment +from pyrep.backend import sim, utils +from pyrep.objects import Object +from pyrep.objects.dummy import Dummy +from pyrep.robots.configuration_paths.arm_configuration_path import ( + ArmConfigurationPath) +from pyrep.robots.robot_component import RobotComponent +from pyrep.objects.cartesian_path import CartesianPath +from pyrep.errors import ConfigurationError, ConfigurationPathError, IKError +from pyrep.const import ConfigurationPathAlgorithms as Algos +from pyrep.const import PYREP_SCRIPT_TYPE +from typing import List, Union +import numpy as np +import warnings + + + +class Arm(RobotComponent): + """Base class representing a robot arm with path planning support. + """ + + def __init__(self, count: int, name: str, num_joints: int, + base_name: str = None, + max_velocity=1.0, max_acceleration=4.0, max_jerk=1000): + """Count is used for when we have multiple copies of arms""" + self.name = name + joint_names = ['%s_joint%d' % (name, i+1) for i in range(num_joints)] + super().__init__(count, name, joint_names, base_name) + + # Used for motion planning + self.max_velocity = max_velocity + self.max_acceleration = max_acceleration + self.max_jerk = max_jerk + + # Motion planning handles + suffix = '' if count == 0 else '#%d' % (count - 1) + self._ik_target = Dummy('%s_target%s' % (name, suffix)) + self._ik_tip = Dummy('%s_tip%s' % (name, suffix)) + self._ik_group = sim.simGetIkGroupHandle('%s_ik%s' % (name, suffix)) + self._collision_collection = sim.simGetCollectionHandle( + '%s_arm%s' % (name, suffix)) + + def set_ik_element_properties(self, constraint_x=True, constraint_y=True, + constraint_z=True, + constraint_alpha_beta=True, + constraint_gamma=True) -> None: + constraints = 0 + if constraint_x: + constraints |= sim.sim_ik_x_constraint + if constraint_y: + constraints |= sim.sim_ik_y_constraint + if constraint_z: + constraints |= sim.sim_ik_z_constraint + if constraint_alpha_beta: + constraints |= sim.sim_ik_alpha_beta_constraint + if constraint_gamma: + constraints |= sim.sim_ik_gamma_constraint + sim.simSetIkElementProperties( + ikGroupHandle=self._ik_group, + tipDummyHandle=self._ik_tip.get_handle(), + constraints=constraints, + precision=None, + weight=None, + ) + + def set_ik_group_properties(self, resolution_method='pseudo_inverse', max_iterations=6, dls_damping=0.1) -> None: + try: + res_method = {'pseudo_inverse': sim.sim_ik_pseudo_inverse_method, + 'damped_least_squares': sim.sim_ik_damped_least_squares_method, + 'jacobian_transpose': sim.sim_ik_jacobian_transpose_method}[resolution_method] + except KeyError: + raise Exception('Invalid resolution method,' + 'Must be one of ["pseudo_inverse" | "damped_least_squares" | "jacobian_transpose"]') + sim.simSetIkGroupProperties( + ikGroupHandle=self._ik_group, + resolutionMethod=res_method, + maxIterations=max_iterations, + damping=dls_damping + ) + + def solve_ik_via_sampling(self, + position: Union[List[float], np.ndarray], + euler: Union[List[float], np.ndarray] = None, + quaternion: Union[List[float], np.ndarray] = None, + ignore_collisions: bool = False, + trials: int = 300, + max_configs: int = 1, + distance_threshold: float = 0.65, + max_time_ms: int = 10, + relative_to: Object = None + ) -> np.ndarray: + """Solves an IK group and returns the calculated joint values. + + This IK method performs a random searches for manipulator configurations + that matches the given end-effector pose in space. When the tip pose + is close enough then IK is computed in order to try to bring the + tip onto the target. This is the method that should be used when + the start pose is far from the end pose. + + We generate 'max_configs' number of samples within X number of 'trials', + before ranking them according to angular distance. + + Must specify either rotation in euler or quaternions, but not both! + + :param position: The x, y, z position of the target. + :param euler: The x, y, z orientation of the target (in radians). + :param quaternion: A list containing the quaternion (x,y,z,w). + :param ignore_collisions: If collision checking should be disabled. + :param trials: The maximum number of attempts to reach max_configs. + :param max_configs: The maximum number of configurations we want to + generate before sorting them. + :param distance_threshold: Distance indicating when IK should be + computed in order to try to bring the tip onto the target. + :param max_time_ms: Maximum time in ms spend searching for + each configuation. + :param relative_to: Indicates relative to which reference frame we want + the target pose. Specify None to retrieve the absolute pose, + or an Object relative to whose reference frame we want the pose. + :raises: ConfigurationError if no joint configuration could be found. + + :return: 'max_configs' number of joint configurations, ranked according + to angular distance. + """ + if not ((euler is None) ^ (quaternion is None)): + raise ConfigurationError( + 'Specify either euler or quaternion values, but not both.') + + prev_pose = self._ik_target.get_pose() + self._ik_target.set_position(position, relative_to) + if euler is not None: + self._ik_target.set_orientation(euler, relative_to) + elif quaternion is not None: + self._ik_target.set_quaternion(quaternion, relative_to) + + handles = [j.get_handle() for j in self.joints] + cyclics, intervals = self.get_joint_intervals() + low_limits, max_limits = list(zip(*intervals)) + # If there are huge intervals, then limit them + low_limits = np.maximum(low_limits, -np.pi*2).tolist() + max_limits = np.minimum(max_limits, np.pi*2).tolist() + + collision_pairs = [] + if not ignore_collisions: + collision_pairs = [self._collision_collection, sim.sim_handle_all] + + metric = joint_options = None + valid_joint_positions = [] + for i in range(trials): + config = sim.simGetConfigForTipPose( + self._ik_group, handles, distance_threshold, int(max_time_ms), + metric, collision_pairs, joint_options, low_limits, max_limits) + if len(config) > 0: + valid_joint_positions.append(config) + if len(valid_joint_positions) >= max_configs: + break + + self._ik_target.set_pose(prev_pose) + if len(valid_joint_positions) == 0: + raise ConfigurationError( + 'Could not find a valid joint configuration for desired ' + 'end effector pose.') + + if len(valid_joint_positions) > 1: + current_config = np.array(self.get_joint_positions()) + # Sort based on angular distance + valid_joint_positions.sort( + key=lambda x: np.linalg.norm(current_config - x)) + + return np.array(valid_joint_positions) + + + def get_configs_for_tip_pose(self, + position: Union[List[float], np.ndarray], + euler: Union[List[float], np.ndarray] = None, + quaternion: Union[List[float], np.ndarray] = None, + ignore_collisions=False, + trials=300, max_configs=60, + relative_to: Object = None + ) -> List[List[float]]: + """Gets a valid joint configuration for a desired end effector pose. + Must specify either rotation in euler or quaternions, but not both! + :param position: The x, y, z position of the target. + :param euler: The x, y, z orientation of the target (in radians). + :param quaternion: A list containing the quaternion (x,y,z,w). + :param ignore_collisions: If collision checking should be disabled. + :param trials: The maximum number of attempts to reach max_configs + :param max_configs: The maximum number of configurations we want to + generate before ranking them. + :param relative_to: Indicates relative to which reference frame we want + the target pose. Specify None to retrieve the absolute pose, + or an Object relative to whose reference frame we want the pose. + :raises: ConfigurationError if no joint configuration could be found. + :return: A list of valid joint configurations for the desired + end effector pose. + """ + + warnings.warn("Please use 'solve_ik_via_sampling' instead.", + DeprecationWarning) + return list(self.solve_ik_via_sampling( + position, euler, quaternion, ignore_collisions, trials, + max_configs, relative_to=relative_to)) + + def solve_ik_via_jacobian( + self, position: Union[List[float], np.ndarray], + euler: Union[List[float], np.ndarray] = None, + quaternion: Union[List[float], np.ndarray] = None, + relative_to: Object = None) -> List[float]: + """Solves an IK group and returns the calculated joint values. + + This IK method performs a linearisation around the current robot + configuration via the Jacobian. The linearisation is valid when the + start and goal pose are not too far away, but after a certain point, + linearisation will no longer be valid. In that case, the user is better + off using 'solve_ik_via_sampling'. + + Must specify either rotation in euler or quaternions, but not both! + + :param position: The x, y, z position of the target. + :param euler: The x, y, z orientation of the target (in radians). + :param quaternion: A list containing the quaternion (x,y,z,w). + :param relative_to: Indicates relative to which reference frame we want + the target pose. Specify None to retrieve the absolute pose, + or an Object relative to whose reference frame we want the pose. + :return: A list containing the calculated joint values. + """ + self._ik_target.set_position(position, relative_to) + if euler is not None: + self._ik_target.set_orientation(euler, relative_to) + elif quaternion is not None: + self._ik_target.set_quaternion(quaternion, relative_to) + + ik_result, joint_values = sim.simCheckIkGroup( + self._ik_group, [j.get_handle() for j in self.joints]) + if ik_result == sim.sim_ikresult_fail: + raise IKError('IK failed. Perhaps the distance was between the tip ' + ' and target was too large.') + elif ik_result == sim.sim_ikresult_not_performed: + raise IKError('IK not performed.') + return joint_values + + def solve_ik(self, position: Union[List[float], np.ndarray], + euler: Union[List[float], np.ndarray] = None, + quaternion: Union[List[float], np.ndarray] = None, + relative_to: Object = None) -> List[float]: + """Solves an IK group and returns the calculated joint values. + + Must specify either rotation in euler or quaternions, but not both! + + :param position: The x, y, z position of the target. + :param euler: The x, y, z orientation of the target (in radians). + :param quaternion: A list containing the quaternion (x,y,z,w). + :param relative_to: Indicates relative to which reference frame we want + the target pose. Specify None to retrieve the absolute pose, + or an Object relative to whose reference frame we want the pose. + :return: A list containing the calculated joint values. + """ + warnings.warn("Please use 'solve_ik_via_jacobian' instead.", + DeprecationWarning) + return self.solve_ik_via_jacobian( + position, euler, quaternion, relative_to) + + def get_path_from_cartesian_path(self, path: CartesianPath + ) -> ArmConfigurationPath: + """Translate a path from cartesian space, to arm configuration space. + + Note: It must be possible to reach the start of the path via a linear + path, otherwise an error will be raised. + + :param path: A :py:class:`CartesianPath` instance to be translated to + a configuration-space path. + :raises: ConfigurationPathError if no path could be created. + + :return: A path in the arm configuration space. + """ + handles = [j.get_handle() for j in self.joints] + _, ret_floats, _, _ = utils.script_call( + 'getPathFromCartesianPath@PyRep', PYREP_SCRIPT_TYPE, + ints=[path.get_handle(), self._ik_group, + self._ik_target.get_handle()] + handles) + if len(ret_floats) == 0: + raise ConfigurationPathError( + 'Could not create a path from cartesian path.') + return ArmConfigurationPath(self, ret_floats) + + def get_linear_path(self, position: Union[List[float], np.ndarray], + euler: Union[List[float], np.ndarray] = None, + quaternion: Union[List[float], np.ndarray] = None, + steps=50, ignore_collisions=False, + relative_to: Object = None) -> ArmConfigurationPath: + """Gets a linear configuration path given a target pose. + + Generates a path that drives a robot from its current configuration + to its target dummy in a straight line (i.e. shortest path in Cartesian + space). + + Must specify either rotation in euler or quaternions, but not both! + + :param position: The x, y, z position of the target. + :param euler: The x, y, z orientation of the target (in radians). + :param quaternion: A list containing the quaternion (x,y,z,w). + :param steps: The desired number of path points. Each path point + contains a robot configuration. A minimum of two path points is + required. If the target pose distance is large, a larger number + of steps leads to better results for this function. + :param ignore_collisions: If collision checking should be disabled. + :param relative_to: Indicates relative to which reference frame we want + the target pose. Specify None to retrieve the absolute pose, + or an Object relative to whose reference frame we want the pose. + :raises: ConfigurationPathError if no path could be created. + + :return: A linear path in the arm configuration space. + """ + if not ((euler is None) ^ (quaternion is None)): + raise ConfigurationPathError( + 'Specify either euler or quaternion values, but not both.') + + prev_pose = self._ik_target.get_pose() + self._ik_target.set_position(position, relative_to) + if euler is not None: + self._ik_target.set_orientation(euler, relative_to) + elif quaternion is not None: + self._ik_target.set_quaternion(quaternion, relative_to) + handles = [j.get_handle() for j in self.joints] + + collision_pairs = [] + if not ignore_collisions: + collision_pairs = [self._collision_collection, sim.sim_handle_all] + joint_options = None + ret_floats = sim.generateIkPath( + self._ik_group, handles, steps, collision_pairs, joint_options) + self._ik_target.set_pose(prev_pose) + if len(ret_floats) == 0: + raise ConfigurationPathError('Could not create path.') + return ArmConfigurationPath(self, ret_floats) + + + + def get_nonlinear_path(self, position: Union[List[float], np.ndarray], + euler: Union[List[float], np.ndarray] = None, + quaternion: Union[List[float], np.ndarray] = None, + ignore_collisions=False, + trials=300, + max_configs=1, + distance_threshold: float = 0.65, + max_time_ms: int = 10, + trials_per_goal=1, + algorithm=Algos.SBL, + relative_to: Object = None + ) -> ArmConfigurationPath: + """Gets a non-linear (planned) configuration path given a target pose. + + A path is generated by finding several configs for a pose, and ranking + them according to the distance in configuration space (smaller is + better). + + Must specify either rotation in euler or quaternions, but not both! + + :param position: The x, y, z position of the target. + :param euler: The x, y, z orientation of the target (in radians). + :param quaternion: A list containing the quaternion (x,y,z,w). + :param ignore_collisions: If collision checking should be disabled. + :param trials: The maximum number of attempts to reach max_configs. + See 'solve_ik_via_sampling'. + :param max_configs: The maximum number of configurations we want to + generate before sorting them. See 'solve_ik_via_sampling'. + :param distance_threshold: Distance indicating when IK should be + computed in order to try to bring the tip onto the target. + See 'solve_ik_via_sampling'. + :param max_time_ms: Maximum time in ms spend searching for + each configuation. See 'solve_ik_via_sampling'. + :param trials_per_goal: The number of paths per config we want to trial. + :param algorithm: The algorithm for path planning to use. + :param relative_to: Indicates relative to which reference frame we want + the target pose. Specify None to retrieve the absolute pose, + or an Object relative to whose reference frame we want the pose. + :raises: ConfigurationPathError if no path could be created. + + :return: A non-linear path in the arm configuration space. + """ + + logging.debug("planning non linear path") + + handles = [j.get_handle() for j in self.joints] + + try: + configs = self.solve_ik_via_sampling( + position, euler, quaternion, ignore_collisions, trials, + max_configs, distance_threshold, max_time_ms, relative_to) + except ConfigurationError as e: + raise ConfigurationPathError('Could not create path.') from e + + logging.debug("calling external script") + + + _, ret_floats, _, _ = utils.script_call( + 'getNonlinearPath@PyRep', PYREP_SCRIPT_TYPE, + ints=[self._collision_collection, int(ignore_collisions), + trials_per_goal] + handles, + floats=configs.flatten().tolist(), + strings=[algorithm.value]) + + logging.debug("Done calling external script") + + if len(ret_floats) == 0: + raise ConfigurationPathError('Could not create path.') + return ArmConfigurationPath(self, ret_floats) + + def get_path(self, position: Union[List[float], np.ndarray], + euler: Union[List[float], np.ndarray] = None, + quaternion: Union[List[float], np.ndarray] = None, + ignore_collisions=False, + trials=300, + max_configs=1, + distance_threshold: float = 0.65, + max_time_ms: int = 10, + trials_per_goal=1, + algorithm=Algos.SBL, + relative_to: Object = None + ) -> ArmConfigurationPath: + """Tries to get a linear path, failing that tries a non-linear path. + + Must specify either rotation in euler or quaternions, but not both! + + :param position: The x, y, z position of the target. + :param euler: The x, y, z orientation of the target (in radians). + :param quaternion: A list containing the quaternion (x,y,z,w). + :param ignore_collisions: If collision checking should be disabled. + :param trials: The maximum number of attempts to reach max_configs. + See 'solve_ik_via_sampling'. + :param max_configs: The maximum number of configurations we want to + generate before sorting them. See 'solve_ik_via_sampling'. + :param distance_threshold: Distance indicating when IK should be + computed in order to try to bring the tip onto the target. + See 'solve_ik_via_sampling'. + :param max_time_ms: Maximum time in ms spend searching for + each configuation. See 'solve_ik_via_sampling'. + :param trials_per_goal: The number of paths per config we want to trial. + :param algorithm: The algorithm for path planning to use. + :param relative_to: Indicates relative to which reference frame we want + the target pose. Specify None to retrieve the absolute pose, + or an Object relative to whose reference frame we want the pose. + + :raises: ConfigurationPathError if neither a linear or non-linear path + can be created. + :return: A linear or non-linear path in the arm configuration space. + """ + logging.debug("planning linear path") + try: + p = self.get_linear_path(position, euler, quaternion, + ignore_collisions=ignore_collisions, + relative_to=relative_to) + return p + except ConfigurationPathError as e: + #logging.error("configuration error", e) + pass # Allowed. Try again, but with non-linear. + + # This time if an exception is thrown, we dont want to catch it. + p = self.get_nonlinear_path( + position, euler, quaternion, ignore_collisions, trials, max_configs, + distance_threshold, max_time_ms, trials_per_goal, algorithm, + relative_to) + return p + + def get_tip(self) -> Dummy: + """Gets the tip of the arm. + + Each arm is required to have a tip for path planning. + + :return: The tip of the arm. + """ + return self._ik_tip + + def get_jacobian(self): + """Calculates the Jacobian. + + :return: the row-major Jacobian matix. + """ + self._ik_target.set_matrix(self._ik_tip.get_matrix()) + sim.simCheckIkGroup(self._ik_group, + [j.get_handle() for j in self.joints]) + jacobian, (rows, cols) = sim.simGetIkGroupMatrix(self._ik_group, 0) + jacobian = np.array(jacobian).reshape((rows, cols), order='F') + return jacobian + + def check_arm_collision(self, obj: 'Object' = None) -> bool: + """Checks whether two entities are colliding. + + :param obj: The other collidable object to check collision against, + or None to check against all collidable objects. Note that objects + must be marked as collidable! + :return: If the object is colliding. + """ + handle = sim.sim_handle_all if obj is None else obj.get_handle() + return sim.simCheckCollision(self._collision_collection, handle) == 1 diff --git a/external/pyrep/pyrep/robots/arms/baxter.py b/external/pyrep/pyrep/robots/arms/baxter.py new file mode 100644 index 0000000000000000000000000000000000000000..b446284cab51ae52fb4b6ae985a1c53fc6f6b075 --- /dev/null +++ b/external/pyrep/pyrep/robots/arms/baxter.py @@ -0,0 +1,13 @@ +from pyrep.robots.arms.arm import Arm + + +class BaxterLeft(Arm): + + def __init__(self, count: int = 0): + super().__init__(count, 'Baxter_leftArm', 7, base_name='Baxter') + + +class BaxterRight(Arm): + + def __init__(self, count: int = 0): + super().__init__(count, 'Baxter_rightArm', 7, base_name='Baxter') diff --git a/external/pyrep/pyrep/robots/arms/dobot.py b/external/pyrep/pyrep/robots/arms/dobot.py new file mode 100644 index 0000000000000000000000000000000000000000..dc9b596dc4bc260ac7add87e13fb55d197e77560 --- /dev/null +++ b/external/pyrep/pyrep/robots/arms/dobot.py @@ -0,0 +1,7 @@ +from pyrep.robots.arms.arm import Arm + + +class Dobot(Arm): + + def __init__(self, count: int = 0): + super().__init__(count, 'Dobot', 4) diff --git a/external/pyrep/pyrep/robots/arms/dual_panda.py b/external/pyrep/pyrep/robots/arms/dual_panda.py new file mode 100644 index 0000000000000000000000000000000000000000..377551e713b929eb7be28146dfea5e3a8ed34cd3 --- /dev/null +++ b/external/pyrep/pyrep/robots/arms/dual_panda.py @@ -0,0 +1,15 @@ +from pyrep.robots.arms.arm import Arm + + +class PandaRight(Arm): + + def __init__(self, count: int = 0): + # right arm + super().__init__(count, 'Panda_rightArm', 7, base_name='DualPanda') + + +class PandaLeft(Arm): + + def __init__(self, count: int = 0): + # left arm + super().__init__(count, 'Panda_leftArm', 7, base_name='DualPanda') \ No newline at end of file diff --git a/external/pyrep/pyrep/robots/arms/jaco.py b/external/pyrep/pyrep/robots/arms/jaco.py new file mode 100644 index 0000000000000000000000000000000000000000..181dcfefceac31923849304e3ceab2ba1e27c0b7 --- /dev/null +++ b/external/pyrep/pyrep/robots/arms/jaco.py @@ -0,0 +1,7 @@ +from pyrep.robots.arms.arm import Arm + + +class Jaco(Arm): + + def __init__(self, count: int = 0): + super().__init__(count, 'Jaco', 6) diff --git a/external/rlbench/.gitignore b/external/rlbench/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..080b4cfdec671102522553f79b0cfc910ca71a34 --- /dev/null +++ b/external/rlbench/.gitignore @@ -0,0 +1,119 @@ +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +.idea/ + +# C extensions +*.so + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +share/python-wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.nox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +.hypothesis/ +.pytest_cache/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log +local_settings.py +db.sqlite3 + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# IPython +profile_default/ +ipython_config.py + +# pyenv +.python-version + +# celery beat schedule file +celerybeat-schedule + +# SageMath parsed files +*.sage.py + +# Environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mkdocs documentation +/site + +# mypy +.mypy_cache/ +.dmypy.json +dmypy.json + +# Pyre type checker +.pyre/ + +index.html \ No newline at end of file diff --git a/external/rlbench/.travis.yml b/external/rlbench/.travis.yml new file mode 100644 index 0000000000000000000000000000000000000000..42ec2bccef192cc457cc8e7367c6a58a1ea83220 --- /dev/null +++ b/external/rlbench/.travis.yml @@ -0,0 +1,59 @@ +dist: xenial +language: python +services: + - xvfb +python: + - "3.6" + +env: + # Will kick of 2 builds. One for units and one for tasks. + - TEST_DIR=unit + - TEST_DIR=demos +before_install: + - sudo apt-get update -qq + - sudo apt-get install qtbase5-dev qtdeclarative5-dev libqt5webkit5-dev libsqlite3-dev + - sudo apt-get install qt5-default qttools5-dev-tools +install: + - cd ../ + - cur=`pwd` + # Pull V-REP + - wget http://www.coppeliarobotics.com/files/CoppeliaSim_Edu_V4_1_0_Ubuntu16_04.tar.xz + - tar -xf CoppeliaSim_Edu_V4_1_0_Ubuntu16_04.tar.xz + - export COPPELIASIM_ROOT="$cur/CoppeliaSim_Edu_V4_1_0_Ubuntu16_04" + - echo $COPPELIASIM_ROOT + - export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$COPPELIASIM_ROOT:$COPPELIASIM_ROOT/platforms + - export QT_QPA_PLATFORM_PLUGIN_PATH=$COPPELIASIM_ROOT + + # Install PyRep + - git clone https://github.com/stepjam/PyRep.git + - cd PyRep + - pip3 install -r requirements.txt + - pip3 install . + + # Gym needed for some of unit tests + - pip3 install gym + + # Go back to RLBench repo + - cd ../RLBench + - pip3 install -r requirements.txt +# command to run tests +script: + # Runs unit tests and generates reports (110 min timeout) + - travis_wait 110 python3 travisci_run_tests.py $TEST_DIR $TRAVIS_BRANCH $TRAVIS_BUILD_NUMBER +after_script: + # Get previously generated index file + - git clone --quiet --branch=gh-pages https://${GITHUB_TOKEN}@github.com/stepjam/RLBench.git gh-pages + - cd gh-pages + + # Generated html files will be one directory above + - cp -r ../reports . + # Move script that will amend the index + - mv ../travisci_generate_index.py . + + # Generated new index.html + - python3 travisci_generate_index.py $TEST_DIR $TRAVIS_BRANCH $TRAVIS_BUILD_NUMBER $TRAVIS_TEST_RESULT + + # Push generate html to gh-pages branch + - git add index.html reports/ + - git commit -m "Travis build $TRAVIS_BUILD_NUMBER" + - git push -fq origin gh-pages diff --git a/external/rlbench/LICENSE b/external/rlbench/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..d54744fb2cdcbda4328a9ed1d20583e0abefc77d --- /dev/null +++ b/external/rlbench/LICENSE @@ -0,0 +1,190 @@ +RLBENCH: THE ROBOT LEARNING BENCHMARK & LEARNING ENVIRONMENT + +LICENCE AGREEMENT + +WE (Imperial College of Science, Technology and Medicine, (“Imperial College London”)) +ARE WILLING TO LICENSE THIS SOFTWARE TO YOU (a licensee “You”) ONLY ON THE +CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THE +FOLLOWING AGREEMENT. PLEASE READ THE AGREEMENT CAREFULLY BEFORE +DOWNLOADING THE SOFTWARE. BY EXERCISING THE OPTION TO DOWNLOAD +THE SOFTWARE YOU AGREE TO BE BOUND BY THE TERMS OF THE AGREEMENT. +SOFTWARE LICENCE AGREEMENT (EXCLUDING BSD COMPONENTS) + +1.This Agreement pertains to a worldwide, non-exclusive, temporary, fully paid-up, royalty +free, non-transferable, non-sub- licensable licence (the “Licence”) to use the RLBench +source code, including any modification, part or derivative (the “Software”). +Ownership and Licence. Your rights to use and download the Software onto your computer, +and all other copies that You are authorised to make, are specified in this Agreement. +However, we (or our licensors) retain all rights, including but not limited to all copyright and +other intellectual property rights anywhere in the world, in the Software not expressly +granted to You in this Agreement. + +2. Permitted use of the Licence: + +(a) You may download and install the Software onto computers or servers for use in +accordance with Clause 2(b) of this Agreement provided that You ensure that the Software is +not accessible by other users unless they have themselves accepted the terms of this licence +agreement. + +(b) You may use the Software solely for non-commercial, internal or academic research +purposes and only in accordance with the terms of this Agreement. You may not use the +Software for commercial purposes, including but not limited to (1) integration of all or part of +the source code or the Software into a product for sale or licence by or on behalf of You to +third parties or (2) use of the Software or any derivative of it for research to develop software +products for sale or licence to a third party or (3) use of the Software or any derivative of it +for research to develop non-software products for sale or licence to a third party, or (4) use of +the Software to provide any service to an external organisation for which payment is +received. + +Should You wish to use the Software for commercial purposes, You shall +email researchcontracts.engineering@imperial.ac.uk . + +(c) Right to Copy. You may copy the Software for back-up and archival purposes, provided +that each copy is kept in your possession and provided You reproduce our copyright notice +(set out in Schedule 1) on each copy. + +(d) Transfer and sub-licensing. You may not rent, lend, or lease the Software and You may +not transmit, transfer or sub-license this licence to use the Software or any of your rights or +obligations under this Agreement to another party. + +(f) Publications and presentations. You may make public, results or data obtained from, +dependent on or arising from research carried out using the Software, provided that any such +presentation or publication identifies the Software as the source of the results or the data, +including the Copyright Notice given in each element of the Software, and stating that the +Software has been made available for use by You under licence from Imperial College London +and You provide a copy of any such publication to Imperial College London. + +3. Prohibited Uses. You may not, without written permission from us +at researchcontracts.engineering@imperial.ac.uk : + +(a) Use, copy, modify, merge, or transfer copies of the Software or any documentation +provided by us which relates to the Software except as provided in this Agreement; + +(b) Use any back-up or archival copies of the Software (or allow anyone else to use such +copies) for any purpose other than to replace the original copy in the event it is destroyed or +becomes defective; or + +(c) Disassemble, decompile or "unlock", reverse translate, or in any manner decode the +Software for any reason. + +4. Warranty Disclaimer + +(a) Disclaimer. The Software has been developed for research purposes only. You +acknowledge that we are providing the Software to You under this licence agreement free of +charge and on condition that the disclaimer set out below shall apply. We do not represent or +warrant that the Software as to: (i) the quality, accuracy or reliability of the Software; (ii) the +suitability of the Software for any particular use or for use under any specific conditions; and +(iii) whether use of the Software will infringe third-party rights. +You acknowledge that You have reviewed and evaluated the Software to determine that it +meets your needs and that You assume all responsibility and liability for determining the +suitability of the Software as fit for your particular purposes and requirements. Subject to +Clause 4(b), we exclude and expressly disclaim all express and implied representations, +warranties, conditions and terms not stated herein (including the implied conditions or +warranties of satisfactory quality, merchantable quality, merchantability and fitness for +purpose). + +(b) Savings. Some jurisdictions may imply warranties, conditions or terms or impose +obligations upon us which cannot, in whole or in part, be excluded, restricted or modified or +otherwise do not allow the exclusion of implied warranties, conditions or terms, in which +case the above warranty disclaimer and exclusion will only apply to You to the extent +permitted in the relevant jurisdiction and does not in any event exclude any implied +warranties, conditions or terms which may not under applicable law be excluded. + +(c) Imperial College London disclaims all responsibility for the use which is made of the +Software and any liability for the outcomes arising from using the Software. + +5. Limitation of Liability + +(a) You acknowledge that we are providing the Software to You under this licence agreement +free of charge and on condition that the limitation of liability set out below shall apply. +Accordingly, subject to Clause 5(b), we exclude all liability whether in contract, tort, +negligence or otherwise, in respect of the Software and/or any related documentation +provided to You by us including, but not limited to, liability for loss or corruption of data, +loss of contracts, loss of income, loss of profits, loss of cover and any consequential or indirect +loss or damage of any kind arising out of or in connection with this licence agreement, +however caused. This exclusion shall apply even if we have been advised of the possibility of +such loss or damage. + +(b) You agree to indemnify Imperial College London and hold it harmless from and against +any and all claims, damages and liabilities asserted by third parties (including claims for +negligence) which arise directly or indirectly from the use of the Software or any derivative +of it or the sale of any products based on the Software. You undertake to make no liability +claim against any employee, student, agent or appointee of Imperial College London, in +connection with this Licence or the Software. + +(c) Nothing in this Agreement shall have the effect of excluding or limiting our statutory +liability. + +(d) Some jurisdictions do not allow these limitations or exclusions either wholly or in part, +and, to that extent, they may not apply to you. Nothing in this licence agreement will affect +your statutory rights or other relevant statutory provisions which cannot be excluded, +restricted or modified, and its terms and conditions must be read and construed subject to any +such statutory rights and/or provisions. + +6. Confidentiality. You agree not to disclose any confidential information provided to You by +us pursuant to this Agreement to any third party without our prior written consent. The +obligations in this Clause 6 shall survive the termination of this Agreement for any reason. + +7. Termination. + +(a) We may terminate this licence agreement and your right to use the Software at any time +with immediate effect upon written notice to You. + +(b) This licence agreement and your right to use the Software automatically terminate if You: +(i) fail to comply with any provisions of this Agreement; or +(ii) destroy the copies of the Software in your possession, or voluntarily return the Software +to us. + +(c) Upon termination You will destroy all copies of the Software. + +(d) Otherwise, the restrictions on your rights to use the Software will expire 10 (ten) years +after first use of the Software under this licence agreement. + +8. Miscellaneous Provisions. + +(a) This Agreement will be governed by and construed in accordance with the substantive +laws of England and Wales whose courts shall have exclusive jurisdiction over all disputes +which may arise between us. + +(b) This is the entire agreement between us relating to the Software, and supersedes any prior +purchase order, communications, advertising or representations concerning the Software. + +(c) No change or modification of this Agreement will be valid unless it is in writing, and is +signed by us. + +(d) The unenforceability or invalidity of any part of this Agreement will not affect the +enforceability or validity of the remaining parts. + +BSD Elements of the Software + +For BSD elements of the Software, the following terms shall apply: + +Copyright as indicated in the header of the individual element of the Software. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, are +permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this list of +conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, this list of +conditions and the following disclaimer in the documentation and/or other materials +provided with the distribution. + +3. Neither the name of the copyright holder nor the names of its contributors may be used to +endorse or promote products derived from this software without specific prior written +permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON +ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/external/rlbench/README.md b/external/rlbench/README.md new file mode 100644 index 0000000000000000000000000000000000000000..8f5c5c39a30f26047b4d4a1613c195cebd9cb032 --- /dev/null +++ b/external/rlbench/README.md @@ -0,0 +1,434 @@ +# RLBench: Robot Learning Benchmark [![Unit Tests](https://github.com/stepjam/RLBench/workflows/Unit%20Tests/badge.svg)](https://github.com/stepjam/RLBench/actions) [![Task Tests](https://github.com/stepjam/RLBench/workflows/Task%20Tests/badge.svg)](https://github.com/stepjam/RLBench/actions) [![Discord](https://img.shields.io/discord/694945190867370155.svg?label=&logo=discord&logoColor=ffffff&color=7389D8&labelColor=6A7EC2)](https://discord.gg/DXPCjmd) + +![task grid image missing](readme_files/task_grid.png) + +## Modifications + This is my fork of RLBench. Modifications include: +- 6 new tasks, bug fixes, and extensions of existing tasks. See Appendix A in the [paper](https://peract.github.io/) for details. +- Data generation also records if `ignore_collisions` was used with a waypoint for motion-planning. +- `data_generator.py` supports an "all_variations" setting that samples from all possible task variations. + +I branched off `master` in Feb 2022, so this fork is not up to date with the latest changes in the official repo. + +## RLBench + +**RLBench** is an ambitious large-scale benchmark and learning environment +designed to facilitate research in a number of vision-guided manipulation +research areas, including: reinforcement learning, imitation learning, +multi-task learning, geometric computer vision, and in particular, +few-shot learning. [Click here for website and paper.](https://sites.google.com/corp/view/rlbench) + +**Contents:** +- [Announcements](#announcements) +- [Install](#install) +- [Running Headless](#running-headless) +- [Getting Started](#getting-started) + - [Few-Shot Learning and Meta Learning](#few-shot-learning-and-meta-learning) + - [Reinforcement Learning](#reinforcement-learning) + - [Sim-to-Real](#sim-to-real) + - [Imitation Learning](#imitation-learning) + - [Multi-Task Learning](#multi-task-learning) + - [RLBench Gym](#rlbench-gym) + - [Swapping Arms](#swapping-arms) +- [Tasks](#tasks) +- [Task Building](#task-building) +- [Gotchas!](#gotchas) +- [Contributing](#contributing) +- [Acknowledgements](#acknowledgements) +- [Citation](#citation) + +## Announcements + +### 11 May 2022 + +- Shaped rewards added for: **reach_target** and **take_lid_off_saucepan**. Pass `shaped_rewards=True` to `Environement` class + +### 18 February 2022 + +- **Version 1.2.0 is live!** Note: This release will cause code-breaking API changes for action modes. + +### 1 July 2021 + +- New instructions on headless GPU rendering [here](#running-headless)! + +### 8 September 2020 + +- New tutorial series on task creation [here](https://www.youtube.com/watch?v=bKaK_9O3v7Y&list=PLsffAlO5lBTRiBwnkw2-x0U7t6TrNCkfc)! + +### 1 April 2020 + +- We added a Discord channel to allow the RLBench community to help one another. Click the Discord badge above. + +### 28 January 2020 + +- RLBench has been accepted to RA-L with presentation at ICRA! +- Ability to easily swap out arms added. [See here](#swapping-arms). + +### 17 December 2019 + +- Gym is now supported! + + +## Install + +RLBench is built around PyRep and V-REP. First head to the +[PyRep github](https://github.com/stepjam/PyRep) page and install. + +**If you previously had PyRep installed, you will need to update your installation!** + +Hopefully you have now installed PyRep and have run one of the PyRep examples. +Now lets install RLBench: + +```bash +pip install -r requirements.txt +pip install . +``` +Or you can install directly via pip +```bash +pip install git+https://github.com/stepjam/RLBench.git +``` + +And that's it! + +## Running Headless + +If you are running on a machine without display (i.e. Cloud VMs, compute clusters), +you can refer to the following guide to run RLBench headlessly with rendering. + +### Initial setup + +First, configure your X config. This should only be done once to set up. + +```bash +sudo nvidia-xconfig -a --use-display-device=None --virtual=1280x1024 +echo -e 'Section "ServerFlags"\n\tOption "MaxClients" "2048"\nEndSection\n' \ + | sudo tee /etc/X11/xorg.conf.d/99-maxclients.conf +``` + +Leave out `--use-display-device=None` if the GPU is headless, i.e. if it has no display outputs. + +### Running X + +Then, whenever you want to run RLBench, spin up X. + +```bash +# nohup and disown is important for the X server to keep running in the background +sudo nohup X :99 & disown +``` + +Test if your display works using glxgears. + +```bash +DISPLAY=:99 glxgears +``` + +If you have multiple GPUs, you can select your GPU by doing the following. + +```bash +DISPLAY=:99. glxgears +``` + +### Running X without sudo + +To spin up X with non-sudo users, edit file '/etc/X11/Xwrapper.config' and replace line: + +``` +allowed_users=console +``` +with lines: +``` +allowed_users=anybody +needs_root_rights=yes +``` +If the file does not exist already, you can create it. + +## Getting Started + +The benchmark places particular emphasis on few-shot learning and meta learning +due to breadth of tasks available, though it can be used in numerous ways. Before using RLBench, +checkout the [Gotchas](#gotchas) section. + +### Few-Shot Learning and Meta Learning + +We have created splits of tasks called 'Task Sets', which consist of a +collection of X training tasks and 5 tests tasks. Here X can be 10, 25, 50, or 95. +For example, to work on the task set with 10 training tasks, we import `FS10_V1`: + +```python +import numpy as np +from rlbench.action_modes.action_mode import MoveArmThenGripper +from rlbench.action_modes.arm_action_modes import JointVelocity +from rlbench.action_modes.gripper_action_modes import Discrete +from rlbench.environment import Environment +from rlbench.tasks import FS10_V1 + +action_mode = MoveArmThenGripper( + arm_action_mode=JointVelocity(), + gripper_action_mode=Discrete() +) +env = Environment(action_mode) +env.launch() + +train_tasks = FS10_V1['train'] +test_tasks = FS10_V1['test'] +task_to_train = np.random.choice(train_tasks, 1)[0] +task = env.get_task(task_to_train) +task.sample_variation() # random variation +descriptions, obs = task.reset() +obs, reward, terminate = task.step(np.random.normal(size=env.action_shape)) +``` + +A full example can be seen in [examples/few_shot_rl.py](examples/few_shot_rl.py). + +### Reinforcement Learning + +```python +import numpy as np +from rlbench.action_modes.action_mode import MoveArmThenGripper +from rlbench.action_modes.arm_action_modes import JointVelocity +from rlbench.action_modes.gripper_action_modes import Discrete +from rlbench.environment import Environment +from rlbench.tasks import ReachTarget + +action_mode = MoveArmThenGripper( + arm_action_mode=JointVelocity(), + gripper_action_mode=Discrete() +) +env = Environment(action_mode) +env.launch() + +task = env.get_task(ReachTarget) +descriptions, obs = task.reset() +obs, reward, terminate = task.step(np.random.normal(size=env.action_shape)) +``` + +A full example can be seen in [examples/single_task_rl.py](examples/single_task_rl.py). +If you would like to bootstrap from demonstrations, then take a look at [examples/single_task_rl_with_demos.py](examples/single_task_rl_with_demos.py). + + +### Sim-to-Real + +```python +import numpy as np +from rlbench import Environment +from rlbench import RandomizeEvery +from rlbench import VisualRandomizationConfig +from rlbench.action_modes.action_mode import MoveArmThenGripper +from rlbench.action_modes.arm_action_modes import JointVelocity +from rlbench.action_modes.gripper_action_modes import Discrete +from rlbench.tasks import OpenDoor + +# We will borrow some from the tests dir +rand_config = VisualRandomizationConfig( + image_directory='../tests/unit/assets/textures') + +action_mode = MoveArmThenGripper( + arm_action_mode=JointVelocity(), + gripper_action_mode=Discrete() +) +env = Environment( + action_mode, randomize_every=RandomizeEvery.EPISODE, + frequency=1, visual_randomization_config=rand_config) + +env.launch() + +task = env.get_task(OpenDoor) +descriptions, obs = task.reset() +obs, reward, terminate = task.step(np.random.normal(size=env.action_shape)) +``` + +A full example can be seen in [examples/single_task_rl_domain_randomization.py](examples/single_task_rl_domain_randomization.py). + +### Imitation Learning + +```python +import numpy as np +from rlbench.action_modes.action_mode import MoveArmThenGripper +from rlbench.action_modes.arm_action_modes import JointVelocity +from rlbench.action_modes.gripper_action_modes import Discrete +from rlbench.environment import Environment +from rlbench.tasks import ReachTarget + +# To use 'saved' demos, set the path below +DATASET = 'PATH/TO/YOUR/DATASET' + +action_mode = MoveArmThenGripper( + arm_action_mode=JointVelocity(), + gripper_action_mode=Discrete() +) +env = Environment(action_mode, DATASET) +env.launch() + +task = env.get_task(ReachTarget) + +demos = task.get_demos(2) # -> List[List[Observation]] +demos = np.array(demos).flatten() + +batch = np.random.choice(demos, replace=False) +batch_images = [obs.left_shoulder_rgb for obs in batch] +predicted_actions = predict_action(batch_images) +ground_truth_actions = [obs.joint_velocities for obs in batch] +loss = behaviour_cloning_loss(ground_truth_actions, predicted_actions) + +``` + +A full example can be seen in [examples/imitation_learning.py](examples/imitation_learning.py). + +### Multi-Task Learning + +We have created splits of tasks called 'Task Sets', which consist of a +collection of X training tasks. Here X can be 15, 30, 55, or 100. +For example, to work on the task set with 15 training tasks, we import `MT15_V1`: + +```python +import numpy as np +from rlbench.action_modes.action_mode import MoveArmThenGripper +from rlbench.action_modes.arm_action_modes import JointVelocity +from rlbench.action_modes.gripper_action_modes import Discrete +from rlbench.environment import Environment +from rlbench.tasks import MT15_V1 + +action_mode = MoveArmThenGripper( + arm_action_mode=JointVelocity(), + gripper_action_mode=Discrete() +) +env = Environment(action_mode) +env.launch() + +train_tasks = MT15_V1['train'] +task_to_train = np.random.choice(train_tasks, 1)[0] +task = env.get_task(task_to_train) +task.sample_variation() # random variation +descriptions, obs = task.reset() +obs, reward, terminate = task.step(np.random.normal(size=env.action_shape)) +``` + +A full example can be seen in [examples/multi_task_learning.py](examples/multi_task_learning.py). + +### RLBench Gym + +RLBench is __Gym__ compatible! Ensure you have gym installed (`pip3 install gym`). + +Simply select your task of interest from [rlbench/tasks/](rlbench/tasks/), and +then load the task by using the task name (e.g. 'reach_target') followed by +the observation mode: 'state' or 'vision'. + +```python +import gym +import rlbench.gym + +env = gym.make('reach_target-state-v0') +# Alternatively, for vision: +# env = gym.make('reach_target-vision-v0') + +training_steps = 120 +episode_length = 40 +for i in range(training_steps): + if i % episode_length == 0: + print('Reset Episode') + obs = env.reset() + obs, reward, terminate, _ = env.step(env.action_space.sample()) + env.render() # Note: rendering increases step time. + +print('Done') +env.close() +``` + +A full example can be seen in [examples/rlbench_gym.py](examples/rlbench_gym.py). + +### Swapping Arms + +The default Franka Panda Arm _can_ be swapped out for another. This can be +useful for those who have custom tasks or want to perform sim-to-real +experiments on the tasks. However, if you swap out the arm, then we can't +guarantee that the task will be solvable. +For example, the Mico arm has a very small workspace in comparison to the +Franka. + +**For benchmarking, the arm should remain as the Franka Panda.** + +Currently supported arms: + +- Franka Panda arm with Franka gripper `(franka)` +- Mico arm with Mico gripper `(mico)` +- Jaco arm with 3-finger Jaco gripper `(jaco)` +- Sawyer arm with Baxter gripper `(sawyer)` +- UR5 arm with Robotiq 85 gripper `(ur5)` + +You can then swap out the arm using `robot_configuration`: + +```python +env = Environment(action_mode=action_mode, robot_setup='sawyer') +``` + +A full example (using the Sawyer) can be seen in [examples/swap_arm.py](examples/swap_arm.py). + +_Don't see the arm that you want to use?_ Your first step is to make sure it is +in PyRep, and if not, then you can follow the instructions for importing new +arm on the PyRep GitHub page. After that, feel free to open an issue and +we can being it in to RLBench for you. + +## Tasks + +To see a full list of all tasks, [see here](rlbench/tasks). + +To see gifs of each of the tasks, [see here](https://drive.google.com/drive/folders/1TqbulbbCEqVBd6SBHatphFlUK2JQLkYu?usp=sharing). + +## Task Building + +The task building tool is the interface for users who wish to create new tasks +to be added to the RLBench task repository. Each task has 2 associated files: +a V-REP model file (_.ttm_), which holds all of the scene information and demo +waypoints, and a python (_.py_) file, which is responsible for wiring the +scene objects to the RLBench backend, applying variations, defining success +criteria, and adding other more complex task behaviours. + +Video tutorial series [here](https://www.youtube.com/watch?v=bKaK_9O3v7Y&list=PLsffAlO5lBTRiBwnkw2-x0U7t6TrNCkfc)! + +In-depth text tutorials: +- [Simple Task](tutorials/simple_task.md) +- [Complex Task](tutorials/complex_task.md) + +## Gotchas! + +- **Using low-dimensional task observations (rather than images):** RLBench was designed to be challenging, putting emphasis on vision rather than +toy-based low dimensional inputs. Although each task does supply a low-dimensional +output this should be used with extreme caution! + - Why? Imagine you are training a reinforcement learning agent to pick up a block; halfway through + training, the block slips from the gripper and falls of the table. These low-dimensional values + will now be out of distribution. I.e. RLBench does not safeguard against objects going out of the + workspace. This issue does not arise when using image-based observations. + +- **Using non-standard image size:** RLBench by default uses image observation sizes of 128x128. +When using an alternative size, be aware that you may need to collect your saved demonstrations again. + - Why? If we instead specify a 64x64 image observation size to the `ObservationConfig` then the + scene cameras will now render to that size. However, the saved demos on disk will now be **resized** + to be 64x64. + This resizing will of course mean that small artifacts may be present in stored demos + that may not be present in the 'live' observations from the scene. Instead, prefer to re-collect demos + using the image observation sized you plan to use in the 'live' environment. + + +## Contributing + +New tasks using our task building tool, in addition to bug fixes, are very +welcome! When building your task, please ensure that you run the task validator +in the task building tool. + +A full contribution guide is coming soon! + +## Acknowledgements + +Models were supplied from turbosquid.com, cgtrader.com, free3d.com, +thingiverse.com, and cadnav.com. + +## Citation + +``` +@article{james2019rlbench, + title={RLBench: The Robot Learning Benchmark \& Learning Environment}, + author={James, Stephen and Ma, Zicong and Rovick Arrojo, David and Davison, Andrew J.}, + journal={IEEE Robotics and Automation Letters}, + year={2020} +} +``` diff --git a/external/rlbench/pyproject.toml b/external/rlbench/pyproject.toml new file mode 100644 index 0000000000000000000000000000000000000000..eb60a5df4e883bde07a17a467062c3a1a6d675c4 --- /dev/null +++ b/external/rlbench/pyproject.toml @@ -0,0 +1,35 @@ +[tool.poetry] +name = "rlbench" +version = "1.2.1" +description = "RLBench" +authors = [ 'Stephen James ', +'Mohit Shridhar ', +'Markus Grotz '] +packages = [{include = 'rlbench'}] + +include=['*.ttm', '*.obj', '**/**/*.ttm', '**/**/*.obj', 'task_design.ttt'] + +readme = "README.md" +classifiers = [ + "Programming Language :: Python :: 3", + "Framework :: Robot Framework " +] + +[tool.poetry.dependencies] +python = ">=3.8,<4.0" +numpy = "^1.23.3" +Pillow = "^9.2.0" +pyquaternion = "^0.9.9" +click-prompt = "^0.5.1" +rich-click = "^1.8.3" + +[tool.poetry.dev-dependencies] +toml = "^0.10.2" + +[tool.poetry.extras] +docs = ["sphinx"] + +[build-system] +requires = ["setuptools", "wheel", "poetry-core>=1.0.0"] +build-backend = "poetry.core.masonry.api" + diff --git a/external/rlbench/requirements.txt b/external/rlbench/requirements.txt new file mode 100644 index 0000000000000000000000000000000000000000..2848bc939018127f076e3a7afc4216dcba9f9bed --- /dev/null +++ b/external/rlbench/requirements.txt @@ -0,0 +1,6 @@ +numpy +Pillow +pyquaternion +html-testRunner +setuptools +natsort diff --git a/external/rlbench/tools/dataset_generator_bimanual.py b/external/rlbench/tools/dataset_generator_bimanual.py new file mode 100644 index 0000000000000000000000000000000000000000..4ad6ad73573e4ff4c3dabf73d950f3249224b050 --- /dev/null +++ b/external/rlbench/tools/dataset_generator_bimanual.py @@ -0,0 +1,231 @@ +#!/usr/bin/env python3 + +import sys +import os +import logging +from functools import partial +import multiprocessing as mp +import pickle +import numpy as np + +from rlbench import ObservationConfig +from rlbench.observation_config import CameraConfig + +from rlbench.action_modes.action_mode import BimanualMoveArmThenGripper +from rlbench.action_modes.arm_action_modes import BimanualJointVelocity +from rlbench.action_modes.arm_action_modes import BimanualJointPosition +from rlbench.action_modes.gripper_action_modes import BimanualDiscrete + +from rlbench.backend.exceptions import BoundaryError, InvalidActionError, TaskEnvironmentError, WaypointError +from rlbench.backend.utils import task_file_to_task_class +from rlbench.environment import Environment +import rlbench.backend.task as task + +from PIL import Image +from rlbench.backend import utils +from rlbench.backend.const import * +from rlbench.backend.task import BIMANUAL_TASKS_PATH + + +import rich_click as click +from rich.logging import RichHandler +from click_prompt import choice_option +from click_prompt import filepath_option + + +camera_names = ["over_shoulder_left", "over_shoulder_right", "overhead", "wrist_right", "wrist_left", "front"] + + +def save_demo(demo, example_path, variation): + data_types = ["rgb", "depth", "point_cloud", "mask"] + #full_camera_names = list(map(lambda x: ('_'.join(x), x[-1]), product(camera_names, data_types))) + + # Save image data first, and then None the image data, and pickle + for i, obs in enumerate(demo): + for camera_name in camera_names: + for dtype in data_types: + + camera_full_name = f"{camera_name}_{dtype}" + data_path = os.path.join(example_path, camera_full_name) + # ..todo:: actually I prefer to abort if this one exists + os.makedirs(data_path, exist_ok=True) + + data = obs.perception_data.get(camera_full_name, None) + + if data is not None: + if dtype == 'rgb': + data = Image.fromarray(data) + elif dtype == 'depth': + data = utils.float_array_to_rgb_image(data, scale_factor=DEPTH_SCALE) + elif dtype == 'point_cloud': + continue + elif dtype == 'mask': + data = Image.fromarray((data * 255).astype(np.uint8)) + else: + raise Exception('Invalid data type') + logging.debug("saving %s", camera_full_name) + data.save(os.path.join(data_path, f"{dtype}_{i:04d}.png")) + + # ..why don't we put everything into a pickle file? + obs.perception_data.clear() + + # Save the low-dimension data + with open(os.path.join(example_path, LOW_DIM_PICKLE), 'wb') as f: + pickle.dump(demo, f) + + with open(os.path.join(example_path, VARIATION_NUMBER), 'wb') as f: + pickle.dump(variation, f) + + +def run_all_variations(task_name, headless, save_path, episodes_per_task, image_size): + """Each thread will choose one task and variation, and then gather + all the episodes_per_task for that variation.""" + + for handler in logging.root.handlers[:]: + logging.root.removeHandler(handler) + + from rich.logging import RichHandler + logging.basicConfig(level=logging.INFO, handlers=[RichHandler()]) + logging.root.name = task_name + + logging.info("Collecting data for %s", task_name) + + tasks = [task_file_to_task_class(task_name, True)] + + obs_config = ObservationConfig() + obs_config.set_all(True) + + default_config_params = {"image_size": image_size, "depth_in_meters": False, "masks_as_one_channel": False} + camera_configs = {camera_name: CameraConfig(**default_config_params) for camera_name in camera_names} + obs_config.camera_configs = camera_configs + + + # ..record date with BimanualJointPosition + robot_setup = 'dual_panda' + rlbench_env = Environment( + action_mode=BimanualMoveArmThenGripper(BimanualJointPosition(), BimanualDiscrete()), + obs_config=obs_config, + robot_setup=robot_setup, + headless=headless) + + rlbench_env.launch() + + tasks_with_problems = "" + + for task in tasks: + + task_env = rlbench_env.get_task(task) + possible_variations = task_env.variation_count() + + logging.info("Task has %s possible variations", possible_variations) + + variation_path = os.path.join(save_path, task_env.get_name(), VARIATIONS_ALL_FOLDER) + os.makedirs(variation_path, exist_ok=True) + + episodes_path = os.path.join(variation_path, EPISODES_FOLDER) + os.makedirs(episodes_path, exist_ok=True) + + + abort_variation = False + for ex_idx in range(episodes_per_task): + attempts = 10 + while attempts > 0: + try: + variation = np.random.randint(possible_variations) + + task_env = rlbench_env.get_task(task) + + task_env.set_variation(variation) + descriptions, obs = task_env.reset() + + logging.info("// Task: %s Variation %s Demo %s", task_env.get_name(), variation, ex_idx) + + # TODO: for now we do the explicit looping. + demo, = task_env.get_demos(amount=1, live_demos=True) + # NoWaypointsError, DemoError, + except (BoundaryError, WaypointError, InvalidActionError, TaskEnvironmentError) as e: + logging.warning("Exception %s", e) + attempts -= 1 + if attempts > 0: + continue + problem = ( + 'Failed collecting task %s (variation: %d, ' + 'example: %d). Skipping this task/variation.\n%s\n' % ( + task_env.get_name(), variation, ex_idx,str(e)) + ) + logging.error(problem) + tasks_with_problems += problem + abort_variation = True + break + + episode_path = os.path.join(episodes_path, EPISODE_FOLDER % ex_idx) + + save_demo(demo, episode_path, variation) + + with open(os.path.join( episode_path, VARIATION_DESCRIPTIONS), 'wb') as f: + pickle.dump(descriptions, f) + + break + if abort_variation: + break + + + rlbench_env.shutdown() + + return tasks_with_problems + + + +def get_bimanual_tasks(): + tasks = [t.replace('.py', '') for t in + os.listdir(BIMANUAL_TASKS_PATH) if t != '__init__.py' and t.endswith('.py')] + return sorted(tasks) + + +@click.command() +@filepath_option("--save_path", default="/tmp/rlbench_data/", help="Where to save the demos.") +@choice_option('--tasks', type=click.Choice(get_bimanual_tasks()), multiple=True, help='The tasks to collect. If empty, all tasks are collected.') +@click.option("--episodes_per_task", default=10, help="The number of episodes to collect per task.", prompt="Number of episodes") +@click.option("--all_variations", is_flag=True, default=True, help="Include all variations when sampling epsiodes") +#@click.option("--variations", default=-1, help="Number of variations to collect per task. -1 for all.") +@click.option("--headless/--no-headless", default=True, is_flag=True, help='Hide the simulator window') +#@click.option("--color-robot/--no-color-robot", default=False, is_flag=True, help='Colorize') +@choice_option('--image-size', type=click.Choice(["128x128", "256x256", "640x480"]), multiple=False, help='Select the image_size (width, height)') +def main(save_path, tasks, episodes_per_task, all_variations, headless, image_size): + + # ..todo check if already exits + + mp.set_start_method("spawn") + + logging.basicConfig(level=logging.INFO, handlers=[RichHandler()]) + + np.random.seed(None) + + ctx = mp.get_context('spawn') + + if not tasks: + logging.error("No tasks selected!") + + + logging.info("Generating %s episodes for each tasks %s with image size %s", episodes_per_task, tasks, image_size) + + + image_size = list(map(int, image_size.split("x"))) + + os.makedirs(save_path, exist_ok=True) + + if not all_variations: + logging.error("Variations not supported") + sys.exit(-1) + + logging.debug("Selected tasks %s", tasks) + + fn = partial(run_all_variations, headless=headless, save_path=save_path, episodes_per_task=episodes_per_task, image_size=image_size) + with ctx.Pool(processes=4) as pool: + pool.map(fn, tasks) + + +if __name__ == '__main__': + main() + + diff --git a/external/rlbench/tools/task_builder.py b/external/rlbench/tools/task_builder.py new file mode 100644 index 0000000000000000000000000000000000000000..7cbdcb8bec2b154a990968717d701deb1314ff34 --- /dev/null +++ b/external/rlbench/tools/task_builder.py @@ -0,0 +1,359 @@ +import os +import sys +from os.path import join, dirname, abspath, isfile + +CURRENT_DIR = dirname(abspath(__file__)) +sys.path.insert(0, join(CURRENT_DIR, '..')) # Use local RLBench rather than installed + +import traceback +import readline + +from pyrep.const import RenderMode + +from rlbench.backend import task +from rlbench.backend.const import TTT_FILE +from pyrep import PyRep +from pyrep.robots.arms.panda import Panda +from pyrep.objects.shape import Shape +from pyrep.objects.dummy import Dummy +from pyrep.robots.end_effectors.panda_gripper import PandaGripper +from rlbench.backend.scene import Scene +from rlbench.backend.exceptions import * +from rlbench.observation_config import ObservationConfig, CameraConfig +from rlbench.backend.robot import Robot +from rlbench.backend.robot import UnimanualRobot +from rlbench.utils import name_to_task_class +from tools.task_validator import task_smoke, TaskValidationError +import shutil + +CURRENT_DIR = dirname(abspath(__file__)) + + +def print_fail(message, end='\n'): + message = str(message) + sys.stderr.write('\x1b[1;31m' + message.strip() + '\x1b[0m' + end) + + +def setup_list_completer(): + task_files = [t.replace('.py', '') for t in os.listdir(task.TASKS_PATH) + if t != '__init__.py' and t.endswith('.py')] + + def list_completer(_, state): + line = readline.get_line_buffer() + if not line: + return [c + " " for c in task_files][state] + + else: + return [c + " " for c in task_files if c.startswith(line)][state] + + readline.parse_and_bind("tab: complete") + readline.set_completer(list_completer) + + +class LoadedTask(object): + + def __init__(self, pr: PyRep, scene: Scene, robot: Robot): + self.pr = pr + self.scene = scene + self.robot = robot + self.task = self.task_class = self.task_file = None + self._variation_index = 0 + + def _load_task_to_scene(self): + self.scene.unload() + self.task = self.task_class( + self.pr, self.robot, self.task_file.replace('.py', '')) + try: + # Try and load the task + scene.load(self.task) + except FileNotFoundError as e: + # The .ttt file must not exist + handle = Dummy.create() + handle.set_name(self.task_file.replace('.py', '')) + handle.set_model(True) + # Put the dummy at the centre of the workspace + self.task.get_base().set_position(Shape('workspace').get_position()) + + def _edit_new_task(self): + task_file = input('What task would you like to edit?\n') + task_file = task_file.strip(' ') + if len(task_file) > 3 and task_file[-3:] != '.py': + task_file += '.py' + try: + task_class = name_to_task_class(task_file) + except: + print('There was no task named: %s. ' + 'Would you like to create it?' % task_file) + inp = input() + if inp == 'y': + self._create_python_file(task_file) + task_class = name_to_task_class(task_file) + else: + print('Please pick a defined task in that case.') + task_class, task_file = self._edit_new_task() + return task_class, task_file + + def _create_python_file(self, task_file: str): + with open(join(CURRENT_DIR, 'assets', 'task_template.txt'), 'r') as f: + file_content = f.read() + class_name = self._file_to_class_name(task_file) + file_content = file_content % (class_name,) + new_file_path = join(CURRENT_DIR, '../rlbench/tasks', task_file) + if isfile(new_file_path): + raise RuntimeError('File already exists. Will not override this.') + with open(new_file_path, 'w+') as f: + f.write(file_content) + + def _file_to_class_name(self, name): + name = name.replace('.py', '') + return ''.join([w[0].upper() + w[1:] for w in name.split('_')]) + + def reload_python(self): + try: + task_class = name_to_task_class(self.task_file) + except Exception as e: + print_fail('The python file could not be loaded!') + traceback.print_exc() + return None, None + self.task = task_class( + self.pr, self.robot, self.task_file.replace('.py', '')) + self.scene.load(self.task) + + def new_task(self): + self._variation_index = 0 + self.task_class, self.task_file = self._edit_new_task() + self._load_task_to_scene() + self.pr.step_ui() + print('You are now editing: %s' % str(self.task_class)) + + def reset_variation(self): + self._variation_index = 0 + + def new_variation(self): + try: + self._variation_index += 1 + descriptions = self.scene.init_episode( + self._variation_index % self.task.variation_count(), + max_attempts=10) + print('Task descriptions: ', descriptions) + except (WaypointError, BoundaryError, Exception) as ex: + traceback.print_exc() + self.pr.step_ui() + + def new_episode(self): + try: + descriptions = self.scene.init_episode( + self._variation_index % self.task.variation_count(), + max_attempts=10) + print('Task descriptions: ', descriptions) + except (WaypointError, BoundaryError, Exception) as ex: + traceback.print_exc() + self.scene.reset() + self.pr.step_ui() + + def new_demo(self): + try: + self.scene.get_demo(False, randomly_place=False) + except (WaypointError, NoWaypointsError, DemoError, Exception) as e: + traceback.print_exc() + success, terminate = self.task.success() + if success: + print("Demo was a success!") + self.scene.reset() + self.pr.step_ui() + self.pr.step_ui() + + def save_task(self): + ttm_path = join(CURRENT_DIR, '../rlbench/task_ttms', + self.task_file.replace('.py', '.ttm')) + self.task.get_base().save_model(ttm_path) + print('Task saved to:', ttm_path) + + def run_task_validator(self): + print('About to perform task validation.') + print("What variation to test? Pick int in range: 0 to %d, or -1 to " + "test all. Or press 'e' to exit." + % self.task.variation_count()) + inp = input() + if inp == 'e': + return + self.pr.start() + try: + v = int(inp) + v = v if v < 0 else v % self.task.variation_count() + task_smoke(self.task, self.scene, variation=v) + except TaskValidationError as e: + traceback.print_exc() + self.pr.stop() + + def rename(self): + print('Enter new name (or q to abort).') + inp = input() + if inp == 'q': + return + + name = inp.replace('.py', '') + python_file = name + '.py' + + # Change name of base + handle = Dummy(self.task_file.replace('.py', '')) + handle.set_name(name) + + # Change the class name + old_file_path = join(CURRENT_DIR, '../rlbench/tasks', self.task_file) + old_class_name = self._file_to_class_name(self.task_file) + new_class_name = self._file_to_class_name(name) + with open(old_file_path, 'r') as f: + content = f.read() + content = content.replace(old_class_name, new_class_name) + with open(old_file_path, 'w') as f: + f.write(content) + + # Rename python task file + new_file_path = join(CURRENT_DIR, '../rlbench/tasks', python_file) + os.rename(old_file_path, new_file_path) + + # Rename .ttt + old_ttm_path = join(CURRENT_DIR, '../rlbench/task_ttms', + self.task_file.replace('.py', '.ttm')) + new_ttm_path = join(CURRENT_DIR, '../rlbench/task_ttms', + python_file.replace('.py', '.ttm')) + os.rename(old_ttm_path, new_ttm_path) + + self.task_file = python_file + self.reload_python() + self.save_task() + print('Rename complete!') + + def duplicate_task(self): + print('Enter new name for duplicate (or q to abort).') + inp = input() + if inp == 'q': + return + + name = inp.replace('.py', '') + new_python_file = name + '.py' + + # Change the class name + old_file_path = join(CURRENT_DIR, '../rlbench/tasks', self.task_file) + old_class_name = self._file_to_class_name(self.task_file) + new_file_path = join(CURRENT_DIR, '../rlbench/tasks', new_python_file) + new_class_name = self._file_to_class_name(name) + + if os.path.isfile(new_file_path): + print('File: %s already exists!' % new_file_path) + return + + # Change name of base + handle = Dummy(self.task_file.replace('.py', '')) + handle.set_name(name) + + with open(old_file_path, 'r') as f: + content = f.read() + content = content.replace(old_class_name, new_class_name) + with open(new_file_path, 'w') as f: + f.write(content) + + # Rename .ttt + old_ttm_path = join(CURRENT_DIR, '../rlbench/task_ttms', + self.task_file.replace('.py', '.ttm')) + new_ttm_path = join(CURRENT_DIR, '../rlbench/task_ttms', + new_python_file.replace('.py', '.ttm')) + shutil.copy(old_ttm_path, new_ttm_path) + + self.task_file = new_python_file + self.reload_python() + self.save_task() + print('Duplicate complete!') + + +if __name__ == '__main__': + + setup_list_completer() + + pr = PyRep() + ttt_file = join(CURRENT_DIR, '..', 'rlbench', TTT_FILE) + pr.launch(ttt_file, responsive_ui=True) + pr.step_ui() + + robot = UnimanualRobot(Panda(), PandaGripper()) + cam_config = CameraConfig(rgb=True, depth=False, mask=False, + render_mode=RenderMode.OPENGL) + obs_config = ObservationConfig() + obs_config.set_all(False) + obs_config.right_shoulder_camera = cam_config + obs_config.left_shoulder_camera = cam_config + obs_config.overhead_camera = cam_config + obs_config.wrist_camera = cam_config + obs_config.front_camera = cam_config + + scene = Scene(pr, robot, obs_config) + loaded_task = LoadedTask(pr, scene, robot) + + print(' ,') + print(' /( ___________') + print('| >:===========` Welcome to task builder!') + print(' )(') + print(' ""') + + loaded_task.new_task() + + while True: + os.system('cls' if os.name == 'nt' else 'clear') + print('\n-----------------\n') + print('The python file will be reloaded when simulation is restarted.') + print('(q) to quit.') + if pr.running: + print('(+) stop the simulator') + print('(v) for task variation.') + print('(e) for episode of same variation.') + print('(d) for demo.') + print('(p) for running the sim for 100 steps (with rendering).') + else: + print('(!) to run task validator.') + print('(+) run the simulator') + print('(n) for new task.') + print('(s) to save the .ttm') + print('(r) to rename the task') + print('(u) to duplicate/copy the task') + + inp = input() + + if inp == 'q': + break + + if pr.running: + if inp == '+': + pr.stop() + pr.step_ui() + elif inp == 'p': + [(pr.step(), scene.get_observation()) for _ in range(100)] + elif inp == 'd': + loaded_task.new_demo() + elif inp == 'v': + loaded_task.new_variation() + elif inp == 'e': + loaded_task.new_episode() + else: + if inp == '+': + loaded_task.reload_python() + loaded_task.reset_variation() + pr.start() + pr.step_ui() + elif inp == 'n': + inp = input('Do you want to save the current task first?\n') + if inp == 'y': + loaded_task.save_task() + loaded_task.new_task() + elif inp == 's': + loaded_task.save_task() + elif inp == '!': + loaded_task.run_task_validator() + elif inp == 'r': + loaded_task.rename() + elif inp == 'u': + loaded_task.duplicate_task() + + pr.stop() + pr.shutdown() + print('Done. Goodbye!') diff --git a/external/rlbench/tools/task_builder_bimanual.py b/external/rlbench/tools/task_builder_bimanual.py new file mode 100644 index 0000000000000000000000000000000000000000..f84a3a6c00d86d847d4644bd124a216c9bc49055 --- /dev/null +++ b/external/rlbench/tools/task_builder_bimanual.py @@ -0,0 +1,443 @@ +#!/usr/bin/env python +import os +import sys +from os.path import join, dirname, abspath, isfile + +import logging + +from pyrep.robots.arms.dual_panda import PandaLeft, PandaRight +from pyrep.robots.end_effectors.dual_panda_gripper import PandaGripperLeft, PandaGripperRight + +CURRENT_DIR = dirname(abspath(__file__)) +sys.path.insert(0, join(CURRENT_DIR, '..')) # Use local RLBench rather than installed + +import traceback +import readline + +import rich_click as click +from click_prompt import auto_complete_argument + +from pyrep.const import RenderMode + +from rlbench.backend import task +from rlbench.backend.const import BIMANUAL_TTT_FILE +from pyrep import PyRep +from pyrep.robots.arms.panda import Panda +from pyrep.objects.shape import Shape +from pyrep.objects.dummy import Dummy +from pyrep.robots.end_effectors.panda_gripper import PandaGripper +from rlbench.backend.scene import Scene +from rlbench.backend.exceptions import * +from rlbench.observation_config import ObservationConfig, CameraConfig +from rlbench.backend.robot import Robot +from rlbench.backend.robot import BimanualRobot +from rlbench.backend.robot import UnimanualRobot +from rlbench.utils import name_to_task_class +from tools.task_validator import task_smoke, TaskValidationError +import shutil + + +from yarr.utils.video_utils import CircleCameraMotion +from yarr.utils.video_utils import TaskRecorder + +from pyrep.objects.dummy import Dummy +from pyrep.objects.vision_sensor import VisionSensor + +from rich.logging import RichHandler + + +CURRENT_DIR = dirname(abspath(__file__)) + + +def print_fail(message, end='\n'): + message = str(message) + sys.stderr.write('\x1b[1;31m' + message.strip() + '\x1b[0m' + end) + + +def setup_list_completer(): + task_files = [t.replace('.py', '') for t in os.listdir(task.BIMANUAL_TASKS_PATH) + if t != '__init__.py' and t.endswith('.py')] + + def list_completer(_, state): + line = readline.get_line_buffer() + if not line: + return [c + " " for c in task_files][state] + + else: + return [c + " " for c in task_files if c.startswith(line)][state] + + readline.parse_and_bind("tab: complete") + readline.set_completer(list_completer) + + +class LoadedTask(object): + + def __init__(self, pr: PyRep, scene: Scene, robot: Robot): + self.pr = pr + self.scene = scene + self.robot = robot + self.task = self.task_class = self.task_file = None + self._variation_index = 0 + + def _load_task_to_scene(self): + self.scene.unload() + self.task = self.task_class( + self.pr, self.robot, self.task_file.replace('.py', '')) + try: + # Try and load the task + scene.load(self.task) + except FileNotFoundError as e: + # The .ttt file must not exist + handle = Dummy.create() + handle.set_name(self.task_file.replace('.py', '')) + handle.set_model(True) + # Put the dummy at the centre of the workspace + self.task.get_base().set_position(Shape('workspace').get_position()) + + def _edit_new_task(self): + task_file = input('What task would you like to edit?\n') + task_file = task_file.strip(' ') + if len(task_file) > 3 and task_file[-3:] != '.py': + task_file += '.py' + try: + task_class = name_to_task_class(task_file, True) + except: + print('There was no task named: %s. ' + 'Would you like to create it?' % task_file) + inp = input() + if inp == 'y': + self._create_python_file(task_file) + task_class = name_to_task_class(task_file, True) + else: + print('Please pick a defined task in that case.') + task_class, task_file = self._edit_new_task() + return task_class, task_file + + def _create_python_file(self, task_file: str): + with open(join(CURRENT_DIR, 'assets', 'bimanual_task_template.txt'), 'r') as f: + file_content = f.read() + class_name = self._file_to_class_name(task_file) + file_content = file_content % (class_name,) + new_file_path = join(CURRENT_DIR, '../rlbench/bimanual_tasks', task_file) + if isfile(new_file_path): + raise RuntimeError('File already exists. Will not override this.') + with open(new_file_path, 'w+') as f: + f.write(file_content) + + def _file_to_class_name(self, name): + name = name.replace('.py', '') + return ''.join([w[0].upper() + w[1:] for w in name.split('_')]) + + def reload_python(self): + try: + task_class = name_to_task_class(self.task_file, True) + except Exception as e: + print_fail('The python file could not be loaded!') + traceback.print_exc() + return None, None + self.task = task_class( + self.pr, self.robot, self.task_file.replace('.py', '')) + self.scene.load(self.task) + + def new_task(self): + self._variation_index = 0 + self.task_class, self.task_file = self._edit_new_task() + self._load_task_to_scene() + self.pr.step_ui() + print('You are now editing: %s' % str(self.task_class)) + + def reset_variation(self): + self._variation_index = 0 + + def new_variation(self): + try: + self._variation_index += 1 + descriptions = self.scene.init_episode( + self._variation_index % self.task.variation_count(), + max_attempts=10) + print('Task descriptions: ', descriptions) + except (WaypointError, BoundaryError, Exception) as ex: + traceback.print_exc() + self.pr.step_ui() + + def new_episode(self): + try: + descriptions = self.scene.init_episode( + self._variation_index % self.task.variation_count(), + max_attempts=10) + print('Task descriptions: ', descriptions) + except (WaypointError, BoundaryError, Exception) as ex: + traceback.print_exc() + self.scene.reset() + self.pr.step_ui() + + + def record_demo(self): + cam_placeholder = Dummy('cam_cinematic_placeholder') + cam = VisionSensor.create([1920, 1200], background_color=[1.0, 1.0, 1.0]) + cam.set_pose(cam_placeholder.get_pose()) + cam.set_parent(cam_placeholder) + + + scene_background = ["Wall1", "Wall2", "Wall3", "Wall4", "Floor", "Roof", "ResizableFloor_5_25_visibleElement"] + + for object_name in scene_background: + Shape(object_name).set_renderable(False) + + cam_motion = CircleCameraMotion(cam, Dummy('cam_cinematic_base'), 0.005) + tr = TaskRecorder(None, cam_motion, fps=30) + + try: + self.scene.get_demo(False, callable_each_step=tr.take_snap, randomly_place=False) + except (WaypointError, NoWaypointsError, DemoError, Exception) as e: + traceback.print_exc() + success, terminate = self.task.success() + + + recording_output_path = f"/tmp/rlbench_video_{self.task_file[:-3]}.mp4" + + tr.save(recording_output_path, f"Demo for task {self.task_file} success={success}", 1 ) + + print(f"Saving video to {recording_output_path}") + + for object_name in scene_background: + Shape(object_name).set_renderable(True) + + if success: + print("Demo was a success!") + self.scene.reset() + self.pr.step_ui() + + + + + def new_demo(self): + try: + self.scene.get_demo(False, randomly_place=False) + except (WaypointError, NoWaypointsError, DemoError, Exception) as e: + traceback.print_exc() + success, terminate = self.task.success() + if success: + print("Demo was a success!") + self.scene.reset() + self.pr.step_ui() + self.pr.step_ui() + + def save_task(self): + ttm_path = join(CURRENT_DIR, '../rlbench/task_ttms', + self.task_file.replace('.py', '.ttm')) + self.task.get_base().save_model(ttm_path) + print('Task saved to:', ttm_path) + + def run_task_validator(self): + print('About to perform task validation.') + print("What variation to test? Pick int in range: 0 to %d, or -1 to " + "test all. Or press 'e' to exit." + % self.task.variation_count()) + inp = input() + if inp == 'e': + return + self.pr.start() + try: + v = int(inp) + v = v if v < 0 else v % self.task.variation_count() + task_smoke(self.task, self.scene, variation=v) + except TaskValidationError as e: + traceback.print_exc() + self.pr.stop() + + def rename(self): + print('Enter new name (or q to abort).') + inp = input() + if inp == 'q': + return + + name = inp.replace('.py', '') + python_file = name + '.py' + + # Change name of base + handle = Dummy(self.task_file.replace('.py', '')) + handle.set_name(name) + + # Change the class name + old_file_path = join(CURRENT_DIR, '../rlbench/bimanual_tasks', self.task_file) + old_class_name = self._file_to_class_name(self.task_file) + new_class_name = self._file_to_class_name(name) + with open(old_file_path, 'r') as f: + content = f.read() + content = content.replace(old_class_name, new_class_name) + with open(old_file_path, 'w') as f: + f.write(content) + + # Rename python task file + new_file_path = join(CURRENT_DIR, '../rlbench/bimanual_tasks', python_file) + os.rename(old_file_path, new_file_path) + + # Rename .ttt + old_ttm_path = join(CURRENT_DIR, '../rlbench/task_ttms', + self.task_file.replace('.py', '.ttm')) + new_ttm_path = join(CURRENT_DIR, '../rlbench/task_ttms', + python_file.replace('.py', '.ttm')) + os.rename(old_ttm_path, new_ttm_path) + + self.task_file = python_file + self.reload_python() + self.save_task() + print('Rename complete!') + + def duplicate_task(self): + print('Enter new name for duplicate (or q to abort).') + inp = input() + if inp == 'q': + return + + name = inp.replace('.py', '') + new_python_file = name + '.py' + + # Change the class name + old_file_path = join(CURRENT_DIR, '../rlbench/bimanual_tasks', self.task_file) + old_class_name = self._file_to_class_name(self.task_file) + new_file_path = join(CURRENT_DIR, '../rlbench/bimanual_tasks', new_python_file) + new_class_name = self._file_to_class_name(name) + + if os.path.isfile(new_file_path): + print('File: %s already exists!' % new_file_path) + return + + # Change name of base + handle = Dummy(self.task_file.replace('.py', '')) + handle.set_name(name) + + with open(old_file_path, 'r') as f: + content = f.read() + content = content.replace(old_class_name, new_class_name) + with open(new_file_path, 'w') as f: + f.write(content) + + # Rename .ttt + old_ttm_path = join(CURRENT_DIR, '../rlbench/task_ttms', + self.task_file.replace('.py', '.ttm')) + new_ttm_path = join(CURRENT_DIR, '../rlbench/task_ttms', + new_python_file.replace('.py', '.ttm')) + shutil.copy(old_ttm_path, new_ttm_path) + + self.task_file = new_python_file + self.reload_python() + self.save_task() + print('Duplicate complete!') + + + +NEW_TASKS = 'New' + +def get_all_available_tasks(): + return [t.replace('.py', '') for t in os.listdir(task.BIMANUAL_TASKS_PATH) + if t != '__init__.py' and t.endswith('.py')] + + + + + +if __name__ == '__main__': + + + + logging.basicConfig(level=logging.DEBUG, handlers=[RichHandler()]) + + + setup_list_completer() + + pr = PyRep() + ttt_file = join(CURRENT_DIR, '..', 'rlbench', BIMANUAL_TTT_FILE) + pr.launch(ttt_file, responsive_ui=True) + pr.step_ui() + + + robot = BimanualRobot(PandaRight(), PandaGripperRight(), PandaLeft(), PandaGripperLeft()) + + + cam_config = CameraConfig(rgb=True, depth=False, mask=False, + render_mode=RenderMode.OPENGL) + obs_config = ObservationConfig() + obs_config.set_all(False) + obs_config.right_shoulder_camera = cam_config + obs_config.left_shoulder_camera = cam_config + obs_config.overhead_camera = cam_config + obs_config.wrist_camera = cam_config + obs_config.front_camera = cam_config + + scene = Scene(pr, robot, obs_config) + loaded_task = LoadedTask(pr, scene, robot) + + print(' ,') + print(' /( ___________') + print('| >:===========` Welcome to task builder!') + print(' )(') + print(' ""') + + loaded_task.new_task() + + while True: + os.system('cls' if os.name == 'nt' else 'clear') + print('\n-----------------\n') + print('The python file will be reloaded when simulation is restarted.') + print('(q) to quit.') + if pr.running: + print('(+) stop the simulator') + print('(v) for task variation.') + print('(e) for episode of same variation.') + print('(d) for demo.') + print('(r) record a video of the demo.') + print('(p) for running the sim for 100 steps (with rendering).') + else: + print('(!) to run task validator.') + print('(+) run the simulator') + print('(n) for new task.') + print('(s) to save the .ttm') + print('(r) to rename the task') + print('(u) to duplicate/copy the task') + + inp = input() + + if inp == 'q': + break + + if pr.running: + if inp == '+': + pr.stop() + pr.step_ui() + elif inp == 'p': + [(pr.step(), scene.get_observation()) for _ in range(100)] + elif inp == 'd': + loaded_task.new_demo() + input('Press enter to continue') + elif inp == 'r': + loaded_task.record_demo() + input('Press enter to continue') + elif inp == 'v': + loaded_task.new_variation() + elif inp == 'e': + loaded_task.new_episode() + else: + if inp == '+': + loaded_task.reload_python() + loaded_task.reset_variation() + pr.start() + pr.step_ui() + elif inp == 'n': + inp = input('Do you want to save the current task first?\n') + if inp == 'y': + loaded_task.save_task() + loaded_task.new_task() + elif inp == 's': + loaded_task.save_task() + elif inp == '!': + loaded_task.run_task_validator() + elif inp == 'r': + loaded_task.rename() + elif inp == 'u': + loaded_task.duplicate_task() + + pr.stop() + pr.shutdown() + print('Done. Goodbye!') diff --git a/external/rlbench/tools/task_validator.py b/external/rlbench/tools/task_validator.py new file mode 100644 index 0000000000000000000000000000000000000000..6d7bbf50ff4467113da1cb75346a6e9f65f4105a --- /dev/null +++ b/external/rlbench/tools/task_validator.py @@ -0,0 +1,150 @@ +from rlbench.backend.task import Task +from rlbench.backend.scene import DemoError +from rlbench.observation_config import ObservationConfig +from pyrep import PyRep +from pyrep.robots.arms.panda import Panda +from pyrep.robots.end_effectors.panda_gripper import PandaGripper +from rlbench.backend.const import TTT_FILE +from rlbench.backend.scene import Scene +from rlbench.backend.utils import task_file_to_task_class +from rlbench.backend.task import TASKS_PATH +from rlbench.backend.robot import Robot +from rlbench.backend.robot import UnimanualRobot +import numpy as np +import os +import argparse + +DEMO_ATTEMPTS = 5 +MAX_VARIATIONS = 100 + + +class TaskValidationError(Exception): + pass + + +def task_smoke(task: Task, scene: Scene, variation=-1, demos=4, success=0.50, + max_variations=3, test_demos=True): + # -1 variations for all. + + print('Running task validator on task: %s' % task.get_name()) + + # Loading + scene.load(task) + + # Number of variations + variation_count = task.variation_count() + if variation_count < 0: + raise TaskValidationError( + "The method 'variation_count' should return a number > 0.") + + if variation_count > MAX_VARIATIONS: + raise TaskValidationError( + "This task had %d variations. Currently the limit is set to %d" % + (variation_count, MAX_VARIATIONS)) + + # Base rotation bounds + base_pos, base_ori = task.base_rotation_bounds() + if len(base_pos) != 3 or len(base_ori) != 3: + raise TaskValidationError( + "The method 'base_rotation_bounds' should return a tuple " + "containing a list of floats.") + + # Boundary root + root = task.boundary_root() + if not root.still_exists(): + raise TaskValidationError( + "The method 'boundary_root' should return a Dummy that is the root " + "of the task.") + + def variation_smoke(i): + + print('Running task validator on variation: %d' % i) + + attempt_result = False + failed_demos = 0 + for j in range(DEMO_ATTEMPTS): + failed_demos = run_demos(i) + attempt_result = (failed_demos / float(demos) <= 1. - success) + if attempt_result: + break + else: + print('Failed on attempt %d. Trying again...' % j) + + # Make sure we don't fail too often + if not attempt_result: + raise TaskValidationError( + "Too many failed demo runs. %d of %d demos failed." % ( + failed_demos, demos)) + else: + print('Variation %d of task %s is good!' % (i, task.get_name())) + if test_demos: + print('%d of %d demos were successful.' % ( + demos - failed_demos, demos)) + + def run_demos(variation_num): + fails = 0 + for dr in range(demos): + try: + scene.reset() + desc = scene.init_episode(variation_num, max_attempts=10) + if not isinstance(desc, list) or len(desc) <= 0: + raise TaskValidationError( + "The method 'init_variation' should return a list of " + "string descriptions.") + if test_demos: + demo = scene.get_demo(record=True) + assert len(demo) > 0 + except DemoError as e: + fails += 1 + print(e) + except Exception as e: + # TODO: check that we don't fall through all of these cases + fails += 1 + print(e) + + return fails + + variations_to_test = [variation] + if variation < 0: + variations_to_test = list(range( + np.minimum(variation_count, max_variations))) + + # Task set-up + scene.init_task() + [variation_smoke(i) for i in variations_to_test] + + +if __name__ == '__main__': + parser = argparse.ArgumentParser() + parser.add_argument("task", help="The task file to test.") + args = parser.parse_args() + + python_file = os.path.join(TASKS_PATH, args.task) + if not os.path.isfile(python_file): + raise RuntimeError('Could not find the task file: %s' % python_file) + + task_class = task_file_to_task_class(args.task) + + DIR_PATH = os.path.dirname(os.path.abspath(__file__)) + sim = PyRep() + ttt_file = os.path.join( + DIR_PATH, '..', 'rlbench', TTT_FILE) + sim.launch(ttt_file, headless=True) + sim.step_ui() + sim.set_simulation_timestep(0.005) + sim.step_ui() + sim.start() + + robot = UnimanualRobot(Panda(), PandaGripper()) + + active_task = task_class(sim, robot) + obs = ObservationConfig() + obs.set_all(False) + scene = Scene(sim, robot, obs) + try: + task_smoke(active_task, scene, variation=2) + except TaskValidationError as e: + sim.shutdown() + raise e + sim.shutdown() + print('Validation successful!') diff --git a/external/rlbench/tools/visualize_dataset.py b/external/rlbench/tools/visualize_dataset.py new file mode 100644 index 0000000000000000000000000000000000000000..09063e0bd1543fe5e02267bcd6b6030b0478f0fc --- /dev/null +++ b/external/rlbench/tools/visualize_dataset.py @@ -0,0 +1,141 @@ +#!/usr/bin/env python3 + +from typing import List + +import os + +import numpy as np +import open3d as o3d + +from rlbench import CameraConfig +from rlbench import ObservationConfig + +from rlbench.utils import get_stored_demos +from pyrep.const import RenderMode + +import rich_click as click +from click_prompt import filepath_option + + +box_length = 0.01 +box_dim = dict(zip(["width", "height", "depth"], [box_length] * 3)) +box_offset = np.identity(4) +box_offset[:3, 3] = - box_length / 2 + +camera_names = ["front", "overhead", "over_shoulder_left", "over_shoulder_right", "wrist_left", "wrist_right"] + + +@click.command() +@filepath_option("--task-folder", default="/tmp/rlbench_data/bimanual_push_box") +@click.option("--show-visualization/--hide-visualization", is_flag=True, default=True) +@click.option("--add-trajectory/--hide-trajectory", is_flag=True, default=True) +@click.option("--episode-number", "-e", help="Which episode to select from the dataset", default=0, type=int) +def cli(task_folder, show_visualization, add_trajectory, episode_number): + + task_folder = os.path.expanduser(task_folder) + dataset_root = os.path.dirname(task_folder) + task_name = os.path.basename(task_folder) + + obs_config = create_obs_config(camera_names, [128, 128]) + episodes = get_stored_demos(1, False, dataset_root, -1, task_name, obs_config, from_episode_number=episode_number) + + visualization_data = [] + + + # visualize trajectories + if add_trajectory: + for obs in episodes[episode_number]: + right_action_box = o3d.geometry.TriangleMesh.create_box(**box_dim) + left_action_box = o3d.geometry.TriangleMesh.create_box(**box_dim) + + right_action_box.paint_uniform_color([0, 1, 0]) + left_action_box.paint_uniform_color([1, 0, 0]) + + right_action_box.transform(obs.right.gripper_matrix.dot(box_offset)) + left_action_box.transform(obs.left.gripper_matrix.dot(box_offset)) + + visualization_data.append(right_action_box) + visualization_data.append(left_action_box) + + + + # point cloud from first observation of the first episode + obs = episodes[episode_number][0] + for camera_name in camera_names: + + xyz = obs.perception_data[f"{camera_name}_point_cloud"].reshape(-1, 3) + rgb = obs.perception_data[f"{camera_name}_rgb"].reshape(-1, 3) / 255.0 + pcd = o3d.geometry.PointCloud() + pcd.points = o3d.utility.Vector3dVector(xyz) + pcd.colors = o3d.utility.Vector3dVector(rgb) + visualization_data.append(pcd) + + if show_visualization: + + o3d.visualization.draw_geometries(visualization_data) + else: + + vis = o3d.visualization.Visualizer() + vis.create_window(visible=False) + for g in visualization_data: + vis.add_geometry(g) + vis.update_geometry(g) + + + vis.poll_events() + vis.update_renderer() + + view_control = vis.get_view_control() + + # copied from the viewer + view_pose = {"front" : [ 0.012339452449784705, -0.90282996236235535, 0.42982065675584702 ], + "lookat" : [ -0.12694871669500873, 0.11746709358396157, 0.88075116287669197 ], + "up" : [ 0.025976937544841906, 0.42999774206857738, 0.90245617097547559 ], + "zoom" : 0.33999999999999964 } + + view_control.set_front(view_pose["front"]) + view_control.set_up(view_pose["up"]) + view_control.set_lookat(view_pose["lookat"]) + view_control.set_zoom(view_pose["zoom"]) + + + vis.capture_screen_image(f"/tmp/rlbench_{task_name}_episode{episode_number}.png", do_render=True) + vis.destroy_window() + + +def create_obs_config( + camera_names: List[str], + camera_resolution: List[int], +): + unused_cams = CameraConfig() + unused_cams.set_all(False) + used_cams = CameraConfig( + rgb=True, + point_cloud=True, + mask=False, + depth=False, + image_size=camera_resolution, + render_mode=RenderMode.OPENGL3, + ) + + camera_configs = {camera_name: used_cams for camera_name in camera_names} + + obs_config = ObservationConfig( + camera_configs=camera_configs, + joint_forces=False, + joint_positions=True, + joint_velocities=True, + task_low_dim_state=False, + gripper_touch_forces=False, + gripper_pose=True, + gripper_open=True, + gripper_matrix=True, + gripper_joint_positions=True, + robot_name="bimanual" + ) + return obs_config + + +if __name__ == "__main__": + cli() + diff --git a/external/rlbench/travisci_generate_index.py b/external/rlbench/travisci_generate_index.py new file mode 100644 index 0000000000000000000000000000000000000000..008fb4e8feb6f885727b524905a8ee78d26d5499 --- /dev/null +++ b/external/rlbench/travisci_generate_index.py @@ -0,0 +1,59 @@ +import sys +import os +import re +import shutil + +TEST_TYPES = ['unit', 'demos'] +HISTORY_TO_KEEP = 30 + + +if __name__ == '__main__': + + assert len(sys.argv) == 5 + + test_type = sys.argv[1] + branch = sys.argv[2] + build_num = sys.argv[3] + exit_code = sys.argv[4] + + fail = int(exit_code) != 0 + + assert test_type in TEST_TYPES + + uls = [] + if os.path.exists('index.html'): + with open('index.html', 'r') as f: + lines = f.read() + uls = [out[0] for out in re.findall("(
    ((.|\n)*?)
)", lines)] + if len(uls) > HISTORY_TO_KEEP - 1: + uls = uls[:HISTORY_TO_KEEP - 1] + + reports = sorted(os.listdir('reports')) + + if len(reports) > HISTORY_TO_KEEP: + for delete_folder in reports[:-HISTORY_TO_KEEP]: + shutil.rmtree(os.path.join('reports', delete_folder)) + + color = "style='color:Tomato;'" if fail else "style='color:MediumSeaGreen;'" + new_entry = ("\n" % + (color, build_num, test_type, build_num, branch, test_type, + 'Fail!' if fail else 'Pass!')) + + html_top = """ + + + +

RLBench Test Page

+ """ + html_bottom = """ + + + """ + + new_html = html_top + new_entry + '\n'.join(uls) + html_bottom + with open('index.html', 'w') as f: + f.write(new_html) + + # Will be 0 if tests ran OK + sys.exit(fail) diff --git a/external/rlbench/travisci_run_tests.py b/external/rlbench/travisci_run_tests.py new file mode 100644 index 0000000000000000000000000000000000000000..494a447c91ed94ed0c290c9e820d4910fa08cba2 --- /dev/null +++ b/external/rlbench/travisci_run_tests.py @@ -0,0 +1,34 @@ +from unittest import TestSuite, defaultTestLoader +from HtmlTestRunner import HTMLTestRunner +import sys +import os + +TEST_TYPES = ['unit', 'demos'] + + +if __name__ == '__main__': + + test_folder = 'tests' + + assert len(sys.argv) == 4 + + test_type = sys.argv[1] + branch = sys.argv[2] + build_num = sys.argv[3] + + assert test_type in TEST_TYPES + + test_suite = TestSuite() + all_test_cases = defaultTestLoader.discover( + os.path.join(test_folder, test_type), 'test*.py') + # Loop the found test cases and add them into test suite. + for test_case in all_test_cases: + test_suite.addTests(test_case) + runner = HTMLTestRunner( + output='reports/%s' % str(build_num), + report_name=test_type, + add_timestamp=False, combine_reports=True) + result = runner.run(test_suite) + + # Will be 0 if tests ran OK + sys.exit(1 if len(result.failures) + len(result.errors) > 0 else 0) diff --git a/external/rlbench/tutorials/complex_task.md b/external/rlbench/tutorials/complex_task.md new file mode 100644 index 0000000000000000000000000000000000000000..857784d438b63dabf59636058823324937f4a988 --- /dev/null +++ b/external/rlbench/tutorials/complex_task.md @@ -0,0 +1,310 @@ +# Complex Task Walkthrough + +Here we will walk through the entire process of building a more complex task, empty_container. Hopefully you will have something that looks like the following by the end: + + + +This tutorial will assume some of the knowledge learnt in the Simple Task Walkthrough, so make sure to work through that first. As for every task built, we will again go through each of the stages: (1) creating the task through the task builder, then (2) creating the task by adding objects to the scene in a V-Rep simulator instance, (3) coding the Python File, then finally (4) passing the Task Validator. + +In addition to the features common to all tasks, this task will need to excute the following: +* **Dynamically Sample and Spawn Procedural Objects** - These are a collection of various small shapes as models downloaded as .obj and .mtl files from https://sites.google.com/site/brainrobotdata/home/models. If you wish to understand how these object files fit into the repository, examine the rlbench/assets/procedural_objects directory which at minimum must contain the {*object_name*} and {*object_name*}*\_coll* files for every object. +* **Setting target container colors** - The target containers will cycle through the colors list found in *rlbench/backend/const.py* with every change in variation. +* **Grasping** - Many tasks require the Panda to grasp and pick objects up. We will see how waypoints can be given extension strings to control this functionality. +* **Dynamically Repeat Waypoints** - For every object to be removed from the large container, the same set of waypoints will be used, with the Panda's path being re-calculated for every remaining object to be moved. The only difference between these paths will be the position of the grasping dummy *waypoint1*, so we will need to define a function which re-positions this dummy to another object with every repetition. +* **Account for Failed Grasps** - Many of the procedural objects are awkwardly shaped and thus difficult to grasp. When the Panda fails to grasp an item at *waypoint1*, it will still complete its path (if reachable) with nothing grasped. In order to raise the percentage of succesful demos and thus pass the task validator, we would like to account for this. This will be done by assessing which objects have been succesfully moved at every time step in the *step()* function, and instructing the task to re-position and repeat waypoints until all items have been moved to the target container. +* **Cleanup Dynamic Objects** - The state of the scene before a demo must match the state of the scene upon demo completion. As such, we will use the *cleanup()* function to remove all of the procedural objects from the V-Rep scene upon completion of every demo. + +## A note on Grasping and Physics in V-Rep +It is worth discussing here how the Panda grasps objects in the simulator, and how this differs from how a human hand would grasp in the real world. Rather than rely on friction and reactionary force as a person would when picking something up, RLBench and PyRep simplify physics calculations (and thus speed up and smooth out simulation) by making any object upon which the Panda's gripper closes on a child of the Panda tip, as long as said object has been registered as graspable in the python file. This keeps the object's pose stationary relative to the Panda tip while it is grasped, and the object is released from this relationship when it is returned to its original place in the Scene Hierarchy tree upon the re-opening of the gripper. This can even be noticed in the animation of empty_container above; see the objects labeled 'Shape' followed by a number dissapear from view in the scene hierarchy when grasped (in actual fact they are still there, but are moved to into a node of the Panda's collapsed sub-tree) and re-appear when dropped. + +Note then that what matters for grasping, and for the entire task, is not that every physical property of every object matches exactly what it would be in real life, but that succesfully completed demos behave in such a way that a model could theoretically learn how some of these common items would behave in common tasks. In practice it is okay for a small item that might have a mass of 0.1kg in real life to have its mass set to 0.5 or 5kg in the simulation, as long as the task environment is reflective of the actions and interactions that would be happening in real life. Some objects, like the hanger in the *move_hanger* task, will have a certain 'visual' object as a child of a similar, more simple 'physical' object that is set to invisible (by inverting its camera visibility layers - more on this later) in order to speed up the task. This is done because having every object in a simulation be either a simple, convex shape or a grouping of such massively simplifies the calculations performed by the physics engine, helping to eradicate buggy and unrealistic behaviours which you may otherwise encounter. + +Workarounds are sometimes useful, and do not necessarily impact the quality of the task and its contribution to the data set. For example, when creating the peppers in weighing_scales, it was found that they would naturally slide towards one direction when left alone on a flat surface, as if that surface was somehow tilted. Adding an 'invisible' block to the base of the peppers increased their surface area and stopped this from happening without affecting the quality of either (a) the visual information available to the panda throughout the task or (b) the actions the Panda would take to succesfully complete it. You will likely encounter unrealistic and frustrating behaviors of objects in the physics simulator at some point - look at existing tasks to inspire creative workarounds that maintain the high quality of this dataset. + +## 1 Creating the Scene in V-Rep +## Creating the Large Container +First we will create the large container by creating 5 seperate cuboids, one for each plane of the container, then grouping these cuboids such that they can be treated as a single shape in both the V-Rep instance and the Python file. Create a cuboid with by clicking Add -> Primitive shape -> Cuboid and setting its dimensions as follows: + + + +Hit enter/okay and rename this cuboid *large_container0*, make it a child of the *empty_container* dummy in the scene hierarchy, then drag it up to or place it on the table's surface. Now we will change its color to grey by double clicking on its name in the scene hierarchy to open the Scene Object Properties; click on *Adjust color* to open the Shape dialog, then select *Ambient/diffuse component* and adjust the parameters as seen below. Note that as RGB and HSL are simply two parametizations of an item's color, only one of them needs to be set. The other one will adjust itself automatically. + + + +Next we will create the sides of the container. Add another cuboid with dimensions {*3.00e-01*, *6.00e-03*, *1.5e-03*} and open its Rotation/Orientation dialog by selecting the cuboid in the Scene Hierarchy, clicking on the Rotation icon in the upper left hand side of the window, and setting its orientation (relative to the world) as below. + + + +Once you have done that, rename it to *large_container1* and make it a child of *large_container0* in the Scene Hierarchy, then move up to the table top it by opening the mouse translation dialog, selecting mouse translation, ensuring that only the *along z* box is ticked, and dragging it it by holding the left mouse click. Remember that more precise mouse translation can be achieved by holding shift whilst dragging the object once the left mouse button has been held down. Then place it such that its edge is adjacent to the edge of the container base by performing a mouse translation whilst only *along Y* is selected. You should now have a Scene and Scene Hierarchy which looks like the following: + + + +Now we need to create and postion the rest of the large container's walls. Copy and paste the wall by selecting *large_container1* in the Scene Hierarchy and doing Ctrl+C then Ctrl+V, this will create *large_container2* which you must then make a child of the task dummy. Now we will rotate the object by performing a mouse rotation: ensuring *large_container2* is selected, open the rotation dialog, and select *Relative to: World* and *about Z*. Holding down the left mouse click, drag the mouse around until the wall has rotated 90 degrees anti-clockwise like so: + + + +We will now use a trick to place the second wall, which will work so long as *large_container1* has been perfectly centered with *large_container0* along the Y Axis (ensure this is the case by checking that the position of *large_container1* relative to its parent frame is 0.00 in the X-coord box). We can simply take make *large_container2*'s X-coord relative to its parent frame the negative of *large_container1*'s relative Y-coord position, and then set *large_container2*'s relative Y-coord position to that of *large_container1*'s relative X-coord position like below. Your *large_container1* might not have the exact same relative X and Z co-ordinates and that's perfectly okay, what matters here is that the described relationships hold: + + + +Repeat this process to create and postion the remaining two walls, working out how to position the walls for yourself. This should leave you with the following: + + + +Now we will group each of the large_container objects together in order to end up with a single object which we can manipluate and reference. While holding down the Shift key, select each of the large container objects, ensuring that you click on *large_container0* last (this is done because the created group will be names after the object last clicked on), then right click on the grouping in the Scene Hierarchy. Select Edit->Grouping / Merging->Group selected shapes like so: + + + +Rename the resulting grouped object to *large_container*. Set all 4 of its *Object special properties*, and ensure that it is set to to *Respondabl* but not *Dynamic* by clicking on *Show dynamic properties* under the *Common* tab of the Scene Object Properties dialog. + +#### A note on Grouping and Merging +Both grouping and merging allow us to treat a collection of objects as a single object, but there are some key distinctions between the two actions which will affect how we choose which action to use. As previously mentioned, the physics engine runs far faster and smoother when all shapes for which it makes calculations are convex. If a *merge* would result in a non-convex object being created, potential problems arise. Merging does, however, have the advantage of creating a tighter coupling between objects for the purpose of dynamic motion, ie motion that occurs as a result of physical laws like gravity as opposed to motion that is the direct result of scene manipulation, such as if the Panda were to grasp and move an object. This means that any grouping of objects will not preserve the relative poses of the grouped objects. For example, if we had instead created a mug object by grouping a mug body and handle and then attempted to pick up the mug by its handle, it would come detached from the body, as if they were never actually connected. In this case a merging would result in a non-convex shape, so we could instead make the mug body a child of the handle and hope that the body never has a force applied onto it that is not also applied to the handle (the mug body remains stationary relative to the handle when the handle is moved because of parent-child relationship but the reverse relationship would not hold!), or better yet find a way to create the mug as a single convex object (more on this in another document). + +That said, these problems only apply if such objects are made *dynamic*, only then can external forces other than the actions of the Panda and forces resulting from an object collision act on our objects in the V-Rep simulator. All containers to be added in this task will have their dynamic properties turned off, meaning that their pose will stay static unless an object in the scene were to do work on it, which it will not. You will however, need to ensure they are set to *Respondable*. As such, either grouping or merging would work just fine here and only actually serve the purpose of allowing us to treat the container as a single object in both the V-Rep scene and the Python File. + +#### Creating the Target Containers +Now that you have learnt how to create and compose container object from simple shapes, it is left up to you to create the two smaller target containers seen in this walthrough's first gif animation, which should be named *small_container0* and *small_container1*. The only differences between the large and target containers are (1) the targets' walls should have their *Alpha* orientation value set to 90 rather than 55 degrees once instantiated, (2) they need to be postioned slightly to either siide of the large container, and (3) they will be slightly smaller. Their absolute size does not matter too much, but they will need to be large enough to hold the collection of procedural objects spawned in the task. Finally, it is recommended that you first create one target container, position it to the side of the target container, then and copy and paste it, making sure to position it exactly on the opposite side of the large_container. The color of these target_containers will be set dynamically in the python file so you do not need to worry about setting it here. Set their *Object special* and *Dynamic* properties. Once you have completed this step, your scene should appear as below: + + + +#### Adding Proximity Sensors +We now need to add 2 proximity sensors, and they need to be positioned such that they can detect all objects placed inside the target containers. Add a *Pyramid type* proximity sensor and change its volume parameters (by clicking on *show volume parameters in its Scene Object Properties dialog* such that all X and Y fields are equivalent to the X Y dimensions of your target container's base, and its *Range* set to the height of your target container's walls. Remember to set the *Offset* parameter to 0 like so, and remember also that your volume parameters may differ slightly from the ones shown here because your target container volume will likely not be the exact same as the ones created here: + + + +Once you have added this, name it *success0*, make it a child of *small_container0*, and set its position relative to its parent to 0 in all fields. Copy and paste this sensor to create *success1*, and again make it a child of *small_container1*, setting its relative position to 0. + +#### Adding Waypoints +The last step we need to do is create waypoint dummies. This task requires 4 waypoints: + +* **waypoint0**: the approach waypoint, positioned at the center of *large_container*'s base and roughly 20 cm above it. +* **waypoint1**: the grasping waypoint. This waypoint's position will be set dynamically in the python file every time a new object needs to grasped so its position does not matter too much; here it has been placed halfway between *large_container*'s base and *waypoint0*. +* **waypoint2**: the lifting waypoint. The purpose of this waypoint is to raise objects up to a reasonable height such that the panda can then move objects horizontally without colliding into any of the objects we have created. We will positon this waypoint in the exact same location as *waypoint0*. +* **waypoint3**: the drop waypoint. The panda will release items from its grasp when this waypoint is reached and we will place this waypoint above the center of either *small_container0*. Depending on the variation, the python file will sometimes place this waypoint above *small_container1*. This dummy will have the same height as waypoints 0 and 2. + +Begin by adding a dummy and naming it waypoint 0. Set its position as described above (make the dummy a child of *large_container* and set its relative positional vector to {0, 0, 0.17}), and adjust its orientation (relative to the world) as to {180, 0, 180}, naming it *waypoint0*. One thing to be aware of is that sometimes V-Rep will struggle to set a position or orientation to absolute 0, instead setting an arbritratily small value as below: + + + +Next, copy and paste this waypoint, lowering its position by any means you wish to use to roughly halfway between *waypoint0* and the table's surface. After this copy and paste *waypoint0* again to create *waypoint3*, and leave it as is. Finally, do one final copy and paste to create *waypoint4*, and in the same way that we set the position of *waypoint0*, position it centrally over *small_container0*. Then if not already so, ensure that these waypoints are all children of large_container. Once you have done this, your scene and scene hierarchy should look like the following: + + + +#### Extension Strings +We must assign extension strings to some of the waypoints in order to control grasping and ungrasping. In order to do this, we will need to open the Scene Object Properties dialog for dummies for which we wish to add such strings, select the *Common* tab at the top of the dialog, and typing in the strings ourselves in the *Extension String* text box found under *General properties*. We want to make sure that the gripper is open and ready to grasp once it reaches *waypoint0*, as such set its extension string like so: + + + +We will set *waypoint1*'s extension string to *close_gripper()* in the same manner described above. Here we will also need to account for two seemingly contradictory factors: (1) some of the procedural objects will be spawned in such a manner where they occlude or are in contact with one another and as such grasping one would require colliding with the other and (2) path planning as we have used it so far only calculates paths if collisions can be avoided. Luckily, an extension string *ignore_collisions* exists which instructs the path planning algorithm to do just that. We can assign multiple extension strings to a single waypoint separated by a comma or semi-colon like so (do this for your *waypoint1*): + + + +Note here that the waypoint succeeding any waypoint with the *close_gripper* extension must have *ignore_collisions* set. As such we will add this to *waypoint2*, and add *open_gripper()* to *waypoint3* in order to instruct the panda to drop items into the small container. + +#### Adding the Spawn Boundary +The final step in completing our task model is to add a spawn boundary so that we can instruct the dynamic spawning of procedural objects in the python file like the one below: + + + +The simplest way to do this is probably by copying and pasting the workspace and aligning its' center with that of the *large_container* by setting it as a child of *large_container* then setting its relative pos to 0. Perform a mouse translation along the z axis such that the plane is vertically positioned roughly halfway between the base and the upper most edge of the container, then renaming it to *spawn_boundary*. Next we will adjust the size of the plane so that it is just a little smaller than the size of *large_container*'s base. Open *spawn_boundary*'s geometry dialog by clicking on *View/Modify geometry* in the *Scene Object Properties* dialog under the *Shape* tab, unchecking *Keep proportions*, and adjusting the X and Y fields under *Bounding box size*. Keeping the Z value constant, use trial and error to set values which make *spawn_boundary* a square plane just smaller than the base of *large_container*. Finally, make *spawn_boundary* a child of large container as shown in the image above. + +To finish this step, we will invert *spawn_boundary*'s visiblity layers so that it will not be visually present in the task. In general, this is done by opening the *Scene Object Properties* dialog, opening the *Common* tab, and under *Visibility* unchecking all the boxes in the first row and checking the equivalent boxes in the row just beneath it: + + + +Make sure to save the .ttm by inputting 's' in the task_validator when simulation is not running: + + + +We are now ready to begin coding the Python file. + +## 2 Writing the Python File +First we need to ensure that we import the necessary classes like below. In practice, this is normally done as you write the script, but we can do it all in one go for the purposes of this walkthrough: + +```python +from typing import List, Tuple +from rlbench.backend.task import Task +from rlbench.const import colors +from rlbench.backend.task_utils import sample_procedural_objects +from rlbench.backend.conditions import ConditionSet, DetectedCondition +from rlbench.backend.spawn_boundary import SpawnBoundary +import numpy as np +from pyrep.objects.shape import Shape +from pyrep.objects.proximity_sensor import ProximitySensor +from pyrep.objects.dummy import Dummy +``` + +### init_task() -> None: +Here we will first instantiate object handles, remembering that the handle to a spawn boundary shape must later be passed as a list when instantiating a *SpawnBoundary* object. + +```python +self.large_container = Shape('large_container') +self.target_container0 = Shape('small_container0') +self.target_container1 = Shape('small_container1') +self.spawn_boundaries = [Shape('spawn_boundary')] +self.success_detector0 = ProximitySensor('success0') +self.success_detector1 = ProximitySensor('success1') +``` +We will then call two functions, *register_waypoint_ability_start()* and *register_waypoints_should_repeat()* like so: + +```python +self.register_waypoint_ability_start(1, self._move_above_object) +self.register_waypoints_should_repeat(self._repeat) +``` + +The first of these simply allows us to have the task execute some kind of code or functionality before moving towards this waypoint, in this case we will be defining *_move_above_next_object* which will move *waypoint1* (the grasping waypoint) to the center of the next procedural object which we will attempt to pick up. *register_waypoints_should_repeat* allows us to define for ourselves the conditions on which the panda will continue to cycle through the waypoints in order, this will allow us to tell the panda to repeat its actions until all objects have been dropped into the target container. + +### init_episode(self, index: int) -> List[str]: +Upon initialisation of every episode, we will set *self._variation_index* so that we can access it from other member functions. + +```python +self._variation_index = index +``` +Then we will sample the procedural objects found in the *rlbench/backend/assets/procdural_objects* directory by calling a function from *rlbench/backend/task_utils.py*. As can be seen in this function's definition, we need to pass it a handle to the task_dummy and the number of objects which we wish to spawn. Note that because this call takes place in *init_episode()*, we are sampling a different set of 5 items with each episode call. We will also also declare a variable *bin_objects_not_done* to hold a list of handles to objects not yet emptied out from *large_container*, this will be used later to determine where to set the subsequent positions of the grasping waypoint before each grasp. This snippet ends by registering the sampled objects as graspable, necessary to enable the grasping mechanism explained previously: + +```python +self._variation_index = index +self.bin_objects = sample_procedural_objects(self.get_base(), 5) +self.bin_objects_not_done = list(self.bin_objects) +self.register_graspable_objects(self.bin_objects) +``` + +After having done this, we will dynamically spawn our procedural objects in the scene by instantiating our *spawn_boundary* object, and using a for loop to spawn each object. For each object, this will require performing the following operations: + +* Placing each object 20cm above *large_container*'s center, then +* Sampling each object within the *spawn_boundary* in order to drop each object at a random position within the container. + +Do this like so: + +```python +b = SpawnBoundary(self.spawn_boundaries) +for ob in self.bin_objects: + ob.set_position( + [0.0, 0.0, 0.2], relative_to=self.large_container, + reset_dynamics=False) + b.sample(ob, ignore_collisions=True, min_distance=0.05) +``` + +Next we will create a handle to the release waypoint, and define a list representing a vector of its target position over *small_container0* relative to *large_container*. The X and Y vectors were obtained by temporarily making this waypoint a child of the large container and reading off its position relative to its parent in the *Position/Translation* dialog, as such your X and Y values might differ slightly from the shown here. The Z vector is simply set to +17cm, the desired relative height of *waypoint3*. + +```python +target_waypoint = Dummy('waypoint3') +target_pos = [-5.9605*10**(-8), -2.5005*10**(-1), +1.7*10**(-1)] +``` + +The next few code snippets will deal with selecting and setting the colors of each of the small containers and setting the position of the release dummy *waypoint3*, as well as the registering of success conditions. All of these will depend on the variation (and thus the specific variation index) and so will require first (1) selecting the appropriate parameters and (2) using them to achieve the above points. + +We begin by creating an empty list to later hold our success conditions, then choosing the the colors for both the target container and the other distractor container. The color of the target is chosen by simply using *index* to cycle through the const list of colors found in *rlbench/const.py*. We will select the color of the distractor at random by calling *np.random.choice()* on a list containing the indexes of *colors* which excludes the color index of the target, then selecting the chosen color using this index value: + +```python +conditions = [] +target_color_name, target_color_rgb = colors[index] +color_choice = np.random.choice( + list(range(index)) + list( + range(index + 1, len(colors))), + size=1, replace=False)[0] +_, distractor_color_rgb = colors[color_choice] +``` + +Now we will use a two-pronged if statement to set the color of the *small_container*s, register success conditions, and then select the correct position for *waypoint3*. To determine which container will be the target, we will simply alternate between them by using *index % 2 == 0* to choose *small_container1* and *index % 2 == 1* to choose *small_container1*. + +The first part of the if statement thus sets the sets *target_color_rgb* and *distractor_color_rgb* to be the colors of *small_container1* and *small_container2*, respectively, then appends a *DetectedCondition* to the *conditions* for each object. These conditions simply define a succesful task condition as all of our sampled procedural objects being detected the the proximity sensor covering the volume of our target container, *small_container0*. As the target pos of *waypoint3* relative the *large_container* is already correctly defined above, we do not have to alter this. This is written as so: + +```python +if index % 2 == 0: + self.target_container0.set_color(target_color_rgb) + self.target_container1.set_color(distractor_color_rgb) + for ob in self.bin_objects: + conditions.append(DetectedCondition(ob, self.success_detector0)) +``` + +The second prong of our if statement will do almost the same, except the variables containg rgb values to be assigned to each of the small containers will swap, and we will register the proximity sensor corresponding to the other container. We will also set *waypoint3*'s target position relative to *large_container* by changing the sign of the Y value so that it can be placed equivalently on the opposite side of the above the *large_container*, which will result in the release waypoint being placed 17cm above the center of *small_container1* if both small container's are placed perfectly on each side of the large one: + +```python +else: + self.target_container1.set_color(target_color_rgb) + self.target_container0.set_color(distractor_color_rgb) + for ob in self.bin_objects: + conditions.append(DetectedCondition(ob, self.success_detector1)) + target_pos[1] = -target_pos[1] +``` + +Next we will set the position of the target_container and register our chosen success conditions as so: + +```python +target_waypoint.set_position(target_pos, + relative_to=self.large_container, + reset_dynamics=True) +self.register_success_conditions( + [ConditionSet(conditions, simultaneously_met=True)]) +``` + +Note that here we are registering our success conditions as a *ConditionSet* object. When *simultaneously_met* is set to *True*, this results in identical functionality to simply registering a list, but if we wanted to we could alter the parameters of the *ConditionSet* call to define successful task completion as different conditions met in a certain order, or as conditions which only have to have been met at some point throughout a demo. We conclude *init_episode* by returning an exhaustive list containing the as many differing semantic descriptions of this task as we can think of: + +```python +return ['empty the container in the to %s container' + % target_color_name, + 'clear all items from the large tray and put them in the %s ' + 'tray' % target_color_name, + 'move all objects from the large container and drop them into ' + 'the smaller %s one' % target_color_name, + 'remove whatever you find in the big box in the middle and ' + 'leave them in the %s one' % target_color_name, + 'grasp and move all objects into the %s container' + % target_color_name] +``` + +### def variation_count(self) -> int: +As stated above, the set of possible variations for this task contains each possible color assignment for the target container for each possible target container. This means that we will simply return the following here: + +```python +return 2*len(colors) +``` + +### def cleanup(self) -> None: +As explained in the first walkthrough, state in the V-Rep scene must be preserved between demo runs. As such, any objects instantiated dynamically must be removed from the scene before another demo can be called. This applied to our procedural objects so will loop through them and remove them here. Because we resample a different set of 5 objects with every episode, we will also assign an empty list to *bin_objects* so that it can work with subsequent demo runs: + +```python +def cleanup(self) -> None: + if self.bin_objects is not None: + [ob.remove() for ob in self.bin_objects if ob.still_exists()] + self.bin_objects = [] +``` + +### def step(self) -> None: +We will use the step function to handle the list of objects not yet correctly placed. As such, this list should reflect the collection of precedural objects not currently detected by the success detector. As it is not possible to assign a handle to an object handle and then call V-Rep API functions (functions dynamically affecting or reading the state of the V-Rep scene whilst a demo is running) on such handles, we will again use an if statement conditional on *_variation_index % 2* to select the handle to the appropriate proximity sensor. We can itereate through the list of procedural objects which still need to be removed from *large_container* and call *.remove()* to remove them from said list like so: + +```python +for ob in self.bin_objects_not_done: + if self._variation_index % 2 == 0: + if self.success_detector0.is_detected(ob): + self.bin_objects_not_done.remove(ob) + else: + if self.success_detector1.is_detected(ob): + self.bin_objects_not_done.remove(ob) +``` + +### def \_move_above_object(self, waypoint): +This is the function to be called just before any movements/actions are made towards a specified waypoint. We registered this function in *init_task()* and have already passed the grasping waypoint *waypoint1* to to the registering. As such, it is called as soon as *waypoint0* has been reached and any actions specified through extension strings or other means have been performed. We want it to set *waypoint1*'s position to objects which are yet to be removed from *large_container*, as such we will use a getter function to retrieve the position of the first element of *bin_objects_not_done* (this will actually retrieve the position of the central point of an object's bounding box) and then use this to specify *waypoint1*'s position: + +```python +if len(self.bin_objects_not_done) <= 0: + raise RuntimeError('Should not be here.') +x, y, z = self.bin_objects_not_done[0].get_position() +waypoint.get_waypoint_object().set_position([x, y, z]) +``` + +### def \_repeat(self): +The final function to be written simply needs to return a boolean value specifying whether or not we want to repeat the path and actions specified by the waypoints: *True* if objects still need to be placed in the target container and *False* otherwise. We could read the state of the success detector as we did in *step()* but seeing as we already have list representing the objects yet to be moved we can perform a simple comparison: + +```python +return len(self.bin_objects_not_done) > 0 +``` + +We have now finished creating the scene and python files for this task. Cycle through episodes and run a few demos for a few variations to verify that the task behaves as described throughout this walkthrough. If the task behaves in an unexpected way, or if it fails to succesfully complete a majority of demos, you could play around with the task by playing around with the height of waypoints. The task has been quite narrowly defined throughout this walkthrough, but for tasks you create in general you will likely have to play around with the positions and orientations of waypoints and other objects, their dynamic properties like their massess, extension strings etc, as well as the functions (and parameters) you call in your python file and where you call them from. If your task still fails to achieve the intended behaviour, you may have to redesign the task by remodelling objects and re-thinking your waypoint strategy in the V-Rep simulator, as well as perhaps simplifying your task specification or implementation to reduce its complexity and better handle edge cases. The RLBench and PyRep code bases are your friends here; both provide a wealth of member functions which you can familiarise yourself with by searching through the backend and other files in both repositories, as well as by looking at other tasks which implement functionaility similar to that which your tasks might require. In particular you will want to be aware of the different varieties of success conditions you can register in *rlbench/backend/conditions.py*. + +## 4 Passing the Task Validator +Before your task is complete, every variation must pass the task_validator. For tasks like the one we have created here which have 20 variations which are all almost identical to each other, it is usually sufficient to verify they work for at least 3 variations. + +## 5 The Open Road +Congratulations, you have now completed both tutorials on creating tasks for RLBench. Any tasks you choose to create and add to this dataset will be making a contribution to the research surrounding Machine Learning in Robotics so any input will be greatly appreciated. This is where the fun starts; you can now start thinking creatively about designing your own tasks and you are now armed with the tools you need to build them. diff --git a/external/rlbench/tutorials/simple_task.md b/external/rlbench/tutorials/simple_task.md new file mode 100644 index 0000000000000000000000000000000000000000..01c3b9b6e22a02ed37ea907f9bcda59eef52e94d --- /dev/null +++ b/external/rlbench/tutorials/simple_task.md @@ -0,0 +1,214 @@ +# Simple Task Walkthrough + +This is a walkthrough of one of the entire task building process of one of the simpler tasks: slide_block_to_target. +The task aims to make the Panda robot slide a cube to a specific target location and if done right you will end up with something like the following: + + + +Note that creating a task involves (1) creating the task through the task builder, (2) creating the task by adding objects to the scene in a V-Rep simulator instance, then (3) coding the Python File and finally (4) passing the Task Validator. The last two steps are often an iterative process depending on the complexity of the task. (2) Will require first physical objects to be added, then normally sensors used to detect objects and thus define a succesful task completion, then waypoints used in calculating the Panda Robot's path and action in the simulator. (3) Involves creating handles to various objects and defining what counts as succesful task completion. (4) Must be passed for a task to be deemed a sufficient addition to this data set. + +The design of a task must be given careful consideration. Ideally they would be tasks which one can imagine a Panda Arm Robot might one day be asked to do in real life; many tasks built thus far are common household ones such as hanging a picture frame on a wall peg or setting the dinner table, but tasks from construction, manufacturing and any general labour intensive sphere would also be seen as useful. Tasks also have varying levels of complexity and often have common themes tying them together; a good example would be open_cabinet and take_cup_out_from_cabinet. All that said, there really are no hard restrictions so use your creativity and imagination to see what you can create. + + +## Variations and their Episodes +At this point it is worth talking about episodes and variations. Every task has various textual descriptions asscosciated with them, to be used for linguistic learning in robotic tasks if desired. The picture below shows the various task descriptions returned from the init_episode() function in task *toilet_seat_up* for its single variation. Ideally these will between them include all possible ways of using the English language to describe a task; for example two of the various descriptions given for a particular episode of stack are 'stack the other cups on top of the red cup' and 'pick up and set the cups down into the red cup'. + + + +Every task has at least one variation, and every variation must have multiple episodes. *stack_cups* has multiple variations for each color of the base cup, for example another one of its variations could be described as 'stack the other cups on top of the blue cup'. Variations aren't restricted to varying colors either; setup_checkers has three episdoes, each instructing the Panda to setup the remaining 1, 2, or 3 checkers on the board. + +A *variation* is thus defined as a specific semantic meaning of the textual description of the task, such that different variations actually instruct the robot to do something slightly different on every variation. An *episode* is defined as a specific physical starting state (most likely layout/positioning) of the task objects for a particular variation, and these must differ between episodes across the same variation with the same semantic description. At minimum, the positioning/orientation of task objects must vary with episodes, but many tasks built so far vary object colors and sucess conditions (alongside Panda action instruction) with every change in episode. + +## 1 Start the task builder +First off, simply run the task builder. A new V-Rep instance should automatically open, and this will run from the code found in the RLBench backend and Pyrep repos. + +You will then be prompted to enter which task to edit. In this case, enter 'slide_block_to_target' as the task name, press enter, and enter 'y' to when asked to confirm if you want to create a new task. This will prompt the task builder to create both a python file in *rlbench/tasks* and a corresponding scene file with a .ttm extension in *rlbench/task_ttms*. Shown below is the task_buidler dialog for creating a new task called slide_block upon starting the task_builder. + + + +The ttm file should load automatically in the V-Rep instance, and this will contain the scene (a collection of walls, cameras, a table/workspace boundary, and the panda robot) and a task dummy which should in this case be named 'slide_block_to_target'. Shown below is the empty scene task_design_empty.ttt containing the empty task_dummy object named 'complex_task' for a task also named 'complex_task'. + + + +Notice in particular the Scene Hierarchy on the left, showing the parent child relationships for all existing objects in the scene, presented in a tree structure. Two things to note here: (1) Be aware that moving/rotating an object will do the same to its child objects, treating them as one single object for these particular operations and (2) it is important that any V-Rep objects created for the task must be made children of this task dummy, and that any objects that exist across tasks as part of the empty scene file (.ttt) are not included in the task dummy's downwards tree. This will ensure that when we save the task it is saved only to the task's scene file (.ttm), and that when we change between tasks everything is cleared away and loaded appropriately. To change the ordering within the scene hierarchy, simply hold down the mouse click and drag the object names up or down to the desired new parent and then release the mouse click. + + +## 2 Creating the Task in V-REP +To create a task, it must first be designed in the RLBench V-Rep instance. We will create the needed objects, making sure to set the dynamic and object special properties. For this task, a cube cube named 'block' was added along with a plane named 'target'. These objects need to placed on top of the table, within the 'workspace' boundary in order to make sure the panda can reach the objects and complete the task. + +Note first that in order to pan your view in the V-Rep instance you can make sure that the pan icon is selected in the upper left section of the screen (see picture below) then pan your view in a drag and drop fashion. To rotate your view angle, either hold down the scroller wheel button on your mouse if available, or select the icon directly to the right of the camera pan icon and move it in a drag and drop fashion. Spend a few seconds getting comfortable with this as creating a task will involve needing to view various positions from all sorts of angles. + + + +To create the block, go to the top toolbar and click on Add -> Primitive Shape -> Cuboid. You will then be prompted with a dialog where you can initialise the cuboid's properties: + + + +For now let's ensure the cuboid dimensions are 0.1m along each edge, and click ok to create it. Notice that this cuboid is grey in color and is spawned on the floor underneath the table. Seeing as we will be setting the colour of the block dynamically from the Python file side there will be no need to do that just yet, but be aware that we would normally adjust the color of created objects as shown below. This is done by double clicking on the Cuboid in the V-Rep scene heirarchy to open the Scene Object Properties dialog, ensuring we are viewing the 'Shape' rather than 'Common' Properties, and clicking on either 'Adjust color' or 'Adjust texture'/'Quick textures (selection)'. + + + +Once our cuboid has been created, we need to place it on top of the table. There are multiple ways to do this, here we will simply drag and drop it. In order to be able to to do this, we need to select the Translation/Position dialog by clicking on its icon in the upper left section of the V-Rep instance. We can select multiple ways of controlling an objects position; to select drag and drop click on the 'Mouse Translation' tab. From here we can select the axes along which to translate, selecting only 'along Z' as this will allow us to adjust its vertical position as shown in the figure below. By dragging it upwards we can place it on top of the table, noting that it is not a problem for there to be a (very) miniscule gap between the object and the table. To reduce the step size of the translation, initiate the translation by holding down the left mouse click, then keep the shift key pressed as this will allow you to place the object more precisely. Note also that to move objects along other axes or planes we can simply select the desired axes of translation as so, and that sometimes we want to move objects along axes relative to other objects if thieir bounding box has an awkward orientation (more on this in another tutorial). + + + +We finish creating the cuboid by setting its *Object Special Properties*. Double click on the cuboid in the Scene Hierarchy to open its Object Special Properties Dialog and open the *Common* tab. Under *Object special properties* set the object to *Collidable*, *Measurable*, *Detectable* and *Renderable* by checking their respective boxes: + + + +*Collidable* means that the V-Rep simulator is able to detect a collision with other objects, and this is particular useful for path planning. *Measurable* enables minimum distance calculation between two objects and this we normally want to set this to enabled. *Detectable* enables detection of the object by proximity sensors; we will add one later in this task. Dinally *Renderable* means the object can be rendered by cameras and we also want this enabled for almost every object so that an object is visually present at training time. + +Next we will create the target_visual. Create a plane by clicking on Add -> Primitive Shape -> Plane and create a plane with sides of length 0.1m. Set all four of its *Object special properties*. As we have done for the cuboid, drag and drop this onto the surface of the table, placing it next to the cuboid with roughly 0.1m of seperation. In this example, the cuboid is colored red and the plane is white, but you only need to worry about giving the plane a color so that it can be rendered as a surface and not just a hollow collection of edges, also known as a wireframe. At this point you should have something similar to the following picture: + + + +We colored in our plane white, but only parts of the plane appear colored from most viewpoints, the rest are not visible. You will notice that if the plane has the same vertical position as the surface of the table, it may or may not be wholly visible depending on the angle it is viewed from. For this reason, we will use the translation dialog to increase its z height by a miniscule amount. Open the Translation/Position dialog and go the 'Translation' tab. Enter *+1.00e-5* in the *Along Z* box and click on the *Z-translate sel.* button. Your plane should now be placed just above the surface of the table, and its colored surface visible from all direct viewpoints. + + + +Now that we have the necessary physical objects placed appropriately in the scene, we need to add a proximity sensor. This will be needed to detect if the block has reached the target and will be used to define a succesful task completion later when writing the python file. Click on Add -> Proximity Sensor -> Pyramid Type. This will create a sensor with a detection volume far bigger than we need, so double click on the Proxity_sensor in the Scene Hierarchy to open its Scene Object Properties, click on *Show volume parameters* to open the Detection Volume Parameters dialog, and fill the fields in as shown below. This will drastically reduce the size like so: + + + +We want the task to slide the cuboid to the plane, as such we will place the proximity sensor at the centre of the plane. The easiest way to do this is to first make the sensor a child of the plane: drag and drop it onto the plane in the scene hierarchy, open the Translation/Position dialog, click on the *Position* tab, and then set its position relative to its parent frame to 0 along all axes like below. Rename this sensor to *success*. + + + +Next we need to deal with the physical properties of our objects. Both the block and the target have all Object Special Properties (Collidable, Measureable, Detectable, Renderable) set, and the block needs to be set to both respondable and dynamic within the dynamic properties log. *Respondable* means the object has a physical presence, ie that it exists for the purposes of physical interaction with other objects in the scene. *Dynamic* means external forces other than those applied to it by other forces can act on it, ie gravity and reactionary force. For both block, open its Scene object properties dialog, ensure the *Shape* tab is open, then click on *Show dynamic properties dialog*. This will open the Rigid Body Dynamic Properties dialog, check the boxes correspnding to *Body is respondable* and *Body is dynamic*. + +Next, dummies named *waypoint0* and *waypoint1* need to be added. Dummies named in this way act as much needed waypoints in defining the intended motion and action of the panda gripper, and will be used by the path planning script in RlBench to determine what the panda does in simulation. The intended orientation of the dummies must be set appropriately, and in the next tutorial it will be seen that dummies can have extension_strings assosciated with them, instructing the gripper to do more complex things like grasping and ignoring collisions in path planning. Note that the panda gripper's motion and action will follow first waypoint0, then waypoint1 and so on in an ascending order. + +To add such dummies, create them by clicking on Add -> Dummy. Make it a child of the Proximity Sensor and set its position relative it its parent frame to 0 along all axes, renaming this dummy as 'waypoint0' by double clicking on its name in the Scene Hierarchy, typing it, and and hitting enter. Add another Dummy and set it to a child of the cuboid, then open the Translation/Position dialog, set its relative position (to parent) to 0m in the X-coord and Z-coord boxes, but set the Y-coord box to -0.1m such that it is placed on the other side of the cuboid as the plane and proximity sensor. Name this 'waypoint1'. + +At this point, we have a block sitting between 'waypoint0' and 'waypoint1', and hence Panda ends up planning a path that goes around the block. To avoid this, we must assign extension strings to 'waypoint1' by opening its Scene Object Properties dialog, select the Common tab at the top of the dialog, and typing in 'ignore_collisions()' in the Extension String text box found under General properties. +Finally we need to set the orientation of the waypoint dummys so that the panda has the easiest possible path to plan; this is because in simulation the panda will orient its gripper such that the dummy named 'Panda_tip' (which maintains constant pose relative to the Panda Tip) has an identical orientation to the waypoints it is reaching, and care must be taken to ensure that these waypoints have a feasible (ie reachable) pose. Open the Object/Item Rotatation/Orientation dialog by clicking on the icon just to the right of the Position/Translation dialog, go the the *Orientation* tab, and fill in its orientation (relative to the world) like so: + + + +Finally, a plane named 'boundary' was created. This is defined to randomly spawn (move and rotate) the task objects within itself, and is needed for when we code the python file later. To create this we could simply add a plane of desired geometry and drag it onto the table surface, but there is an easier way. Select the workspace in the Scene hierarchy, do Ctrl+c then Ctrl+v to copy and paste it, then double click on the newly created workspace0 in the Scene Hierarchy to open its Scene Object Properties dialog. Click on *View/modify geometry* to open its geometry dialog, uncheck the *Keep proportions* box, and change the X and Y properties under *Scaling factors* to 0.70, keeping Z as 1.00. Click apply; this should leave you with a smaller *workspace0* inside than the workspace boundary, and take care to ensure that all objects which we have created are positioned within this new boundary. + + + +Remember to make *workspace0* a child of the slide_block_to_target task dummy by dragging and dropping it onto the task dummy within the scene hierarchy. Now we need to rename the shapes so that we can create handles with maximum readability for them later on in the Python file. Rename the Cuboid to *block*, the proximity sensor to *success*, workspace0 to *boundary* and the Plane to *target*. Finally, ensure all objects we created are children of the target plane, as later on when we define random spawning of the plane all child objects will be keep their pose relative to their parent constant. Ensure that your parent-child hierarchy is as so: + + + +## 3 Writing the Python File +Now that we have created our simple scene file, we find and open *rlbench/tasks/slide_block_to_target.py*. This will contain empty functions as shown below, most of which must be defined at this point. + +```python +from typing import List +from rlbench.backend.task import Task + + +class ComplexTask(Task): + + def init_task(self) -> None: + # TODO: This is called once when a task is initialised. + pass + + def init_episode(self, index: int) -> List[str]: + # TODO: This is called at the start of each episode. + return [''] + + def variation_count(self) -> int: + # TODO: The number of variations for this task. + return 1 + + def step(self) -> None: + # Called during each sim step. Remove this if not using. + pass + + def cleanup(self) -> None: + # Called during at the end of each episode. Remove this if not using. + pass +``` + +Explained, these are: + +* **init_task()** - This is called whenever the simulator is started, and is called before any other functions contained in this file. +* **init_episode()** - This is called before the start of each indivual demo, it will automatically sample the task dummy and thus any children it has within the workspace whilst keeping the relative pose between all task objects we have created constant, but the rest is left up to the task creator. +* **variation_count()** - This must return the total number of variations, necessary for automating the running of this data set. +* **step()** - This is called at each time step in simulation, and can be used for altering the state of the scene once certain conditions have been met, for example the button in push_button changes color from red to green once succesfully pressed. This function is optional and should be deleted when not used. +* **cleanup()** - This is used to reset the state of the scene in between each run, it is called upon the completion of any succesful or unsuccesful demo. If your task alters the set of objects within the scene, ie by creating or deleting objects dynamically, the scene must be restored to its original state here. For example, in wipe_desk, the dirt spots dynamically created and spawned at the beggining of each demo must be deleted. This should also be deleted when not being used. + +We first ensure that we import the necessary functions and classes from the pyrep and rlbench backend, the ones ones listed here are typical of most tasks and include standard classes Shape and Task, as well as classes interacting with the Spawn Boundary and Proximity Sensor, and finally a list defining colours in RGB format and a definition for the success condition to be used in this task: + +```python +from typing import List +from pyrep.objects.shape import Shape +from pyrep.objects.proximity_sensor import ProximitySensor +from rlbench.const import colors +from rlbench.backend.task import Task +from rlbench.backend.conditions import DetectedCondition +from rlbench.backend.spawn_boundary import SpawnBoundary +``` + +### init_task() -> None: +Next we need to complete the functions instantiated in the SlideBlockToTarget task. The init_task() function will be called once when the simulator is started (by entering '+' in the task_builder dialog) and will need to contain our initialisation of various types of object handles, as well as the initialisation of success conditions that will remain constant throughout different episodes. Note that a demo of a task ends once all success conditions have been reached, these will include conditions on the state of the gripper (ie whether or not it is currently grapsing), as well as conditions on a particular proximity sensor detecting a particular object. More complex tasks will have success conditions varying and re-registering with each new episode and these will thus be dealt with inside the init_episode() function. + +In order to instiate an object handle, simply create it using existing classes. Most objects, including boundary planes, will be a simple Shape, but other classes like spawn boundaries and proximity sensors will need to be created as such: + +```python +self.block = Shape('block') +success_detector = ProximitySensor('success') +self.target = Shape('target') +self.boundary = SpawnBoundary([Shape('boundary')]) +``` + +The last step to create init_task for this task will be to instatiate the success condition as a DetectedCondition() class, passing first the handle to the object to be detected and the intended proximity sensor, and then these success conditions will be registered, instructing the task_builder to stop and declare a succesful task once this condition has been reached. Notice that these conditions must be passed as a list, allowing multiple conditions to be ANDed together to define succesful task completion: + +```python +success_condition = DetectedCondition(self.block, success_detector) +self.register_success_conditions([success_condition]) +``` + +### init_episode(self, index: int) -> List[str]: +If the task is to have more than 1 variation, this function must first set *self._variation_index* for as below. Be aware for when creating your own tasks that this *index* variable is the only available information pertaining to which variation the task is currently set to perform. As such, any differences in your python script execution flow between variations must be dependent on this variable. This will, however, be illustrated in a more advanced tutorial so you do not need to worry about this for now. + +```python +self._variation_index = index +``` + +On calling a new episode, RLBench backend will randomly sample the task_dummy, along with all of its children, within the workspace boundary, keeping their relative positions and orientatations constant. In order to add more task variations to the dataset, we can cycle through the coloring of objects and textual descriptions (more on this later) of tasks by having these variations depend on the index. Here we cycle through block colours by choosing the desired colour from the pre-exisiting 'colors' list and calling .set_color on the block: + +```python +block_color_name, block_rgb = colors[index] +self.block.set_color(block_rgb) +``` + +Next we clear our boundary and call .sample() on it in order to randomly move and rotate the task objects within it. Notice that only self.target needs to be passed in order to sample all task objects together whilst keeping their relative positions in tact, this is because all task objects (excluding the boundary) are children of self.target: + +```python +self.boundary.clear() +self.boundary.sample(self.target) +``` + +We finish writing init_episode by defining its return. This must be a list of task descriptions written in english, to be used for semantic learning. Notice the *%s* string placeholder, this is done because the specific value of that string (aka the block color) will vary with every variation and is determined by the self.variation_index variable seen above. Make sure to return a list containing as many textual descriptions as you can think of, as this will massively aid this dataset's usefulness to robotic linguistic learning. + +```python +return ['slide the %s block to target' % block_color_name, + 'push the %s cube to the white plane' % block_color_name, + 'nudge the %s block so that it covers the white target' % block_color_name, + 'Find the %s item on the table and manipulate its position so that it reaches the plane' % block_color_name] +``` + +### variation_count(self) -> int: +Finally, every task needs to have variation_count() defined. This must return the number of distinct task variations. In the case of slide_block_to_target, each variation will set the block colour to a different element from the colors list. As such, this function will simply return its length: + + +```python +return len(colors) +``` + +### Other class functions +Any other functions not being used, such as cleanup(), can be deleted in order to achieve a readable python file. + +## 4 Playing around with the Task +Once the scene and python files have been created, it is time to test the task runs. This can be done by entering '+' in the task builder dialog to run the simulator, then 'd' to test the demo of this particular variation. We are looking to make sure that the panda can reach most spawning positions across episodes and that the task works for all variations, this can be done by running demos for different episodes (press 'e' to cycle) and variations (press 'v') respectively. Common (but non-exhaustive) things to change at this point include changing the position/orientation/size of objects to make them reachable/graspable by the gripper, changing the position/orientation/size of any spawn boundaries to ensure most variations run smoothly, changing the min_rotation and max_rotation (through altering the .sample() parameters for any spawn boundary sampling and by redifining base_rotation_bounds() for workspace sampling on init_episode() calls), changing the dynamic properties (inc mass), and tinkering with the waypoint dummys to ensure a smooth and straightfoward path can be consistently planned. + +## 5 Passing the Task Validator +To ensure a task has been made to completion, it must pass the task validator. This can be done by passing '!' to the task_builder dialog when not in simulation, and the task validator must deem the task succesful for demos it runs across every distinct variation. Most demos must be succesfully passed for the task validator to declare a succesful task. If your task does not pass this, go back to Step 4 and try again. If this still proves to be a major challenge, redesign and recreate the task in a simpler fashion. + +## 6 What's Next? +You should now be able to understand how the simpler tasks in RlBench were created. More complicated tasks involve more complex code, for example in changing the position of waypoints dynamically whilst a demo is running, spawning and then deleting objects dynamically, changing object properties such as colour within the task etc. Once you have understood how this task was created, work your way through the next tutorial on creating a more complex task to familiarise yourself with how these problems have been solved in examples created so far. diff --git a/external/rlbench/tutorials/tutorial_images/create_task_dialog_labeled.png b/external/rlbench/tutorials/tutorial_images/create_task_dialog_labeled.png new file mode 100644 index 0000000000000000000000000000000000000000..e082825f4e75d6f4ea7060d89935e12de8bac195 Binary files /dev/null and b/external/rlbench/tutorials/tutorial_images/create_task_dialog_labeled.png differ diff --git a/external/rlbench/tutorials/tutorial_images/dimensions0.png b/external/rlbench/tutorials/tutorial_images/dimensions0.png new file mode 100644 index 0000000000000000000000000000000000000000..ea86536bc9ffcb0a61223fed68d5416540918ed5 Binary files /dev/null and b/external/rlbench/tutorials/tutorial_images/dimensions0.png differ diff --git a/external/rlbench/tutorials/tutorial_images/dummy_orient.png b/external/rlbench/tutorials/tutorial_images/dummy_orient.png new file mode 100644 index 0000000000000000000000000000000000000000..317bac065379c60dc751e4adedf35e64d436351f Binary files /dev/null and b/external/rlbench/tutorials/tutorial_images/dummy_orient.png differ diff --git a/external/rlbench/tutorials/tutorial_images/multiple_strings.png b/external/rlbench/tutorials/tutorial_images/multiple_strings.png new file mode 100644 index 0000000000000000000000000000000000000000..a65b194a2676b7dcf73daa6f2ab0ec1f1724406d Binary files /dev/null and b/external/rlbench/tutorials/tutorial_images/multiple_strings.png differ diff --git a/external/rlbench/tutorials/tutorial_images/object_special_properties.png b/external/rlbench/tutorials/tutorial_images/object_special_properties.png new file mode 100644 index 0000000000000000000000000000000000000000..c41a81068b4ff3c11e8c705acbdf2e7e5607dd4d Binary files /dev/null and b/external/rlbench/tutorials/tutorial_images/object_special_properties.png differ diff --git a/external/rlbench/tutorials/tutorial_images/parent_child_tree.png b/external/rlbench/tutorials/tutorial_images/parent_child_tree.png new file mode 100644 index 0000000000000000000000000000000000000000..e1711cfc2daf44b1a560a251307a1784da6426b9 Binary files /dev/null and b/external/rlbench/tutorials/tutorial_images/parent_child_tree.png differ diff --git a/external/rlbench/tutorials/tutorial_images/prox_sense_params.png b/external/rlbench/tutorials/tutorial_images/prox_sense_params.png new file mode 100644 index 0000000000000000000000000000000000000000..533d11c17f0dd774d7cee590915b427948d22333 Binary files /dev/null and b/external/rlbench/tutorials/tutorial_images/prox_sense_params.png differ diff --git a/external/rlbench/tutorials/tutorial_images/task_descriptions.png b/external/rlbench/tutorials/tutorial_images/task_descriptions.png new file mode 100644 index 0000000000000000000000000000000000000000..bc991a5bb0b167c20b0745cee331d60363ef1404 Binary files /dev/null and b/external/rlbench/tutorials/tutorial_images/task_descriptions.png differ diff --git a/external/rlbench/tutorials/tutorial_images/translate_z_manually.png b/external/rlbench/tutorials/tutorial_images/translate_z_manually.png new file mode 100644 index 0000000000000000000000000000000000000000..d932b038288eee853efaab504a11bf6020e5151d Binary files /dev/null and b/external/rlbench/tutorials/tutorial_images/translate_z_manually.png differ diff --git a/external/rlbench/tutorials/tutorial_images/translation_trick.png b/external/rlbench/tutorials/tutorial_images/translation_trick.png new file mode 100644 index 0000000000000000000000000000000000000000..34880552ef04cdaa89c96963d65787d985ca9618 Binary files /dev/null and b/external/rlbench/tutorials/tutorial_images/translation_trick.png differ diff --git a/external/rlbench/tutorials/tutorial_images/view_labeled.png b/external/rlbench/tutorials/tutorial_images/view_labeled.png new file mode 100644 index 0000000000000000000000000000000000000000..028425f873a3aba43894a097d9059f3d4395ffc7 Binary files /dev/null and b/external/rlbench/tutorials/tutorial_images/view_labeled.png differ diff --git a/external/rlbench/urdfs/panda/meshes/Pandagripper_coll_1.dae b/external/rlbench/urdfs/panda/meshes/Pandagripper_coll_1.dae new file mode 100644 index 0000000000000000000000000000000000000000..bf096b9a205e6187c160d677795e0fb45c7bb547 --- /dev/null +++ b/external/rlbench/urdfs/panda/meshes/Pandagripper_coll_1.dae @@ -0,0 +1,84 @@ + + + + + Assimp + Assimp Exporter + + 2023-09-26T11:24:21 + 2023-09-26T11:24:21 + + Y_UP + + + + + + + + 0 0 0 4.5895327e-41 + + + 0.73463768 0.65503019 0.69176537 4.5893926e-41 + + + 0.73463768 0.65503019 0.69176537 4.5893926e-41 + + + 0.25 0.25 0.25 -3.0261091e+37 + + + + + + + + + + + + + + + + 0.016744969 0.091910884 0.044413116 0.017144307 -0.087489262 0.043595828 0.031599864 0.0012233835 -0.013804421 -0.017043602 -0.093742862 0.00210264 -0.017500317 -0.09612567 0.031647604 -0.031587429 -0.00020460619 -0.018865729 -0.02597091 0.077551603 -0.025100973 -0.031587429 -0.00020460619 -0.018865729 -0.031625845 0.0012031699 -0.014045588 0.017043227 -0.095020331 0.010303484 0.031625856 -7.8961224e-05 -0.01883894 0.017595161 -0.095625103 0.031966094 0.031625856 -7.8961224e-05 -0.01883894 0.031599864 0.0012233835 -0.013804421 0.017595161 -0.095625103 0.031966094 0.018565923 0.096383899 0.036598537 0.016744969 0.091910884 0.044413116 0.031599864 0.0012233835 -0.013804421 -0.016794099 -0.09012422 -0.013723081 -0.031587429 -0.00020460619 -0.018865729 -0.016802166 -0.085751005 -0.021225022 -0.031625845 0.0012031699 -0.014045588 -0.031587429 -0.00020460619 -0.018865729 -0.017500317 -0.09612567 0.031647604 -0.017043602 -0.093742862 0.00210264 -0.031587429 -0.00020460619 -0.018865729 -0.016794099 -0.09012422 -0.013723081 0.016240167 -0.097755574 0.03156554 -3.1015581e-05 -0.10220782 -0.014327673 -7.2011758e-06 -0.10196081 -0.029217854 -0.003606698 -0.099375933 -0.032628879 -0.003419484 -0.10081596 -0.028982848 -0.016794099 -0.09012422 -0.013723081 -0.025260285 0.083847016 -0.014821704 -0.02597091 0.077551603 -0.025100973 -0.031625845 0.0012031699 -0.014045588 -0.028000791 0.04356619 -0.026415108 -0.031587429 -0.00020460619 -0.018865729 -0.02597091 0.077551603 -0.025100973 -0.00010250774 0.094590455 0.045943402 -0.01255665 0.095494457 0.045149717 -0.014411896 0.093058422 0.045670982 -0.017244603 -0.088918351 0.043063443 -0.015461653 -0.088924363 0.045171533 -0.016757177 0.092034169 0.044313449 0.016965598 -0.089821011 -0.014455725 0.031625856 -7.8961224e-05 -0.01883894 0.017043227 -0.095020331 0.010303484 0.017144307 -0.087489262 0.043595828 0.01761722 -0.092065617 0.038429931 0.031599864 0.0012233835 -0.013804421 0.01761722 -0.092065617 0.038429931 0.017595161 -0.095625103 0.031966094 0.031599864 0.0012233835 -0.013804421 0.012515741 -0.098405562 0.036875598 -3.1015581e-05 -0.10220782 -0.014327673 0.016240167 -0.097755574 0.03156554 0.015560988 0.10198174 0.034653842 0.019278891 0.10027551 0.024922986 0.01622845 0.10206716 0.025851013 0.001927514 -0.043738071 -0.045678042 0.028025156 0.043824237 -0.026368296 0.0038204142 -0.081184313 -0.044467907 0.020680942 0.095473781 0.023289545 0.031599864 0.0012233835 -0.013804421 0.025458017 0.082962401 -0.016518129 -0.031587429 -0.00020460619 -0.018865729 -0.0036267391 -0.081804037 -0.044624828 -0.016522622 -0.080454387 -0.025136685 -0.017244603 -0.088918351 0.043063443 -0.031625845 0.0012031699 -0.014045588 -0.017500317 -0.09612567 0.031647604 -0.014007059 -0.098309167 0.036008392 -0.016003072 -0.097846687 0.029282873 -3.1015581e-05 -0.10220782 -0.014327673 -0.003606698 -0.099375933 -0.032628879 -0.016802166 -0.085751005 -0.021225022 -0.0032050153 -0.085984111 -0.04390296 -0.00010250774 0.094590455 0.045943402 -0.014411896 0.093058422 0.045670982 -0.012977874 -0.090713792 0.045693383 -0.012977874 -0.090713792 0.045693383 -0.00049558369 -0.091163352 0.045934543 -0.00010250774 0.094590455 0.045943402 0.013549642 0.094454102 0.045669131 -0.00010250774 0.094590455 0.045943402 -0.00049558369 -0.091163352 0.045934543 -0.00049558369 -0.091163352 0.045934543 0.013434866 -0.090145044 0.04571275 0.013549642 0.094454102 0.045669131 -0.025260285 0.083847016 -0.014821704 -0.031625845 0.0012031699 -0.014045588 -0.019219158 0.09904252 0.030569669 0.017043227 -0.095020331 0.010303484 0.017595161 -0.095625103 0.031966094 0.016240167 -0.097755574 0.03156554 0.0038204142 -0.081184313 -0.044467907 0.031625856 -7.8961224e-05 -0.01883894 0.01656829 -0.083350286 -0.023891302 0.0035048416 -0.10093375 -0.028047891 0.016965598 -0.089821011 -0.014455725 0.017043227 -0.095020331 0.010303484 0.031625856 -7.8961224e-05 -0.01883894 0.0038204142 -0.081184313 -0.044467907 0.028025156 0.043824237 -0.026368296 0.018565923 0.096383899 0.036598537 0.020680942 0.095473781 0.023289545 0.019278891 0.10027551 0.024922986 0.020680942 0.095473781 0.023289545 0.018565923 0.096383899 0.036598537 0.031599864 0.0012233835 -0.013804421 0.020680942 0.095473781 0.023289545 0.025458017 0.082962401 -0.016518129 0.023879232 0.092183307 -0.015650505 0.020680942 0.095473781 0.023289545 0.022717874 0.095517464 -0.005678724 0.019278891 0.10027551 0.024922986 0.022717874 0.095517464 -0.005678724 0.020680942 0.095473781 0.023289545 0.023879232 0.092183307 -0.015650505 0.031625856 -7.8961224e-05 -0.01883894 0.028025156 0.043824237 -0.026368296 0.026044382 0.077079467 -0.025049575 0.031625856 -7.8961224e-05 -0.01883894 0.026044382 0.077079467 -0.025049575 0.025458017 0.082962401 -0.016518129 0.031625856 -7.8961224e-05 -0.01883894 0.025458017 0.082962401 -0.016518129 0.031599864 0.0012233835 -0.013804421 0.024826827 0.076159433 -0.027174426 0.028025156 0.043824237 -0.026368296 0.001927514 -0.043738071 -0.045678042 -0.0014900707 -0.04408798 -0.045943413 -0.00082369358 0.08204186 -0.027340455 0.022969175 0.079683267 -0.02741777 -0.00082369358 0.08204186 -0.027340455 -0.0014900707 -0.04408798 -0.045943413 -0.022751052 0.081956252 -0.026928281 0.022969175 0.079683267 -0.02741777 0.024826827 0.076159433 -0.027174426 0.001927514 -0.043738071 -0.045678042 -0.0036267391 -0.081804037 -0.044624828 -0.031587429 -0.00020460619 -0.018865729 -0.028000791 0.04356619 -0.026415108 4.1883774e-05 -0.097669549 -0.037179761 -0.003606698 -0.099375933 -0.032628879 -0.0032050153 -0.085984111 -0.04390296 -0.016522622 -0.080454387 -0.025136685 -0.0036267391 -0.081804037 -0.044624828 -0.0032050153 -0.085984111 -0.04390296 -0.016802166 -0.085751005 -0.021225022 -0.016522622 -0.080454387 -0.025136685 -0.0032050153 -0.085984111 -0.04390296 -0.016802166 -0.085751005 -0.021225022 -0.031587429 -0.00020460619 -0.018865729 -0.016522622 -0.080454387 -0.025136685 -0.016622087 -0.09677203 0.034715377 -0.017244603 -0.088918351 0.043063443 -0.017500317 -0.09612567 0.031647604 4.1883774e-05 -0.097669549 -0.037179761 0.0036121989 -0.099412799 -0.032646187 -7.2011758e-06 -0.10196081 -0.029217854 -0.016003072 -0.097846687 0.029282873 -0.016622087 -0.09677203 0.034715377 -0.017500317 -0.09612567 0.031647604 -3.1015581e-05 -0.10220782 -0.014327673 -0.016003072 -0.097846687 0.029282873 -7.2011758e-06 -0.10196081 -0.029217854 -0.0016066673 0.099253021 0.042288579 -0.00010250774 0.094590455 0.045943402 0.013549642 0.094454102 0.045669131 -0.00010250774 0.094590455 0.045943402 -0.0016066673 0.099253021 0.042288579 -0.01255665 0.095494457 0.045149717 0.016744969 0.091910884 0.044413116 0.013549642 0.094454102 0.045669131 0.015728435 -0.089997612 0.044893976 0.013434866 -0.090145044 0.04571275 0.015728435 -0.089997612 0.044893976 0.013549642 0.094454102 0.045669131 -0.017244603 -0.088918351 0.043063443 -0.018438619 0.093797483 0.038374417 -0.031625845 0.0012031699 -0.014045588 -0.018438619 0.093797483 0.038374417 -0.017244603 -0.088918351 0.043063443 -0.016757177 0.092034169 0.044313449 -0.018438619 0.093797483 0.038374417 -0.019219158 0.09904252 0.030569669 -0.031625845 0.0012031699 -0.014045588 -0.00061691785 -0.086192869 -0.044980168 4.1883774e-05 -0.097669549 -0.037179761 -0.0032050153 -0.085984111 -0.04390296 0.0030860777 -0.086191021 -0.043997291 0.0038204142 -0.081184313 -0.044467907 0.01656829 -0.083350286 -0.023891302 0.015728435 -0.089997612 0.044893976 0.017144307 -0.087489262 0.043595828 0.016744969 0.091910884 0.044413116 0.01622845 0.10206716 0.025851013 0.019278891 0.10027551 0.024922986 0.019812118 0.098792978 0.00089522492 0.0099516101 0.10181669 0.038322039 -0.0016066673 0.099253021 0.042288579 0.013549642 0.094454102 0.045669131 0.019278891 0.10027551 0.024922986 0.017139517 0.10084917 0.034286406 0.018565923 0.096383899 0.036598537 -0.00030405712 0.096397251 -0.012444094 -5.8770747e-06 0.10027799 0.0070630368 0.019812118 0.098792978 0.00089522492 0.026044382 0.077079467 -0.025049575 0.028025156 0.043824237 -0.026368296 0.024826827 0.076159433 -0.027174426 -0.00032724603 0.088343509 -0.024182025 0.022324363 0.09003187 -0.02195194 0.022387056 0.085137084 -0.025544848 -0.021314884 0.092708796 -0.019038951 -0.022722701 0.08721637 -0.02413908 -0.024485176 0.087674245 -0.021851478 0.0018528663 -0.082220443 -0.045543469 -0.0014900707 -0.04408798 -0.045943413 0.001927514 -0.043738071 -0.045678042 -0.0014900707 -0.04408798 -0.045943413 -0.024640171 0.07844989 -0.026950866 -0.022751052 0.081956252 -0.026928281 -0.017043602 -0.093742862 0.00210264 -0.016003072 -0.097846687 0.029282873 -0.017500317 -0.09612567 0.031647604 0.0035048416 -0.10093375 -0.028047891 0.016240167 -0.097755574 0.03156554 -7.2011758e-06 -0.10196081 -0.029217854 4.1883774e-05 -0.097669549 -0.037179761 -7.2011758e-06 -0.10196081 -0.029217854 -0.003606698 -0.099375933 -0.032628879 -0.02597091 0.077551603 -0.025100973 -0.025260285 0.083847016 -0.014821704 -0.024485176 0.087674245 -0.021851478 -0.014411896 0.093058422 0.045670982 -0.015461653 -0.088924363 0.045171533 -0.012977874 -0.090713792 0.045693383 -0.016757177 0.092034169 0.044313449 -0.015461653 -0.088924363 0.045171533 -0.014411896 0.093058422 0.045670982 -0.00049558369 -0.091163352 0.045934543 0.01314879 -0.092280924 0.044664629 0.013434866 -0.090145044 0.04571275 -0.014007059 -0.098309167 0.036008392 -3.1015581e-05 -0.10220782 -0.014327673 -0.0093138115 -0.098200686 0.038470645 -0.019056723 0.099479057 0.004608721 -5.8770747e-06 0.10027799 0.0070630368 -0.00030405712 0.096397251 -0.012444094 -0.0016066673 0.099253021 0.042288579 -0.0044843247 0.10220783 0.038100332 -0.01255665 0.095494457 0.045149717 0.01622845 0.10206716 0.025851013 -0.014613034 0.10195017 0.035716157 -0.0044843247 0.10220783 0.038100332 0.01656829 -0.083350286 -0.023891302 0.016965598 -0.089821011 -0.014455725 0.0036121989 -0.099412799 -0.032646187 0.0036121989 -0.099412799 -0.032646187 0.016965598 -0.089821011 -0.014455725 0.0035048416 -0.10093375 -0.028047891 0.0036121989 -0.099412799 -0.032646187 0.0035048416 -0.10093375 -0.028047891 -7.2011758e-06 -0.10196081 -0.029217854 0.015728435 -0.089997612 0.044893976 0.015814964 -0.097634315 0.03495172 0.01761722 -0.092065617 0.038429931 0.015814964 -0.097634315 0.03495172 0.012515741 -0.098405562 0.036875598 0.016240167 -0.097755574 0.03156554 0.01314879 -0.092280924 0.044664629 0.015814964 -0.097634315 0.03495172 0.015728435 -0.089997612 0.044893976 0.015814964 -0.097634315 0.03495172 0.01314879 -0.092280924 0.044664629 0.012515741 -0.098405562 0.036875598 0.017043227 -0.095020331 0.010303484 0.016240167 -0.097755574 0.03156554 0.0035048416 -0.10093375 -0.028047891 0.015814964 -0.097634315 0.03495172 0.016240167 -0.097755574 0.03156554 0.017595161 -0.095625103 0.031966094 0.017595161 -0.095625103 0.031966094 0.01761722 -0.092065617 0.038429931 0.015814964 -0.097634315 0.03495172 -0.0044843247 0.10220783 0.038100332 -0.0016066673 0.099253021 0.042288579 0.0099516101 0.10181669 0.038322039 0.001927514 -0.043738071 -0.045678042 0.0038204142 -0.081184313 -0.044467907 0.0018528663 -0.082220443 -0.045543469 -0.00030405712 0.096397251 -0.012444094 0.019812118 0.098792978 0.00089522492 0.021352664 0.09611503 -0.01107674 -5.8770747e-06 0.10027799 0.0070630368 0.01622845 0.10206716 0.025851013 0.019812118 0.098792978 0.00089522492 -0.022751052 0.081956252 -0.026928281 -0.022722701 0.08721637 -0.02413908 -0.00032724603 0.088343509 -0.024182025 0.022324363 0.09003187 -0.02195194 -0.00016333007 0.092776932 -0.019441966 0.021492979 0.09357658 -0.017334616 -0.00032724603 0.088343509 -0.024182025 0.022387056 0.085137084 -0.025544848 -0.00082369358 0.08204186 -0.027340455 -0.00082369358 0.08204186 -0.027340455 0.022387056 0.085137084 -0.025544848 0.022969175 0.079683267 -0.02741777 0.001927514 -0.043738071 -0.045678042 -0.0014900707 -0.04408798 -0.045943413 0.022969175 0.079683267 -0.02741777 -0.028000791 0.04356619 -0.026415108 -0.024640171 0.07844989 -0.026950866 -0.0014900707 -0.04408798 -0.045943413 -0.028000791 0.04356619 -0.026415108 -0.02597091 0.077551603 -0.025100973 -0.024640171 0.07844989 -0.026950866 0.024525244 0.083484478 -0.025070157 0.022324363 0.09003187 -0.02195194 0.024739463 0.087522 -0.02125043 -0.0036267391 -0.081804037 -0.044624828 -0.028000791 0.04356619 -0.026415108 -0.0014900707 -0.04408798 -0.045943413 -0.02064757 0.096449815 -0.010480773 -0.019056723 0.099479057 0.004608721 -0.00030405712 0.096397251 -0.012444094 -0.014613034 0.10195017 0.035716157 -0.01255665 0.095494457 0.045149717 -0.0044843247 0.10220783 0.038100332 0.016965598 -0.089821011 -0.014455725 0.01656829 -0.083350286 -0.023891302 0.031625856 -7.8961224e-05 -0.01883894 0.0012006457 -0.098519526 0.03860458 0.01314879 -0.092280924 0.044664629 0.00047965779 -0.09487392 0.043059804 0.015560988 0.10198174 0.034653842 0.01622845 0.10206716 0.025851013 0.0099516101 0.10181669 0.038322039 0.0099516101 0.10181669 0.038322039 0.01622845 0.10206716 0.025851013 -0.0044843247 0.10220783 0.038100332 0.023879232 0.092183307 -0.015650505 0.021352664 0.09611503 -0.01107674 0.022717874 0.095517464 -0.005678724 0.017139517 0.10084917 0.034286406 0.019278891 0.10027551 0.024922986 0.015560988 0.10198174 0.034653842 0.013549642 0.094454102 0.045669131 0.015406958 0.094687551 0.044537522 0.0099516101 0.10181669 0.038322039 0.015406958 0.094687551 0.044537522 0.015560988 0.10198174 0.034653842 0.0099516101 0.10181669 0.038322039 0.015406958 0.094687551 0.044537522 0.018565923 0.096383899 0.036598537 0.017139517 0.10084917 0.034286406 -0.022722701 0.08721637 -0.02413908 -0.021314884 0.092708796 -0.019038951 -0.00032724603 0.088343509 -0.024182025 0.024739463 0.087522 -0.02125043 0.026044382 0.077079467 -0.025049575 0.024525244 0.083484478 -0.025070157 0.021352664 0.09611503 -0.01107674 0.023879232 0.092183307 -0.015650505 0.021492979 0.09357658 -0.017334616 -0.021314884 0.092708796 -0.019038951 -0.00030405712 0.096397251 -0.012444094 -0.00016333007 0.092776932 -0.019441966 -0.00016333007 0.092776932 -0.019441966 -0.00030405712 0.096397251 -0.012444094 0.021492979 0.09357658 -0.017334616 -0.00085775298 -0.080766603 -0.04588877 -0.0014900707 -0.04408798 -0.045943413 0.0018528663 -0.082220443 -0.045543469 -0.0036267391 -0.081804037 -0.044624828 -0.0014900707 -0.04408798 -0.045943413 -0.00085775298 -0.080766603 -0.04588877 -0.016802166 -0.085751005 -0.021225022 -0.003606698 -0.099375933 -0.032628879 -0.016794099 -0.09012422 -0.013723081 -0.016003072 -0.097846687 0.029282873 -0.014007059 -0.098309167 0.036008392 -0.016622087 -0.09677203 0.034715377 -0.003419484 -0.10081596 -0.028982848 -7.2011758e-06 -0.10196081 -0.029217854 -0.016003072 -0.097846687 0.029282873 -0.003419484 -0.10081596 -0.028982848 -0.017043602 -0.093742862 0.00210264 -0.016794099 -0.09012422 -0.013723081 -0.00049558369 -0.091163352 0.045934543 0.00047965779 -0.09487392 0.043059804 0.01314879 -0.092280924 0.044664629 0.0012006457 -0.098519526 0.03860458 0.00047965779 -0.09487392 0.043059804 -0.0093138115 -0.098200686 0.038470645 -3.1015581e-05 -0.10220782 -0.014327673 0.012515741 -0.098405562 0.036875598 0.0012006457 -0.098519526 0.03860458 0.0012006457 -0.098519526 0.03860458 -0.0093138115 -0.098200686 0.038470645 -3.1015581e-05 -0.10220782 -0.014327673 -0.023545709 0.092948221 -0.015410834 -0.024485176 0.087674245 -0.021851478 -0.025260285 0.083847016 -0.014821704 0.0030860777 -0.086191021 -0.043997291 4.1883774e-05 -0.097669549 -0.037179761 -0.00061691785 -0.086192869 -0.044980168 -0.00061691785 -0.086192869 -0.044980168 0.0018528663 -0.082220443 -0.045543469 0.0030860777 -0.086191021 -0.043997291 4.1883774e-05 -0.097669549 -0.037179761 0.0030860777 -0.086191021 -0.043997291 0.0036121989 -0.099412799 -0.032646187 0.01656829 -0.083350286 -0.023891302 0.0036121989 -0.099412799 -0.032646187 0.0030860777 -0.086191021 -0.043997291 0.017144307 -0.087489262 0.043595828 0.015728435 -0.089997612 0.044893976 0.01761722 -0.092065617 0.038429931 0.01314879 -0.092280924 0.044664629 0.015728435 -0.089997612 0.044893976 0.013434866 -0.090145044 0.04571275 0.01314879 -0.092280924 0.044664629 0.0012006457 -0.098519526 0.03860458 0.012515741 -0.098405562 0.036875598 0.0018528663 -0.082220443 -0.045543469 0.0038204142 -0.081184313 -0.044467907 0.0030860777 -0.086191021 -0.043997291 0.015406958 0.094687551 0.044537522 0.017139517 0.10084917 0.034286406 0.015560988 0.10198174 0.034653842 0.015406958 0.094687551 0.044537522 0.013549642 0.094454102 0.045669131 0.016744969 0.091910884 0.044413116 0.018565923 0.096383899 0.036598537 0.015406958 0.094687551 0.044537522 0.016744969 0.091910884 0.044413116 -0.00030405712 0.096397251 -0.012444094 0.021352664 0.09611503 -0.01107674 0.021492979 0.09357658 -0.017334616 0.019812118 0.098792978 0.00089522492 0.022717874 0.095517464 -0.005678724 0.021352664 0.09611503 -0.01107674 0.022717874 0.095517464 -0.005678724 0.019812118 0.098792978 0.00089522492 0.019278891 0.10027551 0.024922986 0.022969175 0.079683267 -0.02741777 0.024525244 0.083484478 -0.025070157 0.024826827 0.076159433 -0.027174426 0.026044382 0.077079467 -0.025049575 0.024739463 0.087522 -0.02125043 0.025458017 0.082962401 -0.016518129 0.024739463 0.087522 -0.02125043 0.023879232 0.092183307 -0.015650505 0.025458017 0.082962401 -0.016518129 -0.021314884 0.092708796 -0.019038951 -0.00016333007 0.092776932 -0.019441966 -0.00032724603 0.088343509 -0.024182025 -0.00032724603 0.088343509 -0.024182025 -0.00016333007 0.092776932 -0.019441966 0.022324363 0.09003187 -0.02195194 -0.00082369358 0.08204186 -0.027340455 -0.022751052 0.081956252 -0.026928281 -0.00032724603 0.088343509 -0.024182025 -0.016003072 -0.097846687 0.029282873 -0.017043602 -0.093742862 0.00210264 -0.003419484 -0.10081596 -0.028982848 -0.003419484 -0.10081596 -0.028982848 -0.003606698 -0.099375933 -0.032628879 -7.2011758e-06 -0.10196081 -0.029217854 -0.014606969 -0.091659732 0.044481486 -0.0093138115 -0.098200686 0.038470645 -0.012977874 -0.090713792 0.045693383 -0.0093138115 -0.098200686 0.038470645 0.00047965779 -0.09487392 0.043059804 -0.012977874 -0.090713792 0.045693383 -0.014007059 -0.098309167 0.036008392 -0.014606969 -0.091659732 0.044481486 -0.016622087 -0.09677203 0.034715377 -0.015461653 -0.088924363 0.045171533 -0.014606969 -0.091659732 0.044481486 -0.012977874 -0.090713792 0.045693383 -0.023016017 0.094678767 -0.010141893 -0.021812072 0.097223625 0.0017376059 -0.02064757 0.096449815 -0.010480773 -0.018182572 0.10129988 0.023795409 0.01622845 0.10206716 0.025851013 -5.8770747e-06 0.10027799 0.0070630368 -0.014613034 0.10195017 0.035716157 0.01622845 0.10206716 0.025851013 -0.018182572 0.10129988 0.023795409 -0.023545709 0.092948221 -0.015410834 -0.021314884 0.092708796 -0.019038951 -0.024485176 0.087674245 -0.021851478 -0.00085775298 -0.080766603 -0.04588877 0.0018528663 -0.082220443 -0.045543469 -0.00061691785 -0.086192869 -0.044980168 0.022324363 0.09003187 -0.02195194 0.024525244 0.083484478 -0.025070157 0.022387056 0.085137084 -0.025544848 0.026044382 0.077079467 -0.025049575 0.024826827 0.076159433 -0.027174426 0.024525244 0.083484478 -0.025070157 0.022324363 0.09003187 -0.02195194 0.021492979 0.09357658 -0.017334616 0.023879232 0.092183307 -0.015650505 0.024739463 0.087522 -0.02125043 0.022324363 0.09003187 -0.02195194 0.023879232 0.092183307 -0.015650505 -0.014007059 -0.098309167 0.036008392 -0.0093138115 -0.098200686 0.038470645 -0.014606969 -0.091659732 0.044481486 -0.012977874 -0.090713792 0.045693383 0.00047965779 -0.09487392 0.043059804 -0.00049558369 -0.091163352 0.045934543 -0.017244603 -0.088918351 0.043063443 -0.014606969 -0.091659732 0.044481486 -0.015461653 -0.088924363 0.045171533 -0.016035462 0.094991222 0.043598115 -0.019219158 0.09904252 0.030569669 -0.018438619 0.093797483 0.038374417 -0.018438619 0.093797483 0.038374417 -0.016757177 0.092034169 0.044313449 -0.016035462 0.094991222 0.043598115 -0.016984785 0.10114481 0.034096025 -0.019219158 0.09904252 0.030569669 -0.016035462 0.094991222 0.043598115 -0.023545709 0.092948221 -0.015410834 -0.023016017 0.094678767 -0.010141893 -0.02064757 0.096449815 -0.010480773 -0.019219158 0.09904252 0.030569669 -0.021812072 0.097223625 0.0017376059 -0.025260285 0.083847016 -0.014821704 -0.021812072 0.097223625 0.0017376059 -0.023016017 0.094678767 -0.010141893 -0.025260285 0.083847016 -0.014821704 -0.023016017 0.094678767 -0.010141893 -0.023545709 0.092948221 -0.015410834 -0.025260285 0.083847016 -0.014821704 -0.023545709 0.092948221 -0.015410834 -0.02064757 0.096449815 -0.010480773 -0.021314884 0.092708796 -0.019038951 -0.014613034 0.10195017 0.035716157 -0.016035462 0.094991222 0.043598115 -0.01255665 0.095494457 0.045149717 -0.016757177 0.092034169 0.044313449 -0.014411896 0.093058422 0.045670982 -0.016035462 0.094991222 0.043598115 0.024525244 0.083484478 -0.025070157 0.022969175 0.079683267 -0.02741777 0.022387056 0.085137084 -0.025544848 -0.024485176 0.087674245 -0.021851478 -0.022722701 0.08721637 -0.02413908 -0.024640171 0.07844989 -0.026950866 -0.024640171 0.07844989 -0.026950866 -0.022722701 0.08721637 -0.02413908 -0.022751052 0.081956252 -0.026928281 -0.024640171 0.07844989 -0.026950866 -0.02597091 0.077551603 -0.025100973 -0.024485176 0.087674245 -0.021851478 -0.016984785 0.10114481 0.034096025 -0.014613034 0.10195017 0.035716157 -0.018182572 0.10129988 0.023795409 -0.02064757 0.096449815 -0.010480773 -0.021812072 0.097223625 0.0017376059 -0.019056723 0.099479057 0.004608721 -0.019219158 0.09904252 0.030569669 -0.018182572 0.10129988 0.023795409 -0.021812072 0.097223625 0.0017376059 -0.018182572 0.10129988 0.023795409 -0.019219158 0.09904252 0.030569669 -0.016984785 0.10114481 0.034096025 -0.021314884 0.092708796 -0.019038951 -0.02064757 0.096449815 -0.010480773 -0.00030405712 0.096397251 -0.012444094 -0.014613034 0.10195017 0.035716157 -0.016984785 0.10114481 0.034096025 -0.016035462 0.094991222 0.043598115 -0.014411896 0.093058422 0.045670982 -0.01255665 0.095494457 0.045149717 -0.016035462 0.094991222 0.043598115 -0.0032050153 -0.085984111 -0.04390296 -0.00085775298 -0.080766603 -0.04588877 -0.00061691785 -0.086192869 -0.044980168 -0.017244603 -0.088918351 0.043063443 -0.016622087 -0.09677203 0.034715377 -0.014606969 -0.091659732 0.044481486 -0.019056723 0.099479057 0.004608721 -0.018182572 0.10129988 0.023795409 -5.8770747e-06 0.10027799 0.0070630368 -0.0032050153 -0.085984111 -0.04390296 -0.0036267391 -0.081804037 -0.044624828 -0.00085775298 -0.080766603 -0.04588877 -0.018182572 0.10129988 0.023795409 -0.019056723 0.099479057 0.004608721 -0.021812072 0.097223625 0.0017376059 + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599

+
+
+
+
+ + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + + + + + + + + + + + + + +
diff --git a/external/rlbench/urdfs/panda/meshes/Pandagrippervisual_vis_1.dae b/external/rlbench/urdfs/panda/meshes/Pandagrippervisual_vis_1.dae new file mode 100644 index 0000000000000000000000000000000000000000..f22d5149f5e8004db07854b1bc0f03a656541f4f --- /dev/null +++ b/external/rlbench/urdfs/panda/meshes/Pandagrippervisual_vis_1.dae @@ -0,0 +1,84 @@ + + + + + Assimp + Assimp Exporter + + 2023-09-26T11:24:21 + 2023-09-26T11:24:21 + + Y_UP + + + + + + + + 0 0 0 4.5895327e-41 + + + 0.69999999 0.69999999 0.69999999 4.5893926e-41 + + + 0.69999999 0.69999999 0.69999999 4.5893926e-41 + + + 0.30000001 0.30000001 0.30000001 -3.0261091e+37 + + + + + + + + + + + + + + + + -0.015225413 -0.008862217 0.067985021 -0.014951847 0.0065139923 0.070143402 -0.014971126 0.0065906551 -0.066775225 0.015554337 0.0059708245 0.070138745 0.015279691 -0.0094053652 0.067980371 0.015534578 0.0060474956 -0.066779882 -0.014955218 0.0063072261 0.071005881 -0.014951847 0.0065139923 0.070143402 -0.01502769 0.0022076129 0.073646538 -0.014971126 0.0065906551 -0.066775225 -0.014976609 0.0062893643 -0.0679399 -0.014991173 0.0054780045 -0.06910231 -0.014991173 0.0054780045 -0.06910231 -0.01501062 0.004389246 -0.069903314 -0.015038414 0.0028450098 -0.070287593 -0.015038414 0.0028450098 -0.070287593 -0.015058048 0.0017412961 -0.070171244 -0.014991173 0.0054780045 -0.06910231 -0.015128525 -0.002226362 -0.06907092 -0.015206982 -0.0066383872 -0.067626782 -0.015243744 -0.0087752976 -0.064707041 -0.015226086 -0.007735318 -0.066792712 -0.015237085 -0.0083572883 -0.065908067 -0.015206982 -0.0066383872 -0.067626782 -0.015243744 -0.0087752976 -0.064707041 -0.015225413 -0.008862217 0.067985021 -0.014971126 0.0065906551 -0.066775225 -0.015217421 -0.0084610507 0.069227114 -0.015203948 -0.0076799039 0.070301943 -0.015182748 -0.0065361955 0.071064845 -0.015182748 -0.0065361955 0.071064845 -0.015225413 -0.008862217 0.067985021 -0.015217421 -0.0084610507 0.069227114 -0.01502769 0.0022076129 0.073646538 -0.015008223 0.003304862 0.073577315 -0.014955218 0.0063072261 0.071005881 -0.014989447 0.0043622726 0.073237956 -0.014972995 0.0052954629 0.072563291 -0.015008223 0.003304862 0.073577315 -0.014962357 0.0058990368 0.071846716 -0.014955218 0.0063072261 0.071005881 -0.014972995 0.0052954629 0.072563291 -0.014971126 0.0065906551 -0.066775225 -0.014991173 0.0054780045 -0.06910231 -0.015058048 0.0017412961 -0.070171244 -0.015058048 0.0017412961 -0.070171244 -0.015128525 -0.002226362 -0.06907092 -0.014971126 0.0065906551 -0.066775225 -0.015237085 -0.0083572883 -0.065908067 -0.015243744 -0.0087752976 -0.064707041 -0.015206982 -0.0066383872 -0.067626782 -0.015182748 -0.0065361955 0.071064845 -0.015096646 -0.00171985 0.072616473 -0.015225413 -0.008862217 0.067985021 -0.015008223 0.003304862 0.073577315 -0.014972995 0.0052954629 0.072563291 -0.014955218 0.0063072261 0.071005881 -0.014951847 0.0065139923 0.070143402 -0.015225413 -0.008862217 0.067985021 -0.015096646 -0.00171985 0.072616473 -0.015128525 -0.002226362 -0.06907092 -0.015243744 -0.0087752976 -0.064707041 -0.014971126 0.0065906551 -0.066775225 -0.015096646 -0.00171985 0.072616473 -0.01502769 0.0022076129 0.073646538 -0.014951847 0.0065139923 0.070143402 0.0152685 -0.0089004459 -0.065912716 0.01527938 -0.0082784733 -0.066797368 0.015299083 -0.0071815532 -0.067631438 0.015299083 -0.0071815532 -0.067631438 0.0153773 -0.0027695238 -0.069075577 0.015260641 -0.0093184337 -0.06471169 0.015447777 0.0011981344 -0.070175894 0.015467411 0.0023018483 -0.070292249 0.015514293 0.0049348492 -0.069106959 0.015494725 0.0038460928 -0.069907971 0.015514293 0.0049348492 -0.069106959 0.015467411 0.0023018483 -0.070292249 0.015528976 0.0057462072 -0.067944556 0.015534578 0.0060474956 -0.066779882 0.015514293 0.0049348492 -0.069106959 0.015554337 0.0059708245 0.070138745 0.015550607 0.0057640648 0.071001232 0.015497481 0.0027617025 0.073572665 0.015543467 0.005355875 0.071842067 0.01553283 0.0047523011 0.072558641 0.015550607 0.0057640648 0.071001232 0.015516257 0.0038191131 0.073233299 0.015497481 0.0027617025 0.073572665 0.01553283 0.0047523011 0.072558641 0.015477895 0.0016644555 0.073641889 0.015554337 0.0059708245 0.070138745 0.015497481 0.0027617025 0.073572665 0.015320797 -0.0070793168 0.071060188 0.015301037 -0.0082230503 0.070297293 0.015286365 -0.0090041757 0.069222458 0.015286365 -0.0090041757 0.069222458 0.015279691 -0.0094053652 0.067980371 0.015320797 -0.0070793168 0.071060188 0.015260641 -0.0093184337 -0.06471169 0.0152685 -0.0089004459 -0.065912716 0.015299083 -0.0071815532 -0.067631438 0.0153773 -0.0027695238 -0.069075577 0.015447777 0.0011981344 -0.070175894 0.015534578 0.0060474956 -0.066779882 0.015514293 0.0049348492 -0.069106959 0.015534578 0.0060474956 -0.066779882 0.015447777 0.0011981344 -0.070175894 0.015550607 0.0057640648 0.071001232 0.01553283 0.0047523011 0.072558641 0.015497481 0.0027617025 0.073572665 0.015477895 0.0016644555 0.073641889 0.015406679 -0.0022629672 0.072611824 0.015554337 0.0059708245 0.070138745 0.015320797 -0.0070793168 0.071060188 0.015279691 -0.0094053652 0.067980371 0.015406679 -0.0022629672 0.072611824 0.015260641 -0.0093184337 -0.06471169 0.0153773 -0.0027695238 -0.069075577 0.015534578 0.0060474956 -0.066779882 0.015534578 0.0060474956 -0.066779882 0.015279691 -0.0094053652 0.067980371 0.015260641 -0.0093184337 -0.06471169 0.015406679 -0.0022629672 0.072611824 0.015279691 -0.0094053652 0.067980371 0.015554337 0.0059708245 0.070138745 + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125

+
+
+
+
+ + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + + + + + + + + + + + + + +
diff --git a/external/rlbench/urdfs/panda/meshes/Pandagrippervisual_vis_2.dae b/external/rlbench/urdfs/panda/meshes/Pandagrippervisual_vis_2.dae new file mode 100644 index 0000000000000000000000000000000000000000..706f0779c21519689c4e1f7277b8729677fd1403 --- /dev/null +++ b/external/rlbench/urdfs/panda/meshes/Pandagrippervisual_vis_2.dae @@ -0,0 +1,84 @@ + + + + + Assimp + Assimp Exporter + + 2023-09-26T11:24:21 + 2023-09-26T11:24:21 + + Y_UP + + + + + + + + 0 0 0 4.5895327e-41 + + + 0.1 0.1 0.1 4.5893926e-41 + + + 0.1 0.1 0.1 4.5893926e-41 + + + 0.25 0.25 0.25 -3.0261091e+37 + + + + + + + + + + + + + + + + -0.00012597565 -0.041266732 -0.053186774 8.5891763e-05 -0.039441913 -0.05398545 -0.0010851393 -0.040558603 -0.053985938 8.5891763e-05 -0.039441913 -0.05398545 -0.00012597565 -0.041266732 -0.053186774 0.0017358715 -0.038805332 -0.053185537 -0.00012597565 -0.041266732 -0.053186774 -0.0010851393 -0.040558603 -0.053985938 -0.0021041166 -0.041335166 -0.053186413 -0.0010851393 -0.040558603 -0.053985938 8.5891763e-05 -0.039441913 -0.05398545 -0.0037348287 -0.037759718 -0.053136282 -0.0010851393 -0.040558603 -0.053985938 -0.0044888686 -0.041400235 -0.053078465 -0.0021041166 -0.041335166 -0.053186413 -0.0043278062 -0.037518211 -0.086541489 0.0014512583 -0.03671081 -0.087088175 -0.0051625357 -0.039935458 -0.086636156 0.0019180669 -0.037019331 -0.053063579 -0.0011187327 -0.036234077 -0.05306492 -0.00044501206 -0.037864249 -0.049060956 -0.00012597565 -0.041266732 -0.053186774 0.002649643 -0.042814717 -0.053141374 0.00073038135 -0.041360449 -0.053186949 -0.0011187327 -0.036234077 -0.05306492 8.5891763e-05 -0.039441913 -0.05398545 -0.00044501206 -0.037864249 -0.049060956 8.5891763e-05 -0.039441913 -0.05398545 0.0019180669 -0.037019331 -0.053063579 -0.00044501206 -0.037864249 -0.049060956 8.5891763e-05 -0.039441913 -0.05398545 -0.0011187327 -0.036234077 -0.05306492 -0.0037348287 -0.037759718 -0.053136282 -0.00046799585 -0.04438559 -0.053074468 0.002649643 -0.042814717 -0.053141374 -0.0021041166 -0.041335166 -0.053186413 -0.0044888686 -0.041400235 -0.053078465 -0.0010851393 -0.040558603 -0.053985938 -0.0037348287 -0.037759718 -0.053136282 0.0017358715 -0.038805332 -0.053185537 0.0035389734 -0.040335428 -0.053093586 0.0019180669 -0.037019331 -0.053063579 0.00073038135 -0.041360449 -0.053186949 0.0035389734 -0.040335428 -0.053093586 0.0017358715 -0.038805332 -0.053185537 0.002649643 -0.042814717 -0.053141374 0.0035389734 -0.040335428 -0.053093586 0.00073038135 -0.041360449 -0.053186949 0.0017358715 -0.038805332 -0.053185537 0.0019180669 -0.037019331 -0.053063579 8.5891763e-05 -0.039441913 -0.05398545 0.00073038135 -0.041360449 -0.053186949 0.0017358715 -0.038805332 -0.053185537 -0.00012597565 -0.041266732 -0.053186774 -0.00040446458 -0.035631295 -0.086640298 0.0014512583 -0.03671081 -0.087088175 -0.0043278062 -0.037518211 -0.086541489 -0.00046799585 -0.04438559 -0.053074468 -0.0021041166 -0.041335166 -0.053186413 -0.0044888686 -0.041400235 -0.053078465 0.002649643 -0.042814717 -0.053141374 -0.00012597565 -0.041266732 -0.053186774 -0.0021041166 -0.041335166 -0.053186413 0.0035019938 -0.043217864 -0.050323743 0.002649643 -0.042814717 -0.053141374 -0.00017134291 -0.045234878 -0.050387822 0.0035389734 -0.040335428 -0.053093586 0.002649643 -0.042814717 -0.053141374 0.0035019938 -0.043217864 -0.050323743 0.0021659967 -0.03694842 -0.0504345 0.0035389734 -0.040335428 -0.053093586 0.0035019938 -0.043217864 -0.050323743 0.0019180669 -0.037019331 -0.053063579 0.0035389734 -0.040335428 -0.053093586 0.0021659967 -0.03694842 -0.0504345 0.002649643 -0.042814717 -0.053141374 -0.00046799585 -0.04438559 -0.053074468 -0.00017134291 -0.045234878 -0.050387822 -0.0033072066 -0.044553224 -0.04387448 -0.00020325737 -0.045305211 -0.043885376 -0.00046799585 -0.04438559 -0.053074468 -0.0051625357 -0.039935458 -0.086636156 0.0014512583 -0.03671081 -0.087088175 -0.0024704423 -0.043819703 -0.087105252 -0.0020480677 -0.044354659 -0.050437465 -0.0033072066 -0.044553224 -0.04387448 -0.00046799585 -0.04438559 -0.053074468 0.0021659967 -0.03694842 -0.0504345 0.0020200419 -0.03517713 -0.05038245 -0.0022133614 -0.035615534 -0.050392892 -0.0017693575 -0.036066774 -0.046198782 0.00069225801 -0.035463195 -0.04688742 0.0016823524 -0.03499978 -0.045722526 -0.0048019132 -0.044122569 -0.050380848 -0.0020480677 -0.044354659 -0.050437465 -0.0055181445 -0.040302441 -0.050358661 -0.0055181445 -0.040302441 -0.050358661 -0.0022133614 -0.035615534 -0.050392892 -0.0034180344 -0.036262877 -0.050396975 -0.0055181445 -0.040302441 -0.050358661 -0.0037348287 -0.037759718 -0.053136282 -0.0022133614 -0.035615534 -0.050392892 -0.0033796455 -0.035670768 -0.074169263 -0.00066391769 -0.034728881 -0.082048863 -0.0046548825 -0.036260273 -0.080011129 -0.0044888686 -0.041400235 -0.053078465 -0.0037348287 -0.037759718 -0.053136282 -0.0055181445 -0.040302441 -0.050358661 -0.0022133614 -0.035615534 -0.050392892 0.0019180669 -0.037019331 -0.053063579 0.0021659967 -0.03694842 -0.0504345 -0.0011187327 -0.036234077 -0.05306492 0.0019180669 -0.037019331 -0.053063579 -0.0022133614 -0.035615534 -0.050392892 -0.00046799585 -0.04438559 -0.053074468 -0.0044888686 -0.041400235 -0.053078465 -0.0055181445 -0.040302441 -0.050358661 -0.0020480677 -0.044354659 -0.050437465 -0.00046799585 -0.04438559 -0.053074468 -0.0055181445 -0.040302441 -0.050358661 -0.0037348287 -0.037759718 -0.053136282 -0.0011187327 -0.036234077 -0.05306492 -0.0022133614 -0.035615534 -0.050392892 0.0021367897 -0.045185484 -0.050329797 0.0035019938 -0.043217864 -0.050323743 -0.00017134291 -0.045234878 -0.050387822 0.0039119795 -0.037223283 -0.074177951 0.0051781111 -0.039851785 -0.079694346 0.0041810628 -0.037066601 -0.080246806 0.0041810628 -0.037066601 -0.080246806 0.0051781111 -0.039851785 -0.079694346 0.0040596919 -0.040609151 -0.086637683 -0.0043278062 -0.037518211 -0.086541489 -0.0046548825 -0.036260273 -0.080011129 -0.00040446458 -0.035631295 -0.086640298 0.0035019938 -0.043217864 -0.050323743 0.0048965462 -0.042067293 -0.050381232 0.0021659967 -0.03694842 -0.0504345 0.0016823524 -0.03499978 -0.045722526 -0.0015030054 -0.034651171 -0.04575602 -0.0017693575 -0.036066774 -0.046198782 0.00069225801 -0.035463195 -0.04688742 -0.0022133614 -0.035615534 -0.050392892 0.0020200419 -0.03517713 -0.05038245 -0.0022591334 -0.035577092 -0.04386818 -0.0032086333 -0.035110135 -0.043832604 -0.0034180344 -0.036262877 -0.050396975 -0.0022133614 -0.035615534 -0.050392892 -0.0022591334 -0.035577092 -0.04386818 -0.0034180344 -0.036262877 -0.050396975 -0.00020325737 -0.045305211 -0.043885376 -0.00017134291 -0.045234878 -0.050387822 -0.00046799585 -0.04438559 -0.053074468 -0.0015030054 -0.034651171 -0.04575602 0.002524022 -0.035450235 -0.045458801 0.0033241643 -0.037052602 -0.043851241 -0.0015030054 -0.034651171 -0.04575602 0.0033241643 -0.037052602 -0.043851241 -0.0022591334 -0.035577092 -0.04386818 0.00069225801 -0.035463195 -0.04688742 -0.0017693575 -0.036066774 -0.046198782 -0.0022133614 -0.035615534 -0.050392892 0.0016823524 -0.03499978 -0.045722526 0.00069225801 -0.035463195 -0.04688742 0.0020200419 -0.03517713 -0.05038245 -0.0046535381 -0.044310186 -0.045127038 -0.0055549904 -0.039596558 -0.043878231 -0.0033072066 -0.044553224 -0.04387448 -0.0055549904 -0.039596558 -0.043878231 -0.0034180344 -0.036262877 -0.050396975 -0.0032086333 -0.035110135 -0.043832604 -0.0055181445 -0.040302441 -0.050358661 -0.0034180344 -0.036262877 -0.050396975 -0.0055549904 -0.039596558 -0.043878231 -0.0020480677 -0.044354659 -0.050437465 -0.0048019132 -0.044122569 -0.050380848 -0.0033072066 -0.044553224 -0.04387448 -0.0062132594 -0.040814321 -0.045811653 -0.0049569225 -0.043950308 -0.045760799 -0.0048019132 -0.044122569 -0.050380848 -0.0046548825 -0.036260273 -0.080011129 -0.00066391769 -0.034728881 -0.082048863 -0.00040446458 -0.035631295 -0.086640298 -0.0055181445 -0.040302441 -0.050358661 -0.0062132594 -0.040814321 -0.045811653 -0.0048019132 -0.044122569 -0.050380848 0.0035019938 -0.043217864 -0.050323743 0.0047873557 -0.042430729 -0.045726784 0.0048965462 -0.042067293 -0.050381232 0.0029213096 -0.044871781 -0.045731284 0.0047873557 -0.042430729 -0.045726784 0.0035019938 -0.043217864 -0.050323743 0.0039119795 -0.037223283 -0.074177951 0.0048502614 -0.040401556 -0.074163966 0.0051781111 -0.039851785 -0.079694346 0.0021367897 -0.045185484 -0.050329797 0.0029213096 -0.044871781 -0.045731284 0.0035019938 -0.043217864 -0.050323743 0.0048774374 -0.041588046 -0.045572225 -0.00020325737 -0.045305211 -0.043885376 0.0044854917 -0.040849965 -0.043878905 0.0021367897 -0.045185484 -0.050329797 -0.00017134291 -0.045234878 -0.050387822 -0.00020325737 -0.045305211 -0.043885376 0.0017544386 -0.044744089 -0.045294382 0.0021367897 -0.045185484 -0.050329797 -0.00020325737 -0.045305211 -0.043885376 0.0044854917 -0.040849965 -0.043878905 0.0048965462 -0.042067293 -0.050381232 0.0048774374 -0.041588046 -0.045572225 0.0021659967 -0.03694842 -0.0504345 0.0048965462 -0.042067293 -0.050381232 0.0044854917 -0.040849965 -0.043878905 0.0033241643 -0.037052602 -0.043851241 0.0021659967 -0.03694842 -0.0504345 0.0044854917 -0.040849965 -0.043878905 0.0048774374 -0.041588046 -0.045572225 0.0017544386 -0.044744089 -0.045294382 -0.00020325737 -0.045305211 -0.043885376 0.0021659967 -0.03694842 -0.0504345 0.002524022 -0.035450235 -0.045458801 0.0020200419 -0.03517713 -0.05038245 0.0021659967 -0.03694842 -0.0504345 0.0033241643 -0.037052602 -0.043851241 0.002524022 -0.035450235 -0.045458801 -0.0015030054 -0.034651171 -0.04575602 -0.0022591334 -0.035577092 -0.04386818 -0.0022133614 -0.035615534 -0.050392892 -0.0022133614 -0.035615534 -0.050392892 -0.0017693575 -0.036066774 -0.046198782 -0.0015030054 -0.034651171 -0.04575602 -0.0055549904 -0.039596558 -0.043878231 -0.0062763602 -0.040104818 -0.045383982 -0.0055181445 -0.040302441 -0.050358661 -0.0055549904 -0.039596558 -0.043878231 -0.0046535381 -0.044310186 -0.045127038 -0.0062763602 -0.040104818 -0.045383982 -0.0046535381 -0.044310186 -0.045127038 -0.0033072066 -0.044553224 -0.04387448 -0.0048019132 -0.044122569 -0.050380848 -0.0062763602 -0.040104818 -0.045383982 -0.0062132594 -0.040814321 -0.045811653 -0.0055181445 -0.040302441 -0.050358661 0.0017544386 -0.044744089 -0.045294382 0.0018931511 -0.045533866 -0.043839466 0.0021367897 -0.045185484 -0.050329797 0.0043346426 -0.037185568 -0.043834955 0.0046318793 -0.03847016 -0.060937516 0.0034394579 -0.036663201 -0.061733976 0.0018931511 -0.045533866 -0.043839466 0.0044854917 -0.040849965 -0.043878905 -0.00020325737 -0.045305211 -0.043885376 0.0018931511 -0.045533866 -0.043839466 0.0051741675 -0.039408173 -0.043836463 0.0044854917 -0.040849965 -0.043878905 -0.0021582039 -0.045855913 -0.043839168 -0.0033072066 -0.044553224 -0.04387448 -0.0062409537 -0.039229412 -0.043834586 -0.0033072066 -0.044553224 -0.04387448 -0.0055549904 -0.039596558 -0.043878231 -0.0062409537 -0.039229412 -0.043834586 0.0044854917 -0.040849965 -0.043878905 0.0051741675 -0.039408173 -0.043836463 0.0033241643 -0.037052602 -0.043851241 0.0051741675 -0.039408173 -0.043836463 0.0043346426 -0.037185568 -0.043834955 0.0033241643 -0.037052602 -0.043851241 -0.0055549904 -0.039596558 -0.043878231 -0.0053121503 -0.037023805 -0.043833517 -0.0062409537 -0.039229412 -0.043834586 -0.0055549904 -0.039596558 -0.043878231 -0.0032086333 -0.035110135 -0.043832604 -0.0053121503 -0.037023805 -0.043833517 0.0033241643 -0.037052602 -0.043851241 0.0043346426 -0.037185568 -0.043834955 -0.0032086333 -0.035110135 -0.043832604 -0.00066391769 -0.034728881 -0.082048863 0.0021734883 -0.035444684 -0.082041763 -0.00040446458 -0.035631295 -0.086640298 0.0033241643 -0.037052602 -0.043851241 -0.0032086333 -0.035110135 -0.043832604 -0.0022591334 -0.035577092 -0.04386818 0.0018931511 -0.045533866 -0.043839466 -0.00020325737 -0.045305211 -0.043885376 -0.0021582039 -0.045855913 -0.043839168 -0.0021582039 -0.045855913 -0.043839168 -0.00020325737 -0.045305211 -0.043885376 -0.0033072066 -0.044553224 -0.04387448 0.0051781111 -0.039851785 -0.079694346 0.0041519534 -0.042709295 -0.083939999 0.0040596919 -0.040609151 -0.086637683 0.0048774374 -0.041588046 -0.045572225 0.0018931511 -0.045533866 -0.043839466 0.0017544386 -0.044744089 -0.045294382 -0.0062132594 -0.040814321 -0.045811653 -0.0062763602 -0.040104818 -0.045383982 -0.0056583243 -0.042294145 -0.060930423 -0.0062409537 -0.039229412 -0.043834586 -0.0053121503 -0.037023805 -0.043833517 -0.0062763602 -0.040104818 -0.045383982 -0.0053121503 -0.037023805 -0.043833517 -0.0032086333 -0.035110135 -0.043832604 -0.004217214 -0.036220651 -0.060934044 0.0048502614 -0.040401556 -0.074163966 0.0041519534 -0.042709295 -0.083939999 0.0051781111 -0.039851785 -0.079694346 -0.0032086333 -0.035110135 -0.043832604 -0.0019417196 -0.034990489 -0.060938537 -0.004217214 -0.036220651 -0.060934044 -0.0032086333 -0.035110135 -0.043832604 -0.0015030054 -0.034651171 -0.04575602 -0.0019417196 -0.034990489 -0.060938537 -0.0049569225 -0.043950308 -0.045760799 -0.0062132594 -0.040814321 -0.045811653 -0.0056583243 -0.042294145 -0.060930423 -0.0046535381 -0.044310186 -0.045127038 -0.0021582039 -0.045855913 -0.043839168 -0.0062409537 -0.039229412 -0.043834586 -0.0062763602 -0.040104818 -0.045383982 -0.0046535381 -0.044310186 -0.045127038 -0.0062409537 -0.039229412 -0.043834586 -0.0015030054 -0.034651171 -0.04575602 0.0016823524 -0.03499978 -0.045722526 0.00086894108 -0.034981895 -0.060930885 0.002524022 -0.035450235 -0.045458801 -0.0015030054 -0.034651171 -0.04575602 0.0043346426 -0.037185568 -0.043834955 -0.0021582039 -0.045855913 -0.043839168 -0.0046535381 -0.044310186 -0.045127038 -0.0048019132 -0.044122569 -0.050380848 -0.0021582039 -0.045855913 -0.043839168 -0.0048019132 -0.044122569 -0.050380848 -0.0041562938 -0.044425514 -0.060938504 -0.0033796455 -0.035670768 -0.074169263 0.0018903097 -0.03546102 -0.074161217 -0.00066391769 -0.034728881 -0.082048863 -0.0015030054 -0.034651171 -0.04575602 0.00086894108 -0.034981895 -0.060930885 -0.0019417196 -0.034990489 -0.060938537 -0.0032086333 -0.035110135 -0.043832604 0.0043346426 -0.037185568 -0.043834955 -0.0015030054 -0.034651171 -0.04575602 0.0016823524 -0.03499978 -0.045722526 0.0020200419 -0.03517713 -0.05038245 0.00086894108 -0.034981895 -0.060930885 -0.0049569225 -0.043950308 -0.045760799 -0.0041562938 -0.044425514 -0.060938504 -0.0048019132 -0.044122569 -0.050380848 -0.0049569225 -0.043950308 -0.045760799 -0.0056583243 -0.042294145 -0.060930423 -0.0041562938 -0.044425514 -0.060938504 -0.0056583243 -0.042294145 -0.060930423 -0.0053121503 -0.037023805 -0.043833517 -0.004217214 -0.036220651 -0.060934044 -0.0062763602 -0.040104818 -0.045383982 -0.0053121503 -0.037023805 -0.043833517 -0.0056583243 -0.042294145 -0.060930423 -0.0041562938 -0.044425514 -0.060938504 -0.0056583243 -0.042294145 -0.060930423 -0.0017571562 -0.045543727 -0.061736234 0.00086894108 -0.034981895 -0.060930885 0.0034394579 -0.036663201 -0.061733976 -0.0019417196 -0.034990489 -0.060938537 -0.0054457802 -0.041879799 -0.063632183 -0.0056583243 -0.042294145 -0.060930423 -0.0049032629 -0.037741352 -0.064437449 0.0045969584 -0.041914418 -0.061745502 0.0020042416 -0.045162991 -0.060929887 0.00176971 -0.044885825 -0.063641615 0.0021734883 -0.035444684 -0.082041763 0.0014512583 -0.03671081 -0.087088175 -0.00040446458 -0.035631295 -0.086640298 -0.0017571562 -0.045543727 -0.061736234 -0.0056583243 -0.042294145 -0.060930423 -0.0054457802 -0.041879799 -0.063632183 -0.004217214 -0.036220651 -0.060934044 -0.0049032629 -0.037741352 -0.064437449 -0.0056583243 -0.042294145 -0.060930423 -0.0017571562 -0.045543727 -0.061736234 -0.0054457802 -0.041879799 -0.063632183 -0.0026867795 -0.044963323 -0.063637391 -0.004217214 -0.036220651 -0.060934044 -0.0022909103 -0.035451256 -0.063632764 -0.0049032629 -0.037741352 -0.064437449 -0.0054457802 -0.041879799 -0.063632183 -0.0053416118 -0.040785324 -0.067150228 -0.0044452935 -0.043218542 -0.066338234 0.0013847534 -0.035594579 -0.064438216 0.00061372039 -0.035617303 -0.067151263 -0.0022909103 -0.035451256 -0.063632764 -0.0022909103 -0.035451256 -0.063632764 0.00061372039 -0.035617303 -0.067151263 -0.002503644 -0.035834715 -0.067139864 -0.0054457802 -0.041879799 -0.063632183 -0.0044452935 -0.043218542 -0.066338234 -0.0026867795 -0.044963323 -0.063637391 -0.0026867795 -0.044963323 -0.063637391 -0.0044452935 -0.043218542 -0.066338234 -0.0015025516 -0.045047667 -0.066335849 -0.0022909103 -0.035451256 -0.063632764 -0.002503644 -0.035834715 -0.067139864 -0.0049032629 -0.037741352 -0.064437449 -0.00066391769 -0.034728881 -0.082048863 0.0018903097 -0.03546102 -0.074161217 0.0021734883 -0.035444684 -0.082041763 -0.0049032629 -0.037741352 -0.064437449 -0.002503644 -0.035834715 -0.067139864 -0.0053416118 -0.040785324 -0.067150228 -0.0049032629 -0.037741352 -0.064437449 -0.0053416118 -0.040785324 -0.067150228 -0.0054457802 -0.041879799 -0.063632183 0.0048502614 -0.040401556 -0.074163966 0.0040286928 -0.043140177 -0.074160032 0.0041519534 -0.042709295 -0.083939999 -0.0053416118 -0.040785324 -0.067150228 -0.0041211667 -0.037148535 -0.069020331 -0.0051256591 -0.038986001 -0.069847025 0.0038144421 -0.038375832 -0.069847167 -0.0013515195 -0.035545874 -0.06983044 0.00061372039 -0.035617303 -0.067151263 -0.0053416118 -0.040785324 -0.067150228 -0.0051256591 -0.038986001 -0.069847025 -0.0043447181 -0.043174945 -0.069037691 0.00061372039 -0.035617303 -0.067151263 -0.0013515195 -0.035545874 -0.06983044 -0.002503644 -0.035834715 -0.067139864 -0.0053416118 -0.040785324 -0.067150228 -0.0043447181 -0.043174945 -0.069037691 -0.0044452935 -0.043218542 -0.066338234 -0.002503644 -0.035834715 -0.067139864 -0.0013515195 -0.035545874 -0.06983044 -0.0041211667 -0.037148535 -0.069020331 -0.002503644 -0.035834715 -0.067139864 -0.0041211667 -0.037148535 -0.069020331 -0.0053416118 -0.040785324 -0.067150228 -0.0049646054 -0.037180912 -0.074152015 -0.0051256591 -0.038986001 -0.069847025 -0.0041211667 -0.037148535 -0.069020331 -0.0049646054 -0.037180912 -0.074152015 -0.0059498968 -0.040372692 -0.074159913 -0.0051256591 -0.038986001 -0.069847025 0.0018903097 -0.03546102 -0.074161217 -0.0033796455 -0.035670768 -0.074169263 -0.0013515195 -0.035545874 -0.06983044 -0.0059498968 -0.040372692 -0.074159913 -0.0043447181 -0.043174945 -0.069037691 -0.0051256591 -0.038986001 -0.069847025 -0.0033796455 -0.035670768 -0.074169263 -0.0049646054 -0.037180912 -0.074152015 -0.0013515195 -0.035545874 -0.06983044 -0.0059498968 -0.040372692 -0.074159913 -0.0052420502 -0.042954691 -0.074163787 -0.0043447181 -0.043174945 -0.069037691 -0.0049646054 -0.037180912 -0.074152015 -0.0041211667 -0.037148535 -0.069020331 -0.0013515195 -0.035545874 -0.06983044 0.0041810628 -0.037066601 -0.080246806 0.0021734883 -0.035444684 -0.082041763 0.0018903097 -0.03546102 -0.074161217 -0.0049646054 -0.037180912 -0.074152015 -0.0043278062 -0.037518211 -0.086541489 -0.0061435276 -0.039199505 -0.080785416 -0.0046548825 -0.036260273 -0.080011129 -0.0043278062 -0.037518211 -0.086541489 -0.0049646054 -0.037180912 -0.074152015 0.0051741675 -0.039408173 -0.043836463 0.0046318793 -0.03847016 -0.060937516 0.0043346426 -0.037185568 -0.043834955 0.0051741675 -0.039408173 -0.043836463 0.0048774374 -0.041588046 -0.045572225 0.0048965462 -0.042067293 -0.050381232 0.0051741675 -0.039408173 -0.043836463 0.0048965462 -0.042067293 -0.050381232 0.0046318793 -0.03847016 -0.060937516 0.0051741675 -0.039408173 -0.043836463 0.0018931511 -0.045533866 -0.043839466 0.0048774374 -0.041588046 -0.045572225 0.0029213096 -0.044871781 -0.045731284 0.0020042416 -0.045162991 -0.060929887 0.0048965462 -0.042067293 -0.050381232 0.0029213096 -0.044871781 -0.045731284 0.0021367897 -0.045185484 -0.050329797 0.0020042416 -0.045162991 -0.060929887 0.0021367897 -0.045185484 -0.050329797 0.0018931511 -0.045533866 -0.043839466 0.0020042416 -0.045162991 -0.060929887 0.0018931511 -0.045533866 -0.043839466 -0.0021582039 -0.045855913 -0.043839168 0.0020042416 -0.045162991 -0.060929887 -0.0021582039 -0.045855913 -0.043839168 -0.0017571562 -0.045543727 -0.061736234 0.0020042416 -0.045162991 -0.060929887 0.0047873557 -0.042430729 -0.045726784 0.0029213096 -0.044871781 -0.045731284 0.0048965462 -0.042067293 -0.050381232 0.0043346426 -0.037185568 -0.043834955 0.0020200419 -0.03517713 -0.05038245 0.002524022 -0.035450235 -0.045458801 -0.0021582039 -0.045855913 -0.043839168 -0.0041562938 -0.044425514 -0.060938504 -0.0017571562 -0.045543727 -0.061736234 0.0046318793 -0.03847016 -0.060937516 0.0048965462 -0.042067293 -0.050381232 0.0045969584 -0.041914418 -0.061745502 0.0020200419 -0.03517713 -0.05038245 0.0043346426 -0.037185568 -0.043834955 0.0034394579 -0.036663201 -0.061733976 0.00086894108 -0.034981895 -0.060930885 0.0020200419 -0.03517713 -0.05038245 0.0034394579 -0.036663201 -0.061733976 0.0045969584 -0.041914418 -0.061745502 0.0048965462 -0.042067293 -0.050381232 0.0020042416 -0.045162991 -0.060929887 0.0046318793 -0.03847016 -0.060937516 0.0045969584 -0.041914418 -0.061745502 0.0034394579 -0.036663201 -0.061733976 0.0045969584 -0.041914418 -0.061745502 0.0046107844 -0.040376775 -0.063631453 0.0034394579 -0.036663201 -0.061733976 -0.004217214 -0.036220651 -0.060934044 -0.0019417196 -0.034990489 -0.060938537 -0.0022909103 -0.035451256 -0.063632764 0.0013847534 -0.035594579 -0.064438216 0.0034394579 -0.036663201 -0.061733976 0.0046107844 -0.040376775 -0.063631453 -0.0022909103 -0.035451256 -0.063632764 0.0034394579 -0.036663201 -0.061733976 0.0013847534 -0.035594579 -0.064438216 0.0034394579 -0.036663201 -0.061733976 -0.0022909103 -0.035451256 -0.063632764 -0.0019417196 -0.034990489 -0.060938537 0.0045969584 -0.041914418 -0.061745502 0.00176971 -0.044885825 -0.063641615 0.0046107844 -0.040376775 -0.063631453 -0.0017571562 -0.045543727 -0.061736234 -0.0026867795 -0.044963323 -0.063637391 0.00176971 -0.044885825 -0.063641615 -0.0017571562 -0.045543727 -0.061736234 0.00176971 -0.044885825 -0.063641615 0.0020042416 -0.045162991 -0.060929887 -0.0026867795 -0.044963323 -0.063637391 -0.0015025516 -0.045047667 -0.066335849 0.00176971 -0.044885825 -0.063641615 0.0046107844 -0.040376775 -0.063631453 0.0042141397 -0.039369043 -0.067155614 0.0013847534 -0.035594579 -0.064438216 0.00176971 -0.044885825 -0.063641615 -0.0015025516 -0.045047667 -0.066335849 0.0023532554 -0.044110067 -0.067148201 0.0013847534 -0.035594579 -0.064438216 0.0042141397 -0.039369043 -0.067155614 0.00061372039 -0.035617303 -0.067151263 0.00176971 -0.044885825 -0.063641615 0.0023532554 -0.044110067 -0.067148201 0.0042141397 -0.039369043 -0.067155614 0.00176971 -0.044885825 -0.063641615 0.0042141397 -0.039369043 -0.067155614 0.0046107844 -0.040376775 -0.063631453 0.0042141397 -0.039369043 -0.067155614 0.0040661958 -0.041469667 -0.069024622 0.0038144421 -0.038375832 -0.069847167 -0.0015025516 -0.045047667 -0.066335849 -0.0019434753 -0.04484478 -0.069028012 0.0010702062 -0.044743396 -0.069851249 0.0021734883 -0.035444684 -0.082041763 0.0041810628 -0.037066601 -0.080246806 0.0014512583 -0.03671081 -0.087088175 -0.0015025516 -0.045047667 -0.066335849 0.0010702062 -0.044743396 -0.069851249 0.0023532554 -0.044110067 -0.067148201 0.0042141397 -0.039369043 -0.067155614 0.0038144421 -0.038375832 -0.069847167 0.00061372039 -0.035617303 -0.067151263 0.0023532554 -0.044110067 -0.067148201 0.0010702062 -0.044743396 -0.069851249 0.0040661958 -0.041469667 -0.069024622 0.0023532554 -0.044110067 -0.067148201 0.0040661958 -0.041469667 -0.069024622 0.0042141397 -0.039369043 -0.067155614 -0.0043447181 -0.043174945 -0.069037691 -0.0019434753 -0.04484478 -0.069028012 -0.0044452935 -0.043218542 -0.066338234 -0.0044452935 -0.043218542 -0.066338234 -0.0019434753 -0.04484478 -0.069028012 -0.0015025516 -0.045047667 -0.066335849 0.0020527502 -0.045026757 -0.074194863 0.0040661958 -0.041469667 -0.069024622 0.0010702062 -0.044743396 -0.069851249 0.0020527502 -0.045026757 -0.074194863 0.0048502614 -0.040401556 -0.074163966 0.0040661958 -0.041469667 -0.069024622 0.0039119795 -0.037223283 -0.074177951 0.0041810628 -0.037066601 -0.080246806 0.0018903097 -0.03546102 -0.074161217 -0.0052420502 -0.042954691 -0.074163787 -0.0019434753 -0.04484478 -0.069028012 -0.0043447181 -0.043174945 -0.069037691 -0.0052420502 -0.042954691 -0.074163787 -0.00015842859 -0.045670047 -0.074160114 -0.0019434753 -0.04484478 -0.069028012 -0.0049646054 -0.037180912 -0.074152015 -0.0033796455 -0.035670768 -0.074169263 -0.0046548825 -0.036260273 -0.080011129 -0.00015842859 -0.045670047 -0.074160114 0.0010702062 -0.044743396 -0.069851249 -0.0019434753 -0.04484478 -0.069028012 0.0048502614 -0.040401556 -0.074163966 0.0038144421 -0.038375832 -0.069847167 0.0040661958 -0.041469667 -0.069024622 0.0048502614 -0.040401556 -0.074163966 0.0039119795 -0.037223283 -0.074177951 0.0038144421 -0.038375832 -0.069847167 0.0039119795 -0.037223283 -0.074177951 0.0018903097 -0.03546102 -0.074161217 0.0038144421 -0.038375832 -0.069847167 0.0018903097 -0.03546102 -0.074161217 -0.0013515195 -0.035545874 -0.06983044 0.0038144421 -0.038375832 -0.069847167 -0.00015842859 -0.045670047 -0.074160114 0.0020527502 -0.045026757 -0.074194863 0.0010702062 -0.044743396 -0.069851249 0.0040286928 -0.043140177 -0.074160032 0.0048502614 -0.040401556 -0.074163966 0.0020527502 -0.045026757 -0.074194863 0.0040596919 -0.040609151 -0.086637683 -0.0024704423 -0.043819703 -0.087105252 0.0014512583 -0.03671081 -0.087088175 0.00086095487 -0.044732906 -0.086533248 -0.0024704423 -0.043819703 -0.087105252 0.0040596919 -0.040609151 -0.086637683 -0.0033219643 -0.045081347 -0.082061522 -0.0052420502 -0.042954691 -0.074163787 -0.0053386982 -0.043067716 -0.082155548 0.0040286928 -0.043140177 -0.074160032 0.0020527502 -0.045026757 -0.074194863 0.0025089076 -0.044990748 -0.081579506 -0.0033219643 -0.045081347 -0.082061522 -0.0053386982 -0.043067716 -0.082155548 -0.0024704423 -0.043819703 -0.087105252 -0.0052420502 -0.042954691 -0.074163787 -0.0033219643 -0.045081347 -0.082061522 -0.00015842859 -0.045670047 -0.074160114 0.0040596919 -0.040609151 -0.086637683 0.0025089076 -0.044990748 -0.081579506 0.00086095487 -0.044732906 -0.086533248 0.0040286928 -0.043140177 -0.074160032 0.0025089076 -0.044990748 -0.081579506 0.0041519534 -0.042709295 -0.083939999 -0.0059498968 -0.040372692 -0.074159913 -0.0049646054 -0.037180912 -0.074152015 -0.0061435276 -0.039199505 -0.080785416 0.0041519534 -0.042709295 -0.083939999 0.0025089076 -0.044990748 -0.081579506 0.0040596919 -0.040609151 -0.086637683 -0.0061435276 -0.039199505 -0.080785416 -0.0043278062 -0.037518211 -0.086541489 -0.0051625357 -0.039935458 -0.086636156 0.00086095487 -0.044732906 -0.086533248 -0.0033219643 -0.045081347 -0.082061522 -0.0024704423 -0.043819703 -0.087105252 -0.00015842859 -0.045670047 -0.074160114 -0.0033219643 -0.045081347 -0.082061522 0.00055418949 -0.045877926 -0.08062461 0.00055418949 -0.045877926 -0.08062461 -0.0033219643 -0.045081347 -0.082061522 0.00086095487 -0.044732906 -0.086533248 0.0020527502 -0.045026757 -0.074194863 -0.00015842859 -0.045670047 -0.074160114 0.00055418949 -0.045877926 -0.08062461 0.0014512583 -0.03671081 -0.087088175 0.0041810628 -0.037066601 -0.080246806 0.0040596919 -0.040609151 -0.086637683 -0.0053386982 -0.043067716 -0.082155548 -0.0061435276 -0.039199505 -0.080785416 -0.0051625357 -0.039935458 -0.086636156 -0.0052420502 -0.042954691 -0.074163787 -0.0059498968 -0.040372692 -0.074159913 -0.0061435276 -0.039199505 -0.080785416 0.0020527502 -0.045026757 -0.074194863 0.00055418949 -0.045877926 -0.08062461 0.0025089076 -0.044990748 -0.081579506 -0.0052420502 -0.042954691 -0.074163787 -0.0061435276 -0.039199505 -0.080785416 -0.0053386982 -0.043067716 -0.082155548 0.0025089076 -0.044990748 -0.081579506 0.00055418949 -0.045877926 -0.08062461 0.00086095487 -0.044732906 -0.086533248 -0.0024704423 -0.043819703 -0.087105252 -0.0053386982 -0.043067716 -0.082155548 -0.0051625357 -0.039935458 -0.086636156 + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689

+
+
+
+
+ + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + + + + + + + + + + + + + +
diff --git a/external/rlbench/urdfs/panda/meshes/Pandagrippervisual_vis_3.dae b/external/rlbench/urdfs/panda/meshes/Pandagrippervisual_vis_3.dae new file mode 100644 index 0000000000000000000000000000000000000000..aab761b559df15e98f1808bd76d88903c90641ef --- /dev/null +++ b/external/rlbench/urdfs/panda/meshes/Pandagrippervisual_vis_3.dae @@ -0,0 +1,84 @@ + + + + + Assimp + Assimp Exporter + + 2023-09-26T11:24:21 + 2023-09-26T11:24:21 + + Y_UP + + + + + + + + 0 0 0 4.5895327e-41 + + + 0.1 0.1 0.1 4.5893926e-41 + + + 0.1 0.1 0.1 4.5893926e-41 + + + 0.25 0.25 0.25 3.6295857e-33 + + + + + + + + + + + + + + + + 0.0020971261 -0.0038553688 -0.094717212 0.00084001501 -0.0075557027 -0.10030085 0.00030093081 -0.001408558 -0.095176749 -0.00086881337 -0.042347867 -0.07934317 0.0014067062 -0.040855166 -0.079342619 -0.00079492736 -0.038198184 -0.079340748 -0.00011129861 -0.038271081 -0.086434975 -0.00079492736 -0.038198184 -0.079340748 0.0014067062 -0.040855166 -0.079342619 -0.00011129861 -0.038271081 -0.086434975 -0.0014769809 -0.03697795 -0.097350433 -0.00079492736 -0.038198184 -0.079340748 -0.0014769809 -0.03697795 -0.097350433 -0.00086881337 -0.042347867 -0.07934317 -0.00079492736 -0.038198184 -0.079340748 0.0014733821 -0.039077252 -0.091866009 -0.00011129861 -0.038271081 -0.086434975 0.0014067062 -0.040855166 -0.079342619 -0.00086881337 -0.042347867 -0.07934317 -0.00074101629 -0.041603442 -0.090126723 0.0014067062 -0.040855166 -0.079342619 0.0014733821 -0.039077252 -0.091866009 0.0011131961 -0.031484973 -0.10048833 0.0008732861 -0.035033219 -0.094674632 0.00020666326 -0.034345593 -0.099627875 -0.001969706 -0.033261728 -0.099569626 0.0011131961 -0.031484973 -0.10048833 0.0008732861 -0.035033219 -0.094674632 0.0011131961 -0.031484973 -0.10048833 0.00098431366 -0.02659148 -0.098730236 -0.00074101629 -0.041603442 -0.090126723 0.0014733821 -0.039077252 -0.091866009 0.0014067062 -0.040855166 -0.079342619 -0.001969706 -0.033261728 -0.099569626 0.0010162871 -0.026749723 -0.10181562 0.0011131961 -0.031484973 -0.10048833 -0.00074101629 -0.041603442 -0.090126723 0.00020666326 -0.034345593 -0.099627875 0.0014733821 -0.039077252 -0.091866009 -0.001656043 -0.026668344 -0.10180011 0.0010162871 -0.026749723 -0.10181562 -0.001969706 -0.033261728 -0.099569626 -0.0014769809 -0.03697795 -0.097350433 0.00020666326 -0.034345593 -0.099627875 -0.00074101629 -0.041603442 -0.090126723 0.0014733821 -0.039077252 -0.091866009 -0.0014289875 -0.035657637 -0.093550347 -0.00011129861 -0.038271081 -0.086434975 -0.0014289875 -0.035657637 -0.093550347 -0.0023468875 -0.027633857 -0.1003302 -0.001969706 -0.033261728 -0.099569626 0.0014733821 -0.039077252 -0.091866009 0.0008732861 -0.035033219 -0.094674632 -0.0014289875 -0.035657637 -0.093550347 0.0014733821 -0.039077252 -0.091866009 0.00020666326 -0.034345593 -0.099627875 0.0011131961 -0.031484973 -0.10048833 0.0019964639 -0.0091878716 -0.099362396 0.00094017369 -0.011453598 -0.098029263 0.00098431366 -0.02659148 -0.098730236 0.00094017369 -0.011453598 -0.098029263 -0.0014341684 -0.026532095 -0.098614372 0.00098431366 -0.02659148 -0.098730236 0.00094017369 -0.011453598 -0.098029263 -0.0020374169 -0.011030057 -0.099695586 -0.0014341684 -0.026532095 -0.098614372 -0.0020374169 -0.011030057 -0.099695586 -0.0023468875 -0.027633857 -0.1003302 -0.0014341684 -0.026532095 -0.098614372 0.0019964639 -0.0091878716 -0.099362396 0.00098431366 -0.02659148 -0.098730236 0.0011131961 -0.031484973 -0.10048833 0.00030093081 -0.001408558 -0.095176749 -0.0020374169 -0.011030057 -0.099695586 -0.001858262 -0.0042029181 -0.094552882 0.00030093081 -0.001408558 -0.095176749 0.00084001501 -0.0075557027 -0.10030085 -0.0020374169 -0.011030057 -0.099695586 0.00084001501 -0.0075557027 -0.10030085 0.00019764823 -0.013784488 -0.10227312 -0.0020374169 -0.011030057 -0.099695586 0.00030093081 -0.001408558 -0.095176749 -0.001858262 -0.0042029181 -0.094552882 0.0020971261 -0.0038553688 -0.094717212 -0.0023468875 -0.027633857 -0.1003302 -0.001656043 -0.026668344 -0.10180011 -0.001969706 -0.033261728 -0.099569626 -0.001858262 -0.0042029181 -0.094552882 -0.0020374169 -0.011030057 -0.099695586 0.00094017369 -0.011453598 -0.098029263 0.00019764823 -0.013784488 -0.10227312 0.0010162871 -0.026749723 -0.10181562 -0.001656043 -0.026668344 -0.10180011 0.00019764823 -0.013784488 -0.10227312 0.0019964639 -0.0091878716 -0.099362396 0.0010162871 -0.026749723 -0.10181562 0.0019964639 -0.0091878716 -0.099362396 0.0011131961 -0.031484973 -0.10048833 0.0010162871 -0.026749723 -0.10181562 -0.0014289875 -0.035657637 -0.093550347 -0.001969706 -0.033261728 -0.099569626 -0.0014769809 -0.03697795 -0.097350433 -0.0020374169 -0.011030057 -0.099695586 -0.001656043 -0.026668344 -0.10180011 -0.0023468875 -0.027633857 -0.1003302 -0.0020374169 -0.011030057 -0.099695586 0.00019764823 -0.013784488 -0.10227312 -0.001656043 -0.026668344 -0.10180011 -0.0014769809 -0.03697795 -0.097350433 -0.002074668 -0.041560143 -0.08674597 -0.00086881337 -0.042347867 -0.07934317 -0.002074668 -0.041560143 -0.08674597 -0.0014769809 -0.03697795 -0.097350433 -0.00074101629 -0.041603442 -0.090126723 0.0020971261 -0.0038553688 -0.094717212 0.0019964639 -0.0091878716 -0.099362396 0.00084001501 -0.0075557027 -0.10030085 0.0020971261 -0.0038553688 -0.094717212 0.00094017369 -0.011453598 -0.098029263 0.0019964639 -0.0091878716 -0.099362396 0.00084001501 -0.0075557027 -0.10030085 0.0019964639 -0.0091878716 -0.099362396 0.00019764823 -0.013784488 -0.10227312 -0.001858262 -0.0042029181 -0.094552882 0.00094017369 -0.011453598 -0.098029263 0.0020971261 -0.0038553688 -0.094717212 -0.00011129861 -0.038271081 -0.086434975 -0.0014289875 -0.035657637 -0.093550347 -0.0014769809 -0.03697795 -0.097350433 0.0008732861 -0.035033219 -0.094674632 -0.0023468875 -0.027633857 -0.1003302 -0.0014289875 -0.035657637 -0.093550347 -0.0014341684 -0.026532095 -0.098614372 0.0008732861 -0.035033219 -0.094674632 0.00098431366 -0.02659148 -0.098730236 0.0008732861 -0.035033219 -0.094674632 -0.0014341684 -0.026532095 -0.098614372 -0.0023468875 -0.027633857 -0.1003302 -0.0014769809 -0.03697795 -0.097350433 -0.001969706 -0.033261728 -0.099569626 0.00020666326 -0.034345593 -0.099627875 -0.002074668 -0.041560143 -0.08674597 -0.00074101629 -0.041603442 -0.090126723 -0.00086881337 -0.042347867 -0.07934317 + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143

+
+
+
+
+ + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + + + + + + + + + + + + + +
diff --git a/external/rlbench/urdfs/panda/meshes/Pandagrippervisual_vis_4.dae b/external/rlbench/urdfs/panda/meshes/Pandagrippervisual_vis_4.dae new file mode 100644 index 0000000000000000000000000000000000000000..fd17252d5772ecfa7dfa794d86a13be251588e02 --- /dev/null +++ b/external/rlbench/urdfs/panda/meshes/Pandagrippervisual_vis_4.dae @@ -0,0 +1,84 @@ + + + + + Assimp + Assimp Exporter + + 2023-09-26T11:24:21 + 2023-09-26T11:24:21 + + Y_UP + + + + + + + + 0 0 0 4.5895327e-41 + + + 0.69999999 0.69999999 0.69999999 4.5893926e-41 + + + 0.69999999 0.69999999 0.69999999 4.5893926e-41 + + + 0.25 0.25 0.25 -3.0261091e+37 + + + + + + + + + + + + + + + + 0.014044141 -0.01939049 -0.027565373 -0.0048627257 -0.019052915 -0.029575901 0.01250343 -0.019361181 -0.030884014 0.0045390832 -0.01925681 0.032916602 -0.012827424 -0.018948194 0.034224804 -0.014367716 -0.018918788 0.03090612 -0.0019739608 -0.022632057 0.016390176 0.0014082367 -0.021697111 0.017413983 -0.0076741958 -0.021519944 0.015579049 -0.0019739608 -0.022632057 0.016390176 -0.0076741958 -0.021519944 0.015579049 -0.013069062 -0.022430027 0.0090668192 -0.015563753 -0.021378808 -0.0019835541 -0.011586138 -0.022446319 -0.0078094611 -0.014734905 -0.022397544 0.0045855204 -0.015563753 -0.021378808 -0.0019835541 -0.010088944 -0.021463737 -0.010624137 -0.011586138 -0.022446319 -0.0078094611 -0.011586138 -0.022446319 -0.0078094611 -0.010088944 -0.021463737 -0.010624137 -0.0023410765 -0.022608349 -0.012999903 0.0045390832 -0.01925681 0.032916602 -0.014367716 -0.018918788 0.03090612 -0.00017535679 -0.020172777 0.032304641 0.0014082367 -0.021697111 0.017413983 -0.0019739608 -0.022632057 0.016390176 0.012623056 -0.022887329 0.0090628807 0.012623056 -0.022887329 0.0090628807 0.012195589 -0.021869972 0.01143698 0.0014082367 -0.021697111 0.017413983 -0.014367716 -0.018918788 0.03090612 -0.0093882922 -0.020007681 0.030850369 -0.00017535679 -0.020172777 0.032304641 -0.014367716 -0.018918788 0.03090612 -0.026431484 -0.019696329 0.017391594 -0.0093882922 -0.020007681 0.030850369 -0.014367716 -0.018918788 0.03090612 -0.021250721 -0.018793207 0.025100071 -0.026431484 -0.019696329 0.017391594 -0.021250721 -0.018793207 0.025100071 -0.029068325 -0.018647604 0.014239288 -0.026431484 -0.019696329 0.017391594 -0.029068325 -0.018647604 0.014239288 -0.031436052 -0.018600496 0.0055980207 -0.026431484 -0.019696329 0.017391594 0.014532065 -0.022916427 0.00085330277 0.012195589 -0.021869972 0.01143698 0.012623056 -0.022887329 0.0090628807 -0.031436052 -0.018600496 0.0055980207 -0.030758251 -0.019609392 0.00057425507 -0.026431484 -0.019696329 0.017391594 -0.031436052 -0.018600496 0.0055980207 -0.031277582 -0.018598061 -0.0033601334 -0.030758251 -0.019609392 0.00057425507 -0.031277582 -0.018598061 -0.0033601334 -0.028605981 -0.018640583 -0.011911988 -0.030758251 -0.019609392 0.00057425507 -0.028605981 -0.018640583 -0.011911988 -0.025239043 -0.019698238 -0.015890177 -0.030758251 -0.019609392 0.00057425507 0.014532065 -0.022916427 0.00085330277 0.012704668 -0.020378532 -0.0074524689 0.014860019 -0.020419355 -0.0032549626 0.010461279 -0.021827949 -0.0099690901 0.012704668 -0.020378532 -0.0074524689 0.014532065 -0.022916427 0.00085330277 -0.028605981 -0.018640583 -0.011911988 -0.023636295 -0.018724661 -0.019367171 -0.025239043 -0.019698238 -0.015890177 -0.023636295 -0.018724661 -0.019367171 -0.01419042 -0.018887665 -0.02773919 -0.025239043 -0.019698238 -0.015890177 -0.01419042 -0.018887665 -0.02773919 -0.012572303 -0.019917512 -0.026264869 -0.025239043 -0.019698238 -0.015890177 -0.01419042 -0.018887665 -0.02773919 -0.0048627257 -0.019052915 -0.029575901 -0.012572303 -0.019917512 -0.026264869 -0.0048627257 -0.019052915 -0.029575901 0.009028988 -0.02030158 -0.027510775 -0.012572303 -0.019917512 -0.026264869 -0.01488854 -0.012358141 0.030101173 -0.015016234 -0.009790278 0.029525945 -0.016717684 -0.012086622 0.027490402 -0.014890502 -0.01233566 -0.026755828 -0.023946511 -0.01321843 -0.018898776 -0.017379828 -0.012272036 -0.023563966 -0.023946511 -0.01321843 -0.018898776 -0.026589077 -0.012174055 -0.013549999 -0.017379828 -0.012272036 -0.023563966 -0.023946511 -0.01321843 -0.018898776 -0.028759506 -0.013136887 -0.011368903 -0.026589077 -0.012174055 -0.013549999 0.0045390832 -0.01925681 0.032916602 -0.00017535679 -0.020172777 0.032304641 0.015560008 -0.020450016 0.027843038 0.016195821 -0.019460918 0.02865199 0.0045390832 -0.01925681 0.032916602 0.015560008 -0.020450016 0.027843038 -0.028759506 -0.013136887 -0.011368903 -0.030590951 -0.012116947 0.001199671 -0.026589077 -0.012174055 -0.013549999 -0.028759506 -0.013136887 -0.011368903 -0.031266078 -0.013097111 -0.0027903405 -0.030590951 -0.012116947 0.001199671 -0.031266078 -0.013097111 -0.0027903405 -0.029837541 -0.012127051 0.0045683235 -0.030590951 -0.012116947 0.001199671 -0.031266078 -0.013097111 -0.0027903405 -0.03031549 -0.013121952 0.010525368 -0.029837541 -0.012127051 0.0045683235 0.016195821 -0.019460918 0.02865199 0.015560008 -0.020450016 0.027843038 0.028463244 -0.02067085 0.012434148 0.026670126 -0.019642295 0.018211845 0.016195821 -0.019460918 0.02865199 0.028463244 -0.02067085 0.012434148 -0.03031549 -0.013121952 0.010525368 -0.027609404 -0.012172577 0.014961899 -0.029837541 -0.012127051 0.0045683235 -0.03031549 -0.013121952 0.010525368 -0.026616393 -0.01319265 0.018660717 -0.027609404 -0.012172577 0.014961899 0.03023917 -0.019701095 0.0099938912 0.026670126 -0.019642295 0.018211845 0.028463244 -0.02067085 0.012434148 -0.026616393 -0.01319265 0.018660717 -0.020783298 -0.013300592 0.025430584 -0.027609404 -0.012172577 0.014961899 -0.020783298 -0.013300592 0.025430584 -0.016717684 -0.012086622 0.027490402 -0.027609404 -0.012172577 0.014961899 0.03135296 -0.019715831 0.0011038393 0.03023917 -0.019701095 0.0099938912 0.028463244 -0.02067085 0.012434148 -0.020783298 -0.013300592 0.025430584 -0.01488854 -0.012358141 0.030101173 -0.016717684 -0.012086622 0.027490402 0.03135296 -0.019715831 0.0011038393 0.028463244 -0.02067085 0.012434148 0.029708225 -0.020683004 -0.0048862249 0.029920792 -0.019685157 -0.0077406741 0.03135296 -0.019715831 0.0011038393 0.029708225 -0.020683004 -0.0048862249 -0.014890502 -0.01233566 -0.026755828 -0.017379828 -0.012272036 -0.023563966 -0.015032811 -0.0098453006 -0.0261603 0.016026577 -0.01223121 -0.024762547 0.017563315 -0.012933096 -0.023296842 0.014787185 -0.012871076 -0.026765462 0.026058514 -0.019611673 -0.015825035 0.029920792 -0.019685157 -0.0077406741 0.029708225 -0.020683004 -0.0048862249 0.014787185 -0.012871076 -0.026765462 0.015017245 -0.010292543 -0.026174612 0.016026577 -0.01223121 -0.024762547 0.026058514 -0.019611673 -0.015825035 0.029708225 -0.020683004 -0.0048862249 0.021329537 -0.020524979 -0.020095989 0.014799302 -0.012897561 0.030104218 0.021931598 -0.014059722 0.024329305 0.017297672 -0.012921914 0.026916355 0.014044141 -0.01939049 -0.027565373 0.026058514 -0.019611673 -0.015825035 0.021329537 -0.020524979 -0.020095989 0.021931598 -0.014059722 0.024329305 0.026496701 -0.013136943 0.016898284 0.017297672 -0.012921914 0.026916355 0.021931598 -0.014059722 0.024329305 0.025872972 -0.0141277 0.019586185 0.026496701 -0.013136943 0.016898284 0.014044141 -0.01939049 -0.027565373 0.021329537 -0.020524979 -0.020095989 0.009028988 -0.02030158 -0.027510775 0.025872972 -0.0141277 0.019586185 0.02985698 -0.014193895 0.011586173 0.026496701 -0.013136943 0.016898284 0.02985698 -0.014193895 0.011586173 0.030498302 -0.013205223 0.002148621 0.026496701 -0.013136943 0.016898284 -0.0048627257 -0.019052915 -0.029575901 0.014044141 -0.01939049 -0.027565373 0.009028988 -0.02030158 -0.027510775 -0.020809766 -0.013296559 0.019299373 -0.020350881 -0.019732835 0.017521271 -0.016669791 -0.013368608 0.016470471 0.02985698 -0.014193895 0.011586173 0.031436123 -0.014216762 0.0027893006 0.030498302 -0.013205223 0.002148621 -0.020350881 -0.019732835 0.017521271 -0.017566377 -0.019792961 0.016259918 -0.016669791 -0.013368608 0.016470471 -0.01603175 -0.01988256 0.022100456 -0.020234926 -0.01973157 0.02131773 -0.017446727 -0.013358115 0.022377051 -0.017446727 -0.013358115 0.022377051 -0.020234926 -0.01973157 0.02131773 -0.020809766 -0.013296559 0.019299373 0.031436123 -0.014216762 0.0027893006 0.029745512 -0.013184578 -0.0012200256 0.030498302 -0.013205223 0.002148621 0.031436123 -0.014216762 0.0027893006 0.03048333 -0.014194644 -0.0060969493 0.029745512 -0.013184578 -0.0012200256 0.03048333 -0.014194644 -0.0060969493 0.027517263 -0.013138603 -0.011613511 0.029745512 -0.013184578 -0.0012200256 0.03048333 -0.014194644 -0.0060969493 0.027075542 -0.014129283 -0.014358585 0.027517263 -0.013138603 -0.011613511 0.027075542 -0.014129283 -0.014358585 0.021486647 -0.014025839 -0.021331444 0.027517263 -0.013138603 -0.011613511 -0.020234926 -0.01973157 0.02131773 -0.020350881 -0.019732835 0.017521271 -0.020809766 -0.013296559 0.019299373 0.021486647 -0.014025839 -0.021331444 0.017563315 -0.012933096 -0.023296842 0.027517263 -0.013138603 -0.011613511 0.021486647 -0.014025839 -0.021331444 0.014787185 -0.012871076 -0.026765462 0.017563315 -0.012933096 -0.023296842 0.014799302 -0.012897561 0.030104218 0.017297672 -0.012921914 0.026916355 0.015030249 -0.010413094 0.029511604 -0.015038493 -0.013398456 0.017923025 -0.020809766 -0.013296559 0.019299373 -0.016669791 -0.013368608 0.016470471 0.012116197 -0.020379305 0.011633547 0.001274122 -0.020189626 0.017430218 0.0014082367 -0.021697111 0.017413983 0.012116197 -0.020379305 0.011633547 0.0014082367 -0.021697111 0.017413983 0.012195589 -0.021869972 0.01143698 -0.015038493 -0.013398456 0.017923025 -0.017446727 -0.013358115 0.022377051 -0.020809766 -0.013296559 0.019299373 -0.014573737 -0.019907216 0.019710312 -0.01603175 -0.01988256 0.022100456 -0.017446727 -0.013358115 0.022377051 -0.015038493 -0.013398456 0.017923025 -0.014573737 -0.019907216 0.019710312 -0.017446727 -0.013358115 0.022377051 0.014928416 -0.020426225 0.006460642 0.012116197 -0.020379305 0.011633547 0.012195589 -0.021869972 0.01143698 0.014928416 -0.020426225 0.006460642 0.012195589 -0.021869972 0.01143698 0.014532065 -0.022916427 0.00085330277 -0.017566377 -0.019792961 0.016259918 -0.014573737 -0.019907216 0.019710312 -0.015038493 -0.013398456 0.017923025 -0.016669791 -0.013368608 0.016470471 -0.017566377 -0.019792961 0.016259918 -0.015038493 -0.013398456 0.017923025 0.014928416 -0.020426225 0.006460642 0.014532065 -0.022916427 0.00085330277 0.014860019 -0.020419355 -0.0032549626 -0.014367716 -0.018918788 0.03090612 -0.012827424 -0.018948194 0.034224804 -0.01488854 -0.012358141 0.030101173 -0.012742801 -0.018911306 -0.031552676 -0.01419042 -0.018887665 -0.02773919 -0.014890502 -0.01233566 -0.026755828 0.014044141 -0.01939049 -0.027565373 0.01250343 -0.019361181 -0.030884014 0.014787185 -0.012871076 -0.026765462 0.013866279 -0.019421602 0.031079937 0.016195821 -0.019460918 0.02865199 0.014799302 -0.012897561 0.030104218 0.012419282 -0.019398181 0.034893379 0.013866279 -0.019421602 0.031079937 0.014799302 -0.012897561 0.030104218 0.0067966594 -0.020270389 -0.012536915 0.012704668 -0.020378532 -0.0074524689 0.010461279 -0.021827949 -0.0099690901 -0.016717684 -0.012086622 0.027490402 -0.015016234 -0.009790278 0.029525945 -0.017379828 -0.012272036 -0.023563966 0.0067966594 -0.020270389 -0.012536915 0.010461279 -0.021827949 -0.0099690901 0.0033225566 -0.021713294 -0.013738896 -0.0016334527 -0.020119442 -0.014090742 0.0067966594 -0.020270389 -0.012536915 0.0033225566 -0.021713294 -0.013738896 -0.017379828 -0.012272036 -0.023563966 -0.015016234 -0.009790278 0.029525945 -0.015032811 -0.0098453006 -0.0261603 0.017297672 -0.012921914 0.026916355 0.017563315 -0.012933096 -0.023296842 0.016026577 -0.01223121 -0.024762547 0.017297672 -0.012921914 0.026916355 0.016026577 -0.01223121 -0.024762547 0.015030249 -0.010413094 0.029511604 0.016026577 -0.01223121 -0.024762547 0.015017245 -0.010292543 -0.026174612 0.015030249 -0.010413094 0.029511604 0.010461279 -0.021827949 -0.0099690901 0.014532065 -0.022916427 0.00085330277 0.0033225566 -0.021713294 -0.013738896 0.014532065 -0.022916427 0.00085330277 -0.011586138 -0.022446319 -0.0078094611 -0.0023410765 -0.022608349 -0.012999903 0.014532065 -0.022916427 0.00085330277 -0.0019739608 -0.022632057 0.016390176 -0.011586138 -0.022446319 -0.0078094611 0.019331792 -0.016501294 0.0017424307 0.021416523 -0.013040378 0.0059356205 0.023561362 -0.01657974 0.0070461207 0.019394049 -0.013001838 0.0015978742 0.021416523 -0.013040378 0.0059356205 0.019331792 -0.016501294 0.0017424307 0.023622081 -0.013074025 -0.0037070476 0.019394049 -0.013001838 0.0015978742 0.023939852 -0.016580163 -0.0038365815 0.023939852 -0.016580163 -0.0038365815 0.019394049 -0.013001838 0.0015978742 0.019331792 -0.016501294 0.0017424307 0.014532065 -0.022916427 0.00085330277 -0.0023410765 -0.022608349 -0.012999903 0.0033225566 -0.021713294 -0.013738896 0.014532065 -0.022916427 0.00085330277 0.012623056 -0.022887329 0.0090628807 -0.0019739608 -0.022632057 0.016390176 0.021416523 -0.013040378 0.0059356205 0.026908407 -0.013138731 0.0068346332 0.023561362 -0.01657974 0.0070461207 -0.011586138 -0.022446319 -0.0078094611 -0.0019739608 -0.022632057 0.016390176 -0.014734905 -0.022397544 0.0045855204 -0.014734905 -0.022397544 0.0045855204 -0.0019739608 -0.022632057 0.016390176 -0.013069062 -0.022430027 0.0090668192 0.023561362 -0.01657974 0.0070461207 0.026908407 -0.013138731 0.0068346332 0.026584456 -0.016633559 0.0070063495 -0.030590951 -0.012116947 0.001199671 -0.029837541 -0.012127051 0.0045683235 -0.030685328 -0.015610995 0.0021478699 -0.030685328 -0.015610995 0.0021478699 -0.029837541 -0.012127051 0.0045683235 -0.029171636 -0.015639948 0.005526864 0.001274122 -0.020189626 0.017430218 -0.0076741958 -0.021519944 0.015579049 0.0014082367 -0.021697111 0.017413983 0.001274122 -0.020189626 0.017430218 -0.0071559572 -0.020038515 0.015876466 -0.0076741958 -0.021519944 0.015579049 -0.0071559572 -0.020038515 0.015876466 -0.013069062 -0.022430027 0.0090668192 -0.0076741958 -0.021519944 0.015579049 -0.029837541 -0.012127051 0.0045683235 -0.027828915 -0.01216385 0.0064467997 -0.029171636 -0.015639948 0.005526864 -0.029171636 -0.015639948 0.005526864 -0.027828915 -0.01216385 0.0064467997 -0.023875045 -0.015735179 0.0070615746 -0.0071559572 -0.020038515 0.015876466 -0.014667877 -0.019900247 0.0079016183 -0.013069062 -0.022430027 0.0090668192 -0.027001031 -0.012172798 -0.0034863201 -0.030590951 -0.012116947 0.001199671 -0.029760415 -0.015625402 -0.0014372816 -0.029760415 -0.015625402 -0.0014372816 -0.030590951 -0.012116947 0.001199671 -0.030685328 -0.015610995 0.0021478699 -0.014667877 -0.019900247 0.0079016183 -0.014734905 -0.022397544 0.0045855204 -0.013069062 -0.022430027 0.0090668192 -0.028292157 -0.015653882 0.0026209292 -0.024504697 -0.015722718 0.0049704872 -0.028393924 -0.019652646 0.0025084966 -0.024692073 -0.01971614 -0.0016399255 -0.025935102 -0.015693493 -0.0015225937 -0.027075944 -0.019674079 -0.0010297465 -0.028393924 -0.019652646 0.0025084966 -0.024504697 -0.015722718 0.0049704872 -0.024691129 -0.019719932 0.0049869772 -0.014667877 -0.019900247 0.0079016183 -0.015916772 -0.019873381 0.00022011276 -0.014734905 -0.022397544 0.0045855204 -0.015916772 -0.019873381 0.00022011276 -0.015563753 -0.021378808 -0.0019835541 -0.014734905 -0.022397544 0.0045855204 -0.015916772 -0.019873381 0.00022011276 -0.013244035 -0.01991662 -0.0072359857 -0.015563753 -0.021378808 -0.0019835541 -0.025935102 -0.015693493 -0.0015225937 -0.028292157 -0.015653882 0.0026209292 -0.027075944 -0.019674079 -0.0010297465 -0.027075944 -0.019674079 -0.0010297465 -0.028292157 -0.015653882 0.0026209292 -0.028393924 -0.019652646 0.0025084966 -0.013244035 -0.01991662 -0.0072359857 -0.010088944 -0.021463737 -0.010624137 -0.015563753 -0.021378808 -0.0019835541 -0.013244035 -0.01991662 -0.0072359857 -0.0016334527 -0.020119442 -0.014090742 -0.010088944 -0.021463737 -0.010624137 0.027540956 -0.020647069 -0.00018213438 0.024181362 -0.016585758 -0.0015371906 0.022287464 -0.020553295 -0.00048170966 -0.0016334527 -0.020119442 -0.014090742 -0.0023410765 -0.022608349 -0.012999903 -0.010088944 -0.021463737 -0.010624137 0.021743592 -0.020545576 0.0028331361 0.02458539 -0.016596738 0.0049797399 0.026147746 -0.020625079 0.004671535 -0.0016334527 -0.020119442 -0.014090742 0.0033225566 -0.021713294 -0.013738896 -0.0023410765 -0.022608349 -0.012999903 0.029543728 -0.016684921 0.0047815125 0.030498302 -0.013205223 0.002148621 0.030468551 -0.016699327 0.0011963013 0.024181362 -0.016585758 -0.0015371906 0.021828825 -0.016545059 0.00044999973 0.022287464 -0.020553295 -0.00048170966 0.022287464 -0.020553295 -0.00048170966 0.021828825 -0.016545059 0.00044999973 0.021743592 -0.020545576 0.0028331361 0.026908407 -0.013138731 0.0068346332 0.030498302 -0.013205223 0.002148621 0.029543728 -0.016684921 0.0047815125 0.028954919 -0.016670421 -0.0021825735 0.023622081 -0.013074025 -0.0037070476 0.023939852 -0.016580163 -0.0038365815 0.021828825 -0.016545059 0.00044999973 0.02458539 -0.016596738 0.0049797399 0.021743592 -0.020545576 0.0028331361 -0.014367716 -0.018918788 0.03090612 -0.01488854 -0.012358141 0.030101173 -0.020783298 -0.013300592 0.025430584 -0.021250721 -0.018793207 0.025100071 -0.014367716 -0.018918788 0.03090612 -0.020783298 -0.013300592 0.025430584 0.029745512 -0.013184578 -0.0012200256 0.023622081 -0.013074025 -0.0037070476 0.028954919 -0.016670421 -0.0021825735 0.026584456 -0.016633559 0.0070063495 0.026908407 -0.013138731 0.0068346332 0.029543728 -0.016684921 0.0047815125 -0.021250721 -0.018793207 0.025100071 -0.020783298 -0.013300592 0.025430584 -0.026616393 -0.01319265 0.018660717 -0.029068325 -0.018647604 0.014239288 -0.021250721 -0.018793207 0.025100071 -0.026616393 -0.01319265 0.018660717 0.030468551 -0.016699327 0.0011963013 0.029745512 -0.013184578 -0.0012200256 0.028954919 -0.016670421 -0.0021825735 0.030498302 -0.013205223 0.002148621 0.029745512 -0.013184578 -0.0012200256 0.030468551 -0.016699327 0.0011963013 -0.029068325 -0.018647604 0.014239288 -0.026616393 -0.01319265 0.018660717 -0.03031549 -0.013121952 0.010525368 -0.031436052 -0.018600496 0.0055980207 -0.029068325 -0.018647604 0.014239288 -0.03031549 -0.013121952 0.010525368 0.029543728 -0.016684921 0.0047815125 0.030468551 -0.016699327 0.0011963013 0.028221641 -0.016659757 0.0019719219 0.026584456 -0.016633559 0.0070063495 0.028221641 -0.016659757 0.0019719219 0.02458539 -0.016596738 0.0049797399 -0.031436052 -0.018600496 0.0055980207 -0.03031549 -0.013121952 0.010525368 -0.031266078 -0.013097111 -0.0027903405 -0.031277582 -0.018598061 -0.0033601334 -0.031436052 -0.018600496 0.0055980207 -0.031266078 -0.013097111 -0.0027903405 0.026584456 -0.016633559 0.0070063495 0.02458539 -0.016596738 0.0049797399 0.023561362 -0.01657974 0.0070461207 0.030468551 -0.016699327 0.0011963013 0.027603541 -0.016647531 -0.00017410817 0.028221641 -0.016659757 0.0019719219 0.030468551 -0.016699327 0.0011963013 0.028954919 -0.016670421 -0.0021825735 0.027603541 -0.016647531 -0.00017410817 -0.028605981 -0.018640583 -0.011911988 -0.031277582 -0.018598061 -0.0033601334 -0.031266078 -0.013097111 -0.0027903405 -0.028605981 -0.018640583 -0.011911988 -0.031266078 -0.013097111 -0.0027903405 -0.028759506 -0.013136887 -0.011368903 0.02458539 -0.016596738 0.0049797399 0.019331792 -0.016501294 0.0017424307 0.023561362 -0.01657974 0.0070461207 0.02458539 -0.016596738 0.0049797399 0.021828825 -0.016545059 0.00044999973 0.019331792 -0.016501294 0.0017424307 -0.023636295 -0.018724661 -0.019367171 -0.028605981 -0.018640583 -0.011911988 -0.028759506 -0.013136887 -0.011368903 -0.023636295 -0.018724661 -0.019367171 -0.028759506 -0.013136887 -0.011368903 -0.023946511 -0.01321843 -0.018898776 0.027603541 -0.016647531 -0.00017410817 0.028954919 -0.016670421 -0.0021825735 0.023939852 -0.016580163 -0.0038365815 0.027603541 -0.016647531 -0.00017410817 0.023939852 -0.016580163 -0.0038365815 0.024181362 -0.016585758 -0.0015371906 -0.01419042 -0.018887665 -0.02773919 -0.023636295 -0.018724661 -0.019367171 -0.023946511 -0.01321843 -0.018898776 -0.01419042 -0.018887665 -0.02773919 -0.023946511 -0.01321843 -0.018898776 -0.014890502 -0.01233566 -0.026755828 0.021828825 -0.016545059 0.00044999973 0.024181362 -0.016585758 -0.0015371906 0.019331792 -0.016501294 0.0017424307 -0.017566377 -0.019792961 0.016259918 -0.0071559572 -0.020038515 0.015876466 -0.014573737 -0.019907216 0.019710312 -0.024692073 -0.01971614 -0.0016399255 -0.015916772 -0.019873381 0.00022011276 -0.022336921 -0.019760951 0.003449325 0.024181362 -0.016585758 -0.0015371906 0.023939852 -0.016580163 -0.0038365815 0.019331792 -0.016501294 0.0017424307 -0.030758251 -0.019609392 0.00057425507 -0.028393924 -0.019652646 0.0025084966 -0.026431484 -0.019696329 0.017391594 0.021743592 -0.020545576 0.0028331361 0.028463244 -0.02067085 0.012434148 0.014928416 -0.020426225 0.006460642 0.029543728 -0.016684921 0.0047815125 0.028221641 -0.016659757 0.0019719219 0.026584456 -0.016633559 0.0070063495 0.012116197 -0.020379305 0.011633547 0.015560008 -0.020450016 0.027843038 0.001274122 -0.020189626 0.017430218 -0.021860287 -0.01576522 -0.0028354716 -0.027001031 -0.012172798 -0.0034863201 -0.029760415 -0.015625402 -0.0014372816 0.014928416 -0.020426225 0.006460642 0.028463244 -0.02067085 0.012434148 0.012116197 -0.020379305 0.011633547 -0.021796726 -0.012271134 0.0061884015 -0.019726535 -0.012304397 0.00012303049 -0.019788342 -0.015805649 0.0032292369 -0.020980917 -0.012280817 -0.0021146042 -0.027001031 -0.012172798 -0.0034863201 -0.021860287 -0.01576522 -0.0028354716 -0.023875045 -0.015735179 0.0070615746 -0.021796726 -0.012271134 0.0061884015 -0.019788342 -0.015805649 0.0032292369 -0.019726535 -0.012304397 0.00012303049 -0.020980917 -0.012280817 -0.0021146042 -0.021860287 -0.01576522 -0.0028354716 -0.019788342 -0.015805649 0.0032292369 -0.019726535 -0.012304397 0.00012303049 -0.021860287 -0.01576522 -0.0028354716 0.009028988 -0.02030158 -0.027510775 -0.0016334527 -0.020119442 -0.014090742 -0.012572303 -0.019917512 -0.026264869 0.012116197 -0.020379305 0.011633547 0.028463244 -0.02067085 0.012434148 0.015560008 -0.020450016 0.027843038 -0.01603175 -0.01988256 0.022100456 -0.026431484 -0.019696329 0.017391594 -0.020234926 -0.01973157 0.02131773 -0.027828915 -0.01216385 0.0064467997 -0.021796726 -0.012271134 0.0061884015 -0.023875045 -0.015735179 0.0070615746 0.021329537 -0.020524979 -0.020095989 0.029708225 -0.020683004 -0.0048862249 0.012704668 -0.020378532 -0.0074524689 -0.015916772 -0.019873381 0.00022011276 -0.014667877 -0.019900247 0.0079016183 -0.022336921 -0.019760951 0.003449325 -0.023875045 -0.015735179 0.0070615746 -0.021883463 -0.015766995 0.00096629444 -0.024504697 -0.015722718 0.0049704872 -0.028393924 -0.019652646 0.0025084966 -0.024691129 -0.019719932 0.0049869772 -0.026431484 -0.019696329 0.017391594 -0.019788342 -0.015805649 0.0032292369 -0.021860287 -0.01576522 -0.0028354716 -0.021883463 -0.015766995 0.00096629444 -0.023875045 -0.015735179 0.0070615746 -0.024504697 -0.015722718 0.0049704872 -0.029171636 -0.015639948 0.005526864 -0.01603175 -0.01988256 0.022100456 -0.0093882922 -0.020007681 0.030850369 -0.026431484 -0.019696329 0.017391594 -0.024504697 -0.015722718 0.0049704872 -0.028292157 -0.015653882 0.0026209292 -0.029171636 -0.015639948 0.005526864 0.001274122 -0.020189626 0.017430218 -0.00017535679 -0.020172777 0.032304641 -0.0093882922 -0.020007681 0.030850369 -0.021883463 -0.015766995 0.00096629444 -0.021860287 -0.01576522 -0.0028354716 -0.025935102 -0.015693493 -0.0015225937 -0.028292157 -0.015653882 0.0026209292 -0.030685328 -0.015610995 0.0021478699 -0.029171636 -0.015639948 0.005526864 0.012704668 -0.020378532 -0.0074524689 0.029708225 -0.020683004 -0.0048862249 0.014860019 -0.020419355 -0.0032549626 0.009028988 -0.02030158 -0.027510775 0.0067966594 -0.020270389 -0.012536915 -0.0016334527 -0.020119442 -0.014090742 -0.025935102 -0.015693493 -0.0015225937 -0.021860287 -0.01576522 -0.0028354716 -0.029760415 -0.015625402 -0.0014372816 -0.028292157 -0.015653882 0.0026209292 -0.029760415 -0.015625402 -0.0014372816 -0.030685328 -0.015610995 0.0021478699 -0.022336921 -0.019760951 0.003449325 -0.014667877 -0.019900247 0.0079016183 -0.024691129 -0.019719932 0.0049869772 -0.028292157 -0.015653882 0.0026209292 -0.025935102 -0.015693493 -0.0015225937 -0.029760415 -0.015625402 -0.0014372816 -0.019788342 -0.015805649 0.0032292369 -0.021883463 -0.015766995 0.00096629444 -0.023875045 -0.015735179 0.0070615746 -0.0048627257 -0.019052915 -0.029575901 -0.01419042 -0.018887665 -0.02773919 -0.012742801 -0.018911306 -0.031552676 0.021329537 -0.020524979 -0.020095989 0.0067966594 -0.020270389 -0.012536915 0.009028988 -0.02030158 -0.027510775 -0.025239043 -0.019698238 -0.015890177 -0.0016334527 -0.020119442 -0.014090742 -0.013244035 -0.01991662 -0.0072359857 -0.014573737 -0.019907216 0.019710312 -0.0093882922 -0.020007681 0.030850369 -0.01603175 -0.01988256 0.022100456 0.016195821 -0.019460918 0.02865199 0.012419282 -0.019398181 0.034893379 0.0045390832 -0.01925681 0.032916602 0.029708225 -0.020683004 -0.0048862249 0.028463244 -0.02067085 0.012434148 0.027540956 -0.020647069 -0.00018213438 -0.012572303 -0.019917512 -0.026264869 -0.0016334527 -0.020119442 -0.014090742 -0.025239043 -0.019698238 -0.015890177 -0.0071559572 -0.020038515 0.015876466 -0.0093882922 -0.020007681 0.030850369 -0.014573737 -0.019907216 0.019710312 -0.017566377 -0.019792961 0.016259918 -0.020350881 -0.019732835 0.017521271 -0.026431484 -0.019696329 0.017391594 -0.024691129 -0.019719932 0.0049869772 -0.017566377 -0.019792961 0.016259918 -0.026431484 -0.019696329 0.017391594 -0.030758251 -0.019609392 0.00057425507 -0.024692073 -0.01971614 -0.0016399255 -0.027075944 -0.019674079 -0.0010297465 0.0045390832 -0.01925681 0.032916602 0.012419282 -0.019398181 0.034893379 -0.012827424 -0.018948194 0.034224804 -0.014667877 -0.019900247 0.0079016183 -0.017566377 -0.019792961 0.016259918 -0.024691129 -0.019719932 0.0049869772 -0.025239043 -0.019698238 -0.015890177 -0.013244035 -0.01991662 -0.0072359857 -0.030758251 -0.019609392 0.00057425507 0.027540956 -0.020647069 -0.00018213438 0.028463244 -0.02067085 0.012434148 0.026147746 -0.020625079 0.004671535 0.016195821 -0.019460918 0.02865199 0.013866279 -0.019421602 0.031079937 0.012419282 -0.019398181 0.034893379 -0.027075944 -0.019674079 -0.0010297465 -0.028393924 -0.019652646 0.0025084966 -0.030758251 -0.019609392 0.00057425507 0.023622081 -0.013074025 -0.0037070476 0.027517263 -0.013138603 -0.011613511 0.017563315 -0.012933096 -0.023296842 -0.030758251 -0.019609392 0.00057425507 -0.013244035 -0.01991662 -0.0072359857 -0.024692073 -0.01971614 -0.0016399255 0.023622081 -0.013074025 -0.0037070476 0.017563315 -0.012933096 -0.023296842 0.019394049 -0.013001838 0.0015978742 0.019394049 -0.013001838 0.0015978742 0.017563315 -0.012933096 -0.023296842 0.017297672 -0.012921914 0.026916355 0.021329537 -0.020524979 -0.020095989 0.012704668 -0.020378532 -0.0074524689 0.0067966594 -0.020270389 -0.012536915 0.029745512 -0.013184578 -0.0012200256 0.027517263 -0.013138603 -0.011613511 0.023622081 -0.013074025 -0.0037070476 0.001274122 -0.020189626 0.017430218 -0.0093882922 -0.020007681 0.030850369 -0.0071559572 -0.020038515 0.015876466 0.030498302 -0.013205223 0.002148621 0.026908407 -0.013138731 0.0068346332 0.026496701 -0.013136943 0.016898284 0.014860019 -0.020419355 -0.0032549626 0.022287464 -0.020553295 -0.00048170966 0.014928416 -0.020426225 0.006460642 0.026496701 -0.013136943 0.016898284 0.026908407 -0.013138731 0.0068346332 0.021416523 -0.013040378 0.0059356205 0.021416523 -0.013040378 0.0059356205 0.019394049 -0.013001838 0.0015978742 0.017297672 -0.012921914 0.026916355 0.029708225 -0.020683004 -0.0048862249 0.022287464 -0.020553295 -0.00048170966 0.014860019 -0.020419355 -0.0032549626 0.026496701 -0.013136943 0.016898284 0.021416523 -0.013040378 0.0059356205 0.017297672 -0.012921914 0.026916355 0.001274122 -0.020189626 0.017430218 0.015560008 -0.020450016 0.027843038 -0.00017535679 -0.020172777 0.032304641 0.016195821 -0.019460918 0.02865199 0.021931598 -0.014059722 0.024329305 0.014799302 -0.012897561 0.030104218 0.022287464 -0.020553295 -0.00048170966 0.021743592 -0.020545576 0.0028331361 0.014928416 -0.020426225 0.006460642 -0.020350881 -0.019732835 0.017521271 -0.020234926 -0.01973157 0.02131773 -0.026431484 -0.019696329 0.017391594 0.016195821 -0.019460918 0.02865199 0.026670126 -0.019642295 0.018211845 0.021931598 -0.014059722 0.024329305 -0.014667877 -0.019900247 0.0079016183 -0.0071559572 -0.020038515 0.015876466 -0.017566377 -0.019792961 0.016259918 0.026670126 -0.019642295 0.018211845 0.025872972 -0.0141277 0.019586185 0.021931598 -0.014059722 0.024329305 0.026670126 -0.019642295 0.018211845 0.03023917 -0.019701095 0.0099938912 0.025872972 -0.0141277 0.019586185 0.03023917 -0.019701095 0.0099938912 0.02985698 -0.014193895 0.011586173 0.025872972 -0.0141277 0.019586185 0.03023917 -0.019701095 0.0099938912 0.03135296 -0.019715831 0.0011038393 0.02985698 -0.014193895 0.011586173 0.03135296 -0.019715831 0.0011038393 0.031436123 -0.014216762 0.0027893006 0.02985698 -0.014193895 0.011586173 0.029708225 -0.020683004 -0.0048862249 0.027540956 -0.020647069 -0.00018213438 0.022287464 -0.020553295 -0.00048170966 0.03135296 -0.019715831 0.0011038393 0.029920792 -0.019685157 -0.0077406741 0.031436123 -0.014216762 0.0027893006 0.029920792 -0.019685157 -0.0077406741 0.03048333 -0.014194644 -0.0060969493 0.031436123 -0.014216762 0.0027893006 0.026147746 -0.020625079 0.004671535 0.028463244 -0.02067085 0.012434148 0.021743592 -0.020545576 0.0028331361 -0.013244035 -0.01991662 -0.0072359857 -0.015916772 -0.019873381 0.00022011276 -0.024692073 -0.01971614 -0.0016399255 0.029920792 -0.019685157 -0.0077406741 0.026058514 -0.019611673 -0.015825035 0.03048333 -0.014194644 -0.0060969493 0.026058514 -0.019611673 -0.015825035 0.027075542 -0.014129283 -0.014358585 0.03048333 -0.014194644 -0.0060969493 0.026058514 -0.019611673 -0.015825035 0.021486647 -0.014025839 -0.021331444 0.027075542 -0.014129283 -0.014358585 0.02458539 -0.016596738 0.0049797399 0.028221641 -0.016659757 0.0019719219 0.026147746 -0.020625079 0.004671535 0.026058514 -0.019611673 -0.015825035 0.014044141 -0.01939049 -0.027565373 0.021486647 -0.014025839 -0.021331444 0.027603541 -0.016647531 -0.00017410817 0.024181362 -0.016585758 -0.0015371906 0.027540956 -0.020647069 -0.00018213438 0.014044141 -0.01939049 -0.027565373 0.014787185 -0.012871076 -0.026765462 0.021486647 -0.014025839 -0.021331444 0.026147746 -0.020625079 0.004671535 0.028221641 -0.016659757 0.0019719219 0.027540956 -0.020647069 -0.00018213438 -0.016717684 -0.012086622 0.027490402 -0.021796726 -0.012271134 0.0061884015 -0.027609404 -0.012172577 0.014961899 0.028221641 -0.016659757 0.0019719219 0.027603541 -0.016647531 -0.00017410817 0.027540956 -0.020647069 -0.00018213438 -0.027609404 -0.012172577 0.014961899 -0.021796726 -0.012271134 0.0061884015 -0.027828915 -0.01216385 0.0064467997 -0.021883463 -0.015766995 0.00096629444 -0.025935102 -0.015693493 -0.0015225937 -0.024692073 -0.01971614 -0.0016399255 -0.024691129 -0.019719932 0.0049869772 -0.024504697 -0.015722718 0.0049704872 -0.022336921 -0.019760951 0.003449325 -0.024504697 -0.015722718 0.0049704872 -0.021883463 -0.015766995 0.00096629444 -0.022336921 -0.019760951 0.003449325 -0.027609404 -0.012172577 0.014961899 -0.027828915 -0.01216385 0.0064467997 -0.029837541 -0.012127051 0.0045683235 -0.016717684 -0.012086622 0.027490402 -0.019726535 -0.012304397 0.00012303049 -0.021796726 -0.012271134 0.0061884015 -0.016717684 -0.012086622 0.027490402 -0.017379828 -0.012272036 -0.023563966 -0.019726535 -0.012304397 0.00012303049 -0.019726535 -0.012304397 0.00012303049 -0.017379828 -0.012272036 -0.023563966 -0.020980917 -0.012280817 -0.0021146042 -0.022336921 -0.019760951 0.003449325 -0.021883463 -0.015766995 0.00096629444 -0.024692073 -0.01971614 -0.0016399255 -0.020980917 -0.012280817 -0.0021146042 -0.017379828 -0.012272036 -0.023563966 -0.026589077 -0.012174055 -0.013549999 -0.020980917 -0.012280817 -0.0021146042 -0.026589077 -0.012174055 -0.013549999 -0.027001031 -0.012172798 -0.0034863201 0.01250343 -0.019361181 -0.030884014 -0.0048627257 -0.019052915 -0.029575901 -0.012742801 -0.018911306 -0.031552676 -0.027001031 -0.012172798 -0.0034863201 -0.026589077 -0.012174055 -0.013549999 -0.030590951 -0.012116947 0.001199671 + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827

+
+
+
+
+ + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + + + + + + + + + + + + + +
diff --git a/external/rlbench/urdfs/panda/meshes/Pandagrippervisual_vis_5.dae b/external/rlbench/urdfs/panda/meshes/Pandagrippervisual_vis_5.dae new file mode 100644 index 0000000000000000000000000000000000000000..d442af30d7b597b9a25505fdca2da43353acf1ba --- /dev/null +++ b/external/rlbench/urdfs/panda/meshes/Pandagrippervisual_vis_5.dae @@ -0,0 +1,84 @@ + + + + + Assimp + Assimp Exporter + + 2023-09-26T11:24:21 + 2023-09-26T11:24:21 + + Y_UP + + + + + + + + 0 0 0 4.5895327e-41 + + + 0.98000002 0.98000002 0.98000002 4.5893926e-41 + + + 0.98000002 0.98000002 0.98000002 4.5893926e-41 + + + 0.25 0.25 0.25 -3.0261091e+37 + + + + + + + + + + + + + + + + -0.013035714 -0.025688106 -0.033331439 -0.012676852 -0.014559466 -0.034152821 -0.012812613 -0.013158091 -0.03332413 -0.013035714 -0.025688106 -0.033331439 -0.013035855 -0.025687518 -0.034331664 -0.012676852 -0.014559466 -0.034152821 -0.0083588213 -0.025855448 -0.029318903 -0.013035714 -0.025688106 -0.033331439 -0.014094987 -0.025619583 -0.027200136 0.012025469 -0.019389005 0.031268749 0.013764924 -0.0271741 0.03041243 0.010677854 -0.027172908 0.03174074 -0.0054569626 -0.026994709 0.033258647 -0.0045470577 -0.019095071 0.033385932 -0.00029992295 -0.027180485 0.033664845 -0.0083588213 -0.025855448 -0.029318903 -0.013035855 -0.025687518 -0.034331664 -0.013035714 -0.025688106 -0.033331439 -0.00029992295 -0.027180485 0.033664845 0.0043001436 -0.019252745 0.033376776 0.0048601879 -0.027178407 0.033257075 -0.00438608 -0.033952754 -0.043406647 -0.003734376 -0.034557033 -0.043395471 -0.0043358915 -0.028485658 -0.043404404 -0.01234095 -0.018955054 0.031272467 -0.015725134 -0.01098915 0.02955552 -0.015168766 -0.010593347 0.029393503 0.008279616 -0.019323137 0.032562267 0.010677854 -0.027172908 0.03174074 0.0048601879 -0.027178407 0.033257075 0.0043001436 -0.019252745 0.033376776 0.008279616 -0.019323137 0.032562267 0.0048601879 -0.027178407 0.033257075 0.015690625 -0.011548515 0.029550726 0.016634202 -0.027164482 0.02884067 0.013764924 -0.0271741 0.03041243 -0.013035855 -0.025687518 -0.034331664 -0.0083588213 -0.025855448 -0.029318903 -0.012676852 -0.014559466 -0.034152821 0.012512111 -0.014973802 -0.034171425 -0.012676852 -0.014559466 -0.034152821 -0.0022821976 -0.026069192 -0.030289182 -0.0085947933 -0.019022658 0.032564841 -0.0054569626 -0.026994709 0.033258647 -0.011271058 -0.026782107 0.031744093 0.008279616 -0.019323137 0.032562267 0.012025469 -0.019389005 0.031268749 0.010677854 -0.027172908 0.03174074 -0.0014690593 -0.031515103 -0.097257785 -0.00039353472 -0.031315885 -0.097083233 -0.0018599371 -0.034532662 -0.095316797 0.012025469 -0.019389005 0.031268749 0.015690625 -0.011548515 0.029550726 0.013764924 -0.0271741 0.03041243 -0.0014690593 -0.031515103 -0.097257785 -0.0018599371 -0.034532662 -0.095316797 -0.0023220368 -0.03437648 -0.096554093 -0.01234095 -0.018955054 0.031272467 -0.0085947933 -0.019022658 0.032564841 -0.011271058 -0.026782107 0.031744093 -0.01234095 -0.018955054 0.031272467 -0.014356739 -0.02667339 0.030416736 -0.017224334 -0.026561622 0.028845835 -0.00039353472 -0.031315885 -0.097083233 -0.0014690593 -0.031515103 -0.097257785 -0.00030031882 -0.026071236 -0.098368891 -0.0085947933 -0.019022658 0.032564841 -0.0045470577 -0.019095071 0.033385932 -0.0054569626 -0.026994709 0.033258647 -0.01234095 -0.018955054 0.031272467 -0.011271058 -0.026782107 0.031744093 -0.014356739 -0.02667339 0.030416736 -0.012676852 -0.014559466 -0.034152821 -0.0083588213 -0.025855448 -0.029318903 -0.0022821976 -0.026069192 -0.030289182 0.0017011157 -0.02614012 -0.03028979 0.012512111 -0.014973802 -0.034171425 -0.0022821976 -0.026069192 -0.030289182 0.0077816737 -0.026142837 -0.029321365 0.012512111 -0.014973802 -0.034171425 0.0017011157 -0.02614012 -0.03028979 -0.0023036159 -0.027390411 -0.099899754 -0.0014690593 -0.031515103 -0.097257785 -0.0023220368 -0.03437648 -0.096554093 0.012460281 -0.026141481 -0.034335557 0.012512111 -0.014973802 -0.034171425 0.0077816737 -0.026142837 -0.029321365 -0.010487519 0.045800578 0.067250654 -0.010619318 0.03840173 0.06724634 -0.010600132 0.038478851 -0.064107321 -0.00924592 0.045877747 -0.065104119 -0.0093776593 0.038478885 -0.065108433 0.00085396651 0.038475428 -0.065296039 0.011557982 0.045423757 0.068450361 0.012357729 0.037992604 0.067242831 0.011426213 0.038024899 0.06844604 -0.009555107 0.045799676 0.068453595 0.0010047826 0.045795705 0.068708196 0.00087298395 0.03839685 0.068703882 0.00021250082 -0.034533881 -0.094890684 -0.0018599371 -0.034532662 -0.095316797 -0.00039353472 -0.031315885 -0.097083233 0.012489528 0.045391474 0.067247145 0.012433028 0.04546994 -0.064106502 0.012301319 0.038071085 -0.064110816 0.011210877 0.045513507 -0.065107241 0.00098573556 0.045874294 -0.065291747 0.00085396651 0.038475428 -0.065296039 -0.00924592 0.045877747 -0.065104119 -0.010600132 0.038478851 -0.064107321 -0.0093776593 0.038478885 -0.065108433 0.011557982 0.045423757 0.068450361 0.011426213 0.038024899 0.06844604 0.00087298395 0.03839685 0.068703882 -0.010487519 0.045800578 0.067250654 -0.009555107 0.045799676 0.068453595 -0.010619318 0.03840173 0.06724634 -0.010619318 0.03840173 0.06724634 0.00087298395 0.03839685 0.068703882 0.012357729 0.037992604 0.067242831 0.00085396651 0.038475428 -0.065296039 -0.010600132 0.038478851 -0.064107321 0.012301319 0.038071085 -0.064110816 0.012301319 0.038071085 -0.064110816 0.011079197 0.038114645 -0.065111555 0.00085396651 0.038475428 -0.065296039 0.00087298395 0.03839685 0.068703882 0.011426213 0.038024899 0.06844604 0.012357729 0.037992604 0.067242831 0.00085396651 0.038475428 -0.065296039 -0.0093776593 0.038478885 -0.065108433 -0.010600132 0.038478851 -0.064107321 -0.0014553451 -0.026433932 -0.098652534 -0.00030031882 -0.026071236 -0.098368891 -0.0014690593 -0.031515103 -0.097257785 0.012357729 0.037992604 0.067242831 0.012301319 0.038071085 -0.064110816 -0.010600132 0.038478851 -0.064107321 -0.0014553451 -0.026433932 -0.098652534 -0.0014690593 -0.031515103 -0.097257785 -0.0023036159 -0.027390411 -0.099899754 -0.002042928 -0.012758736 -0.099778719 -0.0023082048 -0.015109309 -0.10127935 -0.0021972342 -0.0075939866 -0.099192768 -0.0023036159 -0.027390411 -0.099899754 -0.0023617637 -0.02703345 -0.10107914 -0.0023082048 -0.015109309 -0.10127935 -0.0023036159 -0.027390411 -0.099899754 -0.0023082048 -0.015109309 -0.10127935 -0.002042928 -0.012758736 -0.099778719 -0.002651342 -0.032750092 -0.099565841 -0.0023617637 -0.02703345 -0.10107914 -0.0023036159 -0.027390411 -0.099899754 -0.0096868156 0.038400821 0.068449266 0.00087298395 0.03839685 0.068703882 -0.010619318 0.03840173 0.06724634 -0.002042928 -0.012758736 -0.099778719 -0.0021972342 -0.0075939866 -0.099192768 -0.0019479279 -0.0052333451 -0.097262703 -0.0023220368 -0.03437648 -0.096554093 -0.002651342 -0.032750092 -0.099565841 -0.0023036159 -0.027390411 -0.099899754 -0.002042928 -0.012758736 -0.099778719 -0.0019479279 -0.0052333451 -0.097262703 -0.0019075309 -0.0042375438 -0.094637729 0.012433028 0.04546994 -0.064106502 0.011210877 0.045513507 -0.065107241 0.012301319 0.038071085 -0.064110816 -0.010487519 0.045800578 0.067250654 -0.010600132 0.038478851 -0.064107321 -0.010468364 0.045877706 -0.064103007 -0.010468364 0.045877706 -0.064103007 -0.010600132 0.038478851 -0.064107321 -0.00924592 0.045877747 -0.065104119 -0.0030282389 -0.0028307796 -0.095045336 0.00015590683 -0.00046745726 -0.095526665 0.00015234853 -0.00066869357 -0.095364422 -0.015312762 -0.010222154 0.023213439 -0.015271815 -0.0097802905 -0.026443722 -0.015244288 -0.0087752901 -0.064707063 -0.015904948 -0.018737217 -0.026186559 -0.015905866 -0.01873306 -0.033274982 -0.015474434 -0.013064344 -0.033277445 -0.015904948 -0.018737217 -0.026186559 -0.015474434 -0.013064344 -0.033277445 -0.015271815 -0.0097802905 -0.026443722 -0.015725134 -0.01098915 0.02955552 -0.015312762 -0.010222154 0.023213439 -0.015226007 -0.0088622002 0.067985021 -0.00924592 0.045877747 -0.065104119 0.00085396651 0.038475428 -0.065296039 0.00098573556 0.045874294 -0.065291747 -0.015226007 -0.0088622002 0.067985021 -0.015312762 -0.010222154 0.023213439 -0.015244288 -0.0087752901 -0.064707063 -0.009555107 0.045799676 0.068453595 -0.0096868156 0.038400821 0.068449266 -0.010619318 0.03840173 0.06724634 -0.015905866 -0.01873306 -0.033274982 -0.015048629 -0.024707783 -0.026712913 -0.015061473 -0.024652919 -0.03329514 -0.015905866 -0.01873306 -0.033274982 -0.015904948 -0.018737217 -0.026186559 -0.015048629 -0.024707783 -0.026712913 0.012489528 0.045391474 0.067247145 0.012357729 0.037992604 0.067242831 0.011557982 0.045423757 0.068450361 -0.009555107 0.045799676 0.068453595 0.00087298395 0.03839685 0.068703882 -0.0096868156 0.038400821 0.068449266 -0.015048629 -0.024707783 -0.026712913 -0.014094987 -0.025619583 -0.027200136 -0.015061473 -0.024652919 -0.03329514 -0.015061473 -0.024652919 -0.03329514 -0.014094987 -0.025619583 -0.027200136 -0.013035714 -0.025688106 -0.033331439 0.00098573556 0.045874294 -0.065291747 -0.013158113 0.045874711 -0.085575737 -0.00924592 0.045877747 -0.065104119 -0.00924592 0.045877747 -0.065104119 -0.013158113 0.045874711 -0.085575737 -0.010468364 0.045877706 -0.064103007 0.012489528 0.045391474 0.067247145 0.012301319 0.038071085 -0.064110816 0.012357729 0.037992604 0.067242831 0.011210877 0.045513507 -0.065107241 0.00085396651 0.038475428 -0.065296039 0.011079197 0.038114645 -0.065111555 0.00098160352 0.045865525 -0.090567499 -0.013158113 0.045874711 -0.085575737 0.00098573556 0.045874294 -0.065291747 0.00098160352 0.045865525 -0.090567499 -0.011253038 0.045870658 -0.090074733 -0.013158113 0.045874711 -0.085575737 0.0010047826 0.045795705 0.068708196 -0.012950413 0.045750584 0.092641011 0.0010080163 0.045760993 0.093951166 0.0010080163 0.045760993 0.093951166 -0.012950413 0.045750584 0.092641011 -0.01031807 0.045749974 0.093839578 0.0010047826 0.045795705 0.068708196 -0.009555107 0.045799676 0.068453595 -0.012950413 0.045750584 0.092641011 0.011210877 0.045513507 -0.065107241 0.011079197 0.038114645 -0.065111555 0.012301319 0.038071085 -0.064110816 -0.011253038 0.045870658 -0.090074733 -0.013973027 0.045656223 -0.08696609 -0.013158113 0.045874711 -0.085575737 -0.009555107 0.045799676 0.068453595 -0.010487519 0.045800578 0.067250654 -0.012950413 0.045750584 0.092641011 -0.013158113 0.045874711 -0.085575737 -0.012950413 0.045750584 0.092641011 -0.010468364 0.045877706 -0.064103007 -0.010468364 0.045877706 -0.064103007 -0.012950413 0.045750584 0.092641011 -0.010487519 0.045800578 0.067250654 -0.0043358915 -0.028485658 -0.043404404 0.0018479313 -0.028634271 -0.031771436 -0.0061418847 -0.028429063 -0.031347163 0.011557982 0.045423757 0.068450361 0.00087298395 0.03839685 0.068703882 0.0010047826 0.045795705 0.068708196 -0.0043358915 -0.028485658 -0.043404404 -0.0061418847 -0.028429063 -0.031347163 -0.014120482 -0.028140433 -0.028860824 0.012357729 0.037992604 0.067242831 -0.010600132 0.038478851 -0.064107321 -0.010619318 0.03840173 0.06724634 5.3536769e-05 -0.0062287501 -0.09433829 5.668524e-05 -0.0060537267 -0.094127662 -0.0013715539 -0.0054109786 -0.094343267 -0.014341421 -0.028062876 -0.071969457 -0.0043396926 -0.028458137 -0.071333461 -0.0043358915 -0.028485658 -0.043404404 -0.014341421 -0.028062876 -0.071969457 -0.0043358915 -0.028485658 -0.043404404 -0.014120482 -0.028140433 -0.028860824 -0.0050734091 -0.028505158 0.034849867 -0.00032632318 -0.028672859 0.03518169 -0.0003203073 -0.028672725 0.074397378 0.0020881868 -0.0053052092 -0.097263314 0.0020841556 -0.0043086093 -0.09463834 0.0032541379 -0.0029426352 -0.095046297 -0.025097134 -0.027792711 0.038597733 -0.0003203073 -0.028672725 0.074397378 -0.022963451 -0.027874546 0.07396321 -0.025097134 -0.027792711 0.038597733 -0.0050734091 -0.028505158 0.034849867 -0.0003203073 -0.028672725 0.074397378 -0.017428715 -0.028052129 0.034223299 -0.015631882 -0.028094897 0.031432208 -0.0050734091 -0.028505158 0.034849867 0.0017011157 -0.02614012 -0.03028979 -0.0015909721 -0.026138928 -0.030356256 -0.00030898367 -0.027142595 -0.030333543 -0.017428715 -0.028052129 0.034223299 -0.0050734091 -0.028505158 0.034849867 -0.025097134 -0.027792711 0.038597733 0.0027627358 -0.034635402 -0.096498288 0.001424922 -0.034443188 -0.096554667 0.0031694872 -0.034395296 -0.09713842 0.0031694872 -0.034395296 -0.09713842 0.001424922 -0.034443188 -0.096554667 0.0018110274 -0.032829542 -0.099566557 0.00042189306 0.014487838 -0.097664364 -0.013557238 0.0081115765 -0.096604496 -0.013658297 0.01582934 -0.097517036 0.00028961862 0.0070560165 -0.09674453 -0.013557238 0.0081115765 -0.096604496 0.00042189306 0.014487838 -0.097664364 0.00074648572 0.032723125 -0.098846532 -0.0084095644 0.037078664 -0.098683178 0.00082713109 0.037255943 -0.098865494 0.00057927758 0.023330322 -0.098435223 -0.01332865 0.029805109 -0.098504856 0.00074648572 0.032723125 -0.098846532 0.00057927758 0.023330322 -0.098435223 -0.013658297 0.01582934 -0.097517036 -0.01332865 0.029805109 -0.098504856 0.00015590683 -0.00046745726 -0.095526665 -0.013901433 0.0018398173 -0.095631912 0.00028961862 0.0070560165 -0.09674453 -0.0038936033 -0.0036831126 -0.094863497 -0.013993851 -0.005451363 -0.094294176 -0.0030282389 -0.0028307796 -0.095045336 0.00028961862 0.0070560165 -0.09674453 -0.013901433 0.0018398173 -0.095631912 -0.013557238 0.0081115765 -0.096604496 0.00015590683 -0.00046745726 -0.095526665 -0.0030282389 -0.0028307796 -0.095045336 -0.013901433 0.0018398173 -0.095631912 0.0029494616 -0.029290134 -0.10089672 0.0018110274 -0.032829542 -0.099566557 0.001724679 -0.027106203 -0.10107977 0.0029494616 -0.029290134 -0.10089672 0.001724679 -0.027106203 -0.10107977 0.0028859049 -0.026881574 -0.10129181 -0.0039905431 -0.0086523565 -0.093861461 -0.013993851 -0.005451363 -0.094294176 -0.0038936033 -0.0036831126 -0.094863497 0.00042189306 0.014487838 -0.097664364 -0.013658297 0.01582934 -0.097517036 0.00057927758 0.023330322 -0.098435223 0.001724679 -0.027106203 -0.10107977 0.0020956721 -0.015187714 -0.10128006 0.0028859049 -0.026881574 -0.10129181 0.00074648572 0.032723125 -0.098846532 -0.01332865 0.029805109 -0.098504856 -0.0084095644 0.037078664 -0.098683178 -0.0030282389 -0.0028307796 -0.095045336 -0.013993851 -0.005451363 -0.094294176 -0.013901433 0.0018398173 -0.095631912 -0.0090511395 0.038305834 -0.098157756 -0.010391991 0.040658221 -0.096117467 -0.0065341755 0.04038744 -0.09689527 -0.015254431 0.035501182 -0.097104289 -0.015899897 0.041797802 -0.091251142 -0.013850057 0.044588722 -0.091423132 0.0020956721 -0.015187714 -0.10128006 0.0034127901 -0.014754708 -0.10118417 0.0028859049 -0.026881574 -0.10129181 0.0034127901 -0.014754708 -0.10118417 0.0020956721 -0.015187714 -0.10128006 0.0035104582 -0.010875985 -0.1004576 0.0020956721 -0.015187714 -0.10128006 0.002252769 -0.0076732202 -0.099193446 0.0035104582 -0.010875985 -0.1004576 0.002252769 -0.0076732202 -0.099193446 0.0020881868 -0.0053052092 -0.097263314 0.0033204334 -0.0054263044 -0.097630545 0.0033204334 -0.0054263044 -0.097630545 0.0020881868 -0.0053052092 -0.097263314 0.0032541379 -0.0029426352 -0.095046297 -0.016648252 0.032491717 -0.095877461 -0.015899897 0.041797802 -0.091251142 -0.015254431 0.035501182 -0.097104289 0.0028461854 -0.034674194 -0.043396473 -0.003734376 -0.034557033 -0.043395471 0.00021250082 -0.034533881 -0.094890684 0.0027627358 -0.034635402 -0.096498288 0.00021250082 -0.034533881 -0.094890684 0.001424922 -0.034443188 -0.096554667 0.0027627358 -0.034635402 -0.096498288 0.0028461854 -0.034674194 -0.043396473 0.00021250082 -0.034533881 -0.094890684 0.0039776135 -0.0085692378 -0.098950908 0.002252769 -0.0076732202 -0.099193446 0.0033204334 -0.0054263044 -0.097630545 -0.015899897 0.041797802 -0.091251142 -0.016894402 0.040904805 -0.087225534 -0.016009828 0.043578181 -0.088644944 -0.017573025 0.028963126 -0.091293596 -0.017286481 0.03041652 -0.093619481 -0.017942682 0.0082222335 -0.088183515 -0.016957346 0.010755491 -0.094254874 -0.017942682 0.0082222335 -0.088183515 -0.017286481 0.03041652 -0.093619481 0.0034127901 -0.014754708 -0.10118417 0.0035104582 -0.010875985 -0.1004576 0.0039776135 -0.0085692378 -0.098950908 0.0039776135 -0.0085692378 -0.098950908 0.0033204334 -0.0054263044 -0.097630545 0.0040886076 -0.0038252303 -0.094864719 -0.016835248 0.037749004 -0.091975465 -0.016894402 0.040904805 -0.087225534 -0.015899897 0.041797802 -0.091251142 -0.016957346 0.010755491 -0.094254874 -0.017637564 -0.0049834312 -0.088801168 -0.017942682 0.0082222335 -0.088183515 -0.017113568 -0.0058793286 -0.091577321 -0.017637564 -0.0049834312 -0.088801168 -0.016957346 0.010755491 -0.094254874 0.0033204334 -0.0054263044 -0.097630545 0.0032541379 -0.0029426352 -0.095046297 0.0040886076 -0.0038252303 -0.094864719 -0.017942682 0.0082222335 -0.088183515 -0.017637564 -0.0049834312 -0.088801168 -0.018267166 -0.010233228 -0.082870513 0.0035104582 -0.010875985 -0.1004576 0.002252769 -0.0076732202 -0.099193446 0.0039776135 -0.0085692378 -0.098950908 -0.017113568 -0.0058793286 -0.091577321 -0.01713899 -0.011516855 -0.090080731 -0.017637564 -0.0049834312 -0.088801168 -0.016009828 0.043578181 -0.088644944 -0.016894402 0.040904805 -0.087225534 -0.016382195 0.043407034 -0.084414855 -0.0090511395 0.038305834 -0.098157756 -0.012149625 0.03783283 -0.09775243 -0.010391991 0.040658221 -0.096117467 0.0039776135 -0.0085692378 -0.098950908 0.0036249303 -0.026562355 -0.10071249 0.0034127901 -0.014754708 -0.10118417 -0.017637564 -0.0049834312 -0.088801168 -0.01713899 -0.011516855 -0.090080731 -0.018267166 -0.010233228 -0.082870513 0.0034127901 -0.014754708 -0.10118417 0.0036249303 -0.026562355 -0.10071249 0.0028859049 -0.026881574 -0.10129181 0.0029494616 -0.029290134 -0.10089672 0.0035415436 -0.032759529 -0.098889232 0.0018110274 -0.032829542 -0.099566557 -0.016648252 0.032491717 -0.095877461 -0.016835248 0.037749004 -0.091975465 -0.015899897 0.041797802 -0.091251142 0.0029494616 -0.029290134 -0.10089672 0.0028859049 -0.026881574 -0.10129181 0.0036249303 -0.026562355 -0.10071249 -0.01712955 -0.018834477 -0.086782619 -0.018267166 -0.010233228 -0.082870513 -0.01713899 -0.011516855 -0.090080731 0.0035415436 -0.032759529 -0.098889232 0.0029494616 -0.029290134 -0.10089672 0.0036249303 -0.026562355 -0.10071249 0.0035415436 -0.032759529 -0.098889232 0.0035607195 -0.033722997 -0.096962959 0.0031694872 -0.034395296 -0.09713842 0.0031694872 -0.034395296 -0.09713842 0.0018110274 -0.032829542 -0.099566557 0.0035415436 -0.032759529 -0.098889232 -0.018267166 -0.010233228 -0.082870513 -0.01712955 -0.018834477 -0.086782619 -0.018367371 -0.015823467 -0.077480212 0.0035607195 -0.033722997 -0.096962959 0.0035188356 -0.034093503 -0.043407854 0.0031694872 -0.034395296 -0.09713842 0.0031694872 -0.034395296 -0.09713842 0.0035188356 -0.034093503 -0.043407854 0.0028461854 -0.034674194 -0.043396473 -0.010391991 0.040658221 -0.096117467 -0.013850057 0.044588722 -0.091423132 -0.010415686 0.044893187 -0.092357211 -0.01712955 -0.018834477 -0.086782619 -0.017137421 -0.021285845 -0.084776036 -0.018367371 -0.015823467 -0.077480212 -0.010391991 0.040658221 -0.096117467 -0.012149625 0.03783283 -0.09775243 -0.01301809 0.043063801 -0.093244083 -0.010391991 0.040658221 -0.096117467 -0.01301809 0.043063801 -0.093244083 -0.013850057 0.044588722 -0.091423132 0.0031694872 -0.034395296 -0.09713842 0.0028461854 -0.034674194 -0.043396473 0.0027627358 -0.034635402 -0.096498288 -0.018367371 -0.015823467 -0.077480212 -0.017357402 -0.024792181 -0.07650654 -0.018416014 -0.018604752 -0.071919702 -0.017137421 -0.021285845 -0.084776036 -0.017357402 -0.024792181 -0.07650654 -0.018367371 -0.015823467 -0.077480212 0.014521732 -0.025179654 -0.033299655 0.01557625 -0.019293606 -0.033279784 0.012460424 -0.026142064 -0.033335332 0.012460424 -0.026142064 -0.033335332 0.01557625 -0.019293606 -0.033279784 0.012683555 -0.013612057 -0.033328019 0.01557625 -0.019293606 -0.033279784 0.01534707 -0.013613129 -0.033282146 0.012683555 -0.013612057 -0.033328019 -0.017357402 -0.024792181 -0.07650654 -0.017436426 -0.025328521 -0.071974866 -0.018416014 -0.018604752 -0.071919702 0.017734291 -0.0096994778 0.03086081 0.017714536 -0.0097032487 -0.064182878 0.017447945 -0.0094511751 -0.06427151 0.017734291 -0.0096994778 0.03086081 0.017447945 -0.0094511751 -0.06427151 0.017569909 -0.0095459288 0.067659691 0.017799802 -0.0074679567 0.071265064 0.017552564 -0.0091420216 0.069186822 0.017552393 -0.0073993788 0.071006395 -0.016648252 0.032491717 -0.095877461 -0.017286481 0.03041652 -0.093619481 -0.016835248 0.037749004 -0.091975465 0.017569909 -0.0095459288 0.067659691 0.017552564 -0.0091420216 0.069186822 0.017799802 -0.0074679567 0.071265064 0.017472442 -0.0070897546 -0.067742035 0.017939612 0.0015740453 -0.070702478 0.017560523 0.001305674 -0.070271164 0.017472442 -0.0070897546 -0.067742035 0.017737458 -0.0085941385 -0.067016378 0.017939612 0.0015740453 -0.070702478 0.017690411 0.001184989 0.073639244 0.017799802 -0.0074679567 0.071265064 0.017552393 -0.0073993788 0.071006395 0.017560523 0.001305674 -0.070271164 0.017939612 0.0015740453 -0.070702478 0.017981727 0.0039823432 -0.070250936 0.015494161 0.0038460989 -0.069907971 0.017981727 0.0039823432 -0.070250936 0.018014982 0.0063742297 -0.066752151 -0.016835248 0.037749004 -0.091975465 -0.017461421 0.034692679 -0.090182737 -0.016894402 0.040904805 -0.087225534 0.00088998588 0.040770926 -0.096902929 -0.0027822405 0.042574469 -0.095201902 0.0009480656 0.044009194 -0.093749322 0.00084843446 0.038449511 -0.098527588 -0.0049365582 0.038159356 -0.098537065 0.00088998588 0.040770926 -0.096902929 0.018019294 0.006262558 0.070260622 0.017814349 0.0060429457 0.069761775 0.018014982 0.0063742297 -0.066752151 0.018014982 0.0063742297 -0.066752151 0.017814349 0.0060429457 0.069761775 0.017689716 0.0060803108 -0.066719346 0.015279166 -0.0094053559 0.067980371 0.017569909 -0.0095459288 0.067659691 0.01526011 -0.0093184356 -0.064711712 0.01526011 -0.0093184356 -0.064711712 0.017569909 -0.0095459288 0.067659691 0.017447945 -0.0094511751 -0.06427151 -0.0049365582 0.038159356 -0.098537065 -0.0065341755 0.04038744 -0.09689527 0.00088998588 0.040770926 -0.096902929 0.0009480656 0.044009194 -0.093749322 -0.010415686 0.044893187 -0.092357211 0.00097443373 0.045470487 -0.091849767 -0.017286481 0.03041652 -0.093619481 -0.017461421 0.034692679 -0.090182737 -0.016835248 0.037749004 -0.091975465 0.00088998588 0.040770926 -0.096902929 -0.0065341755 0.04038744 -0.09689527 -0.0027822405 0.042574469 -0.095201902 -0.0027822405 0.042574469 -0.095201902 -0.010415686 0.044893187 -0.092357211 0.0009480656 0.044009194 -0.093749322 0.017552564 -0.0091420216 0.069186822 0.015320247 -0.0070793051 0.071060188 0.017552393 -0.0073993788 0.071006395 0.015279166 -0.0094053559 0.067980371 0.015320247 -0.0070793051 0.071060188 0.017552564 -0.0091420216 0.069186822 -0.016957346 0.010755491 -0.094254874 -0.017286481 0.03041652 -0.093619481 -0.016648252 0.032491717 -0.095877461 -0.014936531 0.044236206 -0.090572625 -0.015899897 0.041797802 -0.091251142 -0.016009828 0.043578181 -0.088644944 -0.017286481 0.03041652 -0.093619481 -0.017573025 0.028963126 -0.091293596 -0.017461421 0.034692679 -0.090182737 0.017569909 -0.0095459288 0.067659691 0.015279166 -0.0094053559 0.067980371 0.017552564 -0.0091420216 0.069186822 -0.0027822405 0.042574469 -0.095201902 -0.0065341755 0.04038744 -0.09689527 -0.010415686 0.044893187 -0.092357211 -0.017461421 0.034692679 -0.090182737 -0.017406121 0.038223293 -0.082317337 -0.016894402 0.040904805 -0.087225534 -0.016382195 0.043407034 -0.084414855 -0.017406121 0.038223293 -0.082317337 -0.016405929 0.043023102 -0.07970088 -0.0090511395 0.038305834 -0.098157756 -0.0065341755 0.04038744 -0.09689527 -0.0049365582 0.038159356 -0.098537065 -0.016894402 0.040904805 -0.087225534 -0.017406121 0.038223293 -0.082317337 -0.016382195 0.043407034 -0.084414855 0.017552393 -0.0073993788 0.071006395 0.01547731 0.0016644675 0.073641896 0.017690411 0.001184989 0.073639244 0.015320247 -0.0070793051 0.071060188 0.01547731 0.0016644675 0.073641896 0.017552393 -0.0073993788 0.071006395 -0.0065341755 0.04038744 -0.09689527 -0.010391991 0.040658221 -0.096117467 -0.010415686 0.044893187 -0.092357211 0.01797108 0.0038462211 0.073550001 0.015542881 0.0053558899 0.071842067 0.018019294 0.006262558 0.070260622 0.015515761 0.0038191269 0.073233306 0.015542881 0.0053558899 0.071842067 0.01797108 0.0038462211 0.073550001 0.017690411 0.001184989 0.073639244 0.015515761 0.0038191269 0.073233306 0.01797108 0.0038462211 0.073550001 -0.012149625 0.03783283 -0.09775243 -0.014143295 0.03643579 -0.097615935 -0.01301809 0.043063801 -0.093244083 -0.014143295 0.03643579 -0.097615935 -0.013850057 0.044588722 -0.091423132 -0.01301809 0.043063801 -0.093244083 -0.014143295 0.03643579 -0.097615935 -0.015254431 0.035501182 -0.097104289 -0.013850057 0.044588722 -0.091423132 -0.013850057 0.044588722 -0.091423132 -0.015899897 0.041797802 -0.091251142 -0.014936531 0.044236206 -0.090572625 0.01547731 0.0016644675 0.073641896 0.015515761 0.0038191269 0.073233306 0.017690411 0.001184989 0.073639244 -0.017568404 0.0056812353 0.077779055 -0.017779453 0.0087143471 0.081035577 -0.017640902 0.024183417 0.082759045 0.015542881 0.0053558899 0.071842067 0.01555369 0.0059708394 0.070138745 0.017814349 0.0060429457 0.069761775 -0.017779453 0.0087143471 0.081035577 -0.018028341 0.036828727 0.091166414 -0.017640902 0.024183417 0.082759045 -0.017779453 0.0087143471 0.081035577 -0.018543003 0.033434074 0.093973547 -0.018028341 0.036828727 0.091166414 -0.018200222 0.0087886956 0.08281929 -0.018676065 0.017392296 0.088194832 -0.018543003 0.033434074 0.093973547 -0.017405938 0.0068933093 0.070266038 -0.017417749 0.013129745 -0.074602954 -0.017439334 0.0070054946 -0.066746771 -0.017439334 0.0070054946 -0.066746771 -0.017417749 0.013129745 -0.074602954 -0.017492404 0.0046139685 -0.070245527 0.018019294 0.006262558 0.070260622 0.015542881 0.0053558899 0.071842067 0.017814349 0.0060429457 0.069761775 -0.017640902 0.024183417 0.082759045 -0.017405882 0.038063712 0.083988205 -0.017405938 0.0068933093 0.070266038 -0.017568404 0.0056812353 0.077779055 -0.01744277 0.004476788 0.073555417 -0.017257048 0.0018072332 0.073644571 -0.017405882 0.038063712 0.083988205 -0.017640902 0.024183417 0.082759045 -0.018028341 0.036828727 0.091166414 0.017689716 0.0060803108 -0.066719346 0.01555369 0.0059708394 0.070138745 0.015534104 0.0060475073 -0.066779912 -0.017675163 -0.0068363165 0.071270466 -0.017568404 0.0056812353 0.077779055 -0.017257048 0.0018072332 0.073644571 0.017814349 0.0060429457 0.069761775 0.01555369 0.0059708394 0.070138745 0.017689716 0.0060803108 -0.066719346 0.018014982 0.0063742297 -0.066752151 0.015528471 0.0057462109 -0.067944586 0.015494161 0.0038460989 -0.069907971 0.017689716 0.0060803108 -0.066719346 0.015528471 0.0057462109 -0.067944586 0.018014982 0.0063742297 -0.066752151 -0.017675163 -0.0068363165 0.071270466 -0.017779453 0.0087143471 0.081035577 -0.017568404 0.0056812353 0.077779055 0.015534104 0.0060475073 -0.066779912 0.015528471 0.0057462109 -0.067944586 0.017689716 0.0060803108 -0.066719346 0.015494161 0.0038460989 -0.069907971 0.015466816 0.0023018434 -0.070292279 0.017981727 0.0039823432 -0.070250936 0.017560523 0.001305674 -0.070271164 0.015298516 -0.0071815583 -0.067631453 0.017472442 -0.0070897546 -0.067742035 0.015466816 0.0023018434 -0.070292279 0.015298516 -0.0071815583 -0.067631453 0.017560523 0.001305674 -0.070271164 0.017447945 -0.0094511751 -0.06427151 0.017714536 -0.0097032487 -0.064182878 0.01526011 -0.0093184356 -0.064711712 0.017714536 -0.0097032487 -0.064182878 0.015278844 -0.0082784714 -0.066797391 0.01526011 -0.0093184356 -0.064711712 -0.020089339 0.0028970751 0.084406652 -0.018676065 0.017392296 0.088194832 -0.018200222 0.0087886956 0.08281929 -0.019199643 0.02933459 0.094579294 -0.018676065 0.017392296 0.088194832 -0.021720931 0.011227369 0.09211795 -0.017568404 0.0056812353 0.077779055 -0.017640902 0.024183417 0.082759045 -0.017405938 0.0068933093 0.070266038 0.017737458 -0.0085941385 -0.067016378 0.015278844 -0.0082784714 -0.066797391 0.017714536 -0.0097032487 -0.064182878 -0.023147175 0.00043081786 0.089597046 -0.020089339 0.0028970751 0.084406652 -0.019985493 -0.00774614 0.078095645 -0.023147175 0.00043081786 0.089597046 -0.019985493 -0.00774614 0.078095645 -0.02415102 -0.0071390206 0.087392777 -0.017779453 0.0087143471 0.081035577 -0.018200222 0.0087886956 0.08281929 -0.018543003 0.033434074 0.093973547 0.017737458 -0.0085941385 -0.067016378 0.015298516 -0.0071815583 -0.067631453 0.015278844 -0.0082784714 -0.066797391 0.017472442 -0.0070897546 -0.067742035 0.015298516 -0.0071815583 -0.067631453 0.017737458 -0.0085941385 -0.067016378 -0.021720931 0.011227369 0.09211795 -0.020089339 0.0028970751 0.084406652 -0.023147175 0.00043081786 0.089597046 -0.017417749 0.013129745 -0.074602954 -0.017405938 0.0068933093 0.070266038 -0.017406121 0.038223293 -0.082317337 -0.019199643 0.02933459 0.094579294 -0.018543003 0.033434074 0.093973547 -0.018676065 0.017392296 0.088194832 -0.017461421 0.034692679 -0.090182737 -0.017417749 0.013129745 -0.074602954 -0.017406121 0.038223293 -0.082317337 -0.018200222 0.0087886956 0.08281929 -0.018519722 -0.0075554377 0.074463673 -0.020089339 0.0028970751 0.084406652 -0.018519722 -0.0075554377 0.074463673 -0.019985493 -0.00774614 0.078095645 -0.020089339 0.0028970751 0.084406652 -0.017779453 0.0087143471 0.081035577 -0.017675163 -0.0068363165 0.071270466 -0.018200222 0.0087886956 0.08281929 0.0018479313 -0.028634271 -0.031771436 0.0078028161 -0.027141878 -0.029305741 -0.00030898367 -0.027142595 -0.030333543 -0.017406121 0.038223293 -0.082317337 -0.017405938 0.0068933093 0.070266038 -0.017405882 0.038063712 0.083988205 -0.017568404 0.0056812353 0.077779055 -0.017405938 0.0068933093 0.070266038 -0.01744277 0.004476788 0.073555417 0.0018479313 -0.028634271 -0.031771436 0.013458507 -0.028631488 -0.028865032 0.0078028161 -0.027141878 -0.029305741 -0.020089339 0.0028970751 0.084406652 -0.021720931 0.011227369 0.09211795 -0.018676065 0.017392296 0.088194832 -0.017675163 -0.0068363165 0.071270466 -0.018519722 -0.0075554377 0.074463673 -0.018200222 0.0087886956 0.08281929 -0.018412288 -0.018819401 -0.024613166 -0.018416014 -0.018604752 -0.071919702 -0.017527634 -0.025095725 -0.025284721 -0.018416014 -0.018604752 -0.071919702 -0.017436426 -0.025328521 -0.071974866 -0.017527634 -0.025095725 -0.025284721 -0.017520251 -0.0089211399 0.067665048 -0.018419355 -0.0090868054 0.072703756 -0.017675163 -0.0068363165 0.071270466 0.013458507 -0.028631488 -0.028865032 0.012541698 -0.02714381 -0.027656022 0.0078028161 -0.027141878 -0.029305741 0.013458507 -0.028631488 -0.028865032 0.014571738 -0.028382378 -0.028062645 0.012541698 -0.02714381 -0.027656022 -0.021486768 -0.0103228 0.079210266 -0.024927923 -0.012076124 0.08460848 -0.019985493 -0.00774614 0.078095645 -0.025743011 -0.016192442 0.080195025 -0.024927923 -0.012076124 0.08460848 -0.022163888 -0.012542278 0.077847935 -0.019698517 -0.012378869 0.069142237 -0.021911418 -0.014196424 0.073599264 -0.018416824 -0.010713339 0.068896867 0.014571738 -0.028382378 -0.028062645 0.016230969 -0.027140638 -0.025732804 0.012541698 -0.02714381 -0.027656022 -0.021911418 -0.014196424 0.073599264 -0.018419355 -0.0090868054 0.072703756 -0.018416824 -0.010713339 0.068896867 -0.017417749 0.013129745 -0.074602954 -0.017525492 0.0062524551 -0.076075807 -0.017492404 0.0046139685 -0.070245527 0.014571738 -0.028382378 -0.028062645 0.015683807 -0.027722642 -0.026725426 0.016230969 -0.027140638 -0.025732804 0.014989025 -0.028640103 0.031427536 0.010677854 -0.027172908 0.03174074 0.013764924 -0.0271741 0.03041243 -0.018419355 -0.0090868054 0.072703756 -0.021911418 -0.014196424 0.073599264 -0.022163888 -0.012542278 0.077847935 -0.017525492 0.0062524551 -0.076075807 -0.017417749 0.013129745 -0.074602954 -0.017461421 0.034692679 -0.090182737 -0.022163888 -0.012542278 0.077847935 -0.021486768 -0.0103228 0.079210266 -0.018419355 -0.0090868054 0.072703756 -0.026572293 -0.018711401 0.073174439 -0.026339281 -0.018365392 0.075648695 -0.022134516 -0.014837055 0.071241312 0.004423622 -0.028674256 0.034848403 -0.00032632318 -0.028672859 0.03518169 0.0048601879 -0.027178407 0.033257075 0.016634202 -0.027164482 0.02884067 0.014989025 -0.028640103 0.031427536 0.013764924 -0.0271741 0.03041243 -0.022163888 -0.012542278 0.077847935 -0.024927923 -0.012076124 0.08460848 -0.021486768 -0.0103228 0.079210266 -0.017710786 -0.0090724919 -0.064177476 -0.018367371 -0.015823467 -0.077480212 -0.018416014 -0.018604752 -0.071919702 0.014989025 -0.028640103 0.031427536 0.0048601879 -0.027178407 0.033257075 0.010677854 -0.027172908 0.03174074 0.014989025 -0.028640103 0.031427536 0.004423622 -0.028674256 0.034848403 0.0048601879 -0.027178407 0.033257075 -0.00032632318 -0.028672859 0.03518169 -0.00029992295 -0.027180485 0.033664845 0.0048601879 -0.027178407 0.033257075 -0.01873704 -0.011124428 0.034237873 -0.018022139 -0.0099973716 0.033282492 -0.018634301 -0.011553357 0.031519458 0.016166385 -0.012112097 -0.025922116 0.017808175 -0.012660813 -0.02488382 0.016971603 -0.012550397 -0.020427115 0.015486152 -0.011236953 -0.026316924 0.015303794 -0.010767289 0.023208767 0.015263484 -0.010323979 -0.02644838 0.016971603 -0.012550397 -0.020427115 0.01726599 -0.012644946 0.02859024 0.016166385 -0.012112097 -0.025922116 0.016971603 -0.012550397 -0.020427115 0.017808175 -0.012660813 -0.02488382 0.01726599 -0.012644946 0.02859024 0.015486152 -0.011236953 -0.026316924 0.016166385 -0.012112097 -0.025922116 0.015690625 -0.011548515 0.029550726 0.015303794 -0.010767289 0.023208767 0.015486152 -0.011236953 -0.026316924 0.015690625 -0.011548515 0.029550726 0.016166385 -0.012112097 -0.025922116 0.01726599 -0.012644946 0.02859024 0.015690625 -0.011548515 0.029550726 0.00084103661 -0.026474824 -0.098652855 -0.00030031882 -0.026071236 -0.098368891 -9.8299497e-05 -0.014721926 -0.09835723 0.00093780947 -0.014714009 -0.098589979 0.00084103661 -0.026474824 -0.098652855 -9.8299497e-05 -0.014721926 -0.09835723 0.0019144615 -0.01282919 -0.099779323 0.00084103661 -0.026474824 -0.098652855 0.00093780947 -0.014714009 -0.098589979 0.0016541607 -0.027460879 -0.099900357 0.00084103661 -0.026474824 -0.098652855 0.0019144615 -0.01282919 -0.099779323 -5.5719996e-05 -0.012334186 -0.097929873 -6.7641076e-06 -0.009593728 -0.096872263 0.0012114883 -0.0078710038 -0.096243367 -0.018634301 -0.011553357 0.031519458 -0.019335294 -0.01410636 0.030993897 -0.021520169 -0.015322039 0.033252571 0.00093780947 -0.014714009 -0.098589979 0.0012114883 -0.0078710038 -0.096243367 0.0019144615 -0.01282919 -0.099779323 0.00093780947 -0.014714009 -0.098589979 -5.5719996e-05 -0.012334186 -0.097929873 0.0012114883 -0.0078710038 -0.096243367 -0.01873704 -0.011124428 0.034237873 -0.018634301 -0.011553357 0.031519458 -0.021520169 -0.015322039 0.033252571 0.0019144615 -0.01282919 -0.099779323 0.0012114883 -0.0078710038 -0.096243367 0.0020841556 -0.0043086093 -0.09463834 -0.019335294 -0.01410636 0.030993897 -0.018101184 -0.012050272 0.028088842 -0.019025438 -0.017668309 0.030236635 -0.019025438 -0.017668309 0.030236635 -0.018101184 -0.012050272 0.028088842 -0.018392729 -0.018899618 0.027969893 0.0012114883 -0.0078710038 -0.096243367 0.00068490487 -0.0059826188 -0.094179153 0.0020841556 -0.0043086093 -0.09463834 0.0012114883 -0.0078710038 -0.096243367 -6.7641076e-06 -0.009593728 -0.096872263 0.00068490487 -0.0059826188 -0.094179153 -9.8299497e-05 -0.014721926 -0.09835723 -5.5719996e-05 -0.012334186 -0.097929873 0.00093780947 -0.014714009 -0.098589979 0.017981727 0.0039823432 -0.070250936 0.015466816 0.0023018434 -0.070292279 0.017560523 0.001305674 -0.070271164 -0.025508162 -0.018720089 0.034658592 -0.022226235 -0.014862907 0.034794316 -0.021520169 -0.015322039 0.033252571 0.015657783 0.0060820347 -0.095939822 0.016752323 0.0010507624 -0.094132192 0.016357491 -0.0072795525 -0.092791267 -0.01873704 -0.011124428 0.034237873 -0.019421022 -0.011807635 0.048915636 -0.018022139 -0.0099973716 0.033282492 0.016357491 -0.0072795525 -0.092791267 0.015432101 -0.0067835744 -0.093632996 0.015657783 0.0060820347 -0.095939822 0.00082713109 0.037255943 -0.098865494 0.00084843446 0.038449511 -0.098527588 0.006619487 0.037953589 -0.098538831 0.010051628 0.036749966 -0.098686025 0.00082713109 0.037255943 -0.098865494 0.006619487 0.037953589 -0.098538831 0.010051628 0.036749966 -0.098686025 0.013358864 0.036499083 -0.098351218 0.014708686 0.029305888 -0.098509133 0.010736761 0.037953522 -0.098160774 0.013816538 0.037370507 -0.097756393 0.013358864 0.036499083 -0.098351218 0.015759401 0.035903357 -0.097620465 0.016016953 0.032169774 -0.098219991 0.014708686 0.029305888 -0.098509133 -0.01873704 -0.011124428 0.034237873 -0.020418106 -0.012675732 0.037452832 -0.019421022 -0.011807635 0.048915636 0.013358864 0.036499083 -0.098351218 0.013816538 0.037370507 -0.097756393 0.015759401 0.035903357 -0.097620465 0.015759401 0.035903357 -0.097620465 0.016836599 0.034929808 -0.097109184 0.016016953 0.032169774 -0.098219991 -0.028767789 -0.018670363 0.04104894 -0.022226235 -0.014862907 0.034794316 -0.028429255 -0.018676408 0.038343374 0.016016953 0.032169774 -0.098219991 0.016836599 0.034929808 -0.097109184 0.017807722 0.028782414 -0.09662497 -0.018022139 -0.0099973716 0.033282492 -0.019421022 -0.011807635 0.048915636 -0.018416824 -0.010713339 0.068896867 -0.017573025 0.028963126 -0.091293596 -0.017525492 0.0062524551 -0.076075807 -0.017461421 0.034692679 -0.090182737 0.017658167 0.010139145 -0.094260156 0.017807722 0.028782414 -0.09662497 0.018122775 0.0318726 -0.095882766 0.014541019 0.015327241 -0.097521335 0.015078673 0.021623941 -0.098011188 0.015717398 0.014636344 -0.097093053 -0.019698517 -0.012378869 0.069142237 -0.022134516 -0.014837055 0.071241312 -0.021911418 -0.014196424 0.073599264 -0.022812655 -0.015059399 0.061256383 -0.026572293 -0.018711401 0.073174439 -0.022134516 -0.014837055 0.071241312 0.014541019 0.015327241 -0.097521335 0.015717398 0.014636344 -0.097093053 0.014165525 0.007617977 -0.096608721 -0.018419355 -0.0090868054 0.072703756 -0.019985493 -0.00774614 0.078095645 -0.018519722 -0.0075554377 0.074463673 -0.026572293 -0.018711401 0.073174439 -0.025878789 -0.017356751 0.05798753 -0.028767789 -0.018670363 0.04104894 -0.017525492 0.0062524551 -0.076075807 -0.017695075 -0.0079632541 -0.067010969 -0.017536247 0.0022056939 -0.070697062 -0.017710786 -0.0090724919 -0.064177476 -0.017695075 -0.0079632541 -0.067010969 -0.017525492 0.0062524551 -0.076075807 0.016752323 0.0010507624 -0.094132192 0.017223069 -0.0064906967 -0.091582559 0.016357491 -0.0072795525 -0.092791267 -0.021911418 -0.014196424 0.073599264 -0.026339281 -0.018365392 0.075648695 -0.025743011 -0.016192442 0.080195025 -0.017942682 0.0082222335 -0.088183515 -0.017525492 0.0062524551 -0.076075807 -0.017573025 0.028963126 -0.091293596 0.015717398 0.014636344 -0.097093053 0.01428662 0.0013379335 -0.095636211 0.014165525 0.007617977 -0.096608721 -0.017899279 -0.01205187 0.025482479 -0.017701341 -0.0090685375 0.030866217 -0.017897574 -0.01202506 -0.024878344 0.01428662 0.0013379335 -0.095636211 0.015432101 -0.0067835744 -0.093632996 0.014119886 -0.0059519424 -0.094298467 0.016752323 0.0010507624 -0.094132192 0.017658167 0.010139145 -0.094260156 0.017223069 -0.0064906967 -0.091582559 -0.022226235 -0.014862907 0.034794316 -0.01873704 -0.011124428 0.034237873 -0.021520169 -0.015322039 0.033252571 -0.018267166 -0.010233228 -0.082870513 -0.018367371 -0.015823467 -0.077480212 -0.017710786 -0.0090724919 -0.064177476 -0.022226235 -0.014862907 0.034794316 -0.025508162 -0.018720089 0.034658592 -0.027910234 -0.018694086 0.037012558 0.015759401 0.035903357 -0.097620465 0.014708686 0.029305888 -0.098509133 0.013358864 0.036499083 -0.098351218 -0.024927923 -0.012076124 0.08460848 -0.02415102 -0.0071390206 0.087392777 -0.019985493 -0.00774614 0.078095645 -0.018412288 -0.018819401 -0.024613166 -0.017897574 -0.01202506 -0.024878344 -0.017710786 -0.0090724919 -0.064177476 0.014708686 0.029305888 -0.098509133 0.016016953 0.032169774 -0.098219991 0.016438011 0.028216666 -0.097924851 0.016016953 0.032169774 -0.098219991 0.017807722 0.028782414 -0.09662497 0.016438011 0.028216666 -0.097924851 -0.018412288 -0.018819401 -0.024613166 -0.017710786 -0.0090724919 -0.064177476 -0.018416014 -0.018604752 -0.071919702 -0.017710786 -0.0090724919 -0.064177476 -0.017897574 -0.01202506 -0.024878344 -0.017701341 -0.0090685375 0.030866217 0.010051628 0.036749966 -0.098686025 0.006619487 0.037953589 -0.098538831 0.010736761 0.037953522 -0.098160774 0.010051628 0.036749966 -0.098686025 0.010736761 0.037953522 -0.098160774 0.013358864 0.036499083 -0.098351218 -0.018101184 -0.012050272 0.028088842 -0.018634301 -0.011553357 0.031519458 -0.017701341 -0.0090685375 0.030866217 -0.017701341 -0.0090685375 0.030866217 -0.018634301 -0.011553357 0.031519458 -0.018022139 -0.0099973716 0.033282492 0.016438011 0.028216666 -0.097924851 0.015078673 0.021623941 -0.098011188 0.014708686 0.029305888 -0.098509133 0.015717398 0.014636344 -0.097093053 0.015078673 0.021623941 -0.098011188 0.016438011 0.028216666 -0.097924851 0.017807722 0.028782414 -0.09662497 0.016836599 0.034929808 -0.097109184 0.018122775 0.0318726 -0.095882766 0.017807722 0.028782414 -0.09662497 0.016846918 0.015996052 -0.096470684 0.016438011 0.028216666 -0.097924851 -0.018101184 -0.012050272 0.028088842 -0.019335294 -0.01410636 0.030993897 -0.018634301 -0.011553357 0.031519458 0.015717398 0.014636344 -0.097093053 0.016438011 0.028216666 -0.097924851 0.016846918 0.015996052 -0.096470684 0.016846918 0.015996052 -0.096470684 0.017807722 0.028782414 -0.09662497 0.017658167 0.010139145 -0.094260156 0.015657783 0.0060820347 -0.095939822 0.015717398 0.014636344 -0.097093053 0.016846918 0.015996052 -0.096470684 0.015657783 0.0060820347 -0.095939822 0.01428662 0.0013379335 -0.095636211 0.015717398 0.014636344 -0.097093053 -0.017899279 -0.01205187 0.025482479 -0.018101184 -0.012050272 0.028088842 -0.017701341 -0.0090685375 0.030866217 0.016846918 0.015996052 -0.096470684 0.017658167 0.010139145 -0.094260156 0.016752323 0.0010507624 -0.094132192 0.015657783 0.0060820347 -0.095939822 0.016846918 0.015996052 -0.096470684 0.016752323 0.0010507624 -0.094132192 0.015657783 0.0060820347 -0.095939822 0.015432101 -0.0067835744 -0.093632996 0.01428662 0.0013379335 -0.095636211 0.015701871 -0.026827535 -0.078422643 0.014821185 -0.02759495 -0.077811487 0.014574491 -0.026329579 -0.082345672 -0.019025438 -0.017668309 0.030236635 -0.020117838 -0.015958026 0.031671822 -0.019335294 -0.01410636 0.030993897 0.016700463 -0.021888336 -0.0847812 0.015701871 -0.026827535 -0.078422643 0.016054425 -0.024402628 -0.083443023 0.013298664 -0.027994558 -0.078105532 0.013597978 -0.02725702 -0.080812566 0.014821185 -0.02759495 -0.077811487 0.015701871 -0.026827535 -0.078422643 0.014574491 -0.026329579 -0.082345672 0.016054425 -0.024402628 -0.083443023 0.016054425 -0.024402628 -0.083443023 0.015896039 -0.021727251 -0.08692044 0.016700463 -0.021888336 -0.0847812 0.016054425 -0.024402628 -0.083443023 0.01472415 -0.02435427 -0.085473955 0.015896039 -0.021727251 -0.08692044 0.013314299 -0.025821334 -0.084089048 0.013569068 -0.024516165 -0.085918479 0.01472415 -0.02435427 -0.085473955 0.016700463 -0.021888336 -0.0847812 0.015896039 -0.021727251 -0.08692044 0.016779372 -0.019438226 -0.086787798 -0.01873704 -0.011124428 0.034237873 -0.022226235 -0.014862907 0.034794316 -0.020418106 -0.012675732 0.037452832 0.01472415 -0.02435427 -0.085473955 0.013569068 -0.024516165 -0.085918479 0.013602195 -0.022075938 -0.088317752 0.016779372 -0.019438226 -0.086787798 0.015896039 -0.021727251 -0.08692044 0.015436742 -0.019655235 -0.089023232 0.015896039 -0.021727251 -0.08692044 0.01472415 -0.02435427 -0.085473955 0.013602195 -0.022075938 -0.088317752 0.015896039 -0.021727251 -0.08692044 0.013602195 -0.022075938 -0.088317752 0.015436742 -0.019655235 -0.089023232 -0.017492404 0.0046139685 -0.070245527 -0.017525492 0.0062524551 -0.076075807 -0.017536247 0.0022056939 -0.070697062 0.016779372 -0.019438226 -0.086787798 0.015436742 -0.019655235 -0.089023232 0.015944991 -0.016300667 -0.090293154 -0.019335294 -0.01410636 0.030993897 -0.020117838 -0.015958026 0.031671822 -0.021520169 -0.015322039 0.033252571 -0.022226235 -0.014862907 0.034794316 -0.028767789 -0.018670363 0.04104894 -0.020418106 -0.012675732 0.037452832 0.015436742 -0.019655235 -0.089023232 0.013553783 -0.02022858 -0.089629807 0.015944991 -0.016300667 -0.090293154 0.013553783 -0.02022858 -0.089629807 0.015436742 -0.019655235 -0.089023232 0.013602195 -0.022075938 -0.088317752 -0.022821421 -0.014592911 0.041192882 -0.020418106 -0.012675732 0.037452832 -0.028767789 -0.018670363 0.04104894 -0.021704208 -0.018832918 0.033038348 -0.023049908 -0.018121183 0.033579927 -0.020117838 -0.015958026 0.031671822 0.016779372 -0.019438226 -0.086787798 0.015944991 -0.016300667 -0.090293154 0.017048242 -0.012125567 -0.090085946 0.017048242 -0.012125567 -0.090085946 0.015944991 -0.016300667 -0.090293154 0.015881743 -0.012563075 -0.091780059 -0.023049908 -0.018121183 0.033579927 -0.021520169 -0.015322039 0.033252571 -0.020117838 -0.015958026 0.031671822 0.015944991 -0.016300667 -0.090293154 0.01397139 -0.012584298 -0.092748731 0.015881743 -0.012563075 -0.091780059 -0.018022139 -0.0099973716 0.033282492 -0.017520251 -0.0089211399 0.067665048 -0.017701341 -0.0090685375 0.030866217 0.015944991 -0.016300667 -0.090293154 0.013553783 -0.02022858 -0.089629807 0.01397139 -0.012584298 -0.092748731 -0.025508162 -0.018720089 0.034658592 -0.021520169 -0.015322039 0.033252571 -0.023049908 -0.018121183 0.033579927 -0.027910234 -0.018694086 0.037012558 -0.028429255 -0.018676408 0.038343374 -0.022226235 -0.014862907 0.034794316 -0.022134516 -0.014837055 0.071241312 -0.019421022 -0.011807635 0.048915636 -0.022812655 -0.015059399 0.061256383 -0.022812655 -0.015059399 0.061256383 -0.019421022 -0.011807635 0.048915636 -0.020418106 -0.012675732 0.037452832 -0.017520251 -0.0089211399 0.067665048 -0.018022139 -0.0099973716 0.033282492 -0.018416824 -0.010713339 0.068896867 -0.019421022 -0.011807635 0.048915636 -0.022134516 -0.014837055 0.071241312 -0.019698517 -0.012378869 0.069142237 0.013553783 -0.02022858 -0.089629807 0.013440628 -0.017844379 -0.09089309 0.01397139 -0.012584298 -0.092748731 -0.025878789 -0.017356751 0.05798753 -0.022812655 -0.015059399 0.061256383 -0.022821421 -0.014592911 0.041192882 0.014574491 -0.026329579 -0.082345672 0.014821185 -0.02759495 -0.077811487 0.013597978 -0.02725702 -0.080812566 -0.019421022 -0.011807635 0.048915636 -0.019698517 -0.012378869 0.069142237 -0.018416824 -0.010713339 0.068896867 0.01472415 -0.02435427 -0.085473955 0.016054425 -0.024402628 -0.083443023 0.014574491 -0.026329579 -0.082345672 -0.017942682 0.0082222335 -0.088183515 -0.018267166 -0.010233228 -0.082870513 -0.017525492 0.0062524551 -0.076075807 -0.017525492 0.0062524551 -0.076075807 -0.018267166 -0.010233228 -0.082870513 -0.017710786 -0.0090724919 -0.064177476 0.014574491 -0.026329579 -0.082345672 0.013314299 -0.025821334 -0.084089048 0.01472415 -0.02435427 -0.085473955 0.013314299 -0.025821334 -0.084089048 0.014574491 -0.026329579 -0.082345672 0.013597978 -0.02725702 -0.080812566 0.017048242 -0.012125567 -0.090085946 0.015881743 -0.012563075 -0.091780059 0.017223069 -0.0064906967 -0.091582559 0.015881743 -0.012563075 -0.091780059 0.016357491 -0.0072795525 -0.092791267 0.017223069 -0.0064906967 -0.091582559 0.016357491 -0.0072795525 -0.092791267 0.015881743 -0.012563075 -0.091780059 0.015432101 -0.0067835744 -0.093632996 0.015881743 -0.012563075 -0.091780059 0.01397139 -0.012584298 -0.092748731 0.015432101 -0.0067835744 -0.093632996 0.01397139 -0.012584298 -0.092748731 0.014119886 -0.0059519424 -0.094298467 0.015432101 -0.0067835744 -0.093632996 0.016859507 -0.025939168 -0.071980096 0.016340632 -0.026935671 -0.072083548 0.016798096 -0.025400331 -0.076511756 0.016340632 -0.026935671 -0.072083548 0.015458533 -0.027839338 -0.07147485 0.015701871 -0.026827535 -0.078422643 0.016340632 -0.026935671 -0.072083548 0.015701871 -0.026827535 -0.078422643 0.016798096 -0.025400331 -0.076511756 -0.018419355 -0.0090868054 0.072703756 -0.018519722 -0.0075554377 0.074463673 -0.017675163 -0.0068363165 0.071270466 0.015458533 -0.027839338 -0.07147485 0.014821185 -0.02759495 -0.077811487 0.015701871 -0.026827535 -0.078422643 0.015458533 -0.027839338 -0.07147485 0.013668828 -0.02856159 -0.071973734 0.014821185 -0.02759495 -0.077811487 -0.025878789 -0.017356751 0.05798753 -0.026572293 -0.018711401 0.073174439 -0.022812655 -0.015059399 0.061256383 -0.020418106 -0.012675732 0.037452832 -0.022821421 -0.014592911 0.041192882 -0.022812655 -0.015059399 0.061256383 -0.021911418 -0.014196424 0.073599264 -0.022134516 -0.014837055 0.071241312 -0.026339281 -0.018365392 0.075648695 0.016798096 -0.025400331 -0.076511756 0.015701871 -0.026827535 -0.078422643 0.016700463 -0.021888336 -0.0847812 -0.021486768 -0.0103228 0.079210266 -0.019985493 -0.00774614 0.078095645 -0.018419355 -0.0090868054 0.072703756 0.014821185 -0.02759495 -0.077811487 0.013668828 -0.02856159 -0.071973734 0.013298664 -0.027994558 -0.078105532 -0.021911418 -0.014196424 0.073599264 -0.025743011 -0.016192442 0.080195025 -0.022163888 -0.012542278 0.077847935 0.013458507 -0.028631488 -0.028865032 0.013668828 -0.02856159 -0.071973734 0.014571738 -0.028382378 -0.028062645 -0.028767789 -0.018670363 0.04104894 -0.025878789 -0.017356751 0.05798753 -0.022821421 -0.014592911 0.041192882 0.014571738 -0.028382378 -0.028062645 0.013668828 -0.02856159 -0.071973734 0.015458533 -0.027839338 -0.07147485 0.014571738 -0.028382378 -0.028062645 0.015458533 -0.027839338 -0.07147485 0.015683807 -0.027722642 -0.026725426 0.015683807 -0.027722642 -0.026725426 0.016340632 -0.026935671 -0.072083548 0.016230969 -0.027140638 -0.025732804 -0.017520251 -0.0089211399 0.067665048 -0.018416824 -0.010713339 0.068896867 -0.018419355 -0.0090868054 0.072703756 -0.028429255 -0.018676408 0.038343374 -0.028824516 -0.024022292 0.042387635 -0.028767789 -0.018670363 0.04104894 0.015683807 -0.027722642 -0.026725426 0.015458533 -0.027839338 -0.07147485 0.016340632 -0.026935671 -0.072083548 0.016230969 -0.027140638 -0.025732804 0.016859507 -0.025939168 -0.071980096 0.01697298 -0.025710016 -0.025289984 -0.028824516 -0.024022292 0.042387635 -0.028429255 -0.018676408 0.038343374 -0.028363962 -0.024325112 0.037908759 -0.020117838 -0.015958026 0.031671822 -0.019025438 -0.017668309 0.030236635 -0.019942462 -0.024209112 0.031760778 -0.021704208 -0.018832918 0.033038348 -0.020117838 -0.015958026 0.031671822 -0.019942462 -0.024209112 0.031760778 0.016230969 -0.027140638 -0.025732804 0.016340632 -0.026935671 -0.072083548 0.016859507 -0.025939168 -0.071980096 0.012336628 0.044488061 -0.092360713 0.013401639 0.04511568 -0.091133565 0.015758356 0.044061538 -0.091427647 -0.021907704 -0.024596032 0.033128161 -0.021704208 -0.018832918 0.033038348 -0.019942462 -0.024209112 0.031760778 -0.027910234 -0.018694086 0.037012558 -0.028363962 -0.024325112 0.037908759 -0.028429255 -0.018676408 0.038343374 0.016831882 0.043670576 -0.090577476 0.017194429 0.044261083 -0.087181561 0.017881602 0.042974737 -0.088650115 0.016831882 0.043670576 -0.090577476 0.016543398 0.044677906 -0.088452533 0.017194429 0.044261083 -0.087181561 0.015758356 0.044061538 -0.091427647 0.013401639 0.04511568 -0.091133565 0.016543398 0.044677906 -0.088452533 -0.027910234 -0.018694086 0.037012558 -0.02706047 -0.024428921 0.035763875 -0.028363962 -0.024325112 0.037908759 -0.025508162 -0.018720089 0.034658592 -0.02706047 -0.024428921 0.035763875 -0.027910234 -0.018694086 0.037012558 0.013401639 0.04511568 -0.091133565 0.015920581 0.045123976 -0.08697065 0.016543398 0.044677906 -0.088452533 0.00097443373 0.045470487 -0.091849767 0.00098160352 0.045865525 -0.090567499 0.013401639 0.04511568 -0.091133565 -0.019942462 -0.024209112 0.031760778 -0.019025438 -0.017668309 0.030236635 -0.017854204 -0.024834512 0.028399426 -0.025508162 -0.018720089 0.034658592 -0.024856219 -0.024087021 0.034274898 -0.02706047 -0.024428921 0.035763875 -0.023049908 -0.018121183 0.033579927 -0.024856219 -0.024087021 0.034274898 -0.025508162 -0.018720089 0.034658592 0.00098160352 0.045865525 -0.090567499 0.013209062 0.045435105 -0.090078466 0.013401639 0.04511568 -0.091133565 0.013401639 0.04511568 -0.091133565 0.012336628 0.044488061 -0.092360713 0.00097443373 0.045470487 -0.091849767 -0.023049908 -0.018121183 0.033579927 -0.021704208 -0.018832918 0.033038348 -0.024856219 -0.024087021 0.034274898 -0.024856219 -0.024087021 0.034274898 -0.021704208 -0.018832918 0.033038348 -0.021907704 -0.024596032 0.033128161 -0.017854204 -0.024834512 0.028399426 -0.019025438 -0.017668309 0.030236635 -0.018392729 -0.018899618 0.027969893 0.015758356 0.044061538 -0.091427647 0.016543398 0.044677906 -0.088452533 0.016831882 0.043670576 -0.090577476 -0.023147175 0.00043081786 0.089597046 -0.021195708 0.011955867 0.09516827 -0.021720931 0.011227369 0.09211795 -0.02068283 0.011211554 0.097750731 -0.021195708 0.011955867 0.09516827 -0.022917455 -0.0064883335 0.094496034 -0.023147175 0.00043081786 0.089597046 -0.02415102 -0.0071390206 0.087392777 -0.021195708 0.011955867 0.09516827 0.015920581 0.045123976 -0.08697065 0.013401639 0.04511568 -0.091133565 0.013209062 0.045435105 -0.090078466 -0.021195708 0.011955867 0.09516827 -0.02415102 -0.0071390206 0.087392777 -0.022917455 -0.0064883335 0.094496034 0.017194429 0.044261083 -0.087181561 0.018248931 0.042790405 -0.084420137 0.017881602 0.042974737 -0.088650115 0.017194429 0.044261083 -0.087181561 0.016543398 0.044677906 -0.088452533 0.015920581 0.045123976 -0.08697065 -0.024927923 -0.012076124 0.08460848 -0.024431312 -0.016413497 0.090038374 -0.02415102 -0.0071390206 0.087392777 0.015920581 0.045123976 -0.08697065 0.015114356 0.045371313 -0.085580051 0.016359692 0.044866309 -0.023147389 -0.025743011 -0.016192442 0.080195025 -0.024431312 -0.016413497 0.090038374 -0.024927923 -0.012076124 0.08460848 -0.022917455 -0.0064883335 0.094496034 -0.02415102 -0.0071390206 0.087392777 -0.024431312 -0.016413497 0.090038374 0.016896915 0.044456337 0.083174124 0.017273327 0.044166416 -0.031604756 0.016359692 0.044866309 -0.023147389 -0.025315247 -0.02163028 0.085156783 -0.024431312 -0.016413497 0.090038374 -0.025743011 -0.016192442 0.080195025 0.01826036 0.042405859 -0.07970617 0.018248931 0.042790405 -0.084420137 0.0177658 0.043505937 0.048985466 -0.018028341 0.036828727 0.091166414 -0.016390789 0.043401148 0.090077534 -0.016405422 0.042837482 0.082998559 0.018248931 0.042790405 -0.084420137 0.017273327 0.044166416 -0.031604756 0.0177658 0.043505937 0.048985466 -0.0092522781 0.044943795 0.0957831 0.00097691908 0.043987885 0.097053863 0.0010022733 0.04543183 0.095114216 0.016896915 0.044456337 0.083174124 0.016359692 0.044866309 -0.023147389 0.015711149 0.045146093 0.090317495 0.018247785 0.042445511 0.045016717 0.017953154 0.043204486 0.083494633 0.018302912 0.042219508 0.082993262 0.016359692 0.044866309 -0.023147389 0.015114356 0.045371313 -0.085580051 0.015711149 0.045146093 0.090317495 0.017273327 0.044166416 -0.031604756 0.017194429 0.044261083 -0.087181561 0.016359692 0.044866309 -0.023147389 0.015711149 0.045146093 0.090317495 0.015114356 0.045371313 -0.085580051 0.014956677 0.045253675 0.092636749 -0.015428729 0.04389298 0.093680091 -0.014714117 0.042520933 0.096060328 -0.013057418 0.045328848 0.094202094 -0.014714117 0.042520933 0.096060328 -0.011833927 0.040809646 0.099003643 -0.013057418 0.045328848 0.094202094 -0.011660801 0.044964083 0.095401429 -0.008611016 0.040569413 0.099844933 -0.0092522781 0.044943795 0.0957831 0.0177658 0.043505937 0.048985466 0.017273327 0.044166416 -0.031604756 0.016896915 0.044456337 0.083174124 -0.011833927 0.040809646 0.099003643 -0.011660801 0.044964083 0.095401429 -0.013057418 0.045328848 0.094202094 0.0177658 0.043505937 0.048985466 0.016896915 0.044456337 0.083174124 0.017953154 0.043204486 0.083494633 0.017273327 0.044166416 -0.031604756 0.018248931 0.042790405 -0.084420137 0.017194429 0.044261083 -0.087181561 -0.0056126951 0.041129824 0.099698916 0.0009512346 0.042535242 0.098625526 -0.0092522781 0.044943795 0.0957831 -0.0056126951 0.041129824 0.099698916 -0.0092522781 0.044943795 0.0957831 -0.008611016 0.040569413 0.099844933 -0.008611016 0.040569413 0.099844933 -0.011660801 0.044964083 0.095401429 -0.011833927 0.040809646 0.099003643 0.016359692 0.044866309 -0.023147389 0.017194429 0.044261083 -0.087181561 0.015920581 0.045123976 -0.08697065 -0.016390789 0.043401148 0.090077534 -0.018028341 0.036828727 0.091166414 -0.017478673 0.038893249 0.093247153 -0.014714117 0.042520933 0.096060328 -0.01506906 0.035885006 0.10093714 -0.011833927 0.040809646 0.099003643 -0.01506906 0.035885006 0.10093714 -0.014714117 0.042520933 0.096060328 -0.016142329 0.035363462 0.10022144 0.0009512346 0.042535242 0.098625526 -0.0056126951 0.041129824 0.099698916 0.0009138849 0.040418282 0.10048454 0.0009138849 0.040418282 0.10048454 -0.0056126951 0.041129824 0.099698916 -0.0060984548 0.038596027 0.10160586 -0.011833927 0.040809646 0.099003643 -0.0099599035 0.037082717 0.10195338 -0.008611016 0.040569413 0.099844933 -0.0056126951 0.041129824 0.099698916 -0.008611016 0.040569413 0.099844933 -0.0060984548 0.038596027 0.10160586 -0.0060984548 0.038596027 0.10160586 -0.008611016 0.040569413 0.099844933 -0.0099599035 0.037082717 0.10195338 0.018247785 0.042445511 0.045016717 0.0177658 0.043505937 0.048985466 0.017953154 0.043204486 0.083494633 -0.026572293 -0.018711401 0.073174439 -0.026604408 -0.024446582 0.073857196 -0.026339281 -0.018365392 0.075648695 -0.01506906 0.035885006 0.10093714 -0.01351199 0.03665204 0.10135186 -0.011833927 0.040809646 0.099003643 0.0177658 0.043505937 0.048985466 0.018247785 0.042445511 0.045016717 0.01826036 0.042405859 -0.07970617 0.018310452 0.04278329 0.090072244 0.017953154 0.043204486 0.083494633 0.017381119 0.044183865 0.089693218 -0.026604408 -0.024446582 0.073857196 -0.025315247 -0.02163028 0.085156783 -0.026339281 -0.018365392 0.075648695 -0.0099599035 0.037082717 0.10195338 -0.011833927 0.040809646 0.099003643 -0.01351199 0.03665204 0.10135186 -0.026339281 -0.018365392 0.075648695 -0.025315247 -0.02163028 0.085156783 -0.025743011 -0.016192442 0.080195025 0.017953154 0.043204486 0.083494633 0.018310452 0.04278329 0.090072244 0.018302912 0.042219508 0.082993262 0.012326437 0.0453468 0.093836129 0.0010080163 0.045760993 0.093951166 0.0010022733 0.04543183 0.095114216 0.0010022733 0.04543183 0.095114216 0.011233125 0.044579044 0.09577997 0.012326437 0.0453468 0.093836129 -0.0092522781 0.044943795 0.0957831 0.0009512346 0.042535242 0.098625526 0.00097691908 0.043987885 0.097053863 0.017367641 0.04330904 0.09367507 0.017381119 0.044183865 0.089693218 0.016880544 0.044408605 0.092210464 0.017381119 0.044183865 0.089693218 0.015711149 0.045146093 0.090317495 0.016880544 0.044408605 0.092210464 0.017381119 0.044183865 0.089693218 0.017367641 0.04330904 0.09367507 0.018044299 0.042841651 0.092196442 -0.016142329 0.035363462 0.10022144 -0.017878698 0.034989234 0.096680827 -0.01729146 0.032957081 0.10004589 0.014956677 0.045253675 0.092636749 0.015049018 0.044828396 0.094197772 0.016880544 0.044408605 0.092210464 -0.019370968 0.027054455 0.096587941 -0.018543003 0.033434074 0.093973547 -0.019199643 0.02933459 0.094579294 -0.017878698 0.034989234 0.096680827 -0.019370968 0.027054455 0.096587941 -0.01729146 0.032957081 0.10004589 -0.01729146 0.032957081 0.10004589 -0.019370968 0.027054455 0.096587941 -0.019006675 0.026026376 0.098889932 0.018310452 0.04278329 0.090072244 0.017381119 0.044183865 0.089693218 0.018044299 0.042841651 0.092196442 0.015049018 0.044828396 0.094197772 0.017367641 0.04330904 0.09367507 0.016880544 0.044408605 0.092210464 0.017381119 0.044183865 0.089693218 0.017953154 0.043204486 0.083494633 0.016896915 0.044456337 0.083174124 0.014956677 0.045253675 0.092636749 0.016880544 0.044408605 0.092210464 0.015711149 0.045146093 0.090317495 0.016896915 0.044456337 0.083174124 0.015711149 0.045146093 0.090317495 0.017381119 0.044183865 0.089693218 0.012326437 0.0453468 0.093836129 0.015049018 0.044828396 0.094197772 0.014956677 0.045253675 0.092636749 -0.016390789 0.043401148 0.090077534 -0.017478673 0.038893249 0.093247153 -0.016122047 0.04344999 0.092201658 -0.016122047 0.04344999 0.092201658 -0.017478673 0.038893249 0.093247153 -0.017878698 0.034989234 0.096680827 0.012326437 0.0453468 0.093836129 0.013640816 0.044513576 0.095397569 0.015049018 0.044828396 0.094197772 -0.016142329 0.035363462 0.10022144 -0.014714117 0.042520933 0.096060328 -0.016363619 0.040276315 0.09576647 -0.016122047 0.04344999 0.092201658 -0.017878698 0.034989234 0.096680827 -0.016363619 0.040276315 0.09576647 -0.017878698 0.034989234 0.096680827 -0.017478673 0.038893249 0.093247153 -0.018543003 0.033434074 0.093973547 0.011233125 0.044579044 0.09577997 0.013640816 0.044513576 0.095397569 0.012326437 0.0453468 0.093836129 0.0008796482 0.038487069 0.10185187 0.0009138849 0.040418282 0.10048454 -0.0060984548 0.038596027 0.10160586 -0.018028341 0.036828727 0.091166414 -0.018543003 0.033434074 0.093973547 -0.017478673 0.038893249 0.093247153 0.021456189 0.010461254 0.097744301 0.020958101 0.0096977772 0.098645978 0.023058275 -0.007306946 0.094489008 -0.017878698 0.034989234 0.096680827 -0.016142329 0.035363462 0.10022144 -0.016363619 0.040276315 0.09576647 0.020824119 0.0018597471 0.098266736 0.018766079 0.0046661445 0.099480078 0.021131562 -0.0088722147 0.096547425 -0.018543003 0.033434074 0.093973547 -0.019370968 0.027054455 0.096587941 -0.017878698 0.034989234 0.096680827 0.0008796482 0.038487069 0.10185187 0.00085746194 0.037240755 0.10227314 0.0078572212 0.038347542 0.10160374 0.0078572212 0.038347542 0.10160374 0.00085746194 0.037240755 0.10227314 0.011662217 0.036697716 0.10195008 -0.016405422 0.042837482 0.082998559 -0.017405882 0.038063712 0.083988205 -0.018028341 0.036828727 0.091166414 -0.016363619 0.040276315 0.09576647 -0.015428729 0.04389298 0.093680091 -0.016122047 0.04344999 0.092201658 0.015196715 0.036140874 0.10134748 0.017211601 0.033554386 0.10128482 0.016725365 0.0353189 0.10093229 -0.016363619 0.040276315 0.09576647 -0.014714117 0.042520933 0.096060328 -0.015428729 0.04389298 0.093680091 0.015196715 0.036140874 0.10134748 0.014195032 0.034783166 0.10202461 0.017211601 0.033554386 0.10128482 0.017211601 0.033554386 0.10128482 0.018841764 0.032313723 0.10004039 0.01777917 0.034759503 0.10021626 0.017211601 0.033554386 0.10128482 0.014195032 0.034783166 0.10202461 0.016480081 0.032435093 0.1018194 0.017211601 0.033554386 0.10128482 0.017871656 0.03029469 0.10136579 0.018841764 0.032313723 0.10004039 -0.021720931 0.011227369 0.09211795 -0.019370968 0.027054455 0.096587941 -0.019199643 0.02933459 0.094579294 -0.019370968 0.027054455 0.096587941 -0.021195708 0.011955867 0.09516827 -0.019006675 0.026026376 0.098889932 -0.019006675 0.026026376 0.098889932 -0.021195708 0.011955867 0.09516827 -0.02068283 0.011211554 0.097750731 -0.021720931 0.011227369 0.09211795 -0.021195708 0.011955867 0.09516827 -0.019370968 0.027054455 0.096587941 -0.022905318 -0.02765039 0.076978974 -0.0003203073 -0.028672725 0.074397378 -0.00031362899 -0.028326869 0.078002289 -0.00021474827 -0.02287798 0.089814357 -0.00017818465 -0.020833923 0.091701321 -0.021149272 -0.021991832 0.089806065 -0.0003203073 -0.028672725 0.074397378 -0.022905318 -0.02765039 0.076978974 -0.022963451 -0.027874546 0.07396321 -0.00026558893 -0.025696626 0.085919023 -0.021694455 -0.024793198 0.086088851 -0.022156054 -0.025986444 0.083648644 -8.9209214e-05 -0.015863389 0.094807051 -0.020751724 -0.017166611 0.093525514 -0.00012810847 -0.018041501 0.09364672 -0.021149272 -0.021991832 0.089806065 -0.00017818465 -0.020833923 0.091701321 -0.021272484 -0.020662652 0.091042452 -8.9209214e-05 -0.015863389 0.094807051 -0.020430731 -0.014688175 0.094798647 -0.020751724 -0.017166611 0.093525514 -0.021072101 -0.01902849 0.092317954 -0.00012810847 -0.018041501 0.09364672 -0.020751724 -0.017166611 0.093525514 -0.00017818465 -0.020833923 0.091701321 -0.021072101 -0.01902849 0.092317954 -0.021272484 -0.020662652 0.091042452 -0.021856626 -0.023306094 0.088231862 -0.00024336331 -0.02446498 0.087857999 -0.00021474827 -0.02287798 0.089814357 -0.00028627249 -0.026834833 0.08357323 -0.022156054 -0.025986444 0.083648644 -0.022520231 -0.027020732 0.080530532 -0.00021474827 -0.02287798 0.089814357 -0.021149272 -0.021991832 0.089806065 -0.021856626 -0.023306094 0.088231862 -4.3322834e-05 -0.013298921 0.095893852 -0.020430731 -0.014688175 0.094798647 -8.9209214e-05 -0.015863389 0.094807051 -0.021072101 -0.01902849 0.092317954 -0.00017818465 -0.020833923 0.091701321 -0.00012810847 -0.018041501 0.09364672 -0.00024336331 -0.02446498 0.087857999 -0.021856626 -0.023306094 0.088231862 -0.021694455 -0.024793198 0.086088851 -0.0003020475 -0.02770301 0.080910362 -0.00028627249 -0.026834833 0.08357323 -0.022520231 -0.027020732 0.080530532 -0.00028627249 -0.026834833 0.08357323 -0.00026558893 -0.025696626 0.085919023 -0.022156054 -0.025986444 0.083648644 -0.021694455 -0.024793198 0.086088851 -0.00026558893 -0.025696626 0.085919023 -0.00024336331 -0.02446498 0.087857999 1.4942842e-06 -0.010785686 0.096732557 6.3374355e-05 -0.0073211524 0.097608149 -0.019693466 -0.0091443341 0.096748479 -0.020430731 -0.014688175 0.094798647 -4.3322834e-05 -0.013298921 0.095893852 -0.020221481 -0.012278674 0.09574566 -4.3322834e-05 -0.013298921 0.095893852 1.4942842e-06 -0.010785686 0.096732557 -0.020221481 -0.012278674 0.09574566 -0.020221481 -0.012278674 0.09574566 1.4942842e-06 -0.010785686 0.096732557 -0.019693466 -0.0091443341 0.096748479 -0.022520231 -0.027020732 0.080530532 -0.00031362899 -0.028326869 0.078002289 -0.0003020475 -0.02770301 0.080910362 -0.022905318 -0.02765039 0.076978974 -0.00031362899 -0.028326869 0.078002289 -0.022520231 -0.027020732 0.080530532 -0.01255904 0.035259515 0.10202868 0.00085746194 0.037240755 0.10227314 -0.0099599035 0.037082717 0.10195338 -0.017301535 0.012772445 0.1004931 0.00040973487 0.012104118 0.10081259 -0.016339796 0.019801341 0.10123004 0.00021545941 0.0012066257 0.099219896 0.00040973487 0.012104118 0.10081259 -0.018200107 0.0053243325 0.099485703 -0.018200107 0.0053243325 0.099485703 0.00040973487 0.012104118 0.10081259 -0.017301535 0.012772445 0.1004931 -0.016339796 0.019801341 0.10123004 0.0006187965 0.023836713 0.10186113 -0.015438029 0.027817952 0.10177573 -0.019022552 -0.001852403 0.098259166 6.3374355e-05 -0.0073211524 0.097608149 0.00021545941 0.0012066257 0.099219896 0.00040973487 0.012104118 0.10081259 0.0006187965 0.023836713 0.10186113 -0.016339796 0.019801341 0.10123004 -0.019022552 -0.001852403 0.098259166 -0.019693466 -0.0091443341 0.096748479 6.3374355e-05 -0.0073211524 0.097608149 -0.015438029 0.027817952 0.10177573 0.00076370826 0.031968988 0.10222167 -0.01255904 0.035259515 0.10202868 -0.01255904 0.035259515 0.10202868 0.00076370826 0.031968988 0.10222167 0.00085746194 0.037240755 0.10227314 -0.015438029 0.027817952 0.10177573 0.0006187965 0.023836713 0.10186113 0.00076370826 0.031968988 0.10222167 -0.019022552 -0.001852403 0.098259166 0.00021545941 0.0012066257 0.099219896 -0.018200107 0.0053243325 0.099485703 -0.01635405 0.043061614 0.045021996 -0.017405882 0.038063712 0.083988205 -0.016405422 0.042837482 0.082998559 -0.016405929 0.043023102 -0.07970088 -0.017406121 0.038223293 -0.082317337 -0.01635405 0.043061614 0.045021996 -0.017406121 0.038223293 -0.082317337 -0.017405882 0.038063712 0.083988205 -0.01635405 0.043061614 0.045021996 -0.026572293 -0.018711401 0.073174439 -0.028767789 -0.018670363 0.04104894 -0.026604408 -0.024446582 0.073857196 -0.028767789 -0.018670363 0.04104894 -0.028824516 -0.024022292 0.042387635 -0.026604408 -0.024446582 0.073857196 0.016480081 0.032435093 0.1018194 0.017871656 0.03029469 0.10136579 0.017211601 0.033554386 0.10128482 -0.014101846 -0.02402347 -0.085914254 -0.0042414521 -0.022803683 -0.087703317 -0.0042853011 -0.025288068 -0.08478152 -0.014101846 -0.02402347 -0.085914254 -0.0042853011 -0.025288068 -0.08478152 -0.013892994 -0.025336901 -0.084084891 -0.014081351 -0.012084817 -0.092744455 -0.0040880404 -0.014142264 -0.092405662 -0.013737494 -0.017360477 -0.09088894 -0.014081351 -0.012084817 -0.092744455 -0.0039905431 -0.0086523565 -0.093861461 -0.0040880404 -0.014142264 -0.092405662 0.017871656 0.03029469 0.10136579 0.019143561 0.027211379 0.10060164 0.018841764 0.032313723 0.10004039 -0.014226781 -0.026761588 -0.080808319 -0.004325022 -0.027564449 -0.079471119 -0.013953088 -0.02750935 -0.078101374 0.017871656 0.03029469 0.10136579 0.018320572 0.021801954 0.10114117 0.019143561 0.027211379 0.10060164 -0.013993851 -0.005451363 -0.094294176 -0.0039905431 -0.0086523565 -0.093861461 -0.014081351 -0.012084817 -0.092744455 -0.014226781 -0.026761588 -0.080808319 -0.0043071955 -0.026539136 -0.082479246 -0.004325022 -0.027564449 -0.079471119 -0.014048933 -0.021583604 -0.088313527 -0.0042414521 -0.022803683 -0.087703317 -0.014101846 -0.02402347 -0.085914254 0.017871656 0.03029469 0.10136579 0.016807027 0.027243821 0.10177083 0.018320572 0.021801954 0.10114117 -0.014048933 -0.021583604 -0.088313527 -0.0042074192 -0.020877551 -0.089228019 -0.0042414521 -0.022803683 -0.087703317 -0.014341421 -0.028062876 -0.071969457 -0.0043362542 -0.02822441 -0.075681783 -0.0043396926 -0.028458137 -0.071333461 0.019683857 0.017293843 0.10015652 0.021456189 0.010461254 0.097744301 0.020308992 0.025326373 0.098883934 -0.013934978 -0.019739132 -0.089625612 -0.0042074192 -0.020877551 -0.089228019 -0.014048933 -0.021583604 -0.088313527 -0.013892994 -0.025336901 -0.084084891 -0.0043071955 -0.026539136 -0.082479246 -0.014226781 -0.026761588 -0.080808319 -0.013934978 -0.019739132 -0.089625612 -0.0041571455 -0.018043268 -0.090872645 -0.0042074192 -0.020877551 -0.089228019 -0.013892994 -0.025336901 -0.084084891 -0.0042853011 -0.025288068 -0.08478152 -0.0043071955 -0.026539136 -0.082479246 -0.013737494 -0.017360477 -0.09088894 -0.0041571455 -0.018043268 -0.090872645 -0.013934978 -0.019739132 -0.089625612 -0.013953088 -0.02750935 -0.078101374 -0.0043362542 -0.02822441 -0.075681783 -0.014341421 -0.028062876 -0.071969457 -0.013953088 -0.02750935 -0.078101374 -0.004325022 -0.027564449 -0.079471119 -0.0043362542 -0.02822441 -0.075681783 0.018320572 0.021801954 0.10114117 0.016807027 0.027243821 0.10177083 0.0174227 0.019200183 0.10122488 -0.013737494 -0.017360477 -0.09088894 -0.0040880404 -0.014142264 -0.092405662 -0.0041571455 -0.018043268 -0.090872645 -0.0043396926 -0.028458137 -0.071333461 -0.00438608 -0.033952754 -0.043406647 -0.0043358915 -0.028485658 -0.043404404 -0.0039528687 -0.0084280521 -0.098949701 -0.0041571455 -0.018043268 -0.090872645 -0.0040880404 -0.014142264 -0.092405662 -0.0042414567 -0.026422286 -0.10071129 -0.0041571455 -0.018043268 -0.090872645 -0.0039528687 -0.0084280521 -0.098949701 -0.0044310861 -0.033580706 -0.096961744 -0.00438608 -0.033952754 -0.043406647 -0.0043396926 -0.028458137 -0.071333461 -0.0044310861 -0.033580706 -0.096961744 -0.0043396926 -0.028458137 -0.071333461 -0.0043362542 -0.02822441 -0.075681783 -0.0042414567 -0.026422286 -0.10071129 -0.0042074192 -0.020877551 -0.089228019 -0.0041571455 -0.018043268 -0.090872645 0.021456189 0.010461254 0.097744301 0.019683857 0.017293843 0.10015652 0.020958101 0.0096977772 0.098645978 -0.0042414567 -0.026422286 -0.10071129 -0.0042414521 -0.022803683 -0.087703317 -0.0042074192 -0.020877551 -0.089228019 -0.0039528687 -0.0084280521 -0.098949701 -0.0039905431 -0.0086523565 -0.093861461 -0.0038936033 -0.0036831126 -0.094863497 -0.0039528687 -0.0084280521 -0.098949701 -0.0040880404 -0.014142264 -0.092405662 -0.0039905431 -0.0086523565 -0.093861461 -0.0044310861 -0.033580706 -0.096961744 -0.0043362542 -0.02822441 -0.075681783 -0.004325022 -0.027564449 -0.079471119 -0.0044310861 -0.033580706 -0.096961744 -0.004325022 -0.027564449 -0.079471119 -0.0043071955 -0.026539136 -0.082479246 -0.0044310861 -0.033580706 -0.096961744 -0.0043071955 -0.026539136 -0.082479246 -0.0042853011 -0.025288068 -0.08478152 -0.0044310861 -0.033580706 -0.096961744 -0.0042853011 -0.025288068 -0.08478152 -0.0042414521 -0.022803683 -0.087703317 0.019683857 0.017293843 0.10015652 0.018320572 0.021801954 0.10114117 0.019453701 0.0096518397 0.09984415 -0.0044310861 -0.033580706 -0.096961744 -0.0042414521 -0.022803683 -0.087703317 -0.0042414567 -0.026422286 -0.10071129 -0.004378092 -0.032618526 -0.098888025 -0.0044310861 -0.033580706 -0.096961744 -0.0042414567 -0.026422286 -0.10071129 0.020824119 0.0018597471 0.098266736 0.019683857 0.017293843 0.10015652 0.019453701 0.0096518397 0.09984415 -0.018392729 -0.018899618 0.027969893 -0.018101184 -0.012050272 0.028088842 -0.017854204 -0.024834512 0.028399426 -0.018101184 -0.012050272 0.028088842 -0.017338915 -0.012028797 0.02859552 -0.017854204 -0.024834512 0.028399426 0.018133502 0.012141519 0.10048769 0.018766079 0.0046661445 0.099480078 0.019453701 0.0096518397 0.09984415 -0.017854204 -0.024834512 0.028399426 -0.017338915 -0.012028797 0.02859552 -0.017224334 -0.026561622 0.028845835 0.021131562 -0.0088722147 0.096547425 0.018766079 0.0046661445 0.099480078 0.019331904 -0.0025353059 0.098253325 0.023058275 -0.007306946 0.094489008 0.020958101 0.0096977772 0.098645978 0.023086373 -0.013207841 0.093816362 -0.017338915 -0.012028797 0.02859552 -0.015725134 -0.01098915 0.02955552 -0.017224334 -0.026561622 0.028845835 0.016725365 0.0353189 0.10093229 0.017211601 0.033554386 0.10128482 0.01777917 0.034759503 0.10021626 -0.015725134 -0.01098915 0.02955552 -0.01234095 -0.018955054 0.031272467 -0.017224334 -0.026561622 0.028845835 -0.017899279 -0.01205187 0.025482479 -0.017338915 -0.012028797 0.02859552 -0.018101184 -0.012050272 0.028088842 -0.017897574 -0.01202506 -0.024878344 -0.017338915 -0.012028797 0.02859552 -0.017899279 -0.01205187 0.025482479 0.020958101 0.0096977772 0.098645978 0.020824119 0.0018597471 0.098266736 0.023086373 -0.013207841 0.093816362 -0.015048629 -0.024707783 -0.026712913 -0.015904948 -0.018737217 -0.026186559 -0.016837066 -0.026551854 -0.025727758 -0.015904948 -0.018737217 -0.026186559 -0.016237728 -0.01153513 -0.025917171 -0.016837066 -0.026551854 -0.025727758 0.020308992 0.025326373 0.098883934 0.018841764 0.032313723 0.10004039 0.019143561 0.027211379 0.10060164 -0.016837066 -0.026551854 -0.025727758 -0.017897574 -0.01202506 -0.024878344 -0.017527634 -0.025095725 -0.025284721 -0.0022821976 -0.026069192 -0.030289182 -0.0084154513 -0.026853109 -0.029303266 -0.00030898367 -0.027142595 -0.030333543 -0.016237728 -0.01153513 -0.025917171 -0.017897574 -0.01202506 -0.024878344 -0.016837066 -0.026551854 -0.025727758 0.015196715 0.036140874 0.10134748 0.011662217 0.036697716 0.10195008 0.014195032 0.034783166 0.10202461 -0.0022821976 -0.026069192 -0.030289182 -0.0083588213 -0.025855448 -0.029318903 -0.0084154513 -0.026853109 -0.029303266 0.020308992 0.025326373 0.098883934 0.019143561 0.027211379 0.10060164 0.019683857 0.017293843 0.10015652 0.019143561 0.027211379 0.10060164 0.018320572 0.021801954 0.10114117 0.019683857 0.017293843 0.10015652 -0.017527634 -0.025095725 -0.025284721 -0.017897574 -0.01202506 -0.024878344 -0.018412288 -0.018819401 -0.024613166 0.018320572 0.021801954 0.10114117 0.0174227 0.019200183 0.10122488 0.018133502 0.012141519 0.10048769 0.016480081 0.032435093 0.1018194 0.014195032 0.034783166 0.10202461 0.016807027 0.027243821 0.10177083 -0.0083588213 -0.025855448 -0.029318903 -0.014094987 -0.025619583 -0.027200136 -0.0084154513 -0.026853109 -0.029303266 -0.014094987 -0.025619583 -0.027200136 -0.013150806 -0.026686354 -0.027652102 -0.0084154513 -0.026853109 -0.029303266 0.016480081 0.032435093 0.1018194 0.016807027 0.027243821 0.10177083 0.017871656 0.03029469 0.10136579 0.018133502 0.012141519 0.10048769 0.019453701 0.0096518397 0.09984415 0.018320572 0.021801954 0.10114117 -0.015048629 -0.024707783 -0.026712913 -0.016837066 -0.026551854 -0.025727758 -0.014094987 -0.025619583 -0.027200136 -0.014094987 -0.025619583 -0.027200136 -0.016837066 -0.026551854 -0.025727758 -0.013150806 -0.026686354 -0.027652102 0.020824119 0.0018597471 0.098266736 0.019453701 0.0096518397 0.09984415 0.018766079 0.0046661445 0.099480078 -0.015271815 -0.0097802905 -0.026443722 -0.016237728 -0.01153513 -0.025917171 -0.015904948 -0.018737217 -0.026186559 -0.015526743 -0.01068476 -0.026312191 -0.016237728 -0.01153513 -0.025917171 -0.015271815 -0.0097802905 -0.026443722 0.020958101 0.0096977772 0.098645978 0.019683857 0.017293843 0.10015652 0.020824119 0.0018597471 0.098266736 0.025763892 -0.026398031 0.073812842 0.026097296 -0.025384946 0.073849156 0.02478604 -0.026212851 0.080312982 -0.018347267 -0.027243283 0.032313574 -0.021601591 -0.02615945 0.033660844 -0.020008806 -0.025858186 0.032403491 -0.018347267 -0.027243283 0.032313574 -0.017428715 -0.028052129 0.034223299 -0.021601591 -0.02615945 0.033660844 0.02478604 -0.026212851 0.080312982 0.026097296 -0.025384946 0.073849156 0.024912896 -0.022524595 0.085149139 -0.017224334 -0.026561622 0.028845835 -0.020008806 -0.025858186 0.032403491 -0.019942462 -0.024209112 0.031760778 0.02478604 -0.026212851 0.080312982 0.024912896 -0.022524595 0.085149139 0.024749409 -0.024351133 0.083833165 -0.018347267 -0.027243283 0.032313574 -0.020008806 -0.025858186 0.032403491 -0.017224334 -0.026561622 0.028845835 0.021182025 -0.025556616 0.086082309 0.021600081 -0.026765525 0.083641969 0.021397598 -0.024076246 0.088225268 0.024749409 -0.024351133 0.083833165 0.024912896 -0.022524595 0.085149139 0.024341105 -0.02195026 0.087456971 0.022287449 -0.028455066 0.076972075 0.023433875 -0.026560949 0.082662001 0.021926284 -0.027812121 0.080523752 0.023433875 -0.026560949 0.082662001 0.021600081 -0.026765525 0.083641969 0.021926284 -0.027812121 0.080523752 0.020738048 -0.022737637 0.089799665 0.021397598 -0.024076246 0.088225268 0.020908728 -0.021413701 0.091036029 0.021600081 -0.026765525 0.083641969 0.023273891 -0.024119062 0.086964987 0.021397598 -0.024076246 0.088225268 0.021397598 -0.024076246 0.088225268 0.02310566 -0.021039208 0.090137281 0.020908728 -0.021413701 0.091036029 0.022336647 -0.028681122 0.073956296 0.023742236 -0.028346684 0.074052379 0.022287449 -0.028455066 0.076972075 0.020908728 -0.021413701 0.091036029 0.02310566 -0.021039208 0.090137281 0.023025993 -0.018475806 0.091893643 -0.028053252 -0.025898322 0.038836207 -0.028824516 -0.024022292 0.042387635 -0.028363962 -0.024325112 0.037908759 -0.02706047 -0.024428921 0.035763875 -0.027084054 -0.025825219 0.036512829 -0.028363962 -0.024325112 0.037908759 0.02310566 -0.021039208 0.090137281 0.024341105 -0.02195026 0.087456971 0.023025993 -0.018475806 0.091893643 0.023742236 -0.028346684 0.074052379 0.023433875 -0.026560949 0.082662001 0.022287449 -0.028455066 0.076972075 0.023742236 -0.028346684 0.074052379 0.024451446 -0.027938565 0.074171722 0.023433875 -0.026560949 0.082662001 0.024341105 -0.02195026 0.087456971 0.024912896 -0.022524595 0.085149139 0.024216576 -0.017279685 0.090030961 0.023433875 -0.026560949 0.082662001 0.023273891 -0.024119062 0.086964987 0.021600081 -0.026765525 0.083641969 -0.028053252 -0.025898322 0.038836207 -0.027887987 -0.026452262 0.041262828 -0.028665777 -0.025115298 0.041295432 0.020513512 -0.017901348 0.093519218 0.023025993 -0.018475806 0.091893643 0.022149704 -0.012138114 0.095114417 0.024341105 -0.02195026 0.087456971 0.024216576 -0.017279685 0.090030961 0.023025993 -0.018475806 0.091893643 0.024451446 -0.027938565 0.074171722 0.0251997 -0.027257739 0.074078918 0.02478604 -0.026212851 0.080312982 0.020281371 -0.015413064 0.094792433 0.020513512 -0.017901348 0.093519218 0.020158319 -0.012997647 0.095739529 0.02478604 -0.026212851 0.080312982 0.023433875 -0.026560949 0.082662001 0.024451446 -0.027938565 0.074171722 -0.028053252 -0.025898322 0.038836207 -0.026870627 -0.027287303 0.041519806 -0.027887987 -0.026452262 0.041262828 0.023025993 -0.018475806 0.091893643 0.024216576 -0.017279685 0.090030961 0.023086373 -0.013207841 0.093816362 0.020513512 -0.017901348 0.093519218 0.022149704 -0.012138114 0.095114417 0.020158319 -0.012997647 0.095739529 0.024749409 -0.024351133 0.083833165 0.023273891 -0.024119062 0.086964987 0.02478604 -0.026212851 0.080312982 -0.028053252 -0.025898322 0.038836207 -0.027084054 -0.025825219 0.036512829 -0.025097134 -0.027792711 0.038597733 0.020158319 -0.012997647 0.095739529 0.022149704 -0.012138114 0.095114417 0.021131562 -0.0088722147 0.096547425 -0.025081662 -0.026414214 0.035393659 -0.024856219 -0.024087021 0.034274898 -0.021601591 -0.02615945 0.033660844 0.024341105 -0.02195026 0.087456971 0.023273891 -0.024119062 0.086964987 0.024749409 -0.024351133 0.083833165 0.023273891 -0.024119062 0.086964987 0.02310566 -0.021039208 0.090137281 0.021397598 -0.024076246 0.088225268 0.024216576 -0.017279685 0.090030961 0.023058275 -0.007306946 0.094489008 0.023086373 -0.013207841 0.093816362 -0.025434468 -0.02718902 0.036667898 -0.025097134 -0.027792711 0.038597733 -0.027084054 -0.025825219 0.036512829 0.020767156 -0.01977345 0.092311583 0.020908728 -0.021413701 0.091036029 0.020513512 -0.017901348 0.093519218 -0.026870627 -0.027287303 0.041519806 -0.028053252 -0.025898322 0.038836207 -0.025097134 -0.027792711 0.038597733 -0.021601591 -0.02615945 0.033660844 -0.024856219 -0.024087021 0.034274898 -0.021907704 -0.024596032 0.033128161 0.023025993 -0.018475806 0.091893643 0.020513512 -0.017901348 0.093519218 0.020908728 -0.021413701 0.091036029 0.020158319 -0.012997647 0.095739529 0.021131562 -0.0088722147 0.096547425 0.019742614 -0.0098464955 0.096742481 0.022149704 -0.012138114 0.095114417 0.023025993 -0.018475806 0.091893643 0.023086373 -0.013207841 0.093816362 0.023433875 -0.026560949 0.082662001 0.02478604 -0.026212851 0.080312982 0.023273891 -0.024119062 0.086964987 -0.028665777 -0.025115298 0.041295432 -0.028824516 -0.024022292 0.042387635 -0.028053252 -0.025898322 0.038836207 0.019742614 -0.0098464955 0.096742481 0.021131562 -0.0088722147 0.096547425 0.019331904 -0.0025353059 0.098253325 0.023273891 -0.024119062 0.086964987 0.024341105 -0.02195026 0.087456971 0.02310566 -0.021039208 0.090137281 0.021131562 -0.0088722147 0.096547425 0.022149704 -0.012138114 0.095114417 0.020824119 0.0018597471 0.098266736 -0.027084054 -0.025825219 0.036512829 -0.028053252 -0.025898322 0.038836207 -0.028363962 -0.024325112 0.037908759 -0.025097134 -0.027792711 0.038597733 -0.025434468 -0.02718902 0.036667898 -0.017428715 -0.028052129 0.034223299 0.022149704 -0.012138114 0.095114417 0.023086373 -0.013207841 0.093816362 0.020824119 0.0018597471 0.098266736 0.0251997 -0.027257739 0.074078918 0.025763892 -0.026398031 0.073812842 0.02478604 -0.026212851 0.080312982 0.022336647 -0.028681122 0.073956296 0.024461308 -0.028675111 0.038590174 0.026252443 -0.028233172 0.0415117 0.022336647 -0.028681122 0.073956296 0.026252443 -0.028233172 0.0415117 0.023742236 -0.028346684 0.074052379 0.023742236 -0.028346684 0.074052379 0.026252443 -0.028233172 0.0415117 0.024451446 -0.027938565 0.074171722 -0.017428715 -0.028052129 0.034223299 -0.018347267 -0.027243283 0.032313574 -0.015631882 -0.028094897 0.031432208 -0.017224334 -0.026561622 0.028845835 -0.019942462 -0.024209112 0.031760778 -0.017854204 -0.024834512 0.028399426 0.024451446 -0.027938565 0.074171722 0.027298866 -0.027434878 0.041254409 0.0251997 -0.027257739 0.074078918 0.024451446 -0.027938565 0.074171722 0.026252443 -0.028233172 0.0415117 0.027298866 -0.027434878 0.041254409 -0.015631882 -0.028094897 0.031432208 -0.018347267 -0.027243283 0.032313574 -0.017224334 -0.026561622 0.028845835 0.0251997 -0.027257739 0.074078918 0.027298866 -0.027434878 0.041254409 0.025763892 -0.026398031 0.073812842 0.025763892 -0.026398031 0.073812842 0.027298866 -0.027434878 0.041254409 0.028123798 -0.026126456 0.041286781 -0.027084054 -0.025825219 0.036512829 -0.02706047 -0.024428921 0.035763875 -0.025081662 -0.026414214 0.035393659 0.025763892 -0.026398031 0.073812842 0.028123798 -0.026126456 0.041286781 0.026097296 -0.025384946 0.073849156 0.026097296 -0.025384946 0.073849156 0.028123798 -0.026126456 0.041286781 0.028321588 -0.025039796 0.042378914 0.021024499 -0.026918421 0.033654355 0.024819182 -0.028083809 0.036660232 0.016787123 -0.028661346 0.034218077 0.019443005 -0.026560634 0.032397471 0.019435154 -0.024910241 0.031754769 0.021385882 -0.025366882 0.033121556 0.024819182 -0.028083809 0.036660232 0.021024499 -0.026918421 0.033654355 0.024493854 -0.027296918 0.035386093 -0.025081662 -0.026414214 0.035393659 -0.025434468 -0.02718902 0.036667898 -0.027084054 -0.025825219 0.036512829 0.024493854 -0.027296918 0.035386093 0.024350969 -0.024963167 0.034267388 0.026542433 -0.025383333 0.035755698 0.021385882 -0.025366882 0.033121556 0.021024499 -0.026918421 0.033654355 0.019443005 -0.026560634 0.032397471 0.024493854 -0.027296918 0.035386093 0.026516195 -0.026779588 0.036504649 0.024819182 -0.028083809 0.036660232 0.026516195 -0.026779588 0.036504649 0.024493854 -0.027296918 0.035386093 0.026542433 -0.025383333 0.035755698 -0.021907704 -0.024596032 0.033128161 -0.020008806 -0.025858186 0.032403491 -0.021601591 -0.02615945 0.033660844 -0.025081662 -0.026414214 0.035393659 -0.02706047 -0.024428921 0.035763875 -0.024856219 -0.024087021 0.034274898 0.014989025 -0.028640103 0.031427536 0.016634202 -0.027164482 0.02884067 0.017733423 -0.027885703 0.032308068 0.016634202 -0.027164482 0.02884067 0.017325019 -0.025460882 0.028394058 0.019435154 -0.024910241 0.031754769 0.016787123 -0.028661346 0.034218077 0.014989025 -0.028640103 0.031427536 0.017733423 -0.027885703 0.032308068 0.024461308 -0.028675111 0.038590174 0.016787123 -0.028661346 0.034218077 0.024819182 -0.028083809 0.036660232 0.026516195 -0.026779588 0.036504649 0.0278493 -0.025326002 0.03790018 0.027482886 -0.026887156 0.038827721 0.028123798 -0.026126456 0.041286781 0.027482886 -0.026887156 0.038827721 0.028321588 -0.025039796 0.042378914 0.021024499 -0.026918421 0.033654355 0.021385882 -0.025366882 0.033121556 0.024350969 -0.024963167 0.034267388 0.026252443 -0.028233172 0.0415117 0.024461308 -0.028675111 0.038590174 0.027482886 -0.026887156 0.038827721 0.024819182 -0.028083809 0.036660232 0.026516195 -0.026779588 0.036504649 0.024461308 -0.028675111 0.038590174 0.024493854 -0.027296918 0.035386093 0.021024499 -0.026918421 0.033654355 0.024350969 -0.024963167 0.034267388 0.027482886 -0.026887156 0.038827721 0.024461308 -0.028675111 0.038590174 0.026516195 -0.026779588 0.036504649 0.027482886 -0.026887156 0.038827721 0.027298866 -0.027434878 0.041254409 0.026252443 -0.028233172 0.0415117 0.027482886 -0.026887156 0.038827721 0.028123798 -0.026126456 0.041286781 0.027298866 -0.027434878 0.041254409 0.026542433 -0.025383333 0.035755698 0.0278493 -0.025326002 0.03790018 0.026516195 -0.026779588 0.036504649 0.027482886 -0.026887156 0.038827721 0.0278493 -0.025326002 0.03790018 0.028321588 -0.025039796 0.042378914 0.017733423 -0.027885703 0.032308068 0.016634202 -0.027164482 0.02884067 0.019443005 -0.026560634 0.032397471 0.016634202 -0.027164482 0.02884067 0.019435154 -0.024910241 0.031754769 0.019443005 -0.026560634 0.032397471 0.017733423 -0.027885703 0.032308068 0.021024499 -0.026918421 0.033654355 0.016787123 -0.028661346 0.034218077 -0.025434468 -0.02718902 0.036667898 -0.025081662 -0.026414214 0.035393659 -0.021601591 -0.02615945 0.033660844 -0.020008806 -0.025858186 0.032403491 -0.021907704 -0.024596032 0.033128161 -0.019942462 -0.024209112 0.031760778 -0.021601591 -0.02615945 0.033660844 -0.017428715 -0.028052129 0.034223299 -0.025434468 -0.02718902 0.036667898 0.017733423 -0.027885703 0.032308068 0.019443005 -0.026560634 0.032397471 0.021024499 -0.026918421 0.033654355 0.015486152 -0.011236953 -0.026316924 0.015263484 -0.010323979 -0.02644838 0.016166385 -0.012112097 -0.025922116 0.015263484 -0.010323979 -0.02644838 0.015577228 -0.019297764 -0.026191363 0.016166385 -0.012112097 -0.025922116 0.013523276 -0.026111333 -0.02720435 0.012541698 -0.02714381 -0.027656022 0.016230969 -0.027140638 -0.025732804 0.014508951 -0.025234062 -0.026717423 0.013523276 -0.026111333 -0.02720435 0.016230969 -0.027140638 -0.025732804 0.013523276 -0.026111333 -0.02720435 0.0078028161 -0.027141878 -0.029305741 0.012541698 -0.02714381 -0.027656022 0.0077816737 -0.026142837 -0.029321365 0.0078028161 -0.027141878 -0.029305741 0.013523276 -0.026111333 -0.02720435 -0.026604408 -0.024446582 0.073857196 -0.028824516 -0.024022292 0.042387635 -0.028665777 -0.025115298 0.041295432 -0.026307233 -0.025470899 0.073820792 -0.026604408 -0.024446582 0.073857196 -0.028665777 -0.025115298 0.041295432 -0.026307233 -0.025470899 0.073820792 -0.028665777 -0.025115298 0.041295432 -0.027887987 -0.026452262 0.041262828 -0.025773833 -0.026350142 0.074086703 -0.026307233 -0.025470899 0.073820792 -0.027887987 -0.026452262 0.041262828 0.01697298 -0.025710016 -0.025289984 0.01808095 -0.019469168 -0.024618734 0.017808175 -0.012660813 -0.02488382 -0.025050262 -0.027057175 0.074179292 -0.027887987 -0.026452262 0.041262828 -0.026870627 -0.027287303 0.041519806 -0.025050262 -0.027057175 0.074179292 -0.025773833 -0.026350142 0.074086703 -0.027887987 -0.026452262 0.041262828 -0.024355946 -0.027490277 0.074059717 -0.025050262 -0.027057175 0.074179292 -0.026870627 -0.027287303 0.041519806 0.0017011157 -0.02614012 -0.03028979 0.0078028161 -0.027141878 -0.029305741 0.0077816737 -0.026142837 -0.029321365 -0.022963451 -0.027874546 0.07396321 -0.024355946 -0.027490277 0.074059717 -0.026870627 -0.027287303 0.041519806 -0.022963451 -0.027874546 0.07396321 -0.026870627 -0.027287303 0.041519806 -0.025097134 -0.027792711 0.038597733 0.016166385 -0.012112097 -0.025922116 0.016230969 -0.027140638 -0.025732804 0.017808175 -0.012660813 -0.02488382 0.0017011157 -0.02614012 -0.03028979 -0.00030898367 -0.027142595 -0.030333543 0.0078028161 -0.027141878 -0.029305741 0.016230969 -0.027140638 -0.025732804 0.01697298 -0.025710016 -0.025289984 0.017808175 -0.012660813 -0.02488382 0.015577228 -0.019297764 -0.026191363 0.016230969 -0.027140638 -0.025732804 0.016166385 -0.012112097 -0.025922116 0.014508951 -0.025234062 -0.026717423 0.016230969 -0.027140638 -0.025732804 0.015577228 -0.019297764 -0.026191363 -0.025773833 -0.026350142 0.074086703 -0.025321305 -0.02532067 0.080320626 -0.026307233 -0.025470899 0.073820792 -0.022181137 -0.011348793 0.095121183 -0.020357236 0.0025930058 0.098273002 -0.023155568 -0.012384485 0.093823418 0.017808175 -0.012660813 -0.02488382 0.017824288 -0.012687936 0.025477029 0.01726599 -0.012644946 0.02859024 -0.021046819 -0.008121226 0.09655384 -0.020357236 0.0025930058 0.098273002 -0.022181137 -0.011348793 0.095121183 0.017824288 -0.012687936 0.025477029 0.018026887 -0.012693545 0.028083345 0.01726599 -0.012644946 0.02859024 -0.023733668 -0.023282081 0.086972177 -0.023454906 -0.020210184 0.090144381 -0.024722818 -0.02107667 0.087464437 0.01726599 -0.012644946 0.02859024 0.016634202 -0.027164482 0.02884067 0.015690625 -0.011548515 0.029550726 0.017325019 -0.025460882 0.028394058 0.016634202 -0.027164482 0.02884067 0.01726599 -0.012644946 0.02859024 0.018026887 -0.012693545 0.028083345 0.017325019 -0.025460882 0.028394058 0.01726599 -0.012644946 0.02859024 -0.019693466 -0.0091443341 0.096748479 -0.019022552 -0.001852403 0.098259166 -0.021046819 -0.008121226 0.09655384 0.018074289 -0.019548921 0.027964327 0.017325019 -0.025460882 0.028394058 0.018026887 -0.012693545 0.028083345 0.0035415436 -0.032759529 -0.098889232 0.0036249303 -0.026562355 -0.10071249 0.0035607195 -0.033722997 -0.096962959 -0.023981882 -0.025716696 0.082669221 -0.023733668 -0.023282081 0.086972177 -0.025321305 -0.02532067 0.080320626 0.0035607195 -0.033722997 -0.096962959 0.0036249303 -0.026562355 -0.10071249 0.0037579518 -0.022946108 -0.087704539 0.0035607195 -0.033722997 -0.096962959 0.0037579518 -0.022946108 -0.087704539 0.0037140136 -0.025430497 -0.084782742 0.0035607195 -0.033722997 -0.096962959 0.0037140136 -0.025430497 -0.084782742 0.003692149 -0.026681567 -0.082480468 0.0035607195 -0.033722997 -0.096962959 0.003692149 -0.026681567 -0.082480468 0.0036744117 -0.027706871 -0.079472341 0.0035607195 -0.033722997 -0.096962959 0.0036744117 -0.027706871 -0.079472341 0.0036631194 -0.028366853 -0.075682998 0.0039776135 -0.0085692378 -0.098950908 0.0040088906 -0.0087947845 -0.093862683 0.0039113634 -0.014284707 -0.092406884 -0.022181137 -0.011348793 0.095121183 -0.023155568 -0.012384485 0.093823418 -0.023283469 -0.017651273 0.091900721 0.0039776135 -0.0085692378 -0.098950908 0.0040886076 -0.0038252303 -0.094864719 0.0040088906 -0.0087947845 -0.093862683 0.0036249303 -0.026562355 -0.10071249 0.0037919846 -0.021019971 -0.089229234 0.0037579518 -0.022946108 -0.087704539 0.0036249303 -0.026562355 -0.10071249 0.0038421093 -0.018185694 -0.090873867 0.0037919846 -0.021019971 -0.089229234 0.0035607195 -0.033722997 -0.096962959 0.0036631194 -0.028366853 -0.075682998 0.0036596218 -0.028600562 -0.071334682 0.0035607195 -0.033722997 -0.096962959 0.0036596218 -0.028600562 -0.071334682 0.0035188356 -0.034093503 -0.043407854 0.0036249303 -0.026562355 -0.10071249 0.0039776135 -0.0085692378 -0.098950908 0.0038421093 -0.018185694 -0.090873867 -0.020221481 -0.012278674 0.09574566 -0.019693466 -0.0091443341 0.096748479 -0.021046819 -0.008121226 0.09655384 0.0039776135 -0.0085692378 -0.098950908 0.0039113634 -0.014284707 -0.092406884 0.0038421093 -0.018185694 -0.090873867 -0.023283469 -0.017651273 0.091900721 -0.021272484 -0.020662652 0.091042452 -0.020751724 -0.017166611 0.093525514 0.0036596218 -0.028600562 -0.071334682 0.0036634826 -0.028628092 -0.043405622 0.0035188356 -0.034093503 -0.043407854 -0.021072101 -0.01902849 0.092317954 -0.020751724 -0.017166611 0.093525514 -0.021272484 -0.020662652 0.091042452 -0.024431312 -0.016413497 0.090038374 -0.023155568 -0.012384485 0.093823418 -0.022917455 -0.0064883335 0.094496034 0.013440628 -0.017844379 -0.09089309 0.0038421093 -0.018185694 -0.090873867 0.0039113634 -0.014284707 -0.092406884 0.013298664 -0.027994558 -0.078105532 0.0036631194 -0.028366853 -0.075682998 0.0036744117 -0.027706871 -0.079472341 0.013298664 -0.027994558 -0.078105532 0.013668828 -0.02856159 -0.071973734 0.0036631194 -0.028366853 -0.075682998 0.013440628 -0.017844379 -0.09089309 0.013553783 -0.02022858 -0.089629807 0.0038421093 -0.018185694 -0.090873867 0.013314299 -0.025821334 -0.084089048 0.003692149 -0.026681567 -0.082480468 0.0037140136 -0.025430497 -0.084782742 -0.023733668 -0.023282081 0.086972177 -0.021856626 -0.023306094 0.088231862 -0.023454906 -0.020210184 0.090144381 -0.024722818 -0.02107667 0.087464437 -0.025217468 -0.023461465 0.083840773 -0.023733668 -0.023282081 0.086972177 -0.020221481 -0.012278674 0.09574566 -0.021046819 -0.008121226 0.09655384 -0.022181137 -0.011348793 0.095121183 0.013553783 -0.02022858 -0.089629807 0.0037919846 -0.021019971 -0.089229234 0.0038421093 -0.018185694 -0.090873867 0.013314299 -0.025821334 -0.084089048 0.013597978 -0.02725702 -0.080812566 0.003692149 -0.026681567 -0.082480468 -0.025217468 -0.023461465 0.083840773 -0.025321305 -0.02532067 0.080320626 -0.023733668 -0.023282081 0.086972177 -0.020751724 -0.017166611 0.093525514 -0.020221481 -0.012278674 0.09574566 -0.022181137 -0.011348793 0.095121183 -0.023283469 -0.017651273 0.091900721 -0.023155568 -0.012384485 0.093823418 -0.024431312 -0.016413497 0.090038374 -0.025321305 -0.02532067 0.080320626 -0.025050262 -0.027057175 0.074179292 -0.023981882 -0.025716696 0.082669221 -0.020430731 -0.014688175 0.094798647 -0.020221481 -0.012278674 0.09574566 -0.020751724 -0.017166611 0.093525514 0.013553783 -0.02022858 -0.089629807 0.013602195 -0.022075938 -0.088317752 0.0037919846 -0.021019971 -0.089229234 0.013668828 -0.02856159 -0.071973734 0.0036596218 -0.028600562 -0.071334682 0.0036631194 -0.028366853 -0.075682998 0.013602195 -0.022075938 -0.088317752 0.0037579518 -0.022946108 -0.087704539 0.0037919846 -0.021019971 -0.089229234 -0.025050262 -0.027057175 0.074179292 -0.025321305 -0.02532067 0.080320626 -0.025773833 -0.026350142 0.074086703 0.013602195 -0.022075938 -0.088317752 0.013569068 -0.024516165 -0.085918479 0.0037579518 -0.022946108 -0.087704539 0.013597978 -0.02725702 -0.080812566 0.0036744117 -0.027706871 -0.079472341 0.003692149 -0.026681567 -0.082480468 -0.024722818 -0.02107667 0.087464437 -0.023283469 -0.017651273 0.091900721 -0.024431312 -0.016413497 0.090038374 0.014119886 -0.0059519424 -0.094298467 0.01397139 -0.012584298 -0.092748731 0.0040088906 -0.0087947845 -0.093862683 -0.020751724 -0.017166611 0.093525514 -0.022181137 -0.011348793 0.095121183 -0.023283469 -0.017651273 0.091900721 0.013597978 -0.02725702 -0.080812566 0.013298664 -0.027994558 -0.078105532 0.0036744117 -0.027706871 -0.079472341 0.01397139 -0.012584298 -0.092748731 0.0039113634 -0.014284707 -0.092406884 0.0040088906 -0.0087947845 -0.093862683 0.01397139 -0.012584298 -0.092748731 0.013440628 -0.017844379 -0.09089309 0.0039113634 -0.014284707 -0.092406884 0.013569068 -0.024516165 -0.085918479 0.013314299 -0.025821334 -0.084089048 0.0037140136 -0.025430497 -0.084782742 -0.023981882 -0.025716696 0.082669221 -0.022156054 -0.025986444 0.083648644 -0.023733668 -0.023282081 0.086972177 -0.024722818 -0.02107667 0.087464437 -0.024431312 -0.016413497 0.090038374 -0.025315247 -0.02163028 0.085156783 0.013569068 -0.024516165 -0.085918479 0.0037140136 -0.025430497 -0.084782742 0.0037579518 -0.022946108 -0.087704539 0.028455013 -0.019689228 0.041040212 0.026097296 -0.025384946 0.073849156 0.028321588 -0.025039796 0.042378914 -0.024355946 -0.027490277 0.074059717 -0.023981882 -0.025716696 0.082669221 -0.025050262 -0.027057175 0.074179292 -0.024355946 -0.027490277 0.074059717 -0.022905318 -0.02765039 0.076978974 -0.023981882 -0.025716696 0.082669221 -0.023454906 -0.020210184 0.090144381 -0.023283469 -0.017651273 0.091900721 -0.024722818 -0.02107667 0.087464437 0.026269369 -0.019652257 0.073166378 0.026097296 -0.025384946 0.073849156 0.028455013 -0.019689228 0.041040212 0.019088279 0.037573501 -0.082322903 0.018247785 0.042445511 0.045016717 0.019133037 0.037413113 0.083982632 0.01826036 0.042405859 -0.07970617 0.018247785 0.042445511 0.045016717 0.019088279 0.037573501 -0.082322903 -0.021272484 -0.020662652 0.091042452 -0.023283469 -0.017651273 0.091900721 -0.023454906 -0.020210184 0.090144381 0.018247785 0.042445511 0.045016717 0.018302912 0.042219508 0.082993262 0.019133037 0.037413113 0.083982632 0.019331904 -0.0025353059 0.098253325 0.018766079 0.0046661445 0.099480078 0.00021545941 0.0012066257 0.099219896 0.016807027 0.027243821 0.10177083 0.00076370826 0.031968988 0.10222167 0.0006187965 0.023836713 0.10186113 0.014195032 0.034783166 0.10202461 0.00085746194 0.037240755 0.10227314 0.00076370826 0.031968988 0.10222167 0.016807027 0.027243821 0.10177083 0.014195032 0.034783166 0.10202461 0.00076370826 0.031968988 0.10222167 0.019331904 -0.0025353059 0.098253325 6.3374355e-05 -0.0073211524 0.097608149 0.019742614 -0.0098464955 0.096742481 0.00040973487 0.012104118 0.10081259 0.0174227 0.019200183 0.10122488 0.0006187965 0.023836713 0.10186113 0.019331904 -0.0025353059 0.098253325 0.00021545941 0.0012066257 0.099219896 6.3374355e-05 -0.0073211524 0.097608149 0.0174227 0.019200183 0.10122488 0.016807027 0.027243821 0.10177083 0.0006187965 0.023836713 0.10186113 0.018766079 0.0046661445 0.099480078 0.018133502 0.012141519 0.10048769 0.00040973487 0.012104118 0.10081259 -0.022963451 -0.027874546 0.07396321 -0.022905318 -0.02765039 0.076978974 -0.024355946 -0.027490277 0.074059717 0.00021545941 0.0012066257 0.099219896 0.018766079 0.0046661445 0.099480078 0.00040973487 0.012104118 0.10081259 0.018133502 0.012141519 0.10048769 0.0174227 0.019200183 0.10122488 0.00040973487 0.012104118 0.10081259 -0.021856626 -0.023306094 0.088231862 -0.021272484 -0.020662652 0.091042452 -0.023454906 -0.020210184 0.090144381 0.014195032 0.034783166 0.10202461 0.011662217 0.036697716 0.10195008 0.00085746194 0.037240755 0.10227314 0.022287449 -0.028455066 0.076972075 0.021926284 -0.027812121 0.080523752 -0.00031362899 -0.028326869 0.078002289 0.021926284 -0.027812121 0.080523752 -0.0003020475 -0.02770301 0.080910362 -0.00031362899 -0.028326869 0.078002289 0.020158319 -0.012997647 0.095739529 0.019742614 -0.0098464955 0.096742481 1.4942842e-06 -0.010785686 0.096732557 -0.022156054 -0.025986444 0.083648644 -0.021856626 -0.023306094 0.088231862 -0.023733668 -0.023282081 0.086972177 -0.021149272 -0.021991832 0.089806065 -0.021272484 -0.020662652 0.091042452 -0.021856626 -0.023306094 0.088231862 -4.3322834e-05 -0.013298921 0.095893852 0.020158319 -0.012997647 0.095739529 1.4942842e-06 -0.010785686 0.096732557 -0.023981882 -0.025716696 0.082669221 -0.022520231 -0.027020732 0.080530532 -0.022156054 -0.025986444 0.083648644 0.020281371 -0.015413064 0.094792433 0.020158319 -0.012997647 0.095739529 -4.3322834e-05 -0.013298921 0.095893852 -0.022905318 -0.02765039 0.076978974 -0.022520231 -0.027020732 0.080530532 -0.023981882 -0.025716696 0.082669221 1.4942842e-06 -0.010785686 0.096732557 0.019742614 -0.0098464955 0.096742481 6.3374355e-05 -0.0073211524 0.097608149 0.021182025 -0.025556616 0.086082309 -0.00024336331 -0.02446498 0.087857999 -0.00026558893 -0.025696626 0.085919023 -0.025217468 -0.023461465 0.083840773 -0.024722818 -0.02107667 0.087464437 -0.025315247 -0.02163028 0.085156783 -0.00028627249 -0.026834833 0.08357323 0.021600081 -0.026765525 0.083641969 -0.00026558893 -0.025696626 0.085919023 -0.0003020475 -0.02770301 0.080910362 0.021926284 -0.027812121 0.080523752 -0.00028627249 -0.026834833 0.08357323 -0.00024336331 -0.02446498 0.087857999 0.021182025 -0.025556616 0.086082309 0.021397598 -0.024076246 0.088225268 0.020767156 -0.01977345 0.092311583 -0.00012810847 -0.018041501 0.09364672 -0.00017818465 -0.020833923 0.091701321 -4.3322834e-05 -0.013298921 0.095893852 -8.9209214e-05 -0.015863389 0.094807051 0.020281371 -0.015413064 0.094792433 -0.00021474827 -0.02287798 0.089814357 0.021397598 -0.024076246 0.088225268 0.020738048 -0.022737637 0.089799665 -0.021694455 -0.024793198 0.086088851 -0.021856626 -0.023306094 0.088231862 -0.022156054 -0.025986444 0.083648644 -0.025321305 -0.02532067 0.080320626 -0.025217468 -0.023461465 0.083840773 -0.025315247 -0.02163028 0.085156783 -0.00028627249 -0.026834833 0.08357323 0.021926284 -0.027812121 0.080523752 0.021600081 -0.026765525 0.083641969 0.021397598 -0.024076246 0.088225268 -0.00021474827 -0.02287798 0.089814357 -0.00024336331 -0.02446498 0.087857999 -0.025321305 -0.02532067 0.080320626 -0.025315247 -0.02163028 0.085156783 -0.026604408 -0.024446582 0.073857196 -0.00017818465 -0.020833923 0.091701321 0.020908728 -0.021413701 0.091036029 0.020767156 -0.01977345 0.092311583 0.020767156 -0.01977345 0.092311583 0.020513512 -0.017901348 0.093519218 -0.00012810847 -0.018041501 0.09364672 -8.9209214e-05 -0.015863389 0.094807051 0.020513512 -0.017901348 0.093519218 0.020281371 -0.015413064 0.094792433 -0.026307233 -0.025470899 0.073820792 -0.025321305 -0.02532067 0.080320626 -0.026604408 -0.024446582 0.073857196 0.020738048 -0.022737637 0.089799665 0.020908728 -0.021413701 0.091036029 -0.00017818465 -0.020833923 0.091701321 -8.9209214e-05 -0.015863389 0.094807051 -0.00012810847 -0.018041501 0.09364672 0.020513512 -0.017901348 0.093519218 -0.00026558893 -0.025696626 0.085919023 0.021600081 -0.026765525 0.083641969 0.021182025 -0.025556616 0.086082309 -0.0003203073 -0.028672725 0.074397378 0.022336647 -0.028681122 0.073956296 0.022287449 -0.028455066 0.076972075 -0.02021187 0.01043083 0.098652251 -0.020357236 0.0025930058 0.098273002 -0.01866762 0.017976699 0.10016236 -0.00021474827 -0.02287798 0.089814357 0.020738048 -0.022737637 0.089799665 -0.00017818465 -0.020833923 0.091701321 -0.020357236 0.0025930058 0.098273002 -0.018200107 0.0053243325 0.099485703 -0.018709842 0.01033135 0.099849984 0.022287449 -0.028455066 0.076972075 -0.00031362899 -0.028326869 0.078002289 -0.0003203073 -0.028672725 0.074397378 -0.017301535 0.012772445 0.1004931 -0.017144322 0.022433413 0.10114658 -0.018709842 0.01033135 0.099849984 -0.01492632 0.032994308 0.10182419 -0.016393349 0.030904802 0.10137102 -0.015438029 0.027817952 0.10177573 0.022492507 0.010440128 0.0921112 0.020708948 0.026340824 0.096581824 0.021994602 0.011186846 0.095161684 0.020308992 0.025326373 0.098883934 0.021456189 0.010461254 0.097744301 0.021994602 0.011186846 0.095161684 -0.01492632 0.032994308 0.10182419 -0.015438029 0.027817952 0.10177573 -0.01255904 0.035259515 0.10202868 0.020708948 0.026340824 0.096581824 0.020308992 0.025326373 0.098883934 0.021994602 0.011186846 0.095161684 -0.017144322 0.022433413 0.10114658 -0.017301535 0.012772445 0.1004931 -0.016339796 0.019801341 0.10123004 0.022492507 0.010440128 0.0921112 0.020618113 0.028625639 0.094573244 0.020708948 0.026340824 0.096581824 0.018173706 0.039661378 0.095761202 0.017367641 0.04330904 0.09367507 0.016605394 0.041963283 0.096055537 0.018173706 0.039661378 0.095761202 0.018044299 0.042841651 0.092196442 0.017367641 0.04330904 0.09367507 0.018302912 0.042219508 0.082993262 0.019713357 0.036156725 0.091160655 0.019133037 0.037413113 0.083982632 0.020107552 0.032745894 0.093967646 0.019500066 0.034323689 0.096675128 0.020708948 0.026340824 0.096581824 -0.017774444 0.027868699 0.10060728 -0.01866762 0.017976699 0.10016236 -0.017144322 0.022433413 0.10114658 0.019500066 0.034323689 0.096675128 0.018173706 0.039661378 0.095761202 0.01777917 0.034759503 0.10021626 0.019713357 0.036156725 0.091160655 0.019238256 0.038239498 0.093241565 0.020107552 0.032745894 0.093967646 -0.019006675 0.026026376 0.098889932 -0.01866762 0.017976699 0.10016236 -0.017774444 0.027868699 0.10060728 0.0008796482 0.038487069 0.10185187 0.0078572212 0.038347542 0.10160374 0.0009138849 0.040418282 0.10048454 0.019500066 0.034323689 0.096675128 0.020107552 0.032745894 0.093967646 0.019238256 0.038239498 0.093241565 -0.01351199 0.03665204 0.10135186 -0.01255904 0.035259515 0.10202868 -0.0099599035 0.037082717 0.10195338 0.018044299 0.042841651 0.092196442 0.018173706 0.039661378 0.095761202 0.019500066 0.034323689 0.096675128 0.01777917 0.034759503 0.10021626 0.018173706 0.039661378 0.095761202 0.016605394 0.041963283 0.096055537 0.018044299 0.042841651 0.092196442 0.019500066 0.034323689 0.096675128 0.019238256 0.038239498 0.093241565 0.018310452 0.04278329 0.090072244 0.018044299 0.042841651 0.092196442 0.019238256 0.038239498 0.093241565 -0.019006675 0.026026376 0.098889932 -0.017774444 0.027868699 0.10060728 -0.01729146 0.032957081 0.10004589 0.018841764 0.032313723 0.10004039 0.020308992 0.025326373 0.098883934 0.020708948 0.026340824 0.096581824 0.019500066 0.034323689 0.096675128 0.018841764 0.032313723 0.10004039 0.020708948 0.026340824 0.096581824 0.020708948 0.026340824 0.096581824 0.020618113 0.028625639 0.094573244 0.020107552 0.032745894 0.093967646 -0.02021187 0.01043083 0.098652251 -0.023155568 -0.012384485 0.093823418 -0.020357236 0.0025930058 0.098273002 0.01777917 0.034759503 0.10021626 0.018841764 0.032313723 0.10004039 0.019500066 0.034323689 0.096675128 0.011233125 0.044579044 0.09577997 0.00097691908 0.043987885 0.097053863 0.0009512346 0.042535242 0.098625526 -0.01506906 0.035885006 0.10093714 -0.016142329 0.035363462 0.10022144 -0.015617695 0.034138925 0.10128984 0.026049487 -0.019298192 0.075640686 0.025532309 -0.017105406 0.080187216 0.024912896 -0.022524595 0.085149139 -0.022917455 -0.0064883335 0.094496034 -0.023155568 -0.012384485 0.093823418 -0.02021187 0.01043083 0.098652251 -0.021046819 -0.008121226 0.09655384 -0.019022552 -0.001852403 0.098259166 -0.018200107 0.0053243325 0.099485703 0.011662217 0.036697716 0.10195008 0.015196715 0.036140874 0.10134748 0.013667007 0.040355604 0.098999739 0.026097296 -0.025384946 0.073849156 0.026049487 -0.019298192 0.075640686 0.024912896 -0.022524595 0.085149139 -0.017301535 0.012772445 0.1004931 -0.018709842 0.01033135 0.099849984 -0.018200107 0.0053243325 0.099485703 -0.020357236 0.0025930058 0.098273002 -0.018709842 0.01033135 0.099849984 -0.01866762 0.017976699 0.10016236 0.016725365 0.0353189 0.10093229 0.013667007 0.040355604 0.098999739 0.015196715 0.036140874 0.10134748 -0.01866762 0.017976699 0.10016236 -0.018709842 0.01033135 0.099849984 -0.017144322 0.022433413 0.10114658 -0.02068283 0.011211554 0.097750731 -0.02021187 0.01043083 0.098652251 -0.01866762 0.017976699 0.10016236 -0.017144322 0.022433413 0.10114658 -0.016339796 0.019801341 0.10123004 -0.015438029 0.027817952 0.10177573 -0.01866762 0.017976699 0.10016236 -0.019006675 0.026026376 0.098889932 -0.02068283 0.011211554 0.097750731 -0.016393349 0.030904802 0.10137102 -0.017144322 0.022433413 0.10114658 -0.015438029 0.027817952 0.10177573 -0.016393349 0.030904802 0.10137102 -0.017774444 0.027868699 0.10060728 -0.017144322 0.022433413 0.10114658 0.026269369 -0.019652257 0.073166378 0.026049487 -0.019298192 0.075640686 0.026097296 -0.025384946 0.073849156 -0.016393349 0.030904802 0.10137102 -0.01729146 0.032957081 0.10004589 -0.017774444 0.027868699 0.10060728 0.0078572212 0.038347542 0.10160374 0.011662217 0.036697716 0.10195008 0.010437844 0.040230244 0.099842049 -0.01492632 0.032994308 0.10182419 -0.015617695 0.034138925 0.10128984 -0.016393349 0.030904802 0.10137102 0.0074613891 0.040897053 0.099696927 0.0078572212 0.038347542 0.10160374 0.010437844 0.040230244 0.099842049 0.013667007 0.040355604 0.098999739 0.010437844 0.040230244 0.099842049 0.011662217 0.036697716 0.10195008 -0.015617695 0.034138925 0.10128984 -0.01729146 0.032957081 0.10004589 -0.016393349 0.030904802 0.10137102 0.0009138849 0.040418282 0.10048454 0.0078572212 0.038347542 0.10160374 0.0074613891 0.040897053 0.099696927 -0.015617695 0.034138925 0.10128984 -0.01492632 0.032994308 0.10182419 -0.01255904 0.035259515 0.10202868 -0.015617695 0.034138925 0.10128984 -0.016142329 0.035363462 0.10022144 -0.01729146 0.032957081 0.10004589 0.0009512346 0.042535242 0.098625526 0.0009138849 0.040418282 0.10048454 0.0074613891 0.040897053 0.099696927 0.016725365 0.0353189 0.10093229 0.01777917 0.034759503 0.10021626 0.016605394 0.041963283 0.096055537 0.016605394 0.041963283 0.096055537 0.013667007 0.040355604 0.098999739 0.016725365 0.0353189 0.10093229 0.018310452 0.04278329 0.090072244 0.019238256 0.038239498 0.093241565 0.019713357 0.036156725 0.091160655 -0.01351199 0.03665204 0.10135186 -0.015617695 0.034138925 0.10128984 -0.01255904 0.035259515 0.10202868 0.010437844 0.040230244 0.099842049 0.013667007 0.040355604 0.098999739 0.013640816 0.044513576 0.095397569 -0.01351199 0.03665204 0.10135186 -0.01506906 0.035885006 0.10093714 -0.015617695 0.034138925 0.10128984 0.0074613891 0.040897053 0.099696927 0.010437844 0.040230244 0.099842049 0.011233125 0.044579044 0.09577997 0.0074613891 0.040897053 0.099696927 0.011233125 0.044579044 0.09577997 0.0009512346 0.042535242 0.098625526 -0.0060984548 0.038596027 0.10160586 -0.0099599035 0.037082717 0.10195338 0.00085746194 0.037240755 0.10227314 0.013667007 0.040355604 0.098999739 0.015049018 0.044828396 0.094197772 0.013640816 0.044513576 0.095397569 0.0008796482 0.038487069 0.10185187 -0.0060984548 0.038596027 0.10160586 0.00085746194 0.037240755 0.10227314 0.013640816 0.044513576 0.095397569 0.011233125 0.044579044 0.09577997 0.010437844 0.040230244 0.099842049 0.016605394 0.041963283 0.096055537 0.015049018 0.044828396 0.094197772 0.013667007 0.040355604 0.098999739 -0.020357236 0.0025930058 0.098273002 -0.021046819 -0.008121226 0.09655384 -0.018200107 0.0053243325 0.099485703 -0.02068283 0.011211554 0.097750731 -0.022917455 -0.0064883335 0.094496034 -0.02021187 0.01043083 0.098652251 0.017367641 0.04330904 0.09367507 0.015049018 0.044828396 0.094197772 0.016605394 0.041963283 0.096055537 0.011233125 0.044579044 0.09577997 0.0010022733 0.04543183 0.095114216 0.00097691908 0.043987885 0.097053863 0.019713357 0.036156725 0.091160655 0.018302912 0.042219508 0.082993262 0.018310452 0.04278329 0.090072244 0.024912896 -0.022524595 0.085149139 0.025532309 -0.017105406 0.080187216 0.024216576 -0.017279685 0.090030961 -0.0092522781 0.044943795 0.0957831 -0.01031807 0.045749974 0.093839578 -0.011660801 0.044964083 0.095401429 -0.01031807 0.045749974 0.093839578 -0.013057418 0.045328848 0.094202094 -0.011660801 0.044964083 0.095401429 0.023058275 -0.007306946 0.094489008 0.024216576 -0.017279685 0.090030961 0.024265697 -0.0080010956 0.087385401 -0.01031807 0.045749974 0.093839578 -0.012950413 0.045750584 0.092641011 -0.013057418 0.045328848 0.094202094 0.025532309 -0.017105406 0.080187216 0.024865562 -0.012962717 0.084600896 0.024216576 -0.017279685 0.090030961 -0.014920693 0.045022864 0.083178982 -0.015412241 0.04476776 0.089698233 -0.013708824 0.045669939 0.090321973 -0.012950413 0.045750584 0.092641011 -0.013708824 0.045669939 0.090321973 -0.014902946 0.044974532 0.092215315 0.024865562 -0.012962717 0.084600896 0.024265697 -0.0080010956 0.087385401 0.024216576 -0.017279685 0.090030961 0.021994602 0.011186846 0.095161684 0.023058275 -0.007306946 0.094489008 0.024265697 -0.0080010956 0.087385401 -0.015412241 0.04476776 0.089698233 -0.014920693 0.045022864 0.083178982 -0.016020669 0.043809384 0.083499812 0.023532821 -0.00040032688 0.089589924 0.021994602 0.011186846 0.095161684 0.024265697 -0.0080010956 0.087385401 0.021456189 0.010461254 0.097744301 0.023058275 -0.007306946 0.094489008 0.021994602 0.011186846 0.095161684 0.023532821 -0.00040032688 0.089589924 0.022492507 0.010440128 0.0921112 0.021994602 0.011186846 0.095161684 0.017325019 -0.025460882 0.028394058 0.018074289 -0.019548921 0.027964327 0.018751064 -0.018340927 0.03023087 0.024350969 -0.024963167 0.034267388 0.021385882 -0.025366882 0.033121556 0.021387739 -0.019600181 0.033031773 -0.013057418 0.045328848 0.094202094 -0.014902946 0.044974532 0.092215315 -0.015428729 0.04389298 0.093680091 0.022758089 -0.0189368 0.033572953 0.024350969 -0.024963167 0.034267388 0.021387739 -0.019600181 0.033031773 0.022758089 -0.0189368 0.033572953 0.025193734 -0.019622844 0.034650855 0.024350969 -0.024963167 0.034267388 0.025193734 -0.019622844 0.034650855 0.026542433 -0.025383333 0.035755698 0.024350969 -0.024963167 0.034267388 -0.016390789 0.043401148 0.090077534 -0.016122047 0.04344999 0.092201658 -0.015412241 0.04476776 0.089698233 0.019435154 -0.024910241 0.031754769 0.017325019 -0.025460882 0.028394058 0.018751064 -0.018340927 0.03023087 -0.012950413 0.045750584 0.092641011 -0.014902946 0.044974532 0.092215315 -0.013057418 0.045328848 0.094202094 0.025193734 -0.019622844 0.034650855 0.027595898 -0.019682385 0.037004087 0.026542433 -0.025383333 0.035755698 -0.015412241 0.04476776 0.089698233 -0.016122047 0.04344999 0.092201658 -0.015428729 0.04389298 0.093680091 -0.015412241 0.04476776 0.089698233 -0.014902946 0.044974532 0.092215315 -0.013708824 0.045669939 0.090321973 -0.015428729 0.04389298 0.093680091 -0.014902946 0.044974532 0.092215315 -0.015412241 0.04476776 0.089698233 0.027595898 -0.019682385 0.037004087 0.0278493 -0.025326002 0.03790018 0.026542433 -0.025383333 0.035755698 0.027595898 -0.019682385 0.037004087 0.028115712 -0.019683201 0.038334746 0.0278493 -0.025326002 0.03790018 0.0010022733 0.04543183 0.095114216 -0.01031807 0.045749974 0.093839578 -0.0092522781 0.044943795 0.0957831 0.021385882 -0.025366882 0.033121556 0.019435154 -0.024910241 0.031754769 0.021387739 -0.019600181 0.033031773 0.021387739 -0.019600181 0.033031773 0.019435154 -0.024910241 0.031754769 0.01990433 -0.016670633 0.031665727 -0.01031807 0.045749974 0.093839578 0.0010022733 0.04543183 0.095114216 0.0010080163 0.045760993 0.093951166 0.01990433 -0.016670633 0.031665727 0.019435154 -0.024910241 0.031754769 0.018751064 -0.018340927 0.03023087 -0.016020669 0.043809384 0.083499812 -0.016405422 0.042837482 0.082998559 -0.016390789 0.043401148 0.090077534 0.028321588 -0.025039796 0.042378914 0.0278493 -0.025326002 0.03790018 0.028115712 -0.019683201 0.038334746 0.028115712 -0.019683201 0.038334746 0.028455013 -0.019689228 0.041040212 0.028321588 -0.025039796 0.042378914 0.017569909 -0.0095459288 0.067659691 0.018464053 -0.0097435191 0.072698124 0.018402399 -0.011368906 0.068891264 0.028455013 -0.019689228 0.041040212 0.022657523 -0.015402675 0.041185942 0.025619747 -0.018273702 0.057979669 -0.016390789 0.043401148 0.090077534 -0.015412241 0.04476776 0.089698233 -0.016020669 0.043809384 0.083499812 0.021772129 -0.014974216 0.073592596 0.022084562 -0.013330124 0.077841178 0.025532309 -0.017105406 0.080187216 0.021487448 -0.01108797 0.07920371 0.018464053 -0.0097435191 0.072698124 0.020078599 -0.0084594833 0.078089535 0.021772129 -0.014974216 0.073592596 0.026049487 -0.019298192 0.075640686 0.02197174 -0.015622381 0.071234584 0.02032287 -0.013401132 0.037446614 0.022638278 -0.015868656 0.06124945 0.022657523 -0.015402675 0.041185942 0.025619747 -0.018273702 0.057979669 0.022638278 -0.015868656 0.06124945 0.026269369 -0.019652257 0.073166378 0.018464053 -0.0097435191 0.072698124 0.017799802 -0.0074679567 0.071265064 0.0186192 -0.0082167163 0.07445801 -0.015833229 0.044104174 0.048990592 -0.016405929 0.043023102 -0.07970088 -0.01635405 0.043061614 0.045021996 -0.01635405 0.043061614 0.045021996 -0.016020669 0.043809384 0.083499812 -0.015833229 0.044104174 0.048990592 0.018071255 0.00561865 -0.076081239 0.017714536 -0.0097032487 -0.064182878 0.018223569 -0.010882947 -0.082876079 0.01855455 0.0075723957 -0.08818908 0.018071255 0.00561865 -0.076081239 0.018223569 -0.010882947 -0.082876079 0.01936079 -0.012498151 0.048909731 0.018402399 -0.011368906 0.068891264 0.019624064 -0.013079016 0.06913624 0.025619747 -0.018273702 0.057979669 0.022657523 -0.015402675 0.041185942 0.022638278 -0.015868656 0.06124945 0.01936079 -0.012498151 0.048909731 0.019624064 -0.013079016 0.06913624 0.02197174 -0.015622381 0.071234584 -0.014401621 0.045414012 -0.023142695 -0.013973027 0.045656223 -0.08696609 -0.015276819 0.044839241 -0.087176606 0.017569909 -0.0095459288 0.067659691 0.018402399 -0.011368906 0.068891264 0.018022498 -0.010639151 0.033277009 0.022638278 -0.015868656 0.06124945 0.02032287 -0.013401132 0.037446614 0.01936079 -0.012498151 0.048909731 -0.015342172 0.044747144 -0.031599779 -0.015276819 0.044839241 -0.087176606 -0.016382195 0.043407034 -0.084414855 0.02197174 -0.015622381 0.071234584 0.022638278 -0.015868656 0.06124945 0.01936079 -0.012498151 0.048909731 0.027595898 -0.019682385 0.037004087 0.02205121 -0.015651282 0.034787562 0.028115712 -0.019683201 0.038334746 -0.015833229 0.044104174 0.048990592 -0.016020669 0.043809384 0.083499812 -0.014920693 0.045022864 0.083178982 0.025193734 -0.019622844 0.034650855 0.022758089 -0.0189368 0.033572953 0.021328898 -0.01608498 0.033246048 -0.015833229 0.044104174 0.048990592 -0.014920693 0.045022864 0.083178982 -0.015342172 0.044747144 -0.031599779 0.018022498 -0.010639151 0.033277009 0.017734291 -0.0096994778 0.03086081 0.017569909 -0.0095459288 0.067659691 0.022758089 -0.0189368 0.033572953 0.01990433 -0.016670633 0.031665727 0.021328898 -0.01608498 0.033246048 0.021387739 -0.019600181 0.033031773 0.01990433 -0.016670633 0.031665727 0.022758089 -0.0189368 0.033572953 0.022657523 -0.015402675 0.041185942 0.028455013 -0.019689228 0.041040212 0.02032287 -0.013401132 0.037446614 0.02205121 -0.015651282 0.034787562 0.02032287 -0.013401132 0.037446614 0.028455013 -0.019689228 0.041040212 -0.013708824 0.045669939 0.090321973 -0.012950413 0.045750584 0.092641011 -0.013158113 0.045874711 -0.085575737 0.019187937 -0.014792276 0.030988019 0.021328898 -0.01608498 0.033246048 0.01990433 -0.016670633 0.031665727 0.017981727 0.0039823432 -0.070250936 0.017939612 0.0015740453 -0.070702478 0.018071255 0.00561865 -0.076081239 0.018697057 -0.011790952 0.034232162 0.02032287 -0.013401132 0.037446614 0.02205121 -0.015651282 0.034787562 0.018751064 -0.018340927 0.03023087 0.019187937 -0.014792276 0.030988019 0.01990433 -0.016670633 0.031665727 -0.015342172 0.044747144 -0.031599779 -0.014401621 0.045414012 -0.023142695 -0.015276819 0.044839241 -0.087176606 0.017824288 -0.012687936 0.025477029 0.017734291 -0.0096994778 0.03086081 0.018026887 -0.012693545 0.028083345 0.018026887 -0.012693545 0.028083345 0.01857855 -0.012215937 0.03151378 0.019187937 -0.014792276 0.030988019 0.017734291 -0.0096994778 0.03086081 0.018022498 -0.010639151 0.033277009 0.01857855 -0.012215937 0.03151378 0.018026887 -0.012693545 0.028083345 0.017734291 -0.0096994778 0.03086081 0.01857855 -0.012215937 0.03151378 -0.014401621 0.045414012 -0.023142695 -0.013708824 0.045669939 0.090321973 -0.013158113 0.045874711 -0.085575737 0.017714536 -0.0097032487 -0.064182878 0.017734291 -0.0096994778 0.03086081 0.017808175 -0.012660813 -0.02488382 0.01808095 -0.019469168 -0.024618734 0.018077642 -0.019254534 -0.071925275 0.017714536 -0.0097032487 -0.064182878 0.01808095 -0.019469168 -0.024618734 0.017714536 -0.0097032487 -0.064182878 0.017808175 -0.012660813 -0.02488382 0.024865562 -0.012962717 0.084600896 0.020078599 -0.0084594833 0.078089535 0.024265697 -0.0080010956 0.087385401 0.02205121 -0.015651282 0.034787562 0.027595898 -0.019682385 0.037004087 0.025193734 -0.019622844 0.034650855 0.018223569 -0.010882947 -0.082876079 0.017714536 -0.0097032487 -0.064182878 0.018126406 -0.016473254 -0.077485777 -0.01635405 0.043061614 0.045021996 -0.016405422 0.042837482 0.082998559 -0.016020669 0.043809384 0.083499812 0.02205121 -0.015651282 0.034787562 0.021328898 -0.01608498 0.033246048 0.018697057 -0.011790952 0.034232162 0.017824288 -0.012687936 0.025477029 0.017808175 -0.012660813 -0.02488382 0.017734291 -0.0096994778 0.03086081 -0.014920693 0.045022864 0.083178982 -0.013708824 0.045669939 0.090321973 -0.014401621 0.045414012 -0.023142695 -0.016382195 0.043407034 -0.084414855 -0.015833229 0.044104174 0.048990592 -0.015342172 0.044747144 -0.031599779 0.01855455 0.0075723957 -0.08818908 0.018922716 0.028313318 -0.091299191 0.018071255 0.00561865 -0.076081239 -0.016405929 0.043023102 -0.07970088 -0.015833229 0.044104174 0.048990592 -0.016382195 0.043407034 -0.084414855 0.021772129 -0.014974216 0.073592596 0.025532309 -0.017105406 0.080187216 0.026049487 -0.019298192 0.075640686 0.017714536 -0.0097032487 -0.064182878 0.018071255 0.00561865 -0.076081239 0.017737458 -0.0085941385 -0.067016378 0.018071255 0.00561865 -0.076081239 0.017939612 0.0015740453 -0.070702478 0.017737458 -0.0085941385 -0.067016378 0.026269369 -0.019652257 0.073166378 0.028455013 -0.019689228 0.041040212 0.025619747 -0.018273702 0.057979669 0.018464053 -0.0097435191 0.072698124 0.0186192 -0.0082167163 0.07445801 0.020078599 -0.0084594833 0.078089535 0.022638278 -0.015868656 0.06124945 0.02197174 -0.015622381 0.071234584 0.026269369 -0.019652257 0.073166378 0.019624064 -0.013079016 0.06913624 0.021772129 -0.014974216 0.073592596 0.02197174 -0.015622381 0.071234584 0.018922716 0.028313318 -0.091299191 0.019015549 0.034043211 -0.090188302 0.018071255 0.00561865 -0.076081239 0.018022498 -0.010639151 0.033277009 0.018402399 -0.011368906 0.068891264 0.01936079 -0.012498151 0.048909731 -0.014920693 0.045022864 0.083178982 -0.014401621 0.045414012 -0.023142695 -0.015342172 0.044747144 -0.031599779 0.028455013 -0.019689228 0.041040212 0.028115712 -0.019683201 0.038334746 0.02205121 -0.015651282 0.034787562 0.018697057 -0.011790952 0.034232162 0.01936079 -0.012498151 0.048909731 0.02032287 -0.013401132 0.037446614 0.018697057 -0.011790952 0.034232162 0.018022498 -0.010639151 0.033277009 0.01936079 -0.012498151 0.048909731 0.025193734 -0.019622844 0.034650855 0.021328898 -0.01608498 0.033246048 0.02205121 -0.015651282 0.034787562 -0.013973027 0.045656223 -0.08696609 -0.014401621 0.045414012 -0.023142695 -0.013158113 0.045874711 -0.085575737 0.018751064 -0.018340927 0.03023087 0.018074289 -0.019548921 0.027964327 0.018026887 -0.012693545 0.028083345 0.019187937 -0.014792276 0.030988019 0.018751064 -0.018340927 0.03023087 0.018026887 -0.012693545 0.028083345 0.018697057 -0.011790952 0.034232162 0.021328898 -0.01608498 0.033246048 0.01857855 -0.012215937 0.03151378 0.01857855 -0.012215937 0.03151378 0.021328898 -0.01608498 0.033246048 0.019187937 -0.014792276 0.030988019 0.018697057 -0.011790952 0.034232162 0.01857855 -0.012215937 0.03151378 0.018022498 -0.010639151 0.033277009 -0.015276819 0.044839241 -0.087176606 -0.013973027 0.045656223 -0.08696609 -0.014611781 0.045232624 -0.088447779 0.017714536 -0.0097032487 -0.064182878 0.018077642 -0.019254534 -0.071925275 0.018126406 -0.016473254 -0.077485777 0.022084562 -0.013330124 0.077841178 0.021487448 -0.01108797 0.07920371 0.024865562 -0.012962717 0.084600896 0.026269369 -0.019652257 0.073166378 0.02197174 -0.015622381 0.071234584 0.026049487 -0.019298192 0.075640686 -0.015276819 0.044839241 -0.087176606 -0.016009828 0.043578181 -0.088644944 -0.016382195 0.043407034 -0.084414855 -0.013973027 0.045656223 -0.08696609 -0.011253038 0.045870658 -0.090074733 -0.011457396 0.045558292 -0.091129765 0.022084562 -0.013330124 0.077841178 0.018464053 -0.0097435191 0.072698124 0.021487448 -0.01108797 0.07920371 -0.013850057 0.044588722 -0.091423132 -0.014936531 0.044236206 -0.090572625 -0.014611781 0.045232624 -0.088447779 0.018071255 0.00561865 -0.076081239 0.019015549 0.034043211 -0.090188302 0.018208826 0.012495405 -0.074608386 0.018464053 -0.0097435191 0.072698124 0.022084562 -0.013330124 0.077841178 0.021772129 -0.014974216 0.073592596 0.018208826 0.012495405 -0.074608386 0.017981727 0.0039823432 -0.070250936 0.018071255 0.00561865 -0.076081239 0.021772129 -0.014974216 0.073592596 0.018402399 -0.011368906 0.068891264 0.018464053 -0.0097435191 0.072698124 0.019624064 -0.013079016 0.06913624 0.018402399 -0.011368906 0.068891264 0.021772129 -0.014974216 0.073592596 -0.011457396 0.045558292 -0.091129765 0.00097443373 0.045470487 -0.091849767 -0.010415686 0.044893187 -0.092357211 0.00098160352 0.045865525 -0.090567499 -0.011457396 0.045558292 -0.091129765 -0.011253038 0.045870658 -0.090074733 0.025532309 -0.017105406 0.080187216 0.022084562 -0.013330124 0.077841178 0.024865562 -0.012962717 0.084600896 0.00097443373 0.045470487 -0.091849767 -0.011457396 0.045558292 -0.091129765 0.00098160352 0.045865525 -0.090567499 0.021487448 -0.01108797 0.07920371 0.020078599 -0.0084594833 0.078089535 0.024865562 -0.012962717 0.084600896 0.017569909 -0.0095459288 0.067659691 0.017799802 -0.0074679567 0.071265064 0.018464053 -0.0097435191 0.072698124 -0.011457396 0.045558292 -0.091129765 -0.014611781 0.045232624 -0.088447779 -0.013973027 0.045656223 -0.08696609 0.018077642 -0.019254534 -0.071925275 0.01697298 -0.025710016 -0.025289984 0.016859507 -0.025939168 -0.071980096 0.01808095 -0.019469168 -0.024618734 0.01697298 -0.025710016 -0.025289984 0.018077642 -0.019254534 -0.071925275 -0.013850057 0.044588722 -0.091423132 -0.014611781 0.045232624 -0.088447779 -0.011457396 0.045558292 -0.091129765 0.017799802 -0.0074679567 0.071265064 0.018884499 0.0081283962 0.082813643 0.0186192 -0.0082167163 0.07445801 0.020562958 0.002173255 0.084400453 0.019667784 0.016709575 0.088188998 0.022492507 0.010440128 0.0921112 0.018140741 0.0050454214 0.077773608 0.01797108 0.0038462211 0.073550001 0.018019294 0.006262558 0.070260622 0.019088279 0.037573501 -0.082322903 0.019133037 0.037413113 0.083982632 0.018019294 0.006262558 0.070260622 0.018460805 0.0080690766 0.081030063 0.018884499 0.0081283962 0.082813643 0.017799802 -0.0074679567 0.071265064 0.0186192 -0.0082167163 0.07445801 0.020562958 0.002173255 0.084400453 0.020078599 -0.0084594833 0.078089535 0.018884499 0.0081283962 0.082813643 0.020562958 0.002173255 0.084400453 0.0186192 -0.0082167163 0.07445801 0.019015549 0.034043211 -0.090188302 0.019088279 0.037573501 -0.082322903 0.018208826 0.012495405 -0.074608386 0.020618113 0.028625639 0.094573244 0.019667784 0.016709575 0.088188998 0.020107552 0.032745894 0.093967646 0.018208826 0.012495405 -0.074608386 0.019088279 0.037573501 -0.082322903 0.018019294 0.006262558 0.070260622 0.022492507 0.010440128 0.0921112 0.023532821 -0.00040032688 0.089589924 0.020562958 0.002173255 0.084400453 -0.014936531 0.044236206 -0.090572625 -0.015276819 0.044839241 -0.087176606 -0.014611781 0.045232624 -0.088447779 -0.014936531 0.044236206 -0.090572625 -0.016009828 0.043578181 -0.088644944 -0.015276819 0.044839241 -0.087176606 0.018460805 0.0080690766 0.081030063 0.020107552 0.032745894 0.093967646 0.018884499 0.0081283962 0.082813643 0.023532821 -0.00040032688 0.089589924 0.024265697 -0.0080010956 0.087385401 0.020078599 -0.0084594833 0.078089535 -0.010415686 0.044893187 -0.092357211 -0.013850057 0.044588722 -0.091423132 -0.011457396 0.045558292 -0.091129765 0.023532821 -0.00040032688 0.089589924 0.020078599 -0.0084594833 0.078089535 0.020562958 0.002173255 0.084400453 -0.016837066 -0.026551854 -0.025727758 -0.017436426 -0.025328521 -0.071974866 -0.016953506 -0.026342861 -0.072078466 -0.016837066 -0.026551854 -0.025727758 -0.017527634 -0.025095725 -0.025284721 -0.017436426 -0.025328521 -0.071974866 0.018140741 0.0050454214 0.077773608 0.018019294 0.006262558 0.070260622 0.018873345 0.023533272 0.082753457 -0.016311334 -0.027152965 -0.026720544 -0.016953506 -0.026342861 -0.072078466 -0.016104009 -0.027277352 -0.071470037 -0.016311334 -0.027152965 -0.026720544 -0.016837066 -0.026551854 -0.025727758 -0.016953506 -0.026342861 -0.072078466 -0.015223775 -0.027851861 -0.0280581 -0.016311334 -0.027152965 -0.026720544 -0.016104009 -0.027277352 -0.071470037 0.020618113 0.028625639 0.094573244 0.022492507 0.010440128 0.0921112 0.019667784 0.016709575 0.088188998 -0.015223775 -0.027851861 -0.0280581 -0.016104009 -0.027277352 -0.071470037 -0.014341421 -0.028062876 -0.071969457 -0.014120482 -0.028140433 -0.028860824 -0.015223775 -0.027851861 -0.0280581 -0.014341421 -0.028062876 -0.071969457 0.020562958 0.002173255 0.084400453 0.018884499 0.0081283962 0.082813643 0.019667784 0.016709575 0.088188998 -0.015460208 -0.027055791 -0.077806868 -0.013953088 -0.02750935 -0.078101374 -0.014341421 -0.028062876 -0.071969457 0.017799802 -0.0074679567 0.071265064 0.018140741 0.0050454214 0.077773608 0.018460805 0.0080690766 0.081030063 0.017799802 -0.0074679567 0.071265064 0.017690411 0.001184989 0.073639244 0.018140741 0.0050454214 0.077773608 -0.017357402 -0.024792181 -0.07650654 -0.017137421 -0.021285845 -0.084776036 -0.016313264 -0.026257511 -0.078417756 0.019133037 0.037413113 0.083982632 0.019713357 0.036156725 0.091160655 0.018873345 0.023533272 0.082753457 0.018140741 0.0050454214 0.077773608 0.017690411 0.001184989 0.073639244 0.01797108 0.0038462211 0.073550001 0.018873345 0.023533272 0.082753457 0.018019294 0.006262558 0.070260622 0.019133037 0.037413113 0.083982632 0.018014982 0.0063742297 -0.066752151 0.017981727 0.0039823432 -0.070250936 0.018208826 0.012495405 -0.074608386 0.018019294 0.006262558 0.070260622 0.018014982 0.0063742297 -0.066752151 0.018208826 0.012495405 -0.074608386 -0.016104009 -0.027277352 -0.071470037 -0.015460208 -0.027055791 -0.077806868 -0.014341421 -0.028062876 -0.071969457 0.018884499 0.0081283962 0.082813643 0.020107552 0.032745894 0.093967646 0.019667784 0.016709575 0.088188998 -0.016104009 -0.027277352 -0.071470037 -0.016313264 -0.026257511 -0.078417756 -0.015460208 -0.027055791 -0.077806868 -0.016953506 -0.026342861 -0.072078466 -0.017357402 -0.024792181 -0.07650654 -0.016313264 -0.026257511 -0.078417756 -0.016953506 -0.026342861 -0.072078466 -0.016313264 -0.026257511 -0.078417756 -0.016104009 -0.027277352 -0.071470037 0.018460805 0.0080690766 0.081030063 0.019713357 0.036156725 0.091160655 0.020107552 0.032745894 0.093967646 -0.017436426 -0.025328521 -0.071974866 -0.017357402 -0.024792181 -0.07650654 -0.016953506 -0.026342861 -0.072078466 0.018460805 0.0080690766 0.081030063 0.018873345 0.023533272 0.082753457 0.019713357 0.036156725 0.091160655 0.018140741 0.0050454214 0.077773608 0.018873345 0.023533272 0.082753457 0.018460805 0.0080690766 0.081030063 -0.014081351 -0.012084817 -0.092744455 -0.015334696 -0.0062357602 -0.093628302 -0.013993851 -0.005451363 -0.094294176 -0.015989263 -0.011995597 -0.091775194 -0.015334696 -0.0062357602 -0.093628302 -0.014081351 -0.012084817 -0.092744455 -0.016276959 -0.006698492 -0.092786282 -0.015334696 -0.0062357602 -0.093628302 -0.015989263 -0.011995597 -0.091775194 0.015758356 0.044061538 -0.091427647 0.016831882 0.043670576 -0.090577476 0.017707564 0.041199397 -0.091256276 -0.015989263 -0.011995597 -0.091775194 -0.017113568 -0.0058793286 -0.091577321 -0.016276959 -0.006698492 -0.092786282 0.015759401 0.035903357 -0.097620465 0.015758356 0.044061538 -0.091427647 0.016836599 0.034929808 -0.097109184 -0.01713899 -0.011516855 -0.090080731 -0.017113568 -0.0058793286 -0.091577321 -0.015989263 -0.011995597 -0.091775194 0.015759401 0.035903357 -0.097620465 0.014871986 0.042567208 -0.093248308 0.015758356 0.044061538 -0.091427647 0.013816538 0.037370507 -0.097756393 0.014871986 0.042567208 -0.093248308 0.015759401 0.035903357 -0.097620465 0.0082958806 0.040123381 -0.096897535 0.012336628 0.044488061 -0.092360713 0.012161127 0.040256679 -0.096120909 0.01867085 0.040271573 -0.087230958 0.018248931 0.042790405 -0.084420137 0.019088279 0.037573501 -0.082322903 0.010736761 0.037953522 -0.098160774 0.006619487 0.037953589 -0.098538831 0.0082958806 0.040123381 -0.096897535 0.018248931 0.042790405 -0.084420137 0.01826036 0.042405859 -0.07970617 0.019088279 0.037573501 -0.082322903 0.019015549 0.034043211 -0.090188302 0.01867085 0.040271573 -0.087230958 0.019088279 0.037573501 -0.082322903 -0.013892994 -0.025336901 -0.084084891 -0.014226781 -0.026761588 -0.080808319 -0.015170039 -0.025799969 -0.082341127 0.0046247575 0.042442601 -0.095203027 0.012336628 0.044488061 -0.092360713 0.0082958806 0.040123381 -0.096897535 0.018687354 0.029776005 -0.093624972 0.019015549 0.034043211 -0.090188302 0.018922716 0.028313318 -0.091299191 -0.015170039 -0.025799969 -0.082341127 -0.015250297 -0.023820564 -0.08546938 -0.013892994 -0.025336901 -0.084084891 0.016831882 0.043670576 -0.090577476 0.017881602 0.042974737 -0.088650115 0.017707564 0.041199397 -0.091256276 -0.015250297 -0.023820564 -0.08546938 -0.015170039 -0.025799969 -0.082341127 -0.016580919 -0.023821544 -0.083438046 0.017658167 0.010139145 -0.094260156 0.018122775 0.0318726 -0.095882766 0.018687354 0.029776005 -0.093624972 0.0046247575 0.042442601 -0.095203027 0.0009480656 0.044009194 -0.093749322 0.012336628 0.044488061 -0.092360713 0.00088998588 0.040770926 -0.096902929 0.0046247575 0.042442601 -0.095203027 0.0082958806 0.040123381 -0.096897535 0.018687354 0.029776005 -0.093624972 0.01849791 0.037119903 -0.09198086 0.019015549 0.034043211 -0.090188302 0.0009480656 0.044009194 -0.093749322 0.00097443373 0.045470487 -0.091849767 0.012336628 0.044488061 -0.092360713 -0.015170039 -0.025799969 -0.082341127 -0.014226781 -0.026761588 -0.080808319 -0.015460208 -0.027055791 -0.077806868 0.006619487 0.037953589 -0.098538831 0.00088998588 0.040770926 -0.096902929 0.0082958806 0.040123381 -0.096897535 -0.013934978 -0.019739132 -0.089625612 -0.014081351 -0.012084817 -0.092744455 -0.013737494 -0.017360477 -0.09088894 0.00084843446 0.038449511 -0.098527588 0.00088998588 0.040770926 -0.096902929 0.006619487 0.037953589 -0.098538831 0.00088998588 0.040770926 -0.096902929 0.0009480656 0.044009194 -0.093749322 0.0046247575 0.042442601 -0.095203027 -0.016185192 -0.015728593 -0.090288252 -0.014081351 -0.012084817 -0.092744455 -0.013934978 -0.019739132 -0.089625612 -0.016185192 -0.015728593 -0.090288252 -0.015989263 -0.011995597 -0.091775194 -0.014081351 -0.012084817 -0.092744455 -0.01713899 -0.011516855 -0.090080731 -0.015989263 -0.011995597 -0.091775194 -0.016185192 -0.015728593 -0.090288252 0.01849791 0.037119903 -0.09198086 0.01867085 0.040271573 -0.087230958 0.019015549 0.034043211 -0.090188302 0.018122775 0.0318726 -0.095882766 0.01849791 0.037119903 -0.09198086 0.018687354 0.029776005 -0.093624972 0.016798096 -0.025400331 -0.076511756 0.018077642 -0.019254534 -0.071925275 0.016859507 -0.025939168 -0.071980096 0.016700463 -0.021888336 -0.0847812 0.018126406 -0.016473254 -0.077485777 0.016798096 -0.025400331 -0.076511756 -0.01712955 -0.018834477 -0.086782619 -0.01713899 -0.011516855 -0.090080731 -0.016185192 -0.015728593 -0.090288252 -0.013934978 -0.019739132 -0.089625612 -0.014048933 -0.021583604 -0.088313527 -0.015796147 -0.019099126 -0.089018442 -0.015796147 -0.019099126 -0.089018442 -0.016185192 -0.015728593 -0.090288252 -0.013934978 -0.019739132 -0.089625612 0.018126406 -0.016473254 -0.077485777 0.018077642 -0.019254534 -0.071925275 0.016798096 -0.025400331 -0.076511756 0.012161127 0.040256679 -0.096120909 0.015758356 0.044061538 -0.091427647 0.014871986 0.042567208 -0.093248308 0.012161127 0.040256679 -0.096120909 0.014871986 0.042567208 -0.093248308 0.013816538 0.037370507 -0.097756393 0.016779372 -0.019438226 -0.086787798 0.018126406 -0.016473254 -0.077485777 0.016700463 -0.021888336 -0.0847812 0.012161127 0.040256679 -0.096120909 0.012336628 0.044488061 -0.092360713 0.015758356 0.044061538 -0.091427647 0.018223569 -0.010882947 -0.082876079 0.018126406 -0.016473254 -0.077485777 0.016779372 -0.019438226 -0.086787798 0.016779372 -0.019438226 -0.086787798 0.017048242 -0.012125567 -0.090085946 0.018223569 -0.010882947 -0.082876079 -0.01712955 -0.018834477 -0.086782619 -0.016185192 -0.015728593 -0.090288252 -0.015796147 -0.019099126 -0.089018442 0.018122775 0.0318726 -0.095882766 0.017707564 0.041199397 -0.091256276 0.01849791 0.037119903 -0.09198086 0.017779475 -0.0056140404 -0.088806577 0.018223569 -0.010882947 -0.082876079 0.017048242 -0.012125567 -0.090085946 0.010736761 0.037953522 -0.098160774 0.012161127 0.040256679 -0.096120909 0.013816538 0.037370507 -0.097756393 0.017881602 0.042974737 -0.088650115 0.018248931 0.042790405 -0.084420137 0.01867085 0.040271573 -0.087230958 0.017223069 -0.0064906967 -0.091582559 0.017779475 -0.0056140404 -0.088806577 0.017048242 -0.012125567 -0.090085946 -0.016328335 -0.021153476 -0.086915523 -0.015796147 -0.019099126 -0.089018442 -0.014048933 -0.021583604 -0.088313527 -0.016328335 -0.021153476 -0.086915523 -0.014048933 -0.021583604 -0.088313527 -0.015250297 -0.023820564 -0.08546938 -0.01712955 -0.018834477 -0.086782619 -0.015796147 -0.019099126 -0.089018442 -0.016328335 -0.021153476 -0.086915523 0.01855455 0.0075723957 -0.08818908 0.018223569 -0.010882947 -0.082876079 0.017779475 -0.0056140404 -0.088806577 -0.015250297 -0.023820564 -0.08546938 -0.014048933 -0.021583604 -0.088313527 -0.014101846 -0.02402347 -0.085914254 -0.017137421 -0.021285845 -0.084776036 -0.01712955 -0.018834477 -0.086782619 -0.016328335 -0.021153476 -0.086915523 0.017223069 -0.0064906967 -0.091582559 0.017658167 0.010139145 -0.094260156 0.017779475 -0.0056140404 -0.088806577 0.017658167 0.010139145 -0.094260156 0.01855455 0.0075723957 -0.08818908 0.017779475 -0.0056140404 -0.088806577 0.01849791 0.037119903 -0.09198086 0.017707564 0.041199397 -0.091256276 0.01867085 0.040271573 -0.087230958 0.017658167 0.010139145 -0.094260156 0.018687354 0.029776005 -0.093624972 0.01855455 0.0075723957 -0.08818908 0.018922716 0.028313318 -0.091299191 0.01855455 0.0075723957 -0.08818908 0.018687354 0.029776005 -0.093624972 -0.013892994 -0.025336901 -0.084084891 -0.015250297 -0.023820564 -0.08546938 -0.014101846 -0.02402347 -0.085914254 0.017707564 0.041199397 -0.091256276 0.017881602 0.042974737 -0.088650115 0.01867085 0.040271573 -0.087230958 0.018122775 0.0318726 -0.095882766 0.016836599 0.034929808 -0.097109184 0.017707564 0.041199397 -0.091256276 0.016836599 0.034929808 -0.097109184 0.015758356 0.044061538 -0.091427647 0.017707564 0.041199397 -0.091256276 -0.016580919 -0.023821544 -0.083438046 -0.016328335 -0.021153476 -0.086915523 -0.015250297 -0.023820564 -0.08546938 0.010736761 0.037953522 -0.098160774 0.0082958806 0.040123381 -0.096897535 0.012161127 0.040256679 -0.096120909 -0.016580919 -0.023821544 -0.083438046 -0.017137421 -0.021285845 -0.084776036 -0.016328335 -0.021153476 -0.086915523 0.0032541379 -0.0029426352 -0.095046297 0.01428662 0.0013379335 -0.095636211 0.014119886 -0.0059519424 -0.094298467 0.00074648572 0.032723125 -0.098846532 0.010051628 0.036749966 -0.098686025 0.014708686 0.029305888 -0.098509133 0.00042189306 0.014487838 -0.097664364 0.00057927758 0.023330322 -0.098435223 0.014541019 0.015327241 -0.097521335 -0.016313264 -0.026257511 -0.078417756 -0.016580919 -0.023821544 -0.083438046 -0.015170039 -0.025799969 -0.082341127 0.0040088906 -0.0087947845 -0.093862683 0.0040886076 -0.0038252303 -0.094864719 0.014119886 -0.0059519424 -0.094298467 -0.013953088 -0.02750935 -0.078101374 -0.015460208 -0.027055791 -0.077806868 -0.014226781 -0.026761588 -0.080808319 -0.017137421 -0.021285845 -0.084776036 -0.016580919 -0.023821544 -0.083438046 -0.016313264 -0.026257511 -0.078417756 0.00057927758 0.023330322 -0.098435223 0.015078673 0.021623941 -0.098011188 0.014541019 0.015327241 -0.097521335 0.00028961862 0.0070560165 -0.09674453 0.014165525 0.007617977 -0.096608721 0.01428662 0.0013379335 -0.095636211 -0.016313264 -0.026257511 -0.078417756 -0.015170039 -0.025799969 -0.082341127 -0.015460208 -0.027055791 -0.077806868 0.0040886076 -0.0038252303 -0.094864719 0.0032541379 -0.0029426352 -0.095046297 0.014119886 -0.0059519424 -0.094298467 0.00015590683 -0.00046745726 -0.095526665 0.00028961862 0.0070560165 -0.09674453 0.01428662 0.0013379335 -0.095636211 0.00057927758 0.023330322 -0.098435223 0.014708686 0.029305888 -0.098509133 0.015078673 0.021623941 -0.098011188 0.00057927758 0.023330322 -0.098435223 0.00074648572 0.032723125 -0.098846532 0.014708686 0.029305888 -0.098509133 0.00074648572 0.032723125 -0.098846532 0.00082713109 0.037255943 -0.098865494 0.010051628 0.036749966 -0.098686025 -0.015102963 0.0066297483 -0.095935129 -0.013901433 0.0018398173 -0.095631912 -0.015334696 -0.0062357602 -0.093628302 -0.015102963 0.0066297483 -0.095935129 -0.016375337 0.0016406119 -0.094127141 -0.015938606 0.016579809 -0.096465677 0.00028961862 0.0070560165 -0.09674453 0.00042189306 0.014487838 -0.097664364 0.014165525 0.007617977 -0.096608721 -0.015938606 0.016579809 -0.096465677 -0.016375337 0.0016406119 -0.094127141 -0.016957346 0.010755491 -0.094254874 0.00042189306 0.014487838 -0.097664364 0.014541019 0.015327241 -0.097521335 0.014165525 0.007617977 -0.096608721 -0.015102963 0.0066297483 -0.095935129 -0.014858366 0.015180754 -0.097088359 -0.013901433 0.0018398173 -0.095631912 0.016787123 -0.028661346 0.034218077 0.024461308 -0.028675111 0.038590174 0.004423622 -0.028674256 0.034848403 0.016787123 -0.028661346 0.034218077 0.004423622 -0.028674256 0.034848403 0.014989025 -0.028640103 0.031427536 0.024461308 -0.028675111 0.038590174 -0.0003203073 -0.028672725 0.074397378 0.004423622 -0.028674256 0.034848403 -0.015102963 0.0066297483 -0.095935129 -0.015938606 0.016579809 -0.096465677 -0.014858366 0.015180754 -0.097088359 0.024461308 -0.028675111 0.038590174 0.022336647 -0.028681122 0.073956296 -0.0003203073 -0.028672725 0.074397378 -0.015938606 0.016579809 -0.096465677 -0.016957346 0.010755491 -0.094254874 -0.016443754 0.02939227 -0.096619748 0.004423622 -0.028674256 0.034848403 -0.0003203073 -0.028672725 0.074397378 -0.00032632318 -0.028672859 0.03518169 0.013668828 -0.02856159 -0.071973734 0.013458507 -0.028631488 -0.028865032 0.0036634826 -0.028628092 -0.043405622 -0.014858366 0.015180754 -0.097088359 -0.015938606 0.016579809 -0.096465677 -0.015095476 0.028778143 -0.097920038 -0.016443754 0.02939227 -0.096619748 -0.015095476 0.028778143 -0.097920038 -0.015938606 0.016579809 -0.096465677 -0.016443754 0.02939227 -0.096619748 -0.016648252 0.032491717 -0.095877461 -0.015254431 0.035501182 -0.097104289 0.013668828 -0.02856159 -0.071973734 0.0036634826 -0.028628092 -0.043405622 0.0036596218 -0.028600562 -0.071334682 0.0036634826 -0.028628092 -0.043405622 0.0018479313 -0.028634271 -0.031771436 -0.0043358915 -0.028485658 -0.043404404 -0.014858366 0.015180754 -0.097088359 -0.015095476 0.028778143 -0.097920038 -0.013658297 0.01582934 -0.097517036 0.0036634826 -0.028628092 -0.043405622 0.013458507 -0.028631488 -0.028865032 0.0018479313 -0.028634271 -0.031771436 0.012433028 0.04546994 -0.064106502 0.012489528 0.045391474 0.067247145 0.014956677 0.045253675 0.092636749 0.015114356 0.045371313 -0.085580051 0.012433028 0.04546994 -0.064106502 0.014956677 0.045253675 0.092636749 0.011557982 0.045423757 0.068450361 0.014956677 0.045253675 0.092636749 0.012489528 0.045391474 0.067247145 -0.015095476 0.028778143 -0.097920038 -0.01332865 0.029805109 -0.098504856 -0.013658297 0.01582934 -0.097517036 -0.0084095644 0.037078664 -0.098683178 -0.011723474 0.036945678 -0.098347388 -0.0090511395 0.038305834 -0.098157756 0.013209062 0.045435105 -0.090078466 0.015114356 0.045371313 -0.085580051 0.015920581 0.045123976 -0.08697065 -0.0084095644 0.037078664 -0.098683178 -0.0090511395 0.038305834 -0.098157756 -0.0049365582 0.038159356 -0.098537065 -0.014533929 0.032713756 -0.098215356 -0.015095476 0.028778143 -0.097920038 -0.016443754 0.02939227 -0.096619748 -0.01332865 0.029805109 -0.098504856 -0.015095476 0.028778143 -0.097920038 -0.014533929 0.032713756 -0.098215356 0.0010047826 0.045795705 0.068708196 0.014956677 0.045253675 0.092636749 0.011557982 0.045423757 0.068450361 0.0010080163 0.045760993 0.093951166 0.012326437 0.0453468 0.093836129 0.014956677 0.045253675 0.092636749 0.0010047826 0.045795705 0.068708196 0.0010080163 0.045760993 0.093951166 0.014956677 0.045253675 0.092636749 0.00098160352 0.045865525 -0.090567499 0.015114356 0.045371313 -0.085580051 0.013209062 0.045435105 -0.090078466 -0.014143295 0.03643579 -0.097615935 -0.011723474 0.036945678 -0.098347388 -0.01332865 0.029805109 -0.098504856 -0.016375337 0.0016406119 -0.094127141 -0.017113568 -0.0058793286 -0.091577321 -0.016957346 0.010755491 -0.094254874 -0.013901433 0.0018398173 -0.095631912 -0.013993851 -0.005451363 -0.094294176 -0.015334696 -0.0062357602 -0.093628302 0.00098160352 0.045865525 -0.090567499 0.00098573556 0.045874294 -0.065291747 0.015114356 0.045371313 -0.085580051 0.011210877 0.045513507 -0.065107241 0.012433028 0.04546994 -0.064106502 0.015114356 0.045371313 -0.085580051 0.00098573556 0.045874294 -0.065291747 0.011210877 0.045513507 -0.065107241 0.015114356 0.045371313 -0.085580051 0.014521732 -0.025179654 -0.033299655 0.012460424 -0.026142064 -0.033335332 0.013523276 -0.026111333 -0.02720435 -0.014858366 0.015180754 -0.097088359 -0.013557238 0.0081115765 -0.096604496 -0.013901433 0.0018398173 -0.095631912 0.014508951 -0.025234062 -0.026717423 0.014521732 -0.025179654 -0.033299655 0.013523276 -0.026111333 -0.02720435 0.01557625 -0.019293606 -0.033279784 0.014508951 -0.025234062 -0.026717423 0.015577228 -0.019297764 -0.026191363 -0.016375337 0.0016406119 -0.094127141 -0.016276959 -0.006698492 -0.092786282 -0.017113568 -0.0058793286 -0.091577321 -0.013658297 0.01582934 -0.097517036 -0.013557238 0.0081115765 -0.096604496 -0.014858366 0.015180754 -0.097088359 0.01557625 -0.019293606 -0.033279784 0.014521732 -0.025179654 -0.033299655 0.014508951 -0.025234062 -0.026717423 0.015279166 -0.0094053559 0.067980371 0.01526011 -0.0093184356 -0.064711712 0.015303794 -0.010767289 0.023208767 0.015690625 -0.011548515 0.029550726 0.015279166 -0.0094053559 0.067980371 0.015303794 -0.010767289 0.023208767 -0.016957346 0.010755491 -0.094254874 -0.016648252 0.032491717 -0.095877461 -0.016443754 0.02939227 -0.096619748 0.015577228 -0.019297764 -0.026191363 0.015263484 -0.010323979 -0.02644838 0.01534707 -0.013613129 -0.033282146 0.015577228 -0.019297764 -0.026191363 0.01534707 -0.013613129 -0.033282146 0.01557625 -0.019293606 -0.033279784 0.015303794 -0.010767289 0.023208767 0.01526011 -0.0093184356 -0.064711712 0.015263484 -0.010323979 -0.02644838 0.00015529781 -0.00050782709 -0.095393293 0.00015590683 -0.00046745726 -0.095526665 0.00015251608 -0.00066100992 -0.095358275 0.0032541379 -0.0029426352 -0.095046297 0.00015234853 -0.00066869357 -0.095364422 0.00015590683 -0.00046745726 -0.095526665 -0.014533929 0.032713756 -0.098215356 -0.016443754 0.02939227 -0.096619748 -0.015254431 0.035501182 -0.097104289 0.0019144615 -0.01282919 -0.099779323 0.0020841556 -0.0043086093 -0.09463834 0.0020881868 -0.0053052092 -0.097263314 -0.014143295 0.03643579 -0.097615935 -0.014533929 0.032713756 -0.098215356 -0.015254431 0.035501182 -0.097104289 0.001424922 -0.034443188 -0.096554667 0.0016541607 -0.027460879 -0.099900357 0.0018110274 -0.032829542 -0.099566557 0.0019144615 -0.01282919 -0.099779323 0.0020881868 -0.0053052092 -0.097263314 0.002252769 -0.0076732202 -0.099193446 0.0018110274 -0.032829542 -0.099566557 0.0016541607 -0.027460879 -0.099900357 0.001724679 -0.027106203 -0.10107977 0.0016541607 -0.027460879 -0.099900357 0.0019144615 -0.01282919 -0.099779323 0.0020956721 -0.015187714 -0.10128006 0.0016541607 -0.027460879 -0.099900357 0.0020956721 -0.015187714 -0.10128006 0.001724679 -0.027106203 -0.10107977 -0.011723474 0.036945678 -0.098347388 -0.014143295 0.03643579 -0.097615935 -0.012149625 0.03783283 -0.09775243 0.0019144615 -0.01282919 -0.099779323 0.002252769 -0.0076732202 -0.099193446 0.0020956721 -0.015187714 -0.10128006 -0.014143295 0.03643579 -0.097615935 -0.01332865 0.029805109 -0.098504856 -0.014533929 0.032713756 -0.098215356 0.00084103661 -0.026474824 -0.098652855 0.0016541607 -0.027460879 -0.099900357 0.0006743414 -0.03155328 -0.097258143 -0.0090511395 0.038305834 -0.098157756 -0.011723474 0.036945678 -0.098347388 -0.012149625 0.03783283 -0.09775243 -0.0084095644 0.037078664 -0.098683178 -0.01332865 0.029805109 -0.098504856 -0.011723474 0.036945678 -0.098347388 0.00084103661 -0.026474824 -0.098652855 0.0006743414 -0.03155328 -0.097258143 -0.00030031882 -0.026071236 -0.098368891 0.0016541607 -0.027460879 -0.099900357 0.001424922 -0.034443188 -0.096554667 0.0006743414 -0.03155328 -0.097258143 -0.0084095644 0.037078664 -0.098683178 -0.0049365582 0.038159356 -0.098537065 0.00082713109 0.037255943 -0.098865494 0.00082713109 0.037255943 -0.098865494 -0.0049365582 0.038159356 -0.098537065 0.00084843446 0.038449511 -0.098527588 -0.00039353472 -0.031315885 -0.097083233 -0.00030031882 -0.026071236 -0.098368891 0.0006743414 -0.03155328 -0.097258143 -0.016276959 -0.006698492 -0.092786282 -0.015102963 0.0066297483 -0.095935129 -0.015334696 -0.0062357602 -0.093628302 -0.015102963 0.0066297483 -0.095935129 -0.016276959 -0.006698492 -0.092786282 -0.016375337 0.0016406119 -0.094127141 0.0006743414 -0.03155328 -0.097258143 0.001424922 -0.034443188 -0.096554667 0.00021250082 -0.034533881 -0.094890684 0.0006743414 -0.03155328 -0.097258143 0.00021250082 -0.034533881 -0.094890684 -0.00039353472 -0.031315885 -0.097083233 -0.017492404 0.0046139685 -0.070245527 -0.017166672 0.0019239925 -0.070265867 -0.015038953 0.0028450096 -0.070287623 0.0035188356 -0.034093503 -0.043407854 0.0036634826 -0.028628092 -0.043405622 -0.0043358915 -0.028485658 -0.043404404 0.0035188356 -0.034093503 -0.043407854 -0.0043358915 -0.028485658 -0.043404404 -0.003734376 -0.034557033 -0.043395471 0.0035188356 -0.034093503 -0.043407854 -0.003734376 -0.034557033 -0.043395471 0.0028461854 -0.034674194 -0.043396473 0.0077816737 -0.026142837 -0.029321365 0.012460424 -0.026142064 -0.033335332 0.012460281 -0.026141481 -0.034335557 0.0077816737 -0.026142837 -0.029321365 0.013523276 -0.026111333 -0.02720435 0.012460424 -0.026142064 -0.033335332 0.012460424 -0.026142064 -0.033335332 0.012512111 -0.014973802 -0.034171425 0.012460281 -0.026141481 -0.034335557 0.012460424 -0.026142064 -0.033335332 0.012683555 -0.013612057 -0.033328019 0.012512111 -0.014973802 -0.034171425 -0.0019479279 -0.0052333451 -0.097262703 -0.0030282389 -0.0028307796 -0.095045336 -0.0019075309 -0.0042375438 -0.094637729 -0.0022821976 -0.026069192 -0.030289182 -0.00030898367 -0.027142595 -0.030333543 0.0010077362 -0.02618519 -0.030356653 -0.0036658875 -0.034520939 -0.096497305 -0.0040639392 -0.034266494 -0.097137317 -0.0023220368 -0.03437648 -0.096554093 -0.0040639392 -0.034266494 -0.097137317 -0.002651342 -0.032750092 -0.099565841 -0.0023220368 -0.03437648 -0.096554093 -0.0036634007 -0.029172398 -0.10089571 -0.0023617637 -0.02703345 -0.10107914 -0.002651342 -0.032750092 -0.099565841 -0.0036634007 -0.029172398 -0.10089571 -0.0035144109 -0.026767615 -0.10129081 -0.0023617637 -0.02703345 -0.10107914 -9.8299497e-05 -0.014721926 -0.09835723 -0.001133511 -0.014677125 -0.098589666 -5.5719996e-05 -0.012334186 -0.097929873 -0.0011625162 -0.0078287311 -0.096243009 -0.0013715539 -0.0054109786 -0.094343267 -6.7641076e-06 -0.009593728 -0.096872263 -6.7641076e-06 -0.009593728 -0.096872263 -0.0013715539 -0.0054109786 -0.094343267 0.00068490487 -0.0059826188 -0.094179153 -0.0023617637 -0.02703345 -0.10107914 -0.0035144109 -0.026767615 -0.10129081 -0.0023082048 -0.015109309 -0.10127935 -0.0023082048 -0.015109309 -0.10127935 -0.0035144109 -0.026767615 -0.10129081 -0.0036091632 -0.014629688 -0.1011831 -0.0036091632 -0.014629688 -0.1011831 -0.0035684681 -0.010749947 -0.10045652 -0.0023082048 -0.015109309 -0.10127935 -0.0023082048 -0.015109309 -0.10127935 -0.0035684681 -0.010749947 -0.10045652 -0.0021972342 -0.0075939866 -0.099192768 -0.0011625162 -0.0078287311 -0.096243009 -0.0019075309 -0.0042375438 -0.094637729 -0.0013715539 -0.0054109786 -0.094343267 -0.0021972342 -0.0075939866 -0.099192768 -0.0031835781 -0.0053105066 -0.097629555 -0.0019479279 -0.0052333451 -0.097262703 -0.0031835781 -0.0053105066 -0.097629555 -0.0030282389 -0.0028307796 -0.095045336 -0.0019479279 -0.0052333451 -0.097262703 -0.0018599371 -0.034532662 -0.095316797 0.00021250082 -0.034533881 -0.094890684 -0.003734376 -0.034557033 -0.043395471 -0.002042928 -0.012758736 -0.099778719 -0.0019075309 -0.0042375438 -0.094637729 -0.0011625162 -0.0078287311 -0.096243009 -0.0036658875 -0.034520939 -0.096497305 -0.0023220368 -0.03437648 -0.096554093 -0.0018599371 -0.034532662 -0.095316797 -0.0036658875 -0.034520939 -0.096497305 -0.0018599371 -0.034532662 -0.095316797 -0.003734376 -0.034557033 -0.043395471 -0.0039528687 -0.0084280521 -0.098949701 -0.0031835781 -0.0053105066 -0.097629555 -0.0021972342 -0.0075939866 -0.099192768 -0.0036091632 -0.014629688 -0.1011831 -0.0039528687 -0.0084280521 -0.098949701 -0.0035684681 -0.010749947 -0.10045652 -0.0039528687 -0.0084280521 -0.098949701 -0.0038936033 -0.0036831126 -0.094863497 -0.0031835781 -0.0053105066 -0.097629555 -0.0031835781 -0.0053105066 -0.097629555 -0.0038936033 -0.0036831126 -0.094863497 -0.0030282389 -0.0028307796 -0.095045336 -0.0035684681 -0.010749947 -0.10045652 -0.0039528687 -0.0084280521 -0.098949701 -0.0021972342 -0.0075939866 -0.099192768 -0.001133511 -0.014677125 -0.098589666 -0.0011625162 -0.0078287311 -0.096243009 -5.5719996e-05 -0.012334186 -0.097929873 -0.001133511 -0.014677125 -0.098589666 -0.002042928 -0.012758736 -0.099778719 -0.0011625162 -0.0078287311 -0.096243009 -5.5719996e-05 -0.012334186 -0.097929873 -0.0011625162 -0.0078287311 -0.096243009 -6.7641076e-06 -0.009593728 -0.096872263 -0.0039528687 -0.0084280521 -0.098949701 -0.0036091632 -0.014629688 -0.1011831 -0.0042414567 -0.026422286 -0.10071129 -0.0036091632 -0.014629688 -0.1011831 -0.0035144109 -0.026767615 -0.10129081 -0.0042414567 -0.026422286 -0.10071129 -0.0023036159 -0.027390411 -0.099899754 -0.002042928 -0.012758736 -0.099778719 -0.0014553451 -0.026433932 -0.098652534 -0.0036634007 -0.029172398 -0.10089571 -0.002651342 -0.032750092 -0.099565841 -0.004378092 -0.032618526 -0.098888025 -0.002042928 -0.012758736 -0.099778719 -0.001133511 -0.014677125 -0.098589666 -0.0014553451 -0.026433932 -0.098652534 -0.0036634007 -0.029172398 -0.10089571 -0.0042414567 -0.026422286 -0.10071129 -0.0035144109 -0.026767615 -0.10129081 -0.004378092 -0.032618526 -0.098888025 -0.0042414567 -0.026422286 -0.10071129 -0.0036634007 -0.029172398 -0.10089571 -0.001133511 -0.014677125 -0.098589666 -9.8299497e-05 -0.014721926 -0.09835723 -0.0014553451 -0.026433932 -0.098652534 -0.0014553451 -0.026433932 -0.098652534 -9.8299497e-05 -0.014721926 -0.09835723 -0.00030031882 -0.026071236 -0.098368891 -0.004378092 -0.032618526 -0.098888025 -0.0040639392 -0.034266494 -0.097137317 -0.0044310861 -0.033580706 -0.096961744 -0.016237728 -0.01153513 -0.025917171 -0.015725134 -0.01098915 0.02955552 -0.017338915 -0.012028797 0.02859552 -0.0040639392 -0.034266494 -0.097137317 -0.004378092 -0.032618526 -0.098888025 -0.002651342 -0.032750092 -0.099565841 -0.0044310861 -0.033580706 -0.096961744 -0.0040639392 -0.034266494 -0.097137317 -0.00438608 -0.033952754 -0.043406647 -0.0040639392 -0.034266494 -0.097137317 -0.003734376 -0.034557033 -0.043395471 -0.00438608 -0.033952754 -0.043406647 -0.0040639392 -0.034266494 -0.097137317 -0.0036658875 -0.034520939 -0.096497305 -0.003734376 -0.034557033 -0.043395471 -0.015061473 -0.024652919 -0.03329514 -0.013035714 -0.025688106 -0.033331439 -0.015905866 -0.01873306 -0.033274982 -0.015312762 -0.010222154 0.023213439 -0.015725134 -0.01098915 0.02955552 -0.015526743 -0.01068476 -0.026312191 -0.015526743 -0.01068476 -0.026312191 -0.015725134 -0.01098915 0.02955552 -0.016237728 -0.01153513 -0.025917171 -0.017056242 -0.011944518 -0.020421924 -0.017338915 -0.012028797 0.02859552 -0.017897574 -0.01202506 -0.024878344 -0.017056242 -0.011944518 -0.020421924 -0.016237728 -0.01153513 -0.025917171 -0.017338915 -0.012028797 0.02859552 -0.013035714 -0.025688106 -0.033331439 -0.012812613 -0.013158091 -0.03332413 -0.015905866 -0.01873306 -0.033274982 -0.015905866 -0.01873306 -0.033274982 -0.012812613 -0.013158091 -0.03332413 -0.015474434 -0.013064344 -0.033277445 -0.017701341 -0.0090685375 0.030866217 -0.017435418 -0.0088300714 -0.064266182 -0.017710786 -0.0090724919 -0.064177476 -0.017701341 -0.0090685375 0.030866217 -0.017520251 -0.0089211399 0.067665048 -0.017435418 -0.0088300714 -0.064266182 -0.017675163 -0.0068363165 0.071270466 -0.017425399 -0.0067765913 0.071011715 -0.017488251 -0.0085181119 0.069192171 -0.017520251 -0.0089211399 0.067665048 -0.017675163 -0.0068363165 0.071270466 -0.017488251 -0.0085181119 0.069192171 -0.017376686 -0.0064692572 -0.067736723 -0.017166672 0.0019239925 -0.070265867 -0.017536247 0.0022056939 -0.070697062 -0.017376686 -0.0064692572 -0.067736723 -0.017536247 0.0022056939 -0.070697062 -0.017695075 -0.0079632541 -0.067010969 -0.017257048 0.0018072332 0.073644571 -0.017425399 -0.0067765913 0.071011715 -0.017675163 -0.0068363165 0.071270466 -0.017166672 0.0019239925 -0.070265867 -0.017492404 0.0046139685 -0.070245527 -0.017536247 0.0022056939 -0.070697062 -0.015526743 -0.01068476 -0.026312191 -0.015271815 -0.0097802905 -0.026443722 -0.015312762 -0.010222154 0.023213439 -0.015011161 0.0043892497 -0.069903314 -0.017439334 0.0070054946 -0.066746771 -0.017492404 0.0046139685 -0.070245527 -0.017405938 0.0068933093 0.070266038 -0.017439334 0.0070054946 -0.066746771 -0.017209033 0.0066665527 0.069767125 -0.017439334 0.0070054946 -0.066746771 -0.017124785 0.0067001912 -0.066714033 -0.017209033 0.0066665527 0.069767125 -0.015226007 -0.0088622002 0.067985021 -0.015244288 -0.0087752901 -0.064707063 -0.017520251 -0.0089211399 0.067665048 -0.015244288 -0.0087752901 -0.064707063 -0.017435418 -0.0088300714 -0.064266182 -0.017520251 -0.0089211399 0.067665048 -0.017488251 -0.0085181119 0.069192171 -0.017425399 -0.0067765913 0.071011715 -0.015183346 -0.0065361885 0.071064845 -0.015226007 -0.0088622002 0.067985021 -0.017488251 -0.0085181119 0.069192171 -0.015183346 -0.0065361885 0.071064845 -0.017520251 -0.0089211399 0.067665048 -0.017488251 -0.0085181119 0.069192171 -0.015226007 -0.0088622002 0.067985021 -0.017425399 -0.0067765913 0.071011715 -0.017257048 0.0018072332 0.073644571 -0.01502828 0.0022076305 0.073646531 -0.016237728 -0.01153513 -0.025917171 -0.017056242 -0.011944518 -0.020421924 -0.017897574 -0.01202506 -0.024878344 -0.015183346 -0.0065361885 0.071064845 -0.017425399 -0.0067765913 0.071011715 -0.01502828 0.0022076305 0.073646531 -0.01744277 0.004476788 0.073555417 -0.017405938 0.0068933093 0.070266038 -0.014962948 0.0058990461 0.071846716 -0.014990068 0.0043622907 0.073237963 -0.01744277 0.004476788 0.073555417 -0.014962948 0.0058990461 0.071846716 -0.017257048 0.0018072332 0.073644571 -0.01744277 0.004476788 0.073555417 -0.014990068 0.0043622907 0.073237963 -0.01502828 0.0022076305 0.073646531 -0.017257048 0.0018072332 0.073644571 -0.014990068 0.0043622907 0.073237963 -0.00032632318 -0.028672859 0.03518169 -0.0054569626 -0.026994709 0.033258647 -0.00029992295 -0.027180485 0.033664845 -0.014962948 0.0058990461 0.071846716 -0.017209033 0.0066665527 0.069767125 -0.014952407 0.0065140114 0.070143394 -0.015631882 -0.028094897 0.031432208 -0.0054569626 -0.026994709 0.033258647 -0.0050734091 -0.028505158 0.034849867 -0.015631882 -0.028094897 0.031432208 -0.011271058 -0.026782107 0.031744093 -0.0054569626 -0.026994709 0.033258647 -0.017224334 -0.026561622 0.028845835 -0.014356739 -0.02667339 0.030416736 -0.015631882 -0.028094897 0.031432208 -0.0050734091 -0.028505158 0.034849867 -0.0054569626 -0.026994709 0.033258647 -0.00032632318 -0.028672859 0.03518169 -0.017405938 0.0068933093 0.070266038 -0.017209033 0.0066665527 0.069767125 -0.014962948 0.0058990461 0.071846716 -0.017124785 0.0067001912 -0.066714033 -0.014971577 0.0065906569 -0.066775255 -0.014952407 0.0065140114 0.070143394 -0.015631882 -0.028094897 0.031432208 -0.014356739 -0.02667339 0.030416736 -0.011271058 -0.026782107 0.031744093 -0.017209033 0.0066665527 0.069767125 -0.017124785 0.0067001912 -0.066714033 -0.014952407 0.0065140114 0.070143394 -0.017439334 0.0070054946 -0.066746771 -0.015011161 0.0043892497 -0.069903314 -0.014977088 0.0062893736 -0.06793993 -0.015223775 -0.027851861 -0.0280581 -0.016837066 -0.026551854 -0.025727758 -0.016311334 -0.027152965 -0.026720544 -0.015223775 -0.027851861 -0.0280581 -0.013150806 -0.026686354 -0.027652102 -0.016837066 -0.026551854 -0.025727758 -0.014120482 -0.028140433 -0.028860824 -0.013150806 -0.026686354 -0.027652102 -0.015223775 -0.027851861 -0.0280581 -0.017124785 0.0067001912 -0.066714033 -0.017439334 0.0070054946 -0.066746771 -0.014977088 0.0062893736 -0.06793993 -0.014120482 -0.028140433 -0.028860824 -0.0084154513 -0.026853109 -0.029303266 -0.013150806 -0.026686354 -0.027652102 -0.014971577 0.0065906569 -0.066775255 -0.017124785 0.0067001912 -0.066714033 -0.014977088 0.0062893736 -0.06793993 -0.0061418847 -0.028429063 -0.031347163 -0.0084154513 -0.026853109 -0.029303266 -0.014120482 -0.028140433 -0.028860824 -0.015011161 0.0043892497 -0.069903314 -0.017492404 0.0046139685 -0.070245527 -0.015038953 0.0028450096 -0.070287623 -0.0061418847 -0.028429063 -0.031347163 -0.00030898367 -0.027142595 -0.030333543 -0.0084154513 -0.026853109 -0.029303266 -0.017166672 0.0019239925 -0.070265867 -0.017376686 -0.0064692572 -0.067736723 -0.01520764 -0.0066383849 -0.067626797 -0.015038953 0.0028450096 -0.070287623 -0.017166672 0.0019239925 -0.070265867 -0.01520764 -0.0066383849 -0.067626797 -0.0061418847 -0.028429063 -0.031347163 0.0018479313 -0.028634271 -0.031771436 -0.00030898367 -0.027142595 -0.030333543 -0.017376686 -0.0064692572 -0.067736723 -0.017695075 -0.0079632541 -0.067010969 -0.01520764 -0.0066383849 -0.067626797 -0.017695075 -0.0079632541 -0.067010969 -0.015226627 -0.0077353213 -0.066792734 -0.01520764 -0.0066383849 -0.067626797 -0.017435418 -0.0088300714 -0.064266182 -0.015244288 -0.0087752901 -0.064707063 -0.017710786 -0.0090724919 -0.064177476 -0.017710786 -0.0090724919 -0.064177476 -0.015244288 -0.0087752901 -0.064707063 -0.015226627 -0.0077353213 -0.066792734 -0.017695075 -0.0079632541 -0.067010969 -0.017710786 -0.0090724919 -0.064177476 -0.015226627 -0.0077353213 -0.066792734 + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316

+
+
+
+
+ + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + + + + + + + + + + + + + +
diff --git a/external/rlbench/urdfs/panda/meshes/Pandaleftfingervisible_vis_1.dae b/external/rlbench/urdfs/panda/meshes/Pandaleftfingervisible_vis_1.dae new file mode 100644 index 0000000000000000000000000000000000000000..2a8496e6f255d81e38e08af863daf910817cd53f --- /dev/null +++ b/external/rlbench/urdfs/panda/meshes/Pandaleftfingervisible_vis_1.dae @@ -0,0 +1,84 @@ + + + + + Assimp + Assimp Exporter + + 2023-09-26T11:24:21 + 2023-09-26T11:24:21 + + Y_UP + + + + + + + + 0 0 0 4.5895327e-41 + + + 0.69999999 0.69999999 0.69999999 4.5893926e-41 + + + 0.69999999 0.69999999 0.69999999 4.5893926e-41 + + + 0.30000001 0.30000001 0.30000001 -3.0261091e+37 + + + + + + + + + + + + + + + + -0.0011512688 -0.0023366951 0.020838428 0.0020024739 1.5190752e-05 0.018010855 -0.001303485 -0.0033504139 0.019105835 -0.0010902145 -0.0011919178 0.021504203 0.0020024739 1.5190752e-05 0.018010855 -0.0011512688 -0.0023366951 0.020838428 -0.0010902145 -0.0011919178 0.021504203 -0.0010723002 0.00091781589 0.021665249 0.0020024739 1.5190752e-05 0.018010855 -0.0010723002 0.00091781589 0.021665249 -0.0011729501 0.0025862241 0.020597789 0.0020024739 1.5190752e-05 0.018010855 -0.0013202778 0.0034779641 0.018762916 0.0020024739 1.5190752e-05 0.018010855 -0.0011729501 0.0025862241 0.020597789 0.004007142 0.010400849 -0.023352636 0.0052720164 -0.010308634 -0.023421096 0.0053220172 0.010300874 -0.023431394 0.004007142 0.010400849 -0.023352636 0.0038141878 -0.010405903 -0.023296241 0.0052720164 -0.010308634 -0.023421096 0.0032384545 0.010325548 -0.020929204 0.0031436631 -0.010209447 -0.022121392 0.0031076195 0.010399072 -0.022465698 0.0032384545 0.010325548 -0.020929204 0.0032199789 -0.010340489 -0.020884663 0.0031436631 -0.010209447 -0.022121392 -0.011945214 0.01036128 -0.024132928 -0.0064622252 0.010470101 -0.024670435 -0.0121288 0.010377473 -0.025789855 -0.0063233161 0.010344499 -0.022577303 -0.0036962291 0.010501311 -0.022836698 -0.0064622252 0.010470101 -0.024670435 -0.00027243051 0.010384765 -0.0080346623 0.0038561611 0.010501768 -0.0095369779 -0.0015769949 0.010381633 -0.0090042381 -0.0015769949 0.010381633 -0.0090042381 0.0038561611 0.010501768 -0.0095369779 -0.0028362665 0.010406241 -0.021917444 -0.0028362665 0.010406241 -0.021917444 0.0038561611 0.010501768 -0.0095369779 0.0031076195 0.010399072 -0.022465698 -0.00027243051 0.010384765 -0.0080346623 0.0031349873 0.010335239 -0.0083566541 0.0038561611 0.010501768 -0.0095369779 0.0031076195 0.010399072 -0.022465698 0.004007142 0.010400849 -0.023352636 -0.0036962291 0.010501311 -0.022836698 -0.0028362665 0.010406241 -0.021917444 0.0031076195 0.010399072 -0.022465698 -0.0036962291 0.010501311 -0.022836698 -0.0036962291 0.010501311 -0.022836698 0.0061720633 0.010456651 -0.025772983 -0.0064622252 0.010470101 -0.024670435 0.004007142 0.010400849 -0.023352636 0.0061720633 0.010456651 -0.025772983 -0.0036962291 0.010501311 -0.022836698 0.004007142 0.010400849 -0.023352636 0.0064045754 0.010249151 -0.023605844 0.0061720633 0.010456651 -0.025772983 0.0061720633 0.010456651 -0.025772983 0.011563618 0.010376523 -0.027826995 -0.0064622252 0.010470101 -0.024670435 -0.0064622252 0.010470101 -0.024670435 0.011563618 0.010376523 -0.027826995 -0.0121288 0.010377473 -0.025789855 0.0061720633 0.010456651 -0.025772983 0.011665034 0.010336147 -0.026193306 0.011563618 0.010376523 -0.027826995 -0.0040846006 -0.010208487 -0.022586955 -0.0064914133 -0.0067773205 -0.022473698 -0.0063446448 -0.010332328 -0.022569485 -0.0040846006 -0.010208487 -0.022586955 -0.0040872064 0.010214096 -0.022595061 -0.0064914133 -0.0067773205 -0.022473698 -0.0064914133 -0.0067773205 -0.022473698 -0.0040872064 0.010214096 -0.022595061 -0.0065226108 0.0066949148 -0.02248407 -0.0040872064 0.010214096 -0.022595061 -0.0063233161 0.010344499 -0.022577303 -0.0065226108 0.0066949148 -0.02248407 -0.0083813099 0.0050418358 -0.022359503 -0.011745528 0.0048868093 -0.022065876 -0.0080328081 -0.0048740832 -0.022263389 -0.0080328081 -0.0048740832 -0.022263389 -0.011745528 0.0048868093 -0.022065876 -0.011809752 -0.0048630941 -0.022107661 -0.0064914133 -0.0067773205 -0.022473698 -0.0065226108 0.0066949148 -0.02248407 -0.0080328081 -0.0048740832 -0.022263389 -0.0065226108 0.0066949148 -0.02248407 -0.0083813099 0.0050418358 -0.022359503 -0.0080328081 -0.0048740832 -0.022263389 -0.011966567 -0.010338677 -0.024125103 -0.012044705 -0.0048501571 -0.024158455 -0.012137664 -0.010367081 -0.025763825 -0.011809752 -0.0048630941 -0.022107661 -0.012034676 0.0048728441 -0.024162132 -0.012044705 -0.0048501571 -0.024158455 -0.011745528 0.0048868093 -0.022065876 -0.012034676 0.0048728441 -0.024162132 -0.011809752 -0.0048630941 -0.022107661 -0.011945214 0.01036128 -0.024132928 -0.0121288 0.010377473 -0.025789855 -0.012034676 0.0048728441 -0.024162132 -0.0121288 0.010377473 -0.025789855 -0.012137664 -0.010367081 -0.025763825 -0.012044705 -0.0048501571 -0.024158455 -0.0121288 0.010377473 -0.025789855 -0.012044705 -0.0048501571 -0.024158455 -0.012034676 0.0048728441 -0.024162132 0.011515379 -0.010403167 -0.027847216 0.011727891 -0.0049143261 -0.026233889 0.011643686 -0.010363812 -0.026185421 0.011727891 -0.0049143261 -0.026233889 0.011871066 0.0048251166 -0.024163473 0.011819144 -0.0048516882 -0.024109785 0.011709315 0.0048995498 -0.026216784 0.011871066 0.0048251166 -0.024163473 0.011727891 -0.0049143261 -0.026233889 0.011563618 0.010376523 -0.027826995 0.011665034 0.010336147 -0.026193306 0.011709315 0.0048995498 -0.026216784 0.011515379 -0.010403167 -0.027847216 0.011563618 0.010376523 -0.027826995 0.011727891 -0.0049143261 -0.026233889 0.011727891 -0.0049143261 -0.026233889 0.011563618 0.010376523 -0.027826995 0.011709315 0.0048995498 -0.026216784 0.0086853551 0.0047308737 -0.023731733 0.011819144 -0.0048516882 -0.024109785 0.011871066 0.0048251166 -0.024163473 0.0086853551 0.0047308737 -0.023731733 0.0087013319 -0.0047462261 -0.023732014 0.011819144 -0.0048516882 -0.024109785 -0.0121288 0.010377473 -0.025789855 0.011515379 -0.010403167 -0.027847216 -0.012137664 -0.010367081 -0.025763825 -0.0121288 0.010377473 -0.025789855 0.011563618 0.010376523 -0.027826995 0.011515379 -0.010403167 -0.027847216 -0.0015632467 -0.010402421 -0.0090538384 -0.0015769949 0.010381633 -0.0090042381 -0.0029000577 -0.010394659 -0.02195321 -0.0015769949 0.010381633 -0.0090042381 -0.0028362665 0.010406241 -0.021917444 -0.0029000577 -0.010394659 -0.02195321 0.0031349873 0.010335239 -0.0083566541 -0.00027243051 0.010384765 -0.0080346623 0.00295967 -0.010325618 -0.008289271 0.00295967 -0.010325618 -0.008289271 -0.00027243051 0.010384765 -0.0080346623 -0.00047799846 -0.010376827 -0.0080630928 0.0063499045 -0.010275527 -0.023583615 0.0038141878 -0.010405903 -0.023296241 0.0061988551 -0.010466216 -0.025765404 0.011515379 -0.010403167 -0.027847216 0.0061988551 -0.010466216 -0.025765404 -0.0064838147 -0.010459216 -0.024662523 0.011515379 -0.010403167 -0.027847216 -0.0064838147 -0.010459216 -0.024662523 -0.012137664 -0.010367081 -0.025763825 -0.0064838147 -0.010459216 -0.024662523 -0.011966567 -0.010338677 -0.024125103 -0.012137664 -0.010367081 -0.025763825 0.011643686 -0.010363812 -0.026185421 0.0061988551 -0.010466216 -0.025765404 0.011515379 -0.010403167 -0.027847216 -0.0037330657 -0.010494444 -0.02283683 -0.0063446448 -0.010332328 -0.022569485 -0.0064838147 -0.010459216 -0.024662523 0.0038345628 -0.010500679 -0.0095289825 -0.0029000577 -0.010394659 -0.02195321 0.0029015976 -0.010501693 -0.022481069 0.0038345628 -0.010500679 -0.0095289825 -0.0015632467 -0.010402421 -0.0090538384 -0.0029000577 -0.010394659 -0.02195321 0.0038345628 -0.010500679 -0.0095289825 -0.00047799846 -0.010376827 -0.0080630928 -0.0015632467 -0.010402421 -0.0090538384 0.00295967 -0.010325618 -0.008289271 -0.00047799846 -0.010376827 -0.0080630928 0.0038345628 -0.010500679 -0.0095289825 0.0029015976 -0.010501693 -0.022481069 -0.0029000577 -0.010394659 -0.02195321 -0.0037330657 -0.010494444 -0.02283683 0.0038141878 -0.010405903 -0.023296241 0.0029015976 -0.010501693 -0.022481069 -0.0037330657 -0.010494444 -0.02283683 0.0061988551 -0.010466216 -0.025765404 -0.0037330657 -0.010494444 -0.02283683 -0.0064838147 -0.010459216 -0.024662523 0.0061988551 -0.010466216 -0.025765404 0.0038141878 -0.010405903 -0.023296241 -0.0037330657 -0.010494444 -0.02283683 0.011643686 -0.010363812 -0.026185421 0.0064184139 -0.0070807342 -0.025630038 0.0061988551 -0.010466216 -0.025765404 0.0079500061 -0.0052160234 -0.025764233 0.0064184139 -0.0070807342 -0.025630038 0.011643686 -0.010363812 -0.026185421 0.011727891 -0.0049143261 -0.026233889 0.0079500061 -0.0052160234 -0.025764233 0.011643686 -0.010363812 -0.026185421 0.0089108925 -0.0050405296 -0.024040638 0.0077003529 -0.0055650142 -0.023935266 0.0079500061 -0.0052160234 -0.025764233 0.0079500061 -0.0052160234 -0.025764233 0.0065894681 -0.0069815288 -0.02383917 0.0064184139 -0.0070807342 -0.025630038 0.0077003529 -0.0055650142 -0.023935266 0.0065894681 -0.0069815288 -0.02383917 0.0079500061 -0.0052160234 -0.025764233 0.011819144 -0.0048516882 -0.024109785 0.0089108925 -0.0050405296 -0.024040638 0.011727891 -0.0049143261 -0.026233889 0.011727891 -0.0049143261 -0.026233889 0.0089108925 -0.0050405296 -0.024040638 0.0079500061 -0.0052160234 -0.025764233 0.0065894681 -0.0069815288 -0.02383917 0.0061988551 -0.010466216 -0.025765404 0.0064184139 -0.0070807342 -0.025630038 0.0065894681 -0.0069815288 -0.02383917 0.0063499045 -0.010275527 -0.023583615 0.0061988551 -0.010466216 -0.025765404 -0.0083904257 -0.0051435539 -0.024338281 -0.012044705 -0.0048501571 -0.024158455 -0.011966567 -0.010338677 -0.024125103 -0.0067245481 -0.0069866939 -0.024483126 -0.011966567 -0.010338677 -0.024125103 -0.0064838147 -0.010459216 -0.024662523 -0.0067245481 -0.0069866939 -0.024483126 -0.0083904257 -0.0051435539 -0.024338281 -0.011966567 -0.010338677 -0.024125103 -0.0067245481 -0.0069866939 -0.024483126 -0.0064914133 -0.0067773205 -0.022473698 -0.0083904257 -0.0051435539 -0.024338281 -0.0064914133 -0.0067773205 -0.022473698 -0.008410492 -0.0051126918 -0.022535739 -0.0083904257 -0.0051435539 -0.024338281 -0.0063446448 -0.010332328 -0.022569485 -0.0067245481 -0.0069866939 -0.024483126 -0.0064838147 -0.010459216 -0.024662523 -0.0063446448 -0.010332328 -0.022569485 -0.0064914133 -0.0067773205 -0.022473698 -0.0067245481 -0.0069866939 -0.024483126 -0.008410492 -0.0051126918 -0.022535739 -0.011809752 -0.0048630941 -0.022107661 -0.0083904257 -0.0051435539 -0.024338281 -0.0083904257 -0.0051435539 -0.024338281 -0.011809752 -0.0048630941 -0.022107661 -0.012044705 -0.0048501571 -0.024158455 0.011665034 0.010336147 -0.026193306 0.0061720633 0.010456651 -0.025772983 0.0064185541 0.0070966538 -0.025634134 0.011665034 0.010336147 -0.026193306 0.007960747 0.005196305 -0.025768168 0.011709315 0.0048995498 -0.026216784 0.011665034 0.010336147 -0.026193306 0.0064185541 0.0070966538 -0.025634134 0.007960747 0.005196305 -0.025768168 0.0064185541 0.0070966538 -0.025634134 0.00661217 0.0069559226 -0.023855336 0.007960747 0.005196305 -0.025768168 0.00661217 0.0069559226 -0.023855336 0.0077118156 0.0055471323 -0.023939466 0.007960747 0.005196305 -0.025768168 0.0077118156 0.0055471323 -0.023939466 0.0089131109 0.0050216313 -0.024041334 0.007960747 0.005196305 -0.025768168 0.0064045754 0.010249151 -0.023605844 0.00661217 0.0069559226 -0.023855336 0.0064185541 0.0070966538 -0.025634134 0.0064045754 0.010249151 -0.023605844 0.0064185541 0.0070966538 -0.025634134 0.0061720633 0.010456651 -0.025772983 0.0089131109 0.0050216313 -0.024041334 0.011871066 0.0048251166 -0.024163473 0.011709315 0.0048995498 -0.026216784 0.0089131109 0.0050216313 -0.024041334 0.011709315 0.0048995498 -0.026216784 0.007960747 0.005196305 -0.025768168 -0.011945214 0.01036128 -0.024132928 -0.012034676 0.0048728441 -0.024162132 -0.0088719744 0.0050596092 -0.024299197 -0.0066793747 0.0071613197 -0.024491142 -0.0088719744 0.0050596092 -0.024299197 -0.0075578811 0.0057849702 -0.024414081 -0.0066793747 0.0071613197 -0.024491142 -0.011945214 0.01036128 -0.024132928 -0.0088719744 0.0050596092 -0.024299197 -0.0064622252 0.010470101 -0.024670435 -0.011945214 0.01036128 -0.024132928 -0.0066793747 0.0071613197 -0.024491142 -0.0088719744 0.0050596092 -0.024299197 -0.0083813099 0.0050418358 -0.022359503 -0.0075578811 0.0057849702 -0.024414081 -0.0083813099 0.0050418358 -0.022359503 -0.0065226108 0.0066949148 -0.02248407 -0.0075578811 0.0057849702 -0.024414081 -0.0075578811 0.0057849702 -0.024414081 -0.0065226108 0.0066949148 -0.02248407 -0.0066793747 0.0071613197 -0.024491142 -0.011745528 0.0048868093 -0.022065876 -0.0083813099 0.0050418358 -0.022359503 -0.0088719744 0.0050596092 -0.024299197 -0.011745528 0.0048868093 -0.022065876 -0.0088719744 0.0050596092 -0.024299197 -0.012034676 0.0048728441 -0.024162132 -0.0066793747 0.0071613197 -0.024491142 -0.0063233161 0.010344499 -0.022577303 -0.0064622252 0.010470101 -0.024670435 -0.0065226108 0.0066949148 -0.02248407 -0.0063233161 0.010344499 -0.022577303 -0.0066793747 0.0071613197 -0.024491142 -0.0029000577 -0.010394659 -0.02195321 -0.0028362665 0.010406241 -0.021917444 -0.0040846006 -0.010208487 -0.022586955 -0.0028362665 0.010406241 -0.021917444 -0.0040872064 0.010214096 -0.022595061 -0.0040846006 -0.010208487 -0.022586955 0.004007142 0.010400849 -0.023352636 0.0031076195 0.010399072 -0.022465698 0.0038141878 -0.010405903 -0.023296241 0.0038141878 -0.010405903 -0.023296241 0.0031076195 0.010399072 -0.022465698 0.0031436631 -0.010209447 -0.022121392 0.0041368711 -0.01019759 -0.0094992789 0.0041663912 0.010194105 -0.0095975893 0.0031349873 0.010335239 -0.0083566541 0.00295967 -0.010325618 -0.008289271 0.0041368711 -0.01019759 -0.0094992789 0.0031349873 0.010335239 -0.0083566541 -0.00047799846 -0.010376827 -0.0080630928 -0.00027243051 0.010384765 -0.0080346623 -0.0015769949 0.010381633 -0.0090042381 -0.0015632467 -0.010402421 -0.0090538384 -0.00047799846 -0.010376827 -0.0080630928 -0.0015769949 0.010381633 -0.0090042381 0.00661217 0.0069559226 -0.023855336 0.0064045754 0.010249151 -0.023605844 0.0064283311 0.0065591489 -0.023529373 0.00661217 0.0069559226 -0.023855336 0.0064283311 0.0065591489 -0.023529373 0.0077118156 0.0055471323 -0.023939466 0.0064283311 0.0065591489 -0.023529373 0.0086853551 0.0047308737 -0.023731733 0.0077118156 0.0055471323 -0.023939466 0.0077118156 0.0055471323 -0.023939466 0.0086853551 0.0047308737 -0.023731733 0.0089131109 0.0050216313 -0.024041334 0.011871066 0.0048251166 -0.024163473 0.0089131109 0.0050216313 -0.024041334 0.0086853551 0.0047308737 -0.023731733 0.0053220172 0.010300874 -0.023431394 0.0064045754 0.010249151 -0.023605844 0.004007142 0.010400849 -0.023352636 0.0041663912 0.010194105 -0.0095975893 0.0032384545 0.010325548 -0.020929204 0.0038561611 0.010501768 -0.0095369779 0.0032384545 0.010325548 -0.020929204 0.0031076195 0.010399072 -0.022465698 0.0038561611 0.010501768 -0.0095369779 0.0031349873 0.010335239 -0.0083566541 0.0041663912 0.010194105 -0.0095975893 0.0038561611 0.010501768 -0.0095369779 0.011819144 -0.0048516882 -0.024109785 0.0087013319 -0.0047462261 -0.023732014 0.0089108925 -0.0050405296 -0.024040638 0.0089108925 -0.0050405296 -0.024040638 0.0087013319 -0.0047462261 -0.023732014 0.0077003529 -0.0055650142 -0.023935266 0.0087013319 -0.0047462261 -0.023732014 0.0063914387 -0.0066096294 -0.02352266 0.0077003529 -0.0055650142 -0.023935266 0.0077003529 -0.0055650142 -0.023935266 0.0063914387 -0.0066096294 -0.02352266 0.0065894681 -0.0069815288 -0.02383917 0.0063914387 -0.0066096294 -0.02352266 0.0063499045 -0.010275527 -0.023583615 0.0065894681 -0.0069815288 -0.02383917 -0.0028362665 0.010406241 -0.021917444 -0.0036962291 0.010501311 -0.022836698 -0.0040872064 0.010214096 -0.022595061 0.0038141878 -0.010405903 -0.023296241 0.0063499045 -0.010275527 -0.023583615 0.0052720164 -0.010308634 -0.023421096 -0.0063233161 0.010344499 -0.022577303 -0.0040872064 0.010214096 -0.022595061 -0.0036962291 0.010501311 -0.022836698 0.0031436631 -0.010209447 -0.022121392 0.0029015976 -0.010501693 -0.022481069 0.0038141878 -0.010405903 -0.023296241 0.0032199789 -0.010340489 -0.020884663 0.0029015976 -0.010501693 -0.022481069 0.0031436631 -0.010209447 -0.022121392 0.0038345628 -0.010500679 -0.0095289825 0.0032199789 -0.010340489 -0.020884663 0.0041368711 -0.01019759 -0.0094992789 0.0038345628 -0.010500679 -0.0095289825 0.0029015976 -0.010501693 -0.022481069 0.0032199789 -0.010340489 -0.020884663 0.0041368711 -0.01019759 -0.0094992789 0.00295967 -0.010325618 -0.008289271 0.0038345628 -0.010500679 -0.0095289825 -0.0040846006 -0.010208487 -0.022586955 -0.0037330657 -0.010494444 -0.02283683 -0.0029000577 -0.010394659 -0.02195321 -0.0063446448 -0.010332328 -0.022569485 -0.0037330657 -0.010494444 -0.02283683 -0.0040846006 -0.010208487 -0.022586955 -0.0080328081 -0.0048740832 -0.022263389 -0.011809752 -0.0048630941 -0.022107661 -0.008410492 -0.0051126918 -0.022535739 -0.0064914133 -0.0067773205 -0.022473698 -0.0080328081 -0.0048740832 -0.022263389 -0.008410492 -0.0051126918 -0.022535739 0.0064283311 0.0065591489 -0.023529373 0.0087711634 0.010283436 -0.023723289 0.0086853551 0.0047308737 -0.023731733 0.0064283311 0.0065591489 -0.023529373 0.0064045754 0.010249151 -0.023605844 0.0087711634 0.010283436 -0.023723289 0.0040589552 0.0088098561 0.0087261451 0.0040553589 -0.0087961741 0.0087153185 0.012137741 0.010381461 -0.0087808091 0.0040553589 -0.0087961741 0.0087153185 0.012136181 -0.010407926 -0.0089262901 0.012137741 0.010381461 -0.0087808091 0.0040589552 0.0088098561 0.0087261451 0.0028122587 -0.0087377122 0.0089190947 0.0040553589 -0.0087961741 0.0087153185 0.0028307501 0.0087576099 0.0089127412 0.0028122587 -0.0087377122 0.0089190947 0.0040589552 0.0088098561 0.0087261451 0.0042652446 0.0053444514 0.026661612 0.0040340256 0.0086696651 0.022687994 0.004072756 0.0078154681 0.025153136 0.0042858883 -0.0047863293 0.026684379 0.0040340256 0.0086696651 0.022687994 0.0042652446 0.0053444514 0.026661612 0.0040779752 -0.0085246321 0.023393085 0.0040340256 0.0086696651 0.022687994 0.0042858883 -0.0047863293 0.026684379 0.0028122587 -0.0087377122 0.0089190947 0.0028307501 0.0087576099 0.0089127412 0.0040779752 -0.0085246321 0.023393085 0.0040779752 -0.0085246321 0.023393085 0.0028307501 0.0087576099 0.0089127412 0.0040340256 0.0086696651 0.022687994 0.0040779752 -0.0085246321 0.023393085 0.0042858883 -0.0047863293 0.026684379 0.0041928156 -0.0065326313 0.02610535 0.0042652446 0.0053444514 0.026661612 -0.00030912808 -0.0055131954 0.02711167 0.0042858883 -0.0047863293 0.026684379 -0.00053259829 0.0054869233 0.027017253 -0.00030912808 -0.0055131954 0.02711167 0.0042652446 0.0053444514 0.026661612 -0.00087420741 0.008797545 0.023403045 -0.0011729501 0.0025862241 0.020597789 -0.00059817825 0.0071030613 0.026093151 -0.00059817825 0.0071030613 0.026093151 -0.0011729501 0.0025862241 0.020597789 -0.00053259829 0.0054869233 0.027017253 -0.0011729501 0.0025862241 0.020597789 -0.0010723002 0.00091781589 0.021665249 -0.00053259829 0.0054869233 0.027017253 -0.00087420741 0.008797545 0.023403045 -0.0013202778 0.0034779641 0.018762916 -0.0011729501 0.0025862241 0.020597789 -0.00053259829 0.0054869233 0.027017253 -0.0010723002 0.00091781589 0.021665249 -0.00063876074 -0.0054718303 0.026839413 -0.00087420741 0.008797545 0.023403045 -0.0021484212 0.0087593924 0.0093471352 -0.0013202778 0.0034779641 0.018762916 -0.0021484212 0.0087593924 0.0093471352 -0.0014910932 0.0030784071 0.016806262 -0.0013202778 0.0034779641 0.018762916 -0.0010723002 0.00091781589 0.021665249 -0.0010902145 -0.0011919178 0.021504203 -0.00063876074 -0.0054718303 0.026839413 -0.0010902145 -0.0011919178 0.021504203 -0.0011512688 -0.0023366951 0.020838428 -0.00063876074 -0.0054718303 0.026839413 -0.0021484212 0.0087593924 0.0093471352 -0.0016168641 0.0019697449 0.015477281 -0.0014910932 0.0030784071 0.016806262 -0.00063876074 -0.0054718303 0.026839413 -0.0011512688 -0.0023366951 0.020838428 -0.00063447416 -0.007719072 0.025522089 -0.0011512688 -0.0023366951 0.020838428 -0.00083802262 -0.0087842289 0.023489855 -0.00063447416 -0.007719072 0.025522089 -0.0021484212 0.0087593924 0.0093471352 -0.0016597966 -0.00012871419 0.014834019 -0.0016168641 0.0019697449 0.015477281 -0.001303485 -0.0033504139 0.019105835 -0.00083802262 -0.0087842289 0.023489855 -0.0011512688 -0.0023366951 0.020838428 -0.0014743672 -0.0031514429 0.017089006 -0.0021666244 -0.0087347366 0.0093540018 -0.001303485 -0.0033504139 0.019105835 -0.0016130224 -0.0019273757 0.015516061 -0.0021666244 -0.0087347366 0.0093540018 -0.0014743672 -0.0031514429 0.017089006 -0.001303485 -0.0033504139 0.019105835 -0.0021666244 -0.0087347366 0.0093540018 -0.00083802262 -0.0087842289 0.023489855 -0.0016597966 -0.00012871419 0.014834019 -0.0021666244 -0.0087347366 0.0093540018 -0.0016130224 -0.0019273757 0.015516061 -0.0021484212 0.0087593924 0.0093471352 -0.0021666244 -0.0087347366 0.0093540018 -0.0016597966 -0.00012871419 0.014834019 -0.0021484212 0.0087593924 0.0093471352 -0.0034650876 -0.008994245 0.0093070455 -0.0021666244 -0.0087347366 0.0093540018 -0.0035361385 0.0090307798 0.009204722 -0.0034650876 -0.008994245 0.0093070455 -0.0021484212 0.0087593924 0.0093471352 0.004351858 0.010193433 -0.0080378773 -0.0035916362 -0.0089468863 0.0090513444 -0.0035361385 0.0090307798 0.009204722 0.0043241186 -0.010187336 -0.0080269556 -0.0035916362 -0.0089468863 0.0090513444 0.004351858 0.010193433 -0.0080378773 0.0041663912 0.010194105 -0.0095975893 0.0041368711 -0.01019759 -0.0094992789 0.004351858 0.010193433 -0.0080378773 0.0041368711 -0.01019759 -0.0094992789 0.0043241186 -0.010187336 -0.0080269556 0.004351858 0.010193433 -0.0080378773 0.0032199789 -0.010340489 -0.020884663 0.0043241186 -0.010187336 -0.0080269556 0.0041368711 -0.01019759 -0.0094992789 0.004351858 0.010193433 -0.0080378773 0.0032384545 0.010325548 -0.020929204 0.0041663912 0.010194105 -0.0095975893 0.012137741 0.010381461 -0.0087808091 0.012136181 -0.010407926 -0.0089262901 0.011087867 0.010350569 -0.021781968 0.012136181 -0.010407926 -0.0089262901 0.011021523 -0.01039292 -0.021796171 0.011087867 0.010350569 -0.021781968 0.0063499045 -0.010275527 -0.023583615 0.0063914387 -0.0066096294 -0.02352266 0.0087499274 -0.010303273 -0.023715507 0.0087499274 -0.010303273 -0.023715507 0.0063914387 -0.0066096294 -0.02352266 0.0087013319 -0.0047462261 -0.023732014 0.0032199789 -0.010340489 -0.020884663 0.011021523 -0.01039292 -0.021796171 0.012136181 -0.010407926 -0.0089262901 0.0032199789 -0.010340489 -0.020884663 0.012136181 -0.010407926 -0.0089262901 0.0046143378 -0.010479079 -0.0079811802 0.0052720164 -0.010308634 -0.023421096 0.0087499274 -0.010303273 -0.023715507 0.011021523 -0.01039292 -0.021796171 0.0052720164 -0.010308634 -0.023421096 0.011021523 -0.01039292 -0.021796171 0.0032199789 -0.010340489 -0.020884663 0.011087867 0.010350569 -0.021781968 0.0032384545 0.010325548 -0.020929204 0.012137741 0.010381461 -0.0087808091 0.012137741 0.010381461 -0.0087808091 0.0032384545 0.010325548 -0.020929204 0.004635965 0.010479739 -0.0079897065 0.0087711634 0.010283436 -0.023723289 0.0053220172 0.010300874 -0.023431394 0.011087867 0.010350569 -0.021781968 0.011087867 0.010350569 -0.021781968 0.0053220172 0.010300874 -0.023431394 0.0032384545 0.010325548 -0.020929204 0.004635965 0.010479739 -0.0079897065 0.003857244 0.0090631293 0.0085253576 0.012137741 0.010381461 -0.0087808091 0.004635965 0.010479739 -0.0079897065 -0.0035361385 0.0090307798 0.009204722 0.003857244 0.0090631293 0.0085253576 0.0025007031 0.0090646418 0.0086640138 -0.0035361385 0.0090307798 0.009204722 -0.0018750313 0.0090631032 0.0090522747 0.0025007031 0.0090646418 0.0086640138 0.003857244 0.0090631293 0.0085253576 -0.0035361385 0.0090307798 0.009204722 -0.0018750313 0.0090631032 0.0090522747 -0.00087420741 0.008797545 0.023403045 0.0037432725 0.0089586284 0.022841802 -0.0018750313 0.0090631032 0.0090522747 0.0037432725 0.0089586284 0.022841802 0.0025007031 0.0090646418 0.0086640138 0.003703844 -0.0089599695 0.02257015 -0.0018893821 -0.0090361387 0.009059933 0.00248613 -0.009047118 0.0086693093 -0.00083802262 -0.0087842289 0.023489855 -0.0018893821 -0.0090361387 0.009059933 0.003703844 -0.0089599695 0.02257015 -0.0035916362 -0.0089468863 0.0090513444 -0.0018893821 -0.0090361387 0.009059933 -0.0034650876 -0.008994245 0.0093070455 0.0038385612 -0.0090484442 0.0085322047 0.00248613 -0.009047118 0.0086693093 -0.0035916362 -0.0089468863 0.0090513444 -0.0035916362 -0.0089468863 0.0090513444 0.00248613 -0.009047118 0.0086693093 -0.0018893821 -0.0090361387 0.009059933 0.0038385612 -0.0090484442 0.0085322047 0.0046143378 -0.010479079 -0.0079811802 0.012136181 -0.010407926 -0.0089262901 -0.0035916362 -0.0089468863 0.0090513444 0.0046143378 -0.010479079 -0.0079811802 0.0038385612 -0.0090484442 0.0085322047 0.0052720164 -0.010308634 -0.023421096 0.0032384545 0.010325548 -0.020929204 0.0053220172 0.010300874 -0.023431394 0.0032199789 -0.010340489 -0.020884663 0.0032384545 0.010325548 -0.020929204 0.0052720164 -0.010308634 -0.023421096 0.0087499274 -0.010303273 -0.023715507 0.0087013319 -0.0047462261 -0.023732014 0.011021523 -0.01039292 -0.021796171 0.0086853551 0.0047308737 -0.023731733 0.011087867 0.010350569 -0.021781968 0.0087013319 -0.0047462261 -0.023732014 0.0087013319 -0.0047462261 -0.023732014 0.011087867 0.010350569 -0.021781968 0.011021523 -0.01039292 -0.021796171 0.0086853551 0.0047308737 -0.023731733 0.0087711634 0.010283436 -0.023723289 0.011087867 0.010350569 -0.021781968 -0.00053259829 0.0054869233 0.027017253 0.0042652446 0.0053444514 0.026661612 0.004072756 0.0078154681 0.025153136 -0.00059817825 0.0071030613 0.026093151 -0.00053259829 0.0054869233 0.027017253 0.004072756 0.0078154681 0.025153136 -0.00050743564 0.0084129758 0.024719397 -0.00059817825 0.0071030613 0.026093151 0.004072756 0.0078154681 0.025153136 -0.00050743564 0.0084129758 0.024719397 0.004072756 0.0078154681 0.025153136 0.0037432725 0.0089586284 0.022841802 -0.00087420741 0.008797545 0.023403045 -0.00050743564 0.0084129758 0.024719397 0.0037432725 0.0089586284 0.022841802 -0.00083802262 -0.0087842289 0.023489855 0.003703844 -0.0089599695 0.02257015 0.0038950585 -0.0081833554 0.024733316 -0.00063447416 -0.007719072 0.025522089 -0.00083802262 -0.0087842289 0.023489855 0.0038950585 -0.0081833554 0.024733316 -0.00063447416 -0.007719072 0.025522089 0.0038950585 -0.0081833554 0.024733316 0.0041928156 -0.0065326313 0.02610535 -0.00030912808 -0.0055131954 0.02711167 -0.00063447416 -0.007719072 0.025522089 0.0041928156 -0.0065326313 0.02610535 -0.00030912808 -0.0055131954 0.02711167 0.0041928156 -0.0065326313 0.02610535 0.0042858883 -0.0047863293 0.026684379 -0.0021666244 -0.0087347366 0.0093540018 -0.0034650876 -0.008994245 0.0093070455 -0.0018893821 -0.0090361387 0.009059933 -0.0035916362 -0.0089468863 0.0090513444 0.0043241186 -0.010187336 -0.0080269556 0.0046143378 -0.010479079 -0.0079811802 -0.00083802262 -0.0087842289 0.023489855 -0.0021666244 -0.0087347366 0.0093540018 -0.0018893821 -0.0090361387 0.009059933 -0.00063447416 -0.007719072 0.025522089 -0.00030912808 -0.0055131954 0.02711167 -0.00063876074 -0.0054718303 0.026839413 -0.00030912808 -0.0055131954 0.02711167 -0.00053259829 0.0054869233 0.027017253 -0.00063876074 -0.0054718303 0.026839413 -0.00050743564 0.0084129758 0.024719397 -0.00087420741 0.008797545 0.023403045 -0.00059817825 0.0071030613 0.026093151 0.0043241186 -0.010187336 -0.0080269556 0.0032199789 -0.010340489 -0.020884663 0.0046143378 -0.010479079 -0.0079811802 -0.0021484212 0.0087593924 0.0093471352 -0.00087420741 0.008797545 0.023403045 -0.0018750313 0.0090631032 0.0090522747 0.0052720164 -0.010308634 -0.023421096 0.0063499045 -0.010275527 -0.023583615 0.0087499274 -0.010303273 -0.023715507 -0.0035361385 0.0090307798 0.009204722 -0.0021484212 0.0087593924 0.0093471352 -0.0018750313 0.0090631032 0.0090522747 0.004351858 0.010193433 -0.0080378773 -0.0035361385 0.0090307798 0.009204722 0.004635965 0.010479739 -0.0079897065 0.012136181 -0.010407926 -0.0089262901 0.0040553589 -0.0087961741 0.0087153185 0.0038385612 -0.0090484442 0.0085322047 0.004635965 0.010479739 -0.0079897065 0.0032384545 0.010325548 -0.020929204 0.004351858 0.010193433 -0.0080378773 0.0038385612 -0.0090484442 0.0085322047 0.0028122587 -0.0087377122 0.0089190947 0.00248613 -0.009047118 0.0086693093 0.0040553589 -0.0087961741 0.0087153185 0.0028122587 -0.0087377122 0.0089190947 0.0038385612 -0.0090484442 0.0085322047 0.0053220172 0.010300874 -0.023431394 0.0087711634 0.010283436 -0.023723289 0.0064045754 0.010249151 -0.023605844 0.0028122587 -0.0087377122 0.0089190947 0.0040779752 -0.0085246321 0.023393085 0.003703844 -0.0089599695 0.02257015 0.0028122587 -0.0087377122 0.0089190947 0.003703844 -0.0089599695 0.02257015 0.00248613 -0.009047118 0.0086693093 0.0038950585 -0.0081833554 0.024733316 0.003703844 -0.0089599695 0.02257015 0.0040779752 -0.0085246321 0.023393085 0.0038950585 -0.0081833554 0.024733316 0.0040779752 -0.0085246321 0.023393085 0.0041928156 -0.0065326313 0.02610535 0.0037432725 0.0089586284 0.022841802 0.004072756 0.0078154681 0.025153136 0.0040340256 0.0086696651 0.022687994 0.0040340256 0.0086696651 0.022687994 0.0028307501 0.0087576099 0.0089127412 0.0025007031 0.0090646418 0.0086640138 0.0040340256 0.0086696651 0.022687994 0.0025007031 0.0090646418 0.0086640138 0.0037432725 0.0089586284 0.022841802 0.0040589552 0.0088098561 0.0087261451 0.012137741 0.010381461 -0.0087808091 0.003857244 0.0090631293 0.0085253576 0.0028307501 0.0087576099 0.0089127412 0.003857244 0.0090631293 0.0085253576 0.0025007031 0.0090646418 0.0086640138 0.0028307501 0.0087576099 0.0089127412 0.0040589552 0.0088098561 0.0087261451 0.003857244 0.0090631293 0.0085253576 -0.001303485 -0.0033504139 0.019105835 0.0020024739 1.5190752e-05 0.018010855 -0.0014743672 -0.0031514429 0.017089006 -0.0016130224 -0.0019273757 0.015516061 -0.0014743672 -0.0031514429 0.017089006 0.0020024739 1.5190752e-05 0.018010855 -0.0014910932 0.0030784071 0.016806262 0.0020024739 1.5190752e-05 0.018010855 -0.0013202778 0.0034779641 0.018762916 -0.0014910932 0.0030784071 0.016806262 -0.0016168641 0.0019697449 0.015477281 0.0020024739 1.5190752e-05 0.018010855 -0.0016168641 0.0019697449 0.015477281 -0.0016597966 -0.00012871419 0.014834019 0.0020024739 1.5190752e-05 0.018010855 -0.0016597966 -0.00012871419 0.014834019 -0.0016130224 -0.0019273757 0.015516061 0.0020024739 1.5190752e-05 0.018010855 -0.0034650876 -0.008994245 0.0093070455 -0.0035361385 0.0090307798 0.009204722 -0.0035916362 -0.0089468863 0.0090513444 0.0037458213 0.0098216813 -0.016158661 0.0036381651 0.008968004 -0.017765179 0.0066899243 0.0098241633 -0.015907198 0.0066899243 0.0098241633 -0.015907198 0.0036381651 0.008968004 -0.017765179 0.0064591859 0.0083769821 -0.018533038 0.007041757 0.0052416259 -0.011819002 0.0043612211 0.0054184794 -0.011549297 0.0070370506 0.0069837286 -0.011894187 0.0043612211 0.0054184794 -0.011549297 0.0043318192 0.0075804996 -0.011842079 0.0070370506 0.0069837286 -0.011894187 0.0036381651 0.008968004 -0.017765179 0.0037480323 0.0079000806 -0.018532939 0.0064591859 0.0083769821 -0.018533038 0.0070370506 0.0069837286 -0.011894187 0.0043318192 0.0075804996 -0.011842079 0.0069386684 0.0089332433 -0.013045925 0.0064591859 0.0083769821 -0.018533038 0.0037061472 0.0061631599 -0.019066367 0.0063897641 0.0059941853 -0.01929949 0.0037480323 0.0079000806 -0.018532939 0.0037061472 0.0061631599 -0.019066367 0.0064591859 0.0083769821 -0.018533038 0.0043318192 0.0075804996 -0.011842079 0.0042299633 0.0090092393 -0.013022563 0.0069386684 0.0089332433 -0.013045925 0.0042299633 0.0090092393 -0.013022563 0.0041025346 0.0097111762 -0.014548172 0.0069386684 0.0089332433 -0.013045925 0.0069386684 0.0089332433 -0.013045925 0.0041025346 0.0097111762 -0.014548172 0.0066899243 0.0098241633 -0.015907198 0.0041025346 0.0097111762 -0.014548172 0.0037458213 0.0098216813 -0.016158661 0.0066899243 0.0098241633 -0.015907198 0.0043318192 0.0075804996 -0.011842079 0.0040367926 0.0081636393 -0.011786046 0.0042299633 0.0090092393 -0.013022563 0.0040367926 0.0081636393 -0.011786046 0.003872456 0.0098044816 -0.013691985 0.0042299633 0.0090092393 -0.013022563 0.0040085586 0.0021585848 -0.015494619 0.0038053032 0.0019161474 -0.014383101 0.0041943528 0.0027602555 -0.013357141 0.0042299633 0.0090092393 -0.013022563 0.003872456 0.0098044816 -0.013691985 0.0041025346 0.0097111762 -0.014548172 0.0041943528 0.0027602555 -0.013357141 0.0040064221 0.0034528249 -0.012073833 0.0042910324 0.0037557287 -0.012264074 0.0038053032 0.0019161474 -0.014383101 0.0040064221 0.0034528249 -0.012073833 0.0041943528 0.0027602555 -0.013357141 0.003872456 0.0098044816 -0.013691985 0.0037458213 0.0098216813 -0.016158661 0.0041025346 0.0097111762 -0.014548172 0.0042910324 0.0037557287 -0.012264074 0.0040064221 0.0034528249 -0.012073833 0.0043612211 0.0054184794 -0.011549297 0.0040064221 0.0034528249 -0.012073833 0.0040887035 0.0056591132 -0.011164084 0.0043612211 0.0054184794 -0.011549297 0.0043612211 0.0054184794 -0.011549297 0.0040887035 0.0056591132 -0.011164084 0.0043318192 0.0075804996 -0.011842079 0.0040887035 0.0056591132 -0.011164084 0.0040367926 0.0081636393 -0.011786046 0.0043318192 0.0075804996 -0.011842079 0.003398475 0.0074393656 -0.0190911 0.0040064221 0.0034528249 -0.012073833 0.0033867829 0.0047973595 -0.019201143 0.0033867829 0.0047973595 -0.019201143 0.0040064221 0.0034528249 -0.012073833 0.0035334625 0.0025317448 -0.017489914 0.0040887035 0.0056591132 -0.011164084 0.0040064221 0.0034528249 -0.012073833 0.003398475 0.0074393656 -0.0190911 0.0035334625 0.0025317448 -0.017489914 0.0040064221 0.0034528249 -0.012073833 0.0038053032 0.0019161474 -0.014383101 0.003872456 0.0098044816 -0.013691985 0.0040367926 0.0081636393 -0.011786046 0.0037458213 0.0098216813 -0.016158661 0.0040367926 0.0081636393 -0.011786046 0.0040887035 0.0056591132 -0.011164084 0.0037458213 0.0098216813 -0.016158661 0.0037458213 0.0098216813 -0.016158661 0.0040887035 0.0056591132 -0.011164084 0.0036381651 0.008968004 -0.017765179 0.0036381651 0.008968004 -0.017765179 0.0040887035 0.0056591132 -0.011164084 0.003398475 0.0074393656 -0.0190911 0.0037313222 0.0042383671 -0.018626276 0.0035334625 0.0025317448 -0.017489914 0.00382835 0.0029870346 -0.01755126 0.0033867829 0.0047973595 -0.019201143 0.0035334625 0.0025317448 -0.017489914 0.0037313222 0.0042383671 -0.018626276 0.00382835 0.0029870346 -0.01755126 0.0035334625 0.0025317448 -0.017489914 0.0040085586 0.0021585848 -0.015494619 0.0035334625 0.0025317448 -0.017489914 0.0038053032 0.0019161474 -0.014383101 0.0040085586 0.0021585848 -0.015494619 0.0036381651 0.008968004 -0.017765179 0.003398475 0.0074393656 -0.0190911 0.0037480323 0.0079000806 -0.018532939 0.0037480323 0.0079000806 -0.018532939 0.003398475 0.0074393656 -0.0190911 0.0037061472 0.0061631599 -0.019066367 0.003398475 0.0074393656 -0.0190911 0.0033867829 0.0047973595 -0.019201143 0.0037061472 0.0061631599 -0.019066367 0.0037061472 0.0061631599 -0.019066367 0.0033867829 0.0047973595 -0.019201143 0.0037313222 0.0042383671 -0.018626276 0.0040085586 0.0021585848 -0.015494619 0.0041943528 0.0027602555 -0.013357141 0.0069325585 0.0030587316 -0.0130437 0.0041943528 0.0027602555 -0.013357141 0.0042910324 0.0037557287 -0.012264074 0.0069325585 0.0030587316 -0.0130437 0.0063897641 0.0059941853 -0.01929949 0.0037313222 0.0042383671 -0.018626276 0.0064542703 0.0036118319 -0.018531237 0.0037061472 0.0061631599 -0.019066367 0.0037313222 0.0042383671 -0.018626276 0.0063897641 0.0059941853 -0.01929949 0.0069325585 0.0030587316 -0.0130437 0.0042910324 0.0037557287 -0.012264074 0.007041757 0.0052416259 -0.011819002 0.0042910324 0.0037557287 -0.012264074 0.0043612211 0.0054184794 -0.011549297 0.007041757 0.0052416259 -0.011819002 0.0037313222 0.0042383671 -0.018626276 0.00382835 0.0029870346 -0.01755126 0.0064542703 0.0036118319 -0.018531237 0.0064542703 0.0036118319 -0.018531237 0.00382835 0.0029870346 -0.01755126 0.0066820243 0.0021661031 -0.015904304 0.00382835 0.0029870346 -0.01755126 0.0040085586 0.0021585848 -0.015494619 0.0066820243 0.0021661031 -0.015904304 0.0066820243 0.0021661031 -0.015904304 0.0040085586 0.0021585848 -0.015494619 0.0069325585 0.0030587316 -0.0130437 0.0069325585 0.0030587316 -0.0130437 0.007041757 0.0052416259 -0.011819002 0.0070370506 0.0069837286 -0.011894187 0.0069325585 0.0030587316 -0.0130437 0.0070370506 0.0069837286 -0.011894187 0.0069386684 0.0089332433 -0.013045925 0.0069325585 0.0030587316 -0.0130437 0.0069386684 0.0089332433 -0.013045925 0.0066899243 0.0098241633 -0.015907198 0.0064542703 0.0036118319 -0.018531237 0.0069325585 0.0030587316 -0.0130437 0.0066899243 0.0098241633 -0.015907198 0.0064542703 0.0036118319 -0.018531237 0.0066899243 0.0098241633 -0.015907198 0.0064591859 0.0083769821 -0.018533038 0.0064542703 0.0036118319 -0.018531237 0.0066820243 0.0021661031 -0.015904304 0.0069325585 0.0030587316 -0.0130437 0.0064542703 0.0036118319 -0.018531237 0.0064591859 0.0083769821 -0.018533038 0.0063897641 0.0059941853 -0.01929949 0.0066775456 -0.0021757933 -0.015902663 0.0036960351 -0.0024737741 -0.016987875 0.0064468076 -0.003622975 -0.018528501 0.0070293783 -0.0067583295 -0.011814466 0.0043488429 -0.0065814173 -0.01154476 0.0070246719 -0.0050162282 -0.01188965 0.0043488429 -0.0065814173 -0.01154476 0.004319441 -0.0044193976 -0.011837543 0.0070246719 -0.0050162282 -0.01188965 0.0036960351 -0.0024737741 -0.016987875 0.0037356538 -0.0040998762 -0.018528402 0.0064468076 -0.003622975 -0.018528501 0.0070246719 -0.0050162282 -0.01188965 0.004319441 -0.0044193976 -0.011837543 0.0069262399 -0.0030667137 -0.013041384 0.0064468076 -0.003622975 -0.018528501 0.0036937688 -0.005836796 -0.01906183 0.0063773855 -0.0060057705 -0.019294953 0.0037356538 -0.0040998762 -0.018528402 0.0036937688 -0.005836796 -0.01906183 0.0064468076 -0.003622975 -0.018528501 0.004319441 -0.0044193976 -0.011837543 0.0042175846 -0.0029907168 -0.013018027 0.0069262399 -0.0030667137 -0.013041384 0.0042175846 -0.0029907168 -0.013018027 0.0039531412 -0.0021593319 -0.014794201 0.0069262399 -0.0030667137 -0.013041384 0.0069262399 -0.0030667137 -0.013041384 0.0039531412 -0.0021593319 -0.014794201 0.0066775456 -0.0021757933 -0.015902663 0.0039531412 -0.0021593319 -0.014794201 0.0036960351 -0.0024737741 -0.016987875 0.0066775456 -0.0021757933 -0.015902663 0.004319441 -0.0044193976 -0.011837543 0.0039531663 -0.0027791748 -0.012623828 0.0042175846 -0.0029907168 -0.013018027 0.0036162965 -0.0099686347 -0.016386846 0.0038402674 -0.0098451683 -0.013818379 0.0039961804 -0.0098413713 -0.015490083 0.0039961804 -0.0098413713 -0.015490083 0.0038402674 -0.0098451683 -0.013818379 0.0041819746 -0.009239641 -0.013352605 0.0042175846 -0.0029907168 -0.013018027 0.0039531663 -0.0027791748 -0.012623828 0.0039531412 -0.0021593319 -0.014794201 0.0038402674 -0.0098451683 -0.013818379 0.0041609937 -0.0083635449 -0.012232482 0.0041819746 -0.009239641 -0.013352605 0.0041609937 -0.0083635449 -0.012232482 0.0040834141 -0.0059339055 -0.011096262 0.0043488429 -0.0065814173 -0.01154476 0.0043488429 -0.0065814173 -0.01154476 0.0040834141 -0.0059339055 -0.011096262 0.004319441 -0.0044193976 -0.011837543 0.0040834141 -0.0059339055 -0.011096262 0.0039531663 -0.0027791748 -0.012623828 0.004319441 -0.0044193976 -0.011837543 0.0034329472 -0.0084982011 -0.018503053 0.0038402674 -0.0098451683 -0.013818379 0.0036162965 -0.0099686347 -0.016386846 0.0040834141 -0.0059339055 -0.011096262 0.0038402674 -0.0098451683 -0.013818379 0.0034329472 -0.0084982011 -0.018503053 0.0040834141 -0.0059339055 -0.011096262 0.0041609937 -0.0083635449 -0.012232482 0.0038402674 -0.0098451683 -0.013818379 0.0036960351 -0.0024737741 -0.016987875 0.0039531663 -0.0027791748 -0.012623828 0.0033983667 -0.0041695507 -0.018965811 0.0033983667 -0.0041695507 -0.018965811 0.0039531663 -0.0027791748 -0.012623828 0.0033672098 -0.00660103 -0.019274652 0.0033672098 -0.00660103 -0.019274652 0.0040834141 -0.0059339055 -0.011096262 0.0034329472 -0.0084982011 -0.018503053 0.0039531663 -0.0027791748 -0.012623828 0.0040834141 -0.0059339055 -0.011096262 0.0033672098 -0.00660103 -0.019274652 0.0039531412 -0.0021593319 -0.014794201 0.0039531663 -0.0027791748 -0.012623828 0.0036960351 -0.0024737741 -0.016987875 0.0033672098 -0.00660103 -0.019274652 0.0034329472 -0.0084982011 -0.018503053 0.0037189438 -0.0077615888 -0.018621739 0.0037189438 -0.0077615888 -0.018621739 0.0034329472 -0.0084982011 -0.018503053 0.0038159715 -0.0090129208 -0.017546723 0.0034329472 -0.0084982011 -0.018503053 0.0036162965 -0.0099686347 -0.016386846 0.0038159715 -0.0090129208 -0.017546723 0.0038159715 -0.0090129208 -0.017546723 0.0036162965 -0.0099686347 -0.016386846 0.0039961804 -0.0098413713 -0.015490083 0.0036960351 -0.0024737741 -0.016987875 0.0033983667 -0.0041695507 -0.018965811 0.0037356538 -0.0040998762 -0.018528402 0.0037356538 -0.0040998762 -0.018528402 0.0033983667 -0.0041695507 -0.018965811 0.0036937688 -0.005836796 -0.01906183 0.0033983667 -0.0041695507 -0.018965811 0.0033672098 -0.00660103 -0.019274652 0.0036937688 -0.005836796 -0.01906183 0.0036937688 -0.005836796 -0.01906183 0.0033672098 -0.00660103 -0.019274652 0.0037189438 -0.0077615888 -0.018621739 0.0039961804 -0.0098413713 -0.015490083 0.0041819746 -0.009239641 -0.013352605 0.0069201798 -0.0089412257 -0.013039163 0.0041819746 -0.009239641 -0.013352605 0.0041609937 -0.0083635449 -0.012232482 0.0069201798 -0.0089412257 -0.013039163 0.0063773855 -0.0060057705 -0.019294953 0.0037189438 -0.0077615888 -0.018621739 0.0064418921 -0.0083881253 -0.018526699 0.0036937688 -0.005836796 -0.01906183 0.0037189438 -0.0077615888 -0.018621739 0.0063773855 -0.0060057705 -0.019294953 0.0069201798 -0.0089412257 -0.013039163 0.0041609937 -0.0083635449 -0.012232482 0.0070293783 -0.0067583295 -0.011814466 0.0041609937 -0.0083635449 -0.012232482 0.0043488429 -0.0065814173 -0.01154476 0.0070293783 -0.0067583295 -0.011814466 0.0037189438 -0.0077615888 -0.018621739 0.0038159715 -0.0090129208 -0.017546723 0.0064418921 -0.0083881253 -0.018526699 0.0064418921 -0.0083881253 -0.018526699 0.0038159715 -0.0090129208 -0.017546723 0.0066696461 -0.0098337941 -0.015899766 0.0038159715 -0.0090129208 -0.017546723 0.0039961804 -0.0098413713 -0.015490083 0.0066696461 -0.0098337941 -0.015899766 0.0066696461 -0.0098337941 -0.015899766 0.0039961804 -0.0098413713 -0.015490083 0.0069201798 -0.0089412257 -0.013039163 0.0064468076 -0.003622975 -0.018528501 0.0069262399 -0.0030667137 -0.013041384 0.0066775456 -0.0021757933 -0.015902663 0.0064418921 -0.0083881253 -0.018526699 0.0070293783 -0.0067583295 -0.011814466 0.0070246719 -0.0050162282 -0.01188965 0.0064418921 -0.0083881253 -0.018526699 0.0069201798 -0.0089412257 -0.013039163 0.0070293783 -0.0067583295 -0.011814466 0.0064418921 -0.0083881253 -0.018526699 0.0066696461 -0.0098337941 -0.015899766 0.0069201798 -0.0089412257 -0.013039163 0.0064418921 -0.0083881253 -0.018526699 0.0070246719 -0.0050162282 -0.01188965 0.0063773855 -0.0060057705 -0.019294953 0.0063773855 -0.0060057705 -0.019294953 0.0070246719 -0.0050162282 -0.01188965 0.0069262399 -0.0030667137 -0.013041384 0.0063773855 -0.0060057705 -0.019294953 0.0069262399 -0.0030667137 -0.013041384 0.0064468076 -0.003622975 -0.018528501 + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085

+
+
+
+
+ + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + + + + + + + + + + + + + +
diff --git a/external/rlbench/urdfs/panda/meshes/Pandaleftfingervisible_vis_2.dae b/external/rlbench/urdfs/panda/meshes/Pandaleftfingervisible_vis_2.dae new file mode 100644 index 0000000000000000000000000000000000000000..6fa399b92e8dde627e8559d9ebe416f251b008c5 --- /dev/null +++ b/external/rlbench/urdfs/panda/meshes/Pandaleftfingervisible_vis_2.dae @@ -0,0 +1,84 @@ + + + + + Assimp + Assimp Exporter + + 2023-09-26T11:24:21 + 2023-09-26T11:24:21 + + Y_UP + + + + + + + + 0 0 0 4.5895327e-41 + + + 0.1 0.1 0.1 4.5893926e-41 + + + 0.1 0.1 0.1 4.5893926e-41 + + + 0.30000001 0.30000001 0.30000001 -3.0261091e+37 + + + + + + + + + + + + + + + + -0.0089718765 0.00088490249 0.017533846 -0.0014499434 0.0017571256 0.017729059 -0.0087671457 0.0015506694 0.01987727 -0.0014499434 0.0017571256 0.017729059 -0.0012918948 0.0013142403 0.019520208 -0.0087671457 0.0015506694 0.01987727 -0.0012918948 0.0013142403 0.019520208 -0.0012475842 -0.00013905231 0.020073125 -0.0087671457 0.0015506694 0.01987727 -0.0087671457 0.0015506694 0.01987727 -0.0012475842 -0.00013905231 0.020073125 -0.0087240264 -0.00083597732 0.02039364 -0.0015543029 0.00017211743 0.01655457 -0.0014499434 0.0017571256 0.017729059 -0.0089718765 0.00088490249 0.017533846 -0.0013329111 0.0021033895 0.018577088 0.00013030924 0.0021685876 0.018601645 -0.0012238554 0.001482084 0.019855615 0.00013030924 0.0021685876 0.018601645 0.00026189332 0.001086022 0.020156974 -0.0012238554 0.001482084 0.019855615 -0.0015314448 -0.00070532708 0.01630752 -8.4031242e-05 0.00073817029 0.016068248 -0.001529614 0.00071398885 0.016333813 -0.0012238554 0.001482084 0.019855615 0.00026189332 0.001086022 0.020156974 -0.0011752504 2.8669429e-05 0.02041935 -0.001529614 0.00071398885 0.016333813 -8.4031242e-05 0.00073817029 0.016068248 -0.0014475276 0.0018358362 0.017192202 -8.4031242e-05 0.00073817029 0.016068248 1.6467846e-05 0.0019822319 0.017263034 -0.0014475276 0.0018358362 0.017192202 -0.0014475276 0.0018358362 0.017192202 1.6467846e-05 0.0019822319 0.017263034 -0.0013329111 0.0021033895 0.018577088 1.6467846e-05 0.0019822319 0.017263034 0.00013030924 0.0021685876 0.018601645 -0.0013329111 0.0021033895 0.018577088 -0.0014387448 0.0029031525 0.017307261 -0.0012885344 0.0029922726 0.019008948 0.00012647682 0.0030247583 0.018459514 -0.0014387448 0.0029031525 0.017307261 0.00012647682 0.0030247583 0.018459514 -4.6826986e-05 0.002470036 0.016456999 -0.0011323558 0.001809297 0.020850785 0.0003622933 -0.00034356696 0.021139728 0.00032316876 0.0018869094 0.02058332 -0.0011323558 0.001809297 0.020850785 -0.0010923083 -0.00050326006 0.021328995 0.0003622933 -0.00034356696 0.021139728 -0.0015711994 0.0018008135 0.015815221 -0.0014387448 0.0029031525 0.017307261 -4.6826986e-05 0.002470036 0.016456999 -0.0015711994 0.0018008135 0.015815221 -4.6826986e-05 0.002470036 0.016456999 -0.00015522433 0.00098465395 0.015361801 -0.0016175986 1.1298077e-06 0.015263653 -0.0015711994 0.0018008135 0.015815221 -0.00015522433 0.00098465395 0.015361801 -0.0016175986 1.1298077e-06 0.015263653 -0.00015522433 0.00098465395 0.015361801 -0.00014908907 -0.0010110724 0.015344074 -0.0012885344 0.0029922726 0.019008948 -0.0011323558 0.001809297 0.020850785 0.00032316876 0.0018869094 0.02058332 -0.0012885344 0.0029922726 0.019008948 0.00032316876 0.0018869094 0.02058332 0.00012647682 0.0030247583 0.018459514 -0.010642852 -0.0022354743 0.021392308 -0.010017933 -0.0048137382 0.027817573 -0.010032101 -0.0022395658 0.02784715 -0.010642852 -0.0022354743 0.021392308 -0.01010446 -0.0070459624 0.026874216 -0.010017933 -0.0048137382 0.027817573 -0.010307327 -0.0086465254 0.024432357 -0.01010446 -0.0070459624 0.026874216 -0.010642852 -0.0022354743 0.021392308 -0.010594975 -0.0087294513 0.021399153 -0.010307327 -0.0086465254 0.024432357 -0.010642852 -0.0022354743 0.021392308 -0.011511325 -0.0087382542 0.010431364 -0.010988983 -0.0087326625 0.016872428 -0.011027653 -0.0022219338 0.016898161 -0.011511325 -0.0087382542 0.010431364 -0.011027653 -0.0022219338 0.016898161 -0.011551163 -0.0022458381 0.010415856 -0.010638184 0.0022898859 0.021390598 -0.01002742 0.0022976557 0.027845437 -0.0099889226 0.0057212533 0.027698329 -0.010638184 0.0022898859 0.021390598 -0.0099889226 0.0057212533 0.027698329 -0.010183888 0.00784704 0.026022175 -0.010638184 0.0022898859 0.021390598 -0.010183888 0.00784704 0.026022175 -0.010325647 0.0087376488 0.024048429 -0.010638184 0.0022898859 0.021390598 -0.010325647 0.0087376488 0.024048429 -0.010576099 0.0087852431 0.021392584 -0.011548854 0.0022981211 0.01041512 -0.011020992 0.0022702843 0.016899819 -0.01097295 0.0087850131 0.016861921 -0.011548854 0.0022981211 0.01041512 -0.01097295 0.0087850131 0.016861921 -0.011476724 0.00879627 0.010421849 -0.0092041716 -0.0087841265 0.018997334 -0.010307327 -0.0086465254 0.024432357 -0.010594975 -0.0087294513 0.021399153 -0.0092041716 -0.0087841265 0.018997334 -0.00096574659 -0.0087674176 0.023870816 -0.010307327 -0.0086465254 0.024432357 -0.0022591802 -0.0089169098 0.0094478689 -0.00096574659 -0.0087674176 0.023870816 -0.0092041716 -0.0087841265 0.018997334 -0.010988983 -0.0087326625 0.016872428 -0.0022591802 -0.0089169098 0.0094478689 -0.0092041716 -0.0087841265 0.018997334 -0.011511325 -0.0087382542 0.010431364 -0.0022591802 -0.0089169098 0.0094478689 -0.010988983 -0.0087326625 0.016872428 -0.0091917031 0.0088292202 0.018991174 -0.010576099 0.0087852431 0.021392584 -0.010325647 0.0087376488 0.024048429 -0.00101195 0.0089114197 0.023195637 -0.0091917031 0.0088292202 0.018991174 -0.010325647 0.0087376488 0.024048429 -0.0022399828 0.0089451 0.0094410507 -0.01097295 0.0087850131 0.016861921 -0.0091917031 0.0088292202 0.018991174 -0.0022399828 0.0089451 0.0094410507 -0.011476724 0.00879627 0.010421849 -0.01097295 0.0087850131 0.016861921 -0.0022399828 0.0089451 0.0094410507 -0.0091917031 0.0088292202 0.018991174 -0.00101195 0.0089114197 0.023195637 -0.010642852 -0.0022354743 0.021392308 -0.010032101 -0.0022395658 0.02784715 -0.0084353955 2.736235e-05 0.027765248 -0.0092707919 2.4911511e-05 0.019000612 -0.010642852 -0.0022354743 0.021392308 -0.0084353955 2.736235e-05 0.027765248 -0.009963871 2.2308948e-05 0.010224097 -0.011551163 -0.0022458381 0.010415856 -0.011027653 -0.0022219338 0.016898161 -0.009963871 2.2308948e-05 0.010224097 -0.011027653 -0.0022219338 0.016898161 -0.0092707919 2.4911511e-05 0.019000612 -0.010638184 0.0022898859 0.021390598 -0.0092707919 2.4911511e-05 0.019000612 -0.0084353955 2.736235e-05 0.027765248 -0.010638184 0.0022898859 0.021390598 -0.0084353955 2.736235e-05 0.027765248 -0.01002742 0.0022976557 0.027845437 -0.009963871 2.2308948e-05 0.010224097 -0.0092707919 2.4911511e-05 0.019000612 -0.011020992 0.0022702843 0.016899819 -0.011548854 0.0022981211 0.01041512 -0.009963871 2.2308948e-05 0.010224097 -0.011020992 0.0022702843 0.016899819 -0.0022399828 0.0089451 0.0094410507 -0.011548854 0.0022981211 0.01041512 -0.011476724 0.00879627 0.010421849 -0.009963871 2.2308948e-05 0.010224097 -0.011548854 0.0022981211 0.01041512 -0.0022399828 0.0089451 0.0094410507 -0.0022591802 -0.0089169098 0.0094478689 -0.011551163 -0.0022458381 0.010415856 -0.009963871 2.2308948e-05 0.010224097 -0.0022591802 -0.0089169098 0.0094478689 -0.011511325 -0.0087382542 0.010431364 -0.011551163 -0.0022458381 0.010415856 -0.0022591802 -0.0089169098 0.0094478689 -0.009963871 2.2308948e-05 0.010224097 -0.0022399828 0.0089451 0.0094410507 -0.0084353955 2.736235e-05 0.027765248 -0.00066897564 -0.0047105509 0.027185082 -0.00066177751 0.0053592618 0.027100839 -0.0084353955 2.736235e-05 0.027765248 -0.00066177751 0.0053592618 0.027100839 -0.0099889226 0.0057212533 0.027698329 -0.0084353955 2.736235e-05 0.027765248 -0.0099889226 0.0057212533 0.027698329 -0.01002742 0.0022976557 0.027845437 -0.010017933 -0.0048137382 0.027817573 -0.0084353955 2.736235e-05 0.027765248 -0.010032101 -0.0022395658 0.02784715 -0.010017933 -0.0048137382 0.027817573 -0.00066897564 -0.0047105509 0.027185082 -0.0084353955 2.736235e-05 0.027765248 -0.0014387448 0.0029031525 0.017307261 -0.0016689464 0.0027231474 0.015263888 -0.0014497507 0.0039612446 0.01756794 -0.0014387448 0.0029031525 0.017307261 -0.0015711994 0.0018008135 0.015815221 -0.0016689464 0.0027231474 0.015263888 -0.00096574659 -0.0087674176 0.023870816 -0.001467227 -0.0074760397 0.017569587 -0.001336737 -0.0074803759 0.019067023 -0.0011073258 -0.002167776 0.021677028 -0.0011991777 -0.0025288844 0.020102315 -0.0010923083 -0.00050326006 0.021328995 -0.00066177751 0.0053592618 0.027100839 -0.00089945394 0.0072770012 0.023978822 -0.00080059422 0.0078797713 0.025477998 -0.0020546333 -0.0074836346 0.01085149 -0.0022591802 -0.0089169098 0.0094478689 -0.0020468619 -0.00073939015 0.010844563 -0.00066177751 0.0053592618 0.027100839 -0.00074485579 0.004991184 0.025721375 -0.00089945394 0.0072770012 0.023978822 -0.001467227 -0.0074760397 0.017569587 -0.0022591802 -0.0089169098 0.0094478689 -0.0020546333 -0.0074836346 0.01085149 -0.00096574659 -0.0087674176 0.023870816 -0.0022591802 -0.0089169098 0.0094478689 -0.001467227 -0.0074760397 0.017569587 -0.0022591802 -0.0089169098 0.0094478689 -0.0022399828 0.0089451 0.0094410507 -0.0020468619 -0.00073939015 0.010844563 -0.0020468619 -0.00073939015 0.010844563 -0.0022399828 0.0089451 0.0094410507 -0.0020460391 0.0007705004 0.010843103 -0.0020396148 0.0075072199 0.010840722 -0.0022399828 0.0089451 0.0094410507 -0.0014522701 0.0075132065 0.017560199 -0.0014522701 0.0075132065 0.017560199 -0.0022399828 0.0089451 0.0094410507 -0.00101195 0.0089114197 0.023195637 -0.00080059422 0.0078797713 0.025477998 -0.00089945394 0.0072770012 0.023978822 -0.00101195 0.0089114197 0.023195637 -0.0011073258 -0.002167776 0.021677028 -0.0012273472 -0.0034277742 0.020364342 -0.0011991777 -0.0025288844 0.020102315 -0.00073970022 -0.0068493942 0.026391812 -0.00094016601 -0.0073468601 0.023622807 -0.00076953211 -0.0053254352 0.025643986 -0.00089945394 0.0072770012 0.023978822 -0.001321653 0.0075089298 0.019057022 -0.00101195 0.0089114197 0.023195637 -0.00066177751 0.0053592618 0.027100839 -0.00074208755 0.00077259645 0.025781933 -0.00074485579 0.004991184 0.025721375 -0.00073970022 -0.0068493942 0.026391812 -0.00096574659 -0.0087674176 0.023870816 -0.00094016601 -0.0073468601 0.023622807 -0.0016175986 1.1298077e-06 0.015263653 -0.0016689464 0.0027231474 0.015263888 -0.0015711994 0.0018008135 0.015815221 -0.0012273472 -0.0034277742 0.020364342 -0.00133967 -0.0039064246 0.019046035 -0.0011991777 -0.0025288844 0.020102315 -0.0016175986 1.1298077e-06 0.015263653 -0.0017374621 0.0007462455 0.014408262 -0.0016689464 0.0027231474 0.015263888 -0.0011991777 -0.0025288844 0.020102315 -0.00133967 -0.0039064246 0.019046035 -0.0013891883 -0.0030216526 0.017965231 -0.00066177751 0.0053592618 0.027100839 -0.00074370723 -0.00073076744 0.025777608 -0.00074208755 0.00077259645 0.025781933 -0.001321653 0.0075089298 0.019057022 -0.0014522701 0.0075132065 0.017560199 -0.00101195 0.0089114197 0.023195637 -0.00133967 -0.0039064246 0.019046035 -0.0014667872 -0.0039066672 0.017584562 -0.0013891883 -0.0030216526 0.017965231 -0.0016175986 1.1298077e-06 0.015263653 -0.0017412228 -0.00071822945 0.014405658 -0.0017374621 0.0007462455 0.014408262 -0.0015593843 -0.0020614543 0.015994975 -0.0017042194 -0.0020411611 0.014882838 -0.0016175986 1.1298077e-06 0.015263653 -0.0016175986 1.1298077e-06 0.015263653 -0.0017042194 -0.0020411611 0.014882838 -0.0017412228 -0.00071822945 0.014405658 -0.0014667872 -0.0039066672 0.017584562 -0.0015919714 -0.0033593774 0.016137898 -0.0013891883 -0.0030216526 0.017965231 -0.00066177751 0.0053592618 0.027100839 -0.00066897564 -0.0047105509 0.027185082 -0.00074370723 -0.00073076744 0.025777608 -0.00074370723 -0.00073076744 0.025777608 -0.0010571738 0.00075107085 0.022221599 -0.00074208755 0.00077259645 0.025781933 -0.001321653 0.0075089298 0.019057022 -0.0013311757 0.0039397459 0.019042851 -0.0014522701 0.0075132065 0.017560199 -0.0013891883 -0.0030216526 0.017965231 -0.0015919714 -0.0033593774 0.016137898 -0.0015593843 -0.0020614543 0.015994975 -0.0011009939 0.0020742477 0.021745136 -0.0011323558 0.001809297 0.020850785 -0.0012050434 0.0033923951 0.020489432 -0.0015593843 -0.0020614543 0.015994975 -0.0015919714 -0.0033593774 0.016137898 -0.0017042194 -0.0020411611 0.014882838 -0.0020396148 0.0075072199 0.010840722 -0.0020460391 0.0007705004 0.010843103 -0.0022399828 0.0089451 0.0094410507 -0.00133967 -0.0039064246 0.019046035 -0.001336737 -0.0074803759 0.019067023 -0.0014667872 -0.0039066672 0.017584562 -0.0011323558 0.001809297 0.020850785 -0.0012885344 0.0029922726 0.019008948 -0.0012050434 0.0033923951 0.020489432 -0.00096574659 -0.0087674176 0.023870816 -0.001336737 -0.0074803759 0.019067023 -0.00094016601 -0.0073468601 0.023622807 -0.0010571738 0.00075107085 0.022221599 -0.0011323558 0.001809297 0.020850785 -0.0011009939 0.0020742477 0.021745136 -0.0012050434 0.0033923951 0.020489432 -0.0012885344 0.0029922726 0.019008948 -0.0013311757 0.0039397459 0.019042851 -0.00066897564 -0.0047105509 0.027185082 -0.00076953211 -0.0053254352 0.025643986 -0.00074370723 -0.00073076744 0.025777608 -0.0010571738 0.00075107085 0.022221599 -0.0010923083 -0.00050326006 0.021328995 -0.0011323558 0.001809297 0.020850785 -0.0017412228 -0.00071822945 0.014405658 -0.0020468619 -0.00073939015 0.010844563 -0.0017374621 0.0007462455 0.014408262 -0.00074370723 -0.00073076744 0.025777608 -0.0010590878 -0.00071597879 0.022222372 -0.0010571738 0.00075107085 0.022221599 -0.0017374621 0.0007462455 0.014408262 -0.0020468619 -0.00073939015 0.010844563 -0.0020460391 0.0007705004 0.010843103 -0.0013311757 0.0039397459 0.019042851 -0.0014497507 0.0039612446 0.01756794 -0.0014522701 0.0075132065 0.017560199 -0.0013311757 0.0039397459 0.019042851 -0.0012885344 0.0029922726 0.019008948 -0.0014497507 0.0039612446 0.01756794 -0.0010590878 -0.00071597879 0.022222372 -0.0010923083 -0.00050326006 0.021328995 -0.0010571738 0.00075107085 0.022221599 -0.001336737 -0.0074803759 0.019067023 -0.001467227 -0.0074760397 0.017569587 -0.0014667872 -0.0039066672 0.017584562 -0.0012885344 0.0029922726 0.019008948 -0.0014387448 0.0029031525 0.017307261 -0.0014497507 0.0039612446 0.01756794 -0.00073970022 -0.0068493942 0.026391812 -0.00076953211 -0.0053254352 0.025643986 -0.00066897564 -0.0047105509 0.027185082 -0.0011073258 -0.002167776 0.021677028 -0.0010923083 -0.00050326006 0.021328995 -0.0010590878 -0.00071597879 0.022222372 -0.00096574659 -0.0087674176 0.023870816 -0.00073970022 -0.0068493942 0.026391812 -0.01010446 -0.0070459624 0.026874216 -0.00096574659 -0.0087674176 0.023870816 -0.01010446 -0.0070459624 0.026874216 -0.010307327 -0.0086465254 0.024432357 -0.00073970022 -0.0068493942 0.026391812 -0.010017933 -0.0048137382 0.027817573 -0.01010446 -0.0070459624 0.026874216 -0.00073970022 -0.0068493942 0.026391812 -0.00066897564 -0.0047105509 0.027185082 -0.010017933 -0.0048137382 0.027817573 -0.00080059422 0.0078797713 0.025477998 -0.010183888 0.00784704 0.026022175 -0.0099889226 0.0057212533 0.027698329 -0.00066177751 0.0053592618 0.027100839 -0.00080059422 0.0078797713 0.025477998 -0.0099889226 0.0057212533 0.027698329 -0.00101195 0.0089114197 0.023195637 -0.010325647 0.0087376488 0.024048429 -0.010183888 0.00784704 0.026022175 -0.00080059422 0.0078797713 0.025477998 -0.00101195 0.0089114197 0.023195637 -0.010183888 0.00784704 0.026022175 -0.001467227 -0.0074760397 0.017569587 -0.0099616088 -0.0073099905 0.011707962 -0.0094050942 -0.0073060058 0.018091308 -0.0020546333 -0.0074836346 0.01085149 -0.0099616088 -0.0073099905 0.011707962 -0.001467227 -0.0074760397 0.017569587 -0.0014667872 -0.0039066672 0.017584562 -0.0094050942 -0.0073060058 0.018091308 -0.0094132088 -0.0040903995 0.018051662 -0.001467227 -0.0074760397 0.017569587 -0.0094050942 -0.0073060058 0.018091308 -0.0014667872 -0.0039066672 0.017584562 -0.0096740061 -0.00088945765 0.014945225 -0.0017412228 -0.00071822945 0.014405658 -0.0017042194 -0.0020411611 0.014882838 -0.0096197771 -0.0026509541 0.015732806 -0.0096740061 -0.00088945765 0.014945225 -0.0017042194 -0.0020411611 0.014882838 -0.0096197771 -0.0026509541 0.015732806 -0.0017042194 -0.0020411611 0.014882838 -0.0015919714 -0.0033593774 0.016137898 -0.0094132088 -0.0040903995 0.018051662 -0.0096197771 -0.0026509541 0.015732806 -0.0015919714 -0.0033593774 0.016137898 -0.0094132088 -0.0040903995 0.018051662 -0.0015919714 -0.0033593774 0.016137898 -0.0014667872 -0.0039066672 0.017584562 -0.0099547077 -0.00089316763 0.011705333 -0.0017412228 -0.00071822945 0.014405658 -0.0096740061 -0.00088945765 0.014945225 -0.0099547077 -0.00089316763 0.011705333 -0.0020468619 -0.00073939015 0.010844563 -0.0017412228 -0.00071822945 0.014405658 -0.0099616088 -0.0073099905 0.011707962 -0.0020546333 -0.0074836346 0.01085149 -0.0099547077 -0.00089316763 0.011705333 -0.0099547077 -0.00089316763 0.011705333 -0.0020546333 -0.0074836346 0.01085149 -0.0020468619 -0.00073939015 0.010844563 -0.0096197771 -0.0026509541 0.015732806 -0.0099547077 -0.00089316763 0.011705333 -0.0096740061 -0.00088945765 0.014945225 -0.0099616088 -0.0073099905 0.011707962 -0.0099547077 -0.00089316763 0.011705333 -0.0096197771 -0.0026509541 0.015732806 -0.0094050942 -0.0073060058 0.018091308 -0.0096197771 -0.0026509541 0.015732806 -0.0094132088 -0.0040903995 0.018051662 -0.0094050942 -0.0073060058 0.018091308 -0.0099616088 -0.0073099905 0.011707962 -0.0096197771 -0.0026509541 0.015732806 -0.0099456664 0.0073560798 0.011701454 -0.0020460391 0.0007705004 0.010843103 -0.0020396148 0.0075072199 0.010840722 -0.0099530993 0.00093932165 0.011704844 -0.0020460391 0.0007705004 0.010843103 -0.0099456664 0.0073560798 0.011701454 -0.0017374621 0.0007462455 0.014408262 -0.0099530993 0.00093932165 0.011704844 -0.0096703414 0.00093365117 0.014946478 -0.0020460391 0.0007705004 0.010843103 -0.0099530993 0.00093932165 0.011704844 -0.0017374621 0.0007462455 0.014408262 -0.0096008731 0.003069676 0.015973564 -0.0014497507 0.0039612446 0.01756794 -0.0016689464 0.0027231474 0.015263888 -0.0096008731 0.003069676 0.015973564 -0.0093920259 0.0040982645 0.01809646 -0.0014497507 0.0039612446 0.01756794 -0.0096703414 0.00093365117 0.014946478 -0.0016689464 0.0027231474 0.015263888 -0.0017374621 0.0007462455 0.014408262 -0.0096703414 0.00093365117 0.014946478 -0.0096008731 0.003069676 0.015973564 -0.0016689464 0.0027231474 0.015263888 -0.0014497507 0.0039612446 0.01756794 -0.009388946 0.0073570241 0.018085144 -0.0014522701 0.0075132065 0.017560199 -0.0014497507 0.0039612446 0.01756794 -0.0093920259 0.0040982645 0.01809646 -0.009388946 0.0073570241 0.018085144 -0.0099456664 0.0073560798 0.011701454 -0.0014522701 0.0075132065 0.017560199 -0.009388946 0.0073570241 0.018085144 -0.0099456664 0.0073560798 0.011701454 -0.0020396148 0.0075072199 0.010840722 -0.0014522701 0.0075132065 0.017560199 -0.0096008731 0.003069676 0.015973564 -0.0099530993 0.00093932165 0.011704844 -0.0099456664 0.0073560798 0.011701454 -0.0096008731 0.003069676 0.015973564 -0.0099456664 0.0073560798 0.011701454 -0.009388946 0.0073570241 0.018085144 -0.0096703414 0.00093365117 0.014946478 -0.0099530993 0.00093932165 0.011704844 -0.0096008731 0.003069676 0.015973564 -0.0093920259 0.0040982645 0.01809646 -0.0096008731 0.003069676 0.015973564 -0.009388946 0.0073570241 0.018085144 -0.0088475347 0.007167411 0.024424624 -0.00089945394 0.0072770012 0.023978822 -0.0086932387 0.005117822 0.026204718 -0.00089945394 0.0072770012 0.023978822 -0.00074485579 0.004991184 0.025721375 -0.0086932387 0.005117822 0.026204718 -0.0092282072 0.0073577887 0.019918162 -0.00089945394 0.0072770012 0.023978822 -0.0088475347 0.007167411 0.024424624 -0.0092282072 0.0073577887 0.019918162 -0.001321653 0.0075089298 0.019057022 -0.00089945394 0.0072770012 0.023978822 -0.0092282072 0.0073577887 0.019918162 -0.0013311757 0.0039397459 0.019042851 -0.001321653 0.0075089298 0.019057022 -0.0092381518 0.0041404143 0.019959325 -0.0013311757 0.0039397459 0.019042851 -0.0092282072 0.0073577887 0.019918162 -0.0089638755 0.00093959965 0.023064585 -0.0010571738 0.00075107085 0.022221599 -0.0011009939 0.0020742477 0.021745136 -0.0090441508 0.0027015777 0.022279516 -0.0089638755 0.00093959965 0.023064585 -0.0011009939 0.0020742477 0.021745136 -0.0090441508 0.0027015777 0.022279516 -0.0011009939 0.0020742477 0.021745136 -0.0012050434 0.0033923951 0.020489432 -0.0092381518 0.0041404143 0.019959325 -0.0090441508 0.0027015777 0.022279516 -0.0012050434 0.0033923951 0.020489432 -0.0092381518 0.0041404143 0.019959325 -0.0012050434 0.0033923951 0.020489432 -0.0013311757 0.0039397459 0.019042851 -0.0010571738 0.00075107085 0.022221599 -0.008678183 0.00094377057 0.026304755 -0.00074208755 0.00077259645 0.025781933 -0.0010571738 0.00075107085 0.022221599 -0.0089638755 0.00093959965 0.023064585 -0.008678183 0.00094377057 0.026304755 -0.00074485579 0.004991184 0.025721375 -0.008678183 0.00094377057 0.026304755 -0.0086932387 0.005117822 0.026204718 -0.00074208755 0.00077259645 0.025781933 -0.008678183 0.00094377057 0.026304755 -0.00074485579 0.004991184 0.025721375 -0.0092381518 0.0041404143 0.019959325 -0.0092282072 0.0073577887 0.019918162 -0.0088475347 0.007167411 0.024424624 -0.0090441508 0.0027015777 0.022279516 -0.0092381518 0.0041404143 0.019959325 -0.0088475347 0.007167411 0.024424624 -0.0086932387 0.005117822 0.026204718 -0.0090441508 0.0027015777 0.022279516 -0.0088475347 0.007167411 0.024424624 -0.0086932387 0.005117822 0.026204718 -0.0089638755 0.00093959965 0.023064585 -0.0090441508 0.0027015777 0.022279516 -0.008678183 0.00094377057 0.026304755 -0.0089638755 0.00093959965 0.023064585 -0.0086932387 0.005117822 0.026204718 -0.0088169975 -0.006581116 0.0251555 -0.00094016601 -0.0073468601 0.023622807 -0.0089329472 -0.0072833211 0.023572097 -0.0086955354 -0.0048974152 0.026242975 -0.00076953211 -0.0053254352 0.025643986 -0.0088169975 -0.006581116 0.0251555 -0.00076953211 -0.0053254352 0.025643986 -0.00094016601 -0.0073468601 0.023622807 -0.0088169975 -0.006581116 0.0251555 -0.00076953211 -0.0053254352 0.025643986 -0.008679647 -0.00088813523 0.026304154 -0.00074370723 -0.00073076744 0.025777608 -0.00076953211 -0.0053254352 0.025643986 -0.0086955354 -0.0048974152 0.026242975 -0.008679647 -0.00088813523 0.026304154 -0.008679647 -0.00088813523 0.026304154 -0.0010590878 -0.00071597879 0.022222372 -0.00074370723 -0.00073076744 0.025777608 -0.0089689521 -0.00093286985 0.023105359 -0.0010590878 -0.00071597879 0.022222372 -0.008679647 -0.00088813523 0.026304154 -0.0092439149 -0.0040502911 0.019916411 -0.00133967 -0.0039064246 0.019046035 -0.0012273472 -0.0034277742 0.020364342 -0.0091034416 -0.0032612027 0.021672836 -0.0092439149 -0.0040502911 0.019916411 -0.0012273472 -0.0034277742 0.020364342 -0.0091034416 -0.0032612027 0.021672836 -0.0012273472 -0.0034277742 0.020364342 -0.0011073258 -0.002167776 0.021677028 -0.0089689521 -0.00093286985 0.023105359 -0.0091034416 -0.0032612027 0.021672836 -0.0011073258 -0.002167776 0.021677028 -0.0089689521 -0.00093286985 0.023105359 -0.0011073258 -0.002167776 0.021677028 -0.0010590878 -0.00071597879 0.022222372 -0.009243967 -0.0073067304 0.019924 -0.00133967 -0.0039064246 0.019046035 -0.0092439149 -0.0040502911 0.019916411 -0.009243967 -0.0073067304 0.019924 -0.001336737 -0.0074803759 0.019067023 -0.00133967 -0.0039064246 0.019046035 -0.00094016601 -0.0073468601 0.023622807 -0.009243967 -0.0073067304 0.019924 -0.0089329472 -0.0072833211 0.023572097 -0.001336737 -0.0074803759 0.019067023 -0.009243967 -0.0073067304 0.019924 -0.00094016601 -0.0073468601 0.023622807 -0.0086955354 -0.0048974152 0.026242975 -0.0091034416 -0.0032612027 0.021672836 -0.0089689521 -0.00093286985 0.023105359 -0.0086955354 -0.0048974152 0.026242975 -0.0089689521 -0.00093286985 0.023105359 -0.008679647 -0.00088813523 0.026304154 -0.0089329472 -0.0072833211 0.023572097 -0.0092439149 -0.0040502911 0.019916411 -0.0091034416 -0.0032612027 0.021672836 -0.0089329472 -0.0072833211 0.023572097 -0.009243967 -0.0073067304 0.019924 -0.0092439149 -0.0040502911 0.019916411 -0.0088169975 -0.006581116 0.0251555 -0.0089329472 -0.0072833211 0.023572097 -0.0091034416 -0.0032612027 0.021672836 -0.0088169975 -0.006581116 0.0251555 -0.0091034416 -0.0032612027 0.021672836 -0.0086955354 -0.0048974152 0.026242975 -8.4031242e-05 0.00073817029 0.016068248 -4.6826986e-05 0.002470036 0.016456999 1.6467846e-05 0.0019822319 0.017263034 1.6467846e-05 0.0019822319 0.017263034 -4.6826986e-05 0.002470036 0.016456999 0.00012647682 0.0030247583 0.018459514 -8.4031242e-05 0.00073817029 0.016068248 -0.00015522433 0.00098465395 0.015361801 -4.6826986e-05 0.002470036 0.016456999 0.00013030924 0.0021685876 0.018601645 1.6467846e-05 0.0019822319 0.017263034 0.00012647682 0.0030247583 0.018459514 -8.4031242e-05 0.00073817029 0.016068248 -0.00014908907 -0.0010110724 0.015344074 -0.00015522433 0.00098465395 0.015361801 -7.597747e-05 -0.00097002054 0.016257523 -0.00014908907 -0.0010110724 0.015344074 -8.4031242e-05 0.00073817029 0.016068248 0.00013030924 0.0021685876 0.018601645 0.00012647682 0.0030247583 0.018459514 0.00032316876 0.0018869094 0.02058332 2.0356742e-05 -0.0019845776 0.017272932 -0.00014908907 -0.0010110724 0.015344074 -7.597747e-05 -0.00097002054 0.016257523 -6.8996429e-05 -0.0023309509 0.016370565 -0.00014908907 -0.0010110724 0.015344074 2.0356742e-05 -0.0019845776 0.017272932 0.00026189332 0.001086022 0.020156974 0.00013030924 0.0021685876 0.018601645 0.00032316876 0.0018869094 0.02058332 6.8193927e-05 -0.0029840469 0.01782997 -6.8996429e-05 -0.0023309509 0.016370565 2.0356742e-05 -0.0019845776 0.017272932 0.0003622933 -0.00034356696 0.021139728 0.00027115751 -0.00081105431 0.020195067 0.00026189332 0.001086022 0.020156974 0.0003622933 -0.00034356696 0.021139728 0.00026189332 0.001086022 0.020156974 0.00032316876 0.0018869094 0.02058332 6.8193927e-05 -0.0029840469 0.01782997 2.0356742e-05 -0.0019845776 0.017272932 0.00014423898 -0.002035727 0.019007176 0.00025757792 -0.0023228929 0.020132545 6.8193927e-05 -0.0029840469 0.01782997 0.00014423898 -0.002035727 0.019007176 0.0003622933 -0.00034356696 0.021139728 0.00014423898 -0.002035727 0.019007176 0.00027115751 -0.00081105431 0.020195067 0.00025757792 -0.0023228929 0.020132545 0.00014423898 -0.002035727 0.019007176 0.0003622933 -0.00034356696 0.021139728 -0.0011991777 -0.0025288844 0.020102315 -0.0013891883 -0.0030216526 0.017965231 6.8193927e-05 -0.0029840469 0.01782997 -0.0011991777 -0.0025288844 0.020102315 6.8193927e-05 -0.0029840469 0.01782997 0.00025757792 -0.0023228929 0.020132545 -0.0015593843 -0.0020614543 0.015994975 -0.0016175986 1.1298077e-06 0.015263653 -0.00014908907 -0.0010110724 0.015344074 -0.0010923083 -0.00050326006 0.021328995 -0.0011991777 -0.0025288844 0.020102315 0.00025757792 -0.0023228929 0.020132545 -0.0015593843 -0.0020614543 0.015994975 -0.00014908907 -0.0010110724 0.015344074 -6.8996429e-05 -0.0023309509 0.016370565 -0.0010923083 -0.00050326006 0.021328995 0.00025757792 -0.0023228929 0.020132545 0.0003622933 -0.00034356696 0.021139728 -0.0015593843 -0.0020614543 0.015994975 -6.8996429e-05 -0.0023309509 0.016370565 6.8193927e-05 -0.0029840469 0.01782997 -0.0013891883 -0.0030216526 0.017965231 -0.0015593843 -0.0020614543 0.015994975 6.8193927e-05 -0.0029840469 0.01782997 -0.0014111245 -0.0021381425 0.017877925 2.0356742e-05 -0.0019845776 0.017272932 -0.0015314448 -0.00070532708 0.01630752 0.00026189332 0.001086022 0.020156974 0.00027115751 -0.00081105431 0.020195067 -0.0011752504 2.8669429e-05 0.02041935 2.0356742e-05 -0.0019845776 0.017272932 -7.597747e-05 -0.00097002054 0.016257523 -0.0015314448 -0.00070532708 0.01630752 -0.0011752504 2.8669429e-05 0.02041935 0.00027115751 -0.00081105431 0.020195067 -0.0012254773 -0.0014311457 0.019872567 -7.597747e-05 -0.00097002054 0.016257523 -8.4031242e-05 0.00073817029 0.016068248 -0.0015314448 -0.00070532708 0.01630752 0.00027115751 -0.00081105431 0.020195067 0.00014423898 -0.002035727 0.019007176 -0.0012254773 -0.0014311457 0.019872567 -0.0012254773 -0.0014311457 0.019872567 0.00014423898 -0.002035727 0.019007176 -0.0014111245 -0.0021381425 0.017877925 0.00014423898 -0.002035727 0.019007176 2.0356742e-05 -0.0019845776 0.017272932 -0.0014111245 -0.0021381425 0.017877925 -0.0087240264 -0.00083597732 0.02039364 -0.0013515833 -0.0017240429 0.018898655 -0.0089298906 -0.0015017311 0.018050265 -0.0013515833 -0.0017240429 0.018898655 -0.001505242 -0.0012811623 0.017107073 -0.0089298906 -0.0015017311 0.018050265 -0.001505242 -0.0012811623 0.017107073 -0.0015543029 0.00017211743 0.01655457 -0.0089298906 -0.0015017311 0.018050265 -0.0089298906 -0.0015017311 0.018050265 -0.0015543029 0.00017211743 0.01655457 -0.0089718765 0.00088490249 0.017533846 -0.0012475842 -0.00013905231 0.020073125 -0.0013515833 -0.0017240429 0.018898655 -0.0087240264 -0.00083597732 0.02039364 -0.0014499434 0.0017571256 0.017729059 -0.0014475276 0.0018358362 0.017192202 -0.0013329111 0.0021033895 0.018577088 -0.001505242 -0.0012811623 0.017107073 -0.0014111245 -0.0021381425 0.017877925 -0.0015314448 -0.00070532708 0.01630752 -0.0015543029 0.00017211743 0.01655457 -0.0015314448 -0.00070532708 0.01630752 -0.001529614 0.00071398885 0.016333813 -0.0011752504 2.8669429e-05 0.02041935 -0.0012918948 0.0013142403 0.019520208 -0.0012238554 0.001482084 0.019855615 -0.0012254773 -0.0014311457 0.019872567 -0.0013515833 -0.0017240429 0.018898655 -0.0012475842 -0.00013905231 0.020073125 -0.0012918948 0.0013142403 0.019520208 -0.0014499434 0.0017571256 0.017729059 -0.0012238554 0.001482084 0.019855615 -0.0012238554 0.001482084 0.019855615 -0.0014499434 0.0017571256 0.017729059 -0.0013329111 0.0021033895 0.018577088 -0.0011752504 2.8669429e-05 0.02041935 -0.0012475842 -0.00013905231 0.020073125 -0.0012918948 0.0013142403 0.019520208 -0.0014499434 0.0017571256 0.017729059 -0.001529614 0.00071398885 0.016333813 -0.0014475276 0.0018358362 0.017192202 -0.0014499434 0.0017571256 0.017729059 -0.0015543029 0.00017211743 0.01655457 -0.001529614 0.00071398885 0.016333813 -0.0012254773 -0.0014311457 0.019872567 -0.0014111245 -0.0021381425 0.017877925 -0.0013515833 -0.0017240429 0.018898655 -0.0011752504 2.8669429e-05 0.02041935 -0.0012254773 -0.0014311457 0.019872567 -0.0012475842 -0.00013905231 0.020073125 -0.0013515833 -0.0017240429 0.018898655 -0.0014111245 -0.0021381425 0.017877925 -0.001505242 -0.0012811623 0.017107073 -0.001505242 -0.0012811623 0.017107073 -0.0015314448 -0.00070532708 0.01630752 -0.0015543029 0.00017211743 0.01655457 -0.0087240264 -0.00083597732 0.02039364 -0.0089298906 -0.0015017311 0.018050265 -0.0089718765 0.00088490249 0.017533846 -0.0087240264 -0.00083597732 0.02039364 -0.0089718765 0.00088490249 0.017533846 -0.0087671457 0.0015506694 0.01987727 -0.011020992 0.0022702843 0.016899819 -0.0092707919 2.4911511e-05 0.019000612 -0.0091917031 0.0088292202 0.018991174 -0.011020992 0.0022702843 0.016899819 -0.0091917031 0.0088292202 0.018991174 -0.01097295 0.0087850131 0.016861921 -0.010638184 0.0022898859 0.021390598 -0.010576099 0.0087852431 0.021392584 -0.0091917031 0.0088292202 0.018991174 -0.0092707919 2.4911511e-05 0.019000612 -0.010638184 0.0022898859 0.021390598 -0.0091917031 0.0088292202 0.018991174 -0.0092041716 -0.0087841265 0.018997334 -0.010594975 -0.0087294513 0.021399153 -0.010642852 -0.0022354743 0.021392308 -0.0092041716 -0.0087841265 0.018997334 -0.010642852 -0.0022354743 0.021392308 -0.0092707919 2.4911511e-05 0.019000612 -0.0092041716 -0.0087841265 0.018997334 -0.0092707919 2.4911511e-05 0.019000612 -0.011027653 -0.0022219338 0.016898161 -0.010988983 -0.0087326625 0.016872428 -0.0092041716 -0.0087841265 0.018997334 -0.011027653 -0.0022219338 0.016898161 + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785

+
+
+
+
+ + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + + + + + + + + + + + + + +
diff --git a/external/rlbench/urdfs/panda/meshes/Pandalink0visual_vis_1.dae b/external/rlbench/urdfs/panda/meshes/Pandalink0visual_vis_1.dae new file mode 100644 index 0000000000000000000000000000000000000000..dd0a76055c2c22bcac4fa4b81a0df8f10ac6e05c --- /dev/null +++ b/external/rlbench/urdfs/panda/meshes/Pandalink0visual_vis_1.dae @@ -0,0 +1,84 @@ + + + + + Assimp + Assimp Exporter + + 2023-09-26T11:24:21 + 2023-09-26T11:24:21 + + Y_UP + + + + + + + + 0 0 0 4.5895327e-41 + + + 0.98000002 0.98000002 0.98000002 4.5893926e-41 + + + 0.98000002 0.98000002 0.98000002 4.5893926e-41 + + + 0.25 0.25 0.25 3.6295857e-33 + + + + + + + + + + + + + + + + -0.032449909 0.077617526 -0.030745493 -0.032665201 0.077615112 -0.030074714 -0.031875972 0.078918405 -0.030963257 -0.032080952 0.078974828 -0.030843478 -0.032449909 0.077617526 -0.030745493 -0.031875972 0.078918405 -0.030963257 -0.032923643 0.077600487 -0.026188917 -0.033049118 0.077595897 -0.024967514 -0.029998418 0.078902833 -0.026329918 -0.035527889 0.07891167 -0.029175136 -0.035140179 0.077609465 -0.028581273 -0.035070479 0.077605881 -0.027649036 -0.03552765 0.078958452 -0.028973619 -0.035140179 0.077609465 -0.028581273 -0.035527889 0.07891167 -0.029175136 -0.036078572 0.077608317 -0.02825387 -0.035140179 0.077609465 -0.028581273 -0.03552765 0.078958452 -0.028973619 -0.035804212 0.078613199 -0.025242729 -0.036078572 0.077608317 -0.02825387 -0.03552765 0.078958452 -0.028973619 -0.035070479 0.077605881 -0.027649036 -0.036078572 0.077608317 -0.02825387 -0.035804212 0.078613199 -0.025242729 -0.029998418 0.078902833 -0.026329918 -0.033049118 0.077595897 -0.024967514 -0.033594027 0.077597991 -0.025537198 -0.033796255 0.077812798 -0.029468944 -0.033368703 0.077615172 -0.03011132 -0.032449909 0.077617526 -0.030745493 -0.032665201 0.077615112 -0.030074714 -0.033368703 0.077615172 -0.03011132 -0.033796255 0.077812798 -0.029468944 -0.034087539 0.077809907 -0.028753068 -0.033602852 0.077606894 -0.027885798 -0.032434691 0.077608362 -0.028274292 -0.034087539 0.077809907 -0.028753068 -0.032923643 0.077600487 -0.026188917 -0.033602852 0.077606894 -0.027885798 -0.032923643 0.077600487 -0.026188917 -0.032768127 0.077605456 -0.027512645 -0.033602852 0.077606894 -0.027885798 -0.029998418 0.078902833 -0.026329918 -0.033594027 0.077597991 -0.025537198 -0.033986088 0.078898355 -0.025626065 -0.032923643 0.077600487 -0.026188917 -0.033986088 0.078898355 -0.025626065 -0.033594027 0.077597991 -0.025537198 -0.031875972 0.078918405 -0.030963257 -0.032665201 0.077615112 -0.030074714 -0.033796255 0.077812798 -0.029468944 -0.032080952 0.078974828 -0.030843478 -0.031812258 0.078919053 -0.031159908 -0.032449909 0.077617526 -0.030745493 -0.035529692 0.078913912 -0.029787332 -0.035527889 0.07891167 -0.029175136 -0.034272201 0.077811234 -0.029056158 -0.035527889 0.07891167 -0.029175136 -0.035070479 0.077605881 -0.027649036 -0.034272201 0.077811234 -0.029056158 -0.034272201 0.077811234 -0.029056158 -0.035070479 0.077605881 -0.027649036 -0.035804212 0.078613199 -0.025242729 -0.035804212 0.078613199 -0.025242729 -0.03423791 0.078899451 -0.025751079 -0.032923643 0.077600487 -0.026188917 -0.033689566 0.070087351 -0.022703957 -0.033582158 0.070092328 -0.024085503 -0.036812827 0.070093088 -0.024210168 -0.032923643 0.077600487 -0.026188917 -0.029998418 0.078902833 -0.026329918 -0.030524608 0.078901008 -0.02632661 -0.030524608 0.078901008 -0.02632661 -0.030712672 0.077609554 -0.028620504 -0.032768127 0.077605456 -0.027512645 -0.030712672 0.077609554 -0.028620504 -0.030118164 0.07731846 -0.03097507 -0.032768127 0.077605456 -0.027512645 -0.031812258 0.078919053 -0.031159908 -0.033796255 0.077812798 -0.029468944 -0.030118164 0.07731846 -0.03097507 -0.028868806 0.071453363 -0.028297631 -0.030118164 0.07731846 -0.03097507 -0.029998418 0.078902833 -0.026329918 -0.033420917 0.071429111 -0.024000473 -0.029998418 0.078902833 -0.026329918 -0.034321312 0.078896321 -0.02503188 -0.033689566 0.070087351 -0.022703957 -0.033013158 0.070092157 -0.023959052 -0.033280976 0.07009194 -0.02386681 -0.033689566 0.070087351 -0.022703957 -0.033280976 0.07009194 -0.02386681 -0.033582158 0.070092328 -0.024085503 -0.033420917 0.071429111 -0.024000473 -0.028868806 0.071453363 -0.028297631 -0.029998418 0.078902833 -0.026329918 -0.028868806 0.071453363 -0.028297631 -0.033209562 0.071468115 -0.032216482 -0.030118164 0.07731846 -0.03097507 -0.033209562 0.071468115 -0.032216482 -0.031812258 0.078919053 -0.031159908 -0.030118164 0.07731846 -0.03097507 -0.033209562 0.071468115 -0.032216482 -0.035529692 0.078913912 -0.029787332 -0.031812258 0.078919053 -0.031159908 -0.033689566 0.070087351 -0.022703957 -0.031815059 0.070089154 -0.024065571 -0.033013158 0.070092157 -0.023959052 -0.033209562 0.071468115 -0.032216482 -0.03713131 0.071451768 -0.027868373 -0.035529692 0.078913912 -0.029787332 -0.035529692 0.078913912 -0.029787332 -0.03713131 0.071451768 -0.027868373 -0.035804212 0.078613199 -0.025242729 -0.03713131 0.071451768 -0.027868373 -0.033420917 0.071429111 -0.024000473 -0.035804212 0.078613199 -0.025242729 -0.033420917 0.071429111 -0.024000473 -0.034321312 0.078896321 -0.02503188 -0.035804212 0.078613199 -0.025242729 -0.028545562 0.07009504 -0.024993844 -0.027597491 0.070109889 -0.028709816 -0.031815059 0.070089154 -0.024065571 -0.034087539 0.077809907 -0.028753068 -0.030118164 0.07731846 -0.03097507 -0.033796255 0.077812798 -0.029468944 -0.032768127 0.077605456 -0.027512645 -0.030118164 0.07731846 -0.03097507 -0.034087539 0.077809907 -0.028753068 -0.033796255 0.077812798 -0.029468944 -0.035529692 0.078913912 -0.029787332 -0.034272201 0.077811234 -0.029056158 -0.030524608 0.078901008 -0.02632661 -0.032768127 0.077605456 -0.027512645 -0.032923643 0.077600487 -0.026188917 -0.032923643 0.077600487 -0.026188917 -0.034272201 0.077811234 -0.029056158 -0.035804212 0.078613199 -0.025242729 -0.034087539 0.077809907 -0.028753068 -0.034272201 0.077811234 -0.029056158 -0.032923643 0.077600487 -0.026188917 -0.028545562 0.07009504 -0.024993844 -0.031815059 0.070089154 -0.024065571 -0.033689566 0.070087351 -0.022703957 -0.032768127 0.077605456 -0.027512645 -0.034087539 0.077809907 -0.028753068 -0.032434691 0.077608362 -0.028274292 -0.030010346 0.077608533 -0.028371776 -0.029998418 0.078902833 -0.026329918 -0.030712672 0.077609554 -0.028620504 -0.029998418 0.078902833 -0.026329918 -0.030010346 0.077608533 -0.028371776 -0.030395456 0.078901388 -0.02642782 -0.030712672 0.077609554 -0.028620504 -0.029998418 0.078902833 -0.026329918 -0.030118164 0.07731846 -0.03097507 -0.031812258 0.078919053 -0.031159908 -0.031875972 0.078918405 -0.030963257 -0.033796255 0.077812798 -0.029468944 -0.030524608 0.078901008 -0.02632661 -0.030395456 0.078901388 -0.02642782 -0.030712672 0.077609554 -0.028620504 -0.032923643 0.077600487 -0.026188917 -0.03423791 0.078899451 -0.025751079 -0.033986088 0.078898355 -0.025626065 -0.030395456 0.078901388 -0.02642782 -0.030010346 0.077608533 -0.028371776 -0.030644782 0.07760527 -0.027472921 -0.030395456 0.078901388 -0.02642782 -0.030644782 0.07760527 -0.027472921 -0.030712672 0.077609554 -0.028620504 -0.033796255 0.077812798 -0.029468944 -0.032449909 0.077617526 -0.030745493 -0.035529692 0.078913912 -0.029787332 -0.035804212 0.078613199 -0.025242729 -0.03552765 0.078958452 -0.028973619 -0.035529692 0.078913912 -0.029787332 -0.034321312 0.078896321 -0.02503188 -0.03423791 0.078899451 -0.025751079 -0.035804212 0.078613199 -0.025242729 -0.032449909 0.077617526 -0.030745493 -0.031812258 0.078919053 -0.031159908 -0.035529692 0.078913912 -0.029787332 -0.029998418 0.078902833 -0.026329918 -0.033986088 0.078898355 -0.025626065 -0.034321312 0.078896321 -0.02503188 -0.0050151497 -0.061930366 -0.0042087031 -0.0050201267 -0.061772455 -0.0042659463 -0.004952088 -0.061751239 -0.0042012315 -0.0040302351 -0.062081479 -0.0052063842 -0.0040261969 -0.062249564 -0.0051469328 -0.0039621666 -0.06206017 -0.0051417523 -0.0010567904 -0.06408409 -0.013667062 -0.012703534 -0.064109743 -0.014069423 -0.0040159374 -0.062910706 -0.015964514 -0.012703534 -0.064109743 -0.014069423 -0.012755819 -0.062451441 -0.014538152 -0.0040159374 -0.062910706 -0.015964514 -0.008243449 -0.05348815 -0.0053216964 -0.0094157569 -0.05617436 -0.013498786 -0.0093650296 -0.055703767 -0.0040556742 -0.0094157569 -0.05617436 -0.013498786 -0.0053417087 -0.056288015 -0.013844677 -0.0068515688 -0.059033316 -0.014191043 -0.0053417087 -0.056288015 -0.013844677 -0.0027208328 -0.058414746 -0.01230796 -0.0068515688 -0.059033316 -0.014191043 -0.0053417087 -0.056288015 -0.013844677 -0.0023107603 -0.054823864 -0.0091704493 -0.0027208328 -0.058414746 -0.01230796 -0.0094157569 -0.05617436 -0.013498786 -0.0068515688 -0.059033316 -0.014191043 -0.01288785 -0.057199422 -0.0086087631 -0.0023107603 -0.054823864 -0.0091704493 -0.0068515688 -0.055534855 -0.0035416791 -0.0014478192 -0.057040982 -0.0081265466 -0.0023107603 -0.054823864 -0.0091704493 -0.008243449 -0.05348815 -0.0053216964 -0.0068515688 -0.055534855 -0.0035416791 -0.008243449 -0.05348815 -0.0053216964 -0.0093650296 -0.055703767 -0.0040556742 -0.0068515688 -0.055534855 -0.0035416791 -0.0023107603 -0.054823864 -0.0091704493 -0.0014478192 -0.057040982 -0.0081265466 -0.0027208328 -0.058414746 -0.01230796 -0.0093650296 -0.055703767 -0.0040556742 -0.0094157569 -0.05617436 -0.013498786 -0.01288785 -0.057199422 -0.0086087631 0.0005390048 -0.052242115 -0.0075738393 -0.0025872588 -0.052520782 -0.0033802511 0.00015664101 -0.054083731 -0.013651657 -0.00084497035 -0.067963697 -0.0086948555 -0.0010567904 -0.06408409 -0.013667062 0.0018860102 -0.062401686 -0.0088518402 -0.036812827 0.070093088 -0.024210168 -0.031815059 0.070089154 -0.024065571 -0.033280976 0.07009194 -0.02386681 -0.0043550879 -0.070055395 -0.011536498 -0.0083883516 -0.072710074 -0.010422438 -0.01082344 -0.063885413 -0.012940543 -0.00084497035 -0.067963697 -0.0086948555 -0.0045923665 -0.064104393 -0.013607494 -0.0010567904 -0.06408409 -0.013667062 -0.00084497035 -0.067963697 -0.0086948555 -0.0043550879 -0.070055395 -0.011536498 -0.0045923665 -0.064104393 -0.013607494 -0.012695443 -0.069302514 -0.0092450511 -0.012703534 -0.064109743 -0.014069423 -0.01082344 -0.063885413 -0.012940543 -0.012695443 -0.069302514 -0.0092450511 -0.013844129 -0.067506701 -0.0037784125 -0.012703534 -0.064109743 -0.014069423 -0.0043550879 -0.070055395 -0.011536498 -0.01082344 -0.063885413 -0.012940543 -0.0045923665 -0.064104393 -0.013607494 -0.0036979318 -0.053941123 -0.014710387 0.00015664101 -0.054083731 -0.013651657 -0.0026027709 -0.057779018 -0.015758002 0.00015664101 -0.054083731 -0.013651657 0.00076054037 -0.056511462 -0.011359705 -0.0026027709 -0.057779018 -0.015758002 -0.0025872588 -0.052520782 -0.0033802511 0.00076054037 -0.056511462 -0.011359705 0.00015664101 -0.054083731 -0.013651657 -0.0083883516 -0.072710074 -0.010422438 -0.012695443 -0.069302514 -0.0092450511 -0.01082344 -0.063885413 -0.012940543 -0.0072625428 -0.065830261 0.0013249731 -0.0017250776 -0.066572249 -0.00093355385 -0.0054389238 -0.059899699 -0.00080776308 -0.013844129 -0.067506701 -0.0037784125 -0.011607174 -0.060363468 -0.0022197734 -0.012703534 -0.064109743 -0.014069423 -0.013844129 -0.067506701 -0.0037784125 -0.011729185 -0.066392526 -0.00038692341 -0.011607174 -0.060363468 -0.0022197734 -0.0017250776 -0.066572249 -0.00093355385 0.0018860102 -0.062401686 -0.0088518402 -0.0054389238 -0.059899699 -0.00080776308 -0.032583296 0.071429186 -0.02401218 -0.03290141 0.070129402 -0.023593528 -0.031815059 0.070089154 -0.024065571 -0.011729185 -0.066392526 -0.00038692341 -0.0072625428 -0.065830261 0.0013249731 -0.011607174 -0.060363468 -0.0022197734 -0.03290141 0.070129402 -0.023593528 -0.036812827 0.070093088 -0.024210168 -0.033280976 0.07009194 -0.02386681 -0.0072625428 -0.065830261 0.0013249731 -0.0054389238 -0.059899699 -0.00080776308 -0.011607174 -0.060363468 -0.0022197734 -0.0017250776 -0.066572249 -0.00093355385 -0.00084497035 -0.067963697 -0.0086948555 0.0018860102 -0.062401686 -0.0088518402 0.00076054037 -0.056511462 -0.011359705 0.00010097027 -0.058288507 -0.012459519 -0.0026027709 -0.057779018 -0.015758002 0.00076054037 -0.056511462 -0.011359705 -0.0025873929 -0.053945657 -0.0029121696 0.00043022633 -0.056377679 -0.0059904796 -0.0026027709 -0.057779018 -0.015758002 0.00010097027 -0.058288507 -0.012459519 -0.0034716874 -0.060321778 -0.014914788 0.00010097027 -0.058288507 -0.012459519 0.00076054037 -0.056511462 -0.011359705 0.00043022633 -0.056377679 -0.0059904796 -0.0025873929 -0.053945657 -0.0029121696 -0.0034729838 -0.05614309 -0.002194012 0.00043022633 -0.056377679 -0.0059904796 -0.0025872588 -0.052520782 -0.0033802511 -0.0025873929 -0.053945657 -0.0029121696 0.00076054037 -0.056511462 -0.011359705 -0.00093556941 -0.059541363 -0.0029212555 -0.0034729838 -0.05614309 -0.002194012 -0.010399219 -0.056142986 -0.0021892574 -0.013523757 -0.061216965 -0.0080219945 -0.011110254 -0.059490629 -0.0027666893 -0.010399219 -0.056142986 -0.0021892574 -0.00093556941 -0.059541363 -0.0029212555 0.00043022633 -0.056377679 -0.0059904796 -0.0034729838 -0.05614309 -0.002194012 -0.00093556941 -0.059541363 -0.0029212555 -0.00079037249 -0.061722253 -0.0095600225 0.00043022633 -0.056377679 -0.0059904796 -0.013523757 -0.061216965 -0.0080219945 -0.010399219 -0.056142986 -0.0021892574 -0.012825012 -0.059160564 -0.011374101 -0.011110254 -0.059490629 -0.0027666893 -0.00093556941 -0.059541363 -0.0029212555 -0.010399219 -0.056142986 -0.0021892574 -0.013183367 -0.056180224 -0.0038649039 -0.011512171 -0.052839011 -0.0032659264 -0.015017573 -0.055296313 -0.010132235 -0.015017573 -0.055296313 -0.010132235 -0.012825012 -0.059160564 -0.011374101 -0.013183367 -0.056180224 -0.0038649039 -0.012703534 -0.064109743 -0.014069423 -0.0045923665 -0.064104393 -0.013607494 -0.01082344 -0.063885413 -0.012940543 -0.012854703 -0.059767615 -0.00083765195 -0.012703534 -0.064109743 -0.014069423 -0.011607174 -0.060363468 -0.0022197734 -0.012703534 -0.064109743 -0.014069423 -0.0010567904 -0.06408409 -0.013667062 -0.0045923665 -0.064104393 -0.013607494 -0.012854703 -0.059767615 -0.00083765195 -0.011607174 -0.060363468 -0.0022197734 -0.003928259 -0.059258707 0.00071571121 -0.011607174 -0.060363468 -0.0022197734 -0.0054389238 -0.059899699 -0.00080776308 -0.003928259 -0.059258707 0.00071571121 -0.0054389238 -0.059899699 -0.00080776308 0.0018860102 -0.062401686 -0.0088518402 -0.003928259 -0.059258707 0.00071571121 -0.003928259 -0.059258707 0.00071571121 -0.001208894 -0.058100905 -0.0013133642 -0.010185421 -0.057618111 0.00017473525 -0.010185421 -0.057618111 0.00017473525 -0.001208894 -0.058100905 -0.0013133642 -0.00093556941 -0.059541363 -0.0029212555 0.0018832684 -0.059758436 -0.006362367 -0.0040159374 -0.062910706 -0.015964514 -0.0030304939 -0.063188724 -0.014023839 -0.0030304939 -0.063188724 -0.014023839 -0.0040159374 -0.062910706 -0.015964514 -0.012755819 -0.062451441 -0.014538152 0.0018860102 -0.062401686 -0.0088518402 -0.0040159374 -0.062910706 -0.015964514 0.0018832684 -0.059758436 -0.006362367 0.0018860102 -0.062401686 -0.0088518402 -0.0010567904 -0.06408409 -0.013667062 -0.0040159374 -0.062910706 -0.015964514 -0.003928259 -0.059258707 0.00071571121 0.0018832684 -0.059758436 -0.006362367 -0.001208894 -0.058100905 -0.0013133642 -0.003928259 -0.059258707 0.00071571121 0.0018860102 -0.062401686 -0.0088518402 0.0018832684 -0.059758436 -0.006362367 0.0018832684 -0.059758436 -0.006362367 -0.00093556941 -0.059541363 -0.0029212555 -0.001208894 -0.058100905 -0.0013133642 -0.015951283 -0.060679331 -0.009145 -0.012854703 -0.059767615 -0.00083765195 -0.010185421 -0.057618111 0.00017473525 -0.012854703 -0.059767615 -0.00083765195 -0.003928259 -0.059258707 0.00071571121 -0.010185421 -0.057618111 0.00017473525 -0.012703534 -0.064109743 -0.014069423 -0.015951283 -0.060679331 -0.009145 -0.012755819 -0.062451441 -0.014538152 -0.015951283 -0.060679331 -0.009145 -0.012703534 -0.064109743 -0.014069423 -0.012854703 -0.059767615 -0.00083765195 0.0018832684 -0.059758436 -0.006362367 -0.00079037249 -0.061722253 -0.0095600225 -0.00093556941 -0.059541363 -0.0029212555 -0.012755819 -0.062451441 -0.014538152 -0.011230465 -0.062647067 -0.012374977 -0.0030304939 -0.063188724 -0.014023839 -0.011230465 -0.062647067 -0.012374977 -0.012755819 -0.062451441 -0.014538152 -0.013523757 -0.061216965 -0.0080219945 -0.013523757 -0.061216965 -0.0080219945 -0.012755819 -0.062451441 -0.014538152 -0.015951283 -0.060679331 -0.009145 -0.00093556941 -0.059541363 -0.0029212555 -0.011110254 -0.059490629 -0.0027666893 -0.010185421 -0.057618111 0.00017473525 -0.013523757 -0.061216965 -0.0080219945 -0.015951283 -0.060679331 -0.009145 -0.011110254 -0.059490629 -0.0027666893 -0.011110254 -0.059490629 -0.0027666893 -0.015951283 -0.060679331 -0.009145 -0.010185421 -0.057618111 0.00017473525 -0.0030304939 -0.063188724 -0.014023839 -0.00079037249 -0.061722253 -0.0095600225 0.0018832684 -0.059758436 -0.006362367 -0.012825012 -0.059160564 -0.011374101 -0.015017573 -0.055296313 -0.010132235 -0.011433478 -0.05884273 -0.015403159 -0.011434078 -0.057418205 -0.015871529 -0.011433478 -0.05884273 -0.015403159 -0.015017573 -0.055296313 -0.010132235 -0.036812827 0.070093088 -0.024210168 -0.03290141 0.070129402 -0.023593528 -0.032583296 0.071429186 -0.02401218 -0.011405416 -0.05145726 -0.0037268007 -0.015017573 -0.055296313 -0.010132235 -0.011512171 -0.052839011 -0.0032659264 -0.013943218 -0.051749375 -0.0064308653 -0.011434078 -0.057418205 -0.015871529 -0.015017573 -0.055296313 -0.010132235 -0.013943218 -0.051749375 -0.0064308653 -0.015017573 -0.055296313 -0.010132235 -0.011405416 -0.05145726 -0.0037268007 -0.00079037249 -0.061722253 -0.0095600225 -0.0034716874 -0.060321778 -0.014914788 0.00043022633 -0.056377679 -0.0059904796 -0.011230465 -0.062647067 -0.012374977 -0.013523757 -0.061216965 -0.0080219945 -0.012825012 -0.059160564 -0.011374101 -0.00079037249 -0.061722253 -0.0095600225 -0.0030304939 -0.063188724 -0.014023839 -0.0034716874 -0.060321778 -0.014914788 -0.0030304939 -0.063188724 -0.014023839 -0.011230465 -0.062647067 -0.012374977 -0.0034716874 -0.060321778 -0.014914788 -0.009492401 -0.050972711 -0.0056746248 -0.01288785 -0.057199422 -0.0086087631 -0.012897499 -0.052467968 -0.010226506 -0.0093650296 -0.055703767 -0.0040556742 -0.01288785 -0.057199422 -0.0086087631 -0.009492401 -0.050972711 -0.0056746248 -0.0068515688 -0.055534855 -0.0035416791 -0.0093650296 -0.055703767 -0.0040556742 -0.009492401 -0.050972711 -0.0056746248 -0.0031457618 -0.051263172 -0.0065586264 -0.0068515688 -0.055534855 -0.0035416791 -0.009492401 -0.050972711 -0.0056746248 -0.0014478192 -0.057040982 -0.0081265466 -0.0068515688 -0.055534855 -0.0035416791 -0.0031457618 -0.051263172 -0.0065586264 -0.0016859919 -0.053058904 -0.012025025 -0.0014478192 -0.057040982 -0.0081265466 -0.0031457618 -0.051263172 -0.0065586264 -0.0027208328 -0.058414746 -0.01230796 -0.0014478192 -0.057040982 -0.0081265466 -0.0016859919 -0.053058904 -0.012025025 -0.0036979318 -0.053941123 -0.014710387 -0.0027208328 -0.058414746 -0.01230796 -0.0016859919 -0.053058904 -0.012025025 -0.0068515688 -0.059033316 -0.014191043 -0.0027208328 -0.058414746 -0.01230796 -0.0036979318 -0.053941123 -0.014710387 -0.010295395 -0.05394249 -0.014715187 -0.0068515688 -0.059033316 -0.014191043 -0.0036979318 -0.053941123 -0.014710387 -0.01288785 -0.057199422 -0.0086087631 -0.0068515688 -0.059033316 -0.014191043 -0.010295395 -0.05394249 -0.014715187 -0.012897499 -0.052467968 -0.010226506 -0.01288785 -0.057199422 -0.0086087631 -0.010295395 -0.05394249 -0.014715187 -0.011433478 -0.05884273 -0.015403159 -0.0034716874 -0.060321778 -0.014914788 -0.011230465 -0.062647067 -0.012374977 -0.011433478 -0.05884273 -0.015403159 -0.011230465 -0.062647067 -0.012374977 -0.012825012 -0.059160564 -0.011374101 -0.013183367 -0.056180224 -0.0038649039 -0.012825012 -0.059160564 -0.011374101 -0.010399219 -0.056142986 -0.0021892574 -0.0034716874 -0.060321778 -0.014914788 0.00010097027 -0.058288507 -0.012459519 0.00043022633 -0.056377679 -0.0059904796 -0.0036979318 -0.053941123 -0.014710387 -0.010903057 -0.054820042 -0.016717592 -0.010295395 -0.05394249 -0.014715187 -0.0036979318 -0.053941123 -0.014710387 -0.0016859919 -0.053058904 -0.012025025 0.00015664101 -0.054083731 -0.013651657 0.00015664101 -0.054083731 -0.013651657 -0.0031457618 -0.051263172 -0.0065586264 0.0005390048 -0.052242115 -0.0075738393 0.00015664101 -0.054083731 -0.013651657 -0.0016859919 -0.053058904 -0.012025025 -0.0031457618 -0.051263172 -0.0065586264 0.0005390048 -0.052242115 -0.0075738393 -0.0031457618 -0.051263172 -0.0065586264 -0.0025872588 -0.052520782 -0.0033802511 -0.010295395 -0.05394249 -0.014715187 -0.010903057 -0.054820042 -0.016717592 -0.012897499 -0.052467968 -0.010226506 -0.0025872588 -0.052520782 -0.0033802511 -0.009492401 -0.050972711 -0.0056746248 -0.011405416 -0.05145726 -0.0037268007 -0.0025872588 -0.052520782 -0.0033802511 -0.0031457618 -0.051263172 -0.0065586264 -0.009492401 -0.050972711 -0.0056746248 -0.012897499 -0.052467968 -0.010226506 -0.013943218 -0.051749375 -0.0064308653 -0.009492401 -0.050972711 -0.0056746248 -0.009492401 -0.050972711 -0.0056746248 -0.013943218 -0.051749375 -0.0064308653 -0.011405416 -0.05145726 -0.0037268007 -0.013183367 -0.056180224 -0.0038649039 -0.010399219 -0.056142986 -0.0021892574 -0.011512171 -0.052839011 -0.0032659264 -0.010399219 -0.056142986 -0.0021892574 -0.0034729838 -0.05614309 -0.002194012 -0.011512171 -0.052839011 -0.0032659264 -0.011512171 -0.052839011 -0.0032659264 -0.0025873929 -0.053945657 -0.0029121696 -0.0025872588 -0.052520782 -0.0033802511 -0.011512171 -0.052839011 -0.0032659264 -0.0025872588 -0.052520782 -0.0033802511 -0.011405416 -0.05145726 -0.0037268007 -0.011512171 -0.052839011 -0.0032659264 -0.0034729838 -0.05614309 -0.002194012 -0.0025873929 -0.053945657 -0.0029121696 -0.012897499 -0.052467968 -0.010226506 -0.011434078 -0.057418205 -0.015871529 -0.013943218 -0.051749375 -0.0064308653 -0.012897499 -0.052467968 -0.010226506 -0.010903057 -0.054820042 -0.016717592 -0.011434078 -0.057418205 -0.015871529 -0.0034716874 -0.060321778 -0.014914788 -0.011433478 -0.05884273 -0.015403159 -0.0026027709 -0.057779018 -0.015758002 -0.0026027709 -0.057779018 -0.015758002 -0.011433478 -0.05884273 -0.015403159 -0.011434078 -0.057418205 -0.015871529 -0.0026027709 -0.057779018 -0.015758002 -0.011434078 -0.057418205 -0.015871529 -0.010903057 -0.054820042 -0.016717592 -0.0026027709 -0.057779018 -0.015758002 -0.010903057 -0.054820042 -0.016717592 -0.0036979318 -0.053941123 -0.014710387 -0.012695443 -0.069302514 -0.0092450511 -0.011522826 -0.072178923 -0.008839881 -0.012353711 -0.069847107 -0.0032224241 -0.0043550879 -0.070055395 -0.011536498 -0.00084497035 -0.067963697 -0.0086948555 -0.001646474 -0.070746563 -0.0059608798 -0.0083883516 -0.072710074 -0.010422438 -0.0043550879 -0.070055395 -0.011536498 -0.0061392337 -0.072017975 -0.0098043717 -0.0021490008 -0.059923306 -0.0050449953 -0.0051497221 -0.06113109 -0.0023132726 -0.0017121434 -0.062508278 -0.0065055266 -0.031815059 0.070089154 -0.024065571 -0.027597491 0.070109889 -0.028709816 -0.028894782 0.071447216 -0.027841335 -0.012353711 -0.069847107 -0.0032224241 -0.011729185 -0.066392526 -0.00038692341 -0.013844129 -0.067506701 -0.0037784125 -0.0074893981 -0.068737492 0.001675641 -0.0017250776 -0.066572249 -0.00093355385 -0.0072625428 -0.065830261 0.0013249731 -0.0020254403 -0.06955073 -0.0023085896 -0.00084497035 -0.067963697 -0.0086948555 -0.0017250776 -0.066572249 -0.00093355385 -0.012695443 -0.069302514 -0.0092450511 -0.012353711 -0.069847107 -0.0032224241 -0.013844129 -0.067506701 -0.0037784125 -0.0083883516 -0.072710074 -0.010422438 -0.011522826 -0.072178923 -0.008839881 -0.012695443 -0.069302514 -0.0092450511 -0.00084497035 -0.067963697 -0.0086948555 -0.0020254403 -0.06955073 -0.0023085896 -0.001646474 -0.070746563 -0.0059608798 -0.0072625428 -0.065830261 0.0013249731 -0.010066699 -0.068873577 -0.00022260763 -0.0074893981 -0.068737492 0.001675641 -0.0072625428 -0.065830261 0.0013249731 -0.011729185 -0.066392526 -0.00038692341 -0.010066699 -0.068873577 -0.00022260763 -0.0017250776 -0.066572249 -0.00093355385 -0.0034213215 -0.068963468 -0.00055531721 -0.0020254403 -0.06955073 -0.0023085896 -0.032583296 0.071429186 -0.02401218 -0.031815059 0.070089154 -0.024065571 -0.028894782 0.071447216 -0.027841335 -0.011729185 -0.066392526 -0.00038692341 -0.012353711 -0.069847107 -0.0032224241 -0.010066699 -0.068873577 -0.00022260763 -0.0017250776 -0.066572249 -0.00093355385 -0.0074893981 -0.068737492 0.001675641 -0.0034213215 -0.068963468 -0.00055531721 -0.010978941 -0.063559704 -0.0064132763 -0.0089268163 -0.06114585 -0.0023583742 -0.010806143 -0.061531469 -0.0035321885 -0.0089268163 -0.06114585 -0.0023583742 -0.010978941 -0.063559704 -0.0064132763 -0.0048912317 -0.062549815 -0.0038686451 -0.0051497221 -0.06113109 -0.0023132726 -0.0089268163 -0.06114585 -0.0023583742 -0.0017121434 -0.062508278 -0.0065055266 -0.01214058 -0.063167743 -0.0085129449 -0.010978941 -0.063559704 -0.0064132763 -0.010806143 -0.061531469 -0.0035321885 -0.0089268163 -0.06114585 -0.0023583742 -0.0048912317 -0.062549815 -0.0038686451 -0.0017121434 -0.062508278 -0.0065055266 -0.0052828193 -0.064282447 -0.011906194 -0.0048912317 -0.062549815 -0.0038686451 -0.0093856528 -0.064664401 -0.0098277284 -0.0017121434 -0.062508278 -0.0065055266 -0.0048912317 -0.062549815 -0.0038686451 -0.0052828193 -0.064282447 -0.011906194 -0.0093856528 -0.064664401 -0.0098277284 -0.010978941 -0.063559704 -0.0064132763 -0.01214058 -0.063167743 -0.0085129449 -0.0017121434 -0.062508278 -0.0065055266 -0.0052828193 -0.064282447 -0.011906194 -0.0038150474 -0.062226582 -0.012056566 -0.001646474 -0.070746563 -0.0059608798 -0.0038150474 -0.062226582 -0.012056566 -0.0061392337 -0.072017975 -0.0098043717 -0.010185134 -0.062226582 -0.012056577 -0.01214058 -0.063167743 -0.0085129449 -0.011522826 -0.072178923 -0.008839881 -0.0083883516 -0.072710074 -0.010422438 -0.010185134 -0.062226582 -0.012056577 -0.011522826 -0.072178923 -0.008839881 -0.0017121434 -0.062508278 -0.0065055266 -0.0038150474 -0.062226582 -0.012056566 -0.001646474 -0.070746563 -0.0059608798 -0.0061392337 -0.072017975 -0.0098043717 -0.010185134 -0.062226582 -0.012056577 -0.0083883516 -0.072710074 -0.010422438 -0.0020254403 -0.06955073 -0.0023085896 -0.0017121434 -0.062508278 -0.0065055266 -0.001646474 -0.070746563 -0.0059608798 -0.010185134 -0.062226582 -0.012056577 -0.0061392337 -0.072017975 -0.0098043717 -0.0038150474 -0.062226582 -0.012056566 -0.010066699 -0.068873577 -0.00022260763 -0.0089268163 -0.06114585 -0.0023583742 -0.0074893981 -0.068737492 0.001675641 -0.0021490008 -0.059923306 -0.0050449953 -0.0017121434 -0.062508278 -0.0065055266 -0.0020254403 -0.06955073 -0.0023085896 -0.010806143 -0.061531469 -0.0035321885 -0.0089268163 -0.06114585 -0.0023583742 -0.010066699 -0.068873577 -0.00022260763 -0.0034213215 -0.068963468 -0.00055531721 -0.0021490008 -0.059923306 -0.0050449953 -0.0020254403 -0.06955073 -0.0023085896 -0.012353711 -0.069847107 -0.0032224241 -0.010806143 -0.061531469 -0.0035321885 -0.010066699 -0.068873577 -0.00022260763 -0.0051497221 -0.06113109 -0.0023132726 -0.0021490008 -0.059923306 -0.0050449953 -0.0034213215 -0.068963468 -0.00055531721 -0.0074893981 -0.068737492 0.001675641 -0.0051497221 -0.06113109 -0.0023132726 -0.0034213215 -0.068963468 -0.00055531721 -0.01214058 -0.063167743 -0.0085129449 -0.010806143 -0.061531469 -0.0035321885 -0.012353711 -0.069847107 -0.0032224241 -0.0089268163 -0.06114585 -0.0023583742 -0.0051497221 -0.06113109 -0.0023132726 -0.0074893981 -0.068737492 0.001675641 -0.036812827 0.070093088 -0.024210168 -0.032583296 0.071429186 -0.02401218 -0.037108198 0.071445718 -0.027840871 -0.011522826 -0.072178923 -0.008839881 -0.01214058 -0.063167743 -0.0085129449 -0.012353711 -0.069847107 -0.0032224241 -0.010185134 -0.062226582 -0.012056577 -0.0052828193 -0.064282447 -0.011906194 -0.01214058 -0.063167743 -0.0085129449 -0.010185134 -0.062226582 -0.012056577 -0.0038150474 -0.062226582 -0.012056566 -0.0052828193 -0.064282447 -0.011906194 -0.0093856528 -0.064664401 -0.0098277284 -0.01214058 -0.063167743 -0.0085129449 -0.0052828193 -0.064282447 -0.011906194 -0.0061392337 -0.072017975 -0.0098043717 -0.0043550879 -0.070055395 -0.011536498 -0.001646474 -0.070746563 -0.0059608798 -0.0048803836 -0.062619582 -0.0036360931 -0.010415565 -0.062989004 -0.00472845 -0.0067287236 -0.069632962 -0.0015987988 -0.010415565 -0.062989004 -0.00472845 -0.0097881556 -0.06998188 -0.0016935674 -0.0067287236 -0.069632962 -0.0015987988 -0.037108198 0.071445718 -0.027840871 -0.038158126 0.070113741 -0.029727789 -0.036812827 0.070093088 -0.024210168 -0.010415565 -0.062989004 -0.00472845 -0.011098333 -0.063874707 -0.0074239159 -0.0097881556 -0.06998188 -0.0016935674 -0.011098333 -0.063874707 -0.0074239159 -0.0094182491 -0.071148492 -0.0062309494 -0.0097881556 -0.06998188 -0.0016935674 -0.0048803836 -0.062619582 -0.0036360931 -0.0067287236 -0.069632962 -0.0015987988 -0.0059555769 -0.069699638 -0.0018215314 -0.0059555769 -0.069699638 -0.0018215314 -0.0046056062 -0.070294902 -0.0036133276 -0.0048803836 -0.062619582 -0.0036360931 -0.0046056062 -0.070294902 -0.0036133276 -0.0038463473 -0.07036417 -0.0038274021 -0.0048803836 -0.062619582 -0.0036360931 -0.0031201988 -0.064073533 -0.008029636 -0.0048803836 -0.062619582 -0.0036360931 -0.0038463473 -0.07036417 -0.0038274021 -0.0091037229 -0.064755723 -0.010106105 -0.0055960417 -0.064884983 -0.010499807 -0.007278502 -0.071475834 -0.0072274227 -0.0055960417 -0.064884983 -0.010499807 -0.0064531714 -0.071541555 -0.0074205291 -0.007278502 -0.071475834 -0.0072274227 -0.0055960417 -0.064884983 -0.010499807 -0.0043296814 -0.071135707 -0.0061918087 -0.0064531714 -0.071541555 -0.0074205291 -0.0055960417 -0.064884983 -0.010499807 -0.0031201988 -0.064073533 -0.008029636 -0.0043296814 -0.071135707 -0.0061918087 -0.011098333 -0.063874707 -0.0074239159 -0.0091037229 -0.064755723 -0.010106105 -0.0094182491 -0.071148492 -0.0062309494 -0.0091037229 -0.064755723 -0.010106105 -0.007278502 -0.071475834 -0.0072274227 -0.0094182491 -0.071148492 -0.0062309494 -0.0031201988 -0.064073533 -0.008029636 -0.0038463473 -0.07036417 -0.0038274021 -0.0043296814 -0.071135707 -0.0061918087 -0.006621778 -0.070670031 -0.0047459332 -0.007278502 -0.071475834 -0.0072274227 -0.0063712597 -0.071381718 -0.0069348612 -0.006621778 -0.070670031 -0.0047459332 -0.0063712597 -0.071381718 -0.0069348612 -0.0064531714 -0.071541555 -0.0074205291 -0.0089573413 -0.070010275 -0.0027467634 -0.0070001408 -0.070452109 -0.0040513123 -0.0046072006 -0.070517376 -0.004291595 -0.0070001408 -0.070452109 -0.0040513123 -0.0089573413 -0.070010275 -0.0027467634 -0.0074418187 -0.070562646 -0.0043902937 -0.006621778 -0.070670031 -0.0047459332 -0.0046072006 -0.070517376 -0.004291595 -0.0070001408 -0.070452109 -0.0040513123 -0.006621778 -0.070670031 -0.0047459332 -0.0074418187 -0.070562646 -0.0043902937 -0.0089573413 -0.070010275 -0.0027467634 -0.0089474916 -0.07105989 -0.0059016482 -0.0086463615 -0.071304128 -0.0066861748 -0.007278502 -0.071475834 -0.0072274227 -0.007278502 -0.071475834 -0.0072274227 -0.0086463615 -0.071304128 -0.0066861748 -0.0094182491 -0.071148492 -0.0062309494 -0.0097881556 -0.06998188 -0.0016935674 -0.010048945 -0.070413768 -0.003975898 -0.0092770532 -0.070480734 -0.0041981246 -0.0092770532 -0.070480734 -0.0041981246 -0.0094464496 -0.070636392 -0.004653391 -0.0089474916 -0.07105989 -0.0059016482 -0.010048945 -0.070413768 -0.003975898 -0.0089474916 -0.07105989 -0.0059016482 -0.0094464496 -0.070636392 -0.004653391 -0.0089474916 -0.07105989 -0.0059016482 -0.010048945 -0.070413768 -0.003975898 -0.0097881556 -0.06998188 -0.0016935674 -0.0097881556 -0.06998188 -0.0016935674 -0.0089573413 -0.070010275 -0.0027467634 -0.008356519 -0.069787227 -0.0020685566 -0.0097881556 -0.06998188 -0.0016935674 -0.008356519 -0.069787227 -0.0020685566 -0.0081980824 -0.069938958 -0.0025333678 -0.0067287236 -0.069632962 -0.0015987988 -0.0081980824 -0.069938958 -0.0025333678 -0.0062044561 -0.069883771 -0.0023246899 -0.0059555769 -0.069699638 -0.0018215314 -0.0062044561 -0.069883771 -0.0023246899 -0.0046056062 -0.070294902 -0.0036133276 -0.0046056062 -0.070294902 -0.0036133276 -0.0062044561 -0.069883771 -0.0023246899 -0.0081980824 -0.069938958 -0.0025333678 -0.0043296814 -0.071135707 -0.0061918087 -0.0038463473 -0.07036417 -0.0038274021 -0.0048045516 -0.070976108 -0.0056325379 -0.0048045516 -0.070976108 -0.0056325379 -0.0038463473 -0.07036417 -0.0038274021 -0.0046072006 -0.070517376 -0.004291595 -0.006621778 -0.070670031 -0.0047459332 -0.0064531714 -0.071541555 -0.0074205291 -0.0048045516 -0.070976108 -0.0056325379 -0.0094182491 -0.071148492 -0.0062309494 -0.0089474916 -0.07105989 -0.0059016482 -0.0097881556 -0.06998188 -0.0016935674 -0.006621778 -0.070670031 -0.0047459332 -0.0048045516 -0.070976108 -0.0056325379 -0.0046072006 -0.070517376 -0.004291595 -0.0089474916 -0.07105989 -0.0059016482 -0.007278502 -0.071475834 -0.0072274227 -0.006621778 -0.070670031 -0.0047459332 -0.0089573413 -0.070010275 -0.0027467634 -0.0046072006 -0.070517376 -0.004291595 -0.0081980824 -0.069938958 -0.0025333678 -0.0089474916 -0.07105989 -0.0059016482 -0.006621778 -0.070670031 -0.0047459332 -0.0089573413 -0.070010275 -0.0027467634 -0.0089474916 -0.07105989 -0.0059016482 -0.0089573413 -0.070010275 -0.0027467634 -0.0092770532 -0.070480734 -0.0041981246 -0.0046072006 -0.070517376 -0.004291595 -0.0046056062 -0.070294902 -0.0036133276 -0.0081980824 -0.069938958 -0.0025333678 -0.035817981 0.078600906 -0.033852912 -0.034368999 0.07012713 -0.033345833 -0.02956409 0.078599095 -0.033509236 -0.034368999 0.07012713 -0.033345833 -0.030696932 0.070125967 -0.033014424 -0.02956409 0.078599095 -0.033509236 -0.027600825 0.078602985 -0.026820228 -0.028545562 0.07009504 -0.024993844 -0.028589189 0.07859496 -0.024705919 -0.027597491 0.070109889 -0.028709816 -0.028545562 0.07009504 -0.024993844 -0.027600825 0.078602985 -0.026820228 -0.0092770532 -0.070480734 -0.0041981246 -0.0089573413 -0.070010275 -0.0027467634 -0.0097881556 -0.06998188 -0.0016935674 -0.0097881556 -0.06998188 -0.0016935674 -0.0081980824 -0.069938958 -0.0025333678 -0.0067287236 -0.069632962 -0.0015987988 -0.0052453429 -0.071078166 -0.0059651309 -0.0064531714 -0.071541555 -0.0074205291 -0.0043296814 -0.071135707 -0.0061918087 -0.0064531714 -0.071541555 -0.0074205291 -0.0052453429 -0.071078166 -0.0059651309 -0.0048045516 -0.070976108 -0.0056325379 -0.022676878 -0.042286061 0.040954381 -0.026954297 -0.04833233 0.041773655 -0.018311046 -0.04817231 0.042260744 -0.022676878 -0.042286061 0.040954381 -0.030074716 -0.043313384 0.037827466 -0.026954297 -0.04833233 0.041773655 -0.030696932 0.070125967 -0.033014424 -0.027597491 0.070109889 -0.028709816 -0.02956409 0.078599095 -0.033509236 -0.028545562 0.07009504 -0.024993844 -0.033689566 0.070087351 -0.022703957 -0.028589189 0.07859496 -0.024705919 -0.030074716 -0.043313384 0.037827466 -0.032752328 -0.050237391 0.03586803 -0.026954297 -0.04833233 0.041773655 -0.028589189 0.07859496 -0.024705919 -0.033689566 0.070087351 -0.022703957 -0.034464058 0.078587495 -0.022714209 -0.030074716 -0.043313384 0.037827466 -0.032793824 -0.044628553 0.033823512 -0.032752328 -0.050237391 0.03586803 -0.02956409 0.078599095 -0.033509236 -0.027597491 0.070109889 -0.028709816 -0.027600825 0.078602985 -0.026820228 -0.031462312 -0.045834783 0.024384419 -0.031728815 -0.053538214 0.025926601 -0.032827746 -0.052519679 0.028065782 -0.031462312 -0.045834783 0.024384419 -0.030074786 -0.048445258 0.022205185 -0.031728815 -0.053538214 0.025926601 -0.030074786 -0.048445258 0.022205185 -0.024101924 -0.05512045 0.021110332 -0.031728815 -0.053538214 0.025926601 -0.030074786 -0.048445258 0.022205185 -0.024887402 -0.049371548 0.019385628 -0.024101924 -0.05512045 0.021110332 -0.023439705 -0.049526837 0.043264616 -0.030903388 -0.050809156 0.039360888 -0.02710063 -0.051471166 0.042792764 -0.030903388 -0.050809156 0.039360888 -0.032969881 -0.054563124 0.036584411 -0.02710063 -0.051471166 0.042792764 -0.030903388 -0.050809156 0.039360888 -0.033250272 -0.052299898 0.034822997 -0.032969881 -0.054563124 0.036584411 -0.033250272 -0.052299898 0.034822997 -0.033204567 -0.056524765 0.03061319 -0.032969881 -0.054563124 0.036584411 -0.033250272 -0.052299898 0.034822997 -0.029867109 -0.055750445 0.024318878 -0.033204567 -0.056524765 0.03061319 -0.029867109 -0.055750445 0.024318878 -0.031284325 -0.056839298 0.026451493 -0.033204567 -0.056524765 0.03061319 -0.029867109 -0.055750445 0.024318878 -0.025951024 -0.059035558 0.02297036 -0.031284325 -0.056839298 0.026451493 -0.029867109 -0.055750445 0.024318878 -0.017991703 -0.059033558 0.022976395 -0.025951024 -0.059035558 0.02297036 -0.029867109 -0.055750445 0.024318878 -0.021559834 -0.05670372 0.021417296 -0.017991703 -0.059033558 0.022976395 -0.01367449 -0.056421738 0.032689136 -0.013642721 -0.055950377 0.034123827 -0.013669152 -0.042029087 0.027958838 -0.021559834 -0.05670372 0.021417296 -0.013063423 -0.055396624 0.025396032 -0.017991703 -0.059033558 0.022976395 -0.010733943 -0.055471081 0.03061658 -0.010940362 -0.052031614 0.035639595 -0.011123534 -0.053512823 0.036577925 -0.010940362 -0.052031614 0.035639595 -0.017021962 -0.051459949 0.042826783 -0.011123534 -0.053512823 0.036577925 -0.010940362 -0.052031614 0.035639595 -0.017522812 -0.049780771 0.042491309 -0.017021962 -0.051459949 0.042826783 -0.017522812 -0.049780771 0.042491309 -0.023439705 -0.049526837 0.043264616 -0.017021962 -0.051459949 0.042826783 -0.028803118 -0.054655679 0.038064882 -0.030403908 -0.05624909 0.033214528 -0.029629294 -0.040692549 0.032027587 -0.029874802 -0.042696048 0.025928596 -0.027591463 -0.058146421 0.027439233 -0.026042167 -0.044094373 0.021671928 -0.025440797 -0.039393146 0.035982799 -0.028803118 -0.054655679 0.038064882 -0.029629294 -0.040692549 0.032027587 -0.024456024 -0.053688869 0.041008256 -0.028803118 -0.054655679 0.038064882 -0.025440797 -0.039393146 0.035982799 -0.030403908 -0.05624909 0.033214528 -0.027591463 -0.058146421 0.027439233 -0.029874802 -0.042696048 0.025928596 -0.029629294 -0.040692549 0.032027587 -0.030403908 -0.05624909 0.033214528 -0.029874802 -0.042696048 0.025928596 -0.026042167 -0.044094373 0.021671928 -0.018896215 -0.058614433 0.026014505 -0.020312496 -0.044367827 0.020839091 -0.027591463 -0.058146421 0.027439233 -0.018896215 -0.058614433 0.026014505 -0.026042167 -0.044094373 0.021671928 -0.021814458 -0.039171498 0.03665771 -0.024456024 -0.053688869 0.041008256 -0.025440797 -0.039393146 0.035982799 -0.015110016 -0.043278813 0.024154285 -0.01367449 -0.056421738 0.032689136 -0.013669152 -0.042029087 0.027958838 -0.015165735 -0.057704769 0.028783586 -0.01367449 -0.056421738 0.032689136 -0.015110016 -0.043278813 0.024154285 -0.034464058 0.078587495 -0.022714209 -0.03836244 0.0786025 -0.026728678 -0.038210161 0.077792123 -0.023729442 -0.018896215 -0.058614433 0.026014505 -0.015165735 -0.057704769 0.028783586 -0.015110016 -0.043278813 0.024154285 -0.020312496 -0.044367827 0.020839091 -0.018896215 -0.058614433 0.026014505 -0.015110016 -0.043278813 0.024154285 -0.015165735 -0.057704769 0.028783586 -0.013642721 -0.055950377 0.034123827 -0.01367449 -0.056421738 0.032689136 -0.027591463 -0.058146421 0.027439233 -0.015165735 -0.057704769 0.028783586 -0.018896215 -0.058614433 0.026014505 -0.028803118 -0.054655679 0.038064882 -0.024456024 -0.053688869 0.041008256 -0.019133326 -0.053714853 0.040929083 -0.013669152 -0.042029087 0.027958838 -0.013642721 -0.055950377 0.034123827 -0.013653345 -0.041556176 0.029398279 -0.016279757 -0.054273028 0.039229989 -0.028803118 -0.054655679 0.038064882 -0.019133326 -0.053714853 0.040929083 -0.016383089 -0.039834235 0.03463994 -0.019133326 -0.053714853 0.040929083 -0.021814458 -0.039171498 0.03665771 -0.016279757 -0.054273028 0.039229989 -0.019133326 -0.053714853 0.040929083 -0.016383089 -0.039834235 0.03463994 -0.013653345 -0.041556176 0.029398279 -0.016279757 -0.054273028 0.039229989 -0.016383089 -0.039834235 0.03463994 -0.013642721 -0.055950377 0.034123827 -0.016279757 -0.054273028 0.039229989 -0.013653345 -0.041556176 0.029398279 -0.019133326 -0.053714853 0.040929083 -0.024456024 -0.053688869 0.041008256 -0.021814458 -0.039171498 0.03665771 -0.013642721 -0.055950377 0.034123827 -0.012517452 -0.057061229 0.032825001 -0.016088843 -0.05447416 0.040700175 -0.013642721 -0.055950377 0.034123827 -0.016088843 -0.05447416 0.040700175 -0.016279757 -0.054273028 0.039229989 -0.026862983 -0.059360545 0.02582569 -0.027591463 -0.058146421 0.027439233 -0.031278495 -0.057495214 0.031503942 -0.031278495 -0.057495214 0.031503942 -0.027591463 -0.058146421 0.027439233 -0.030403908 -0.05624909 0.033214528 -0.024420902 -0.053923625 0.042376045 -0.016279757 -0.054273028 0.039229989 -0.016088843 -0.05447416 0.040700175 -0.028803118 -0.054655679 0.038064882 -0.016279757 -0.054273028 0.039229989 -0.024420902 -0.053923625 0.042376045 -0.031278495 -0.057495214 0.031503942 -0.030403908 -0.05624909 0.033214528 -0.028803118 -0.054655679 0.038064882 -0.015165735 -0.057704769 0.028783586 -0.017203677 -0.059378248 0.02577178 -0.012517452 -0.057061229 0.032825001 -0.015165735 -0.057704769 0.028783586 -0.012517452 -0.057061229 0.032825001 -0.013642721 -0.055950377 0.034123827 -0.031278495 -0.057495214 0.031503942 -0.028803118 -0.054655679 0.038064882 -0.030893147 -0.055713162 0.036928643 -0.030723579 0.077784203 -0.021678722 -0.028589189 0.07859496 -0.024705919 -0.034464058 0.078587495 -0.022714209 -0.026862983 -0.059360545 0.02582569 -0.017203677 -0.059378248 0.02577178 -0.015165735 -0.057704769 0.028783586 -0.030893147 -0.055713162 0.036928643 -0.028803118 -0.054655679 0.038064882 -0.024420902 -0.053923625 0.042376045 -0.027591463 -0.058146421 0.027439233 -0.026862983 -0.059360545 0.02582569 -0.015165735 -0.057704769 0.028783586 -0.027962517 -0.062831812 0.043454893 -0.032737788 -0.064937174 0.037046462 -0.030893147 -0.055713162 0.036928643 -0.031278495 -0.057495214 0.031503942 -0.030183855 -0.066713594 0.031638496 -0.026862983 -0.059360545 0.02582569 -0.024420902 -0.053923625 0.042376045 -0.027962517 -0.062831812 0.043454893 -0.030893147 -0.055713162 0.036928643 -0.031471789 -0.064784236 0.037512083 -0.030183855 -0.066713594 0.031638496 -0.031278495 -0.057495214 0.031503942 -0.024335444 -0.062266376 0.045176223 -0.027962517 -0.062831812 0.043454893 -0.024420902 -0.053923625 0.042376045 -0.030893147 -0.055713162 0.036928643 -0.031471789 -0.064784236 0.037512083 -0.031278495 -0.057495214 0.031503942 -0.030183855 -0.066713594 0.031638496 -0.024523191 -0.068048872 0.027574303 -0.026862983 -0.059360545 0.02582569 -0.018306844 -0.062420469 0.044707727 -0.024335444 -0.062266376 0.045176223 -0.024420902 -0.053923625 0.042376045 -0.032737788 -0.064937174 0.037046462 -0.031471789 -0.064784236 0.037512083 -0.030893147 -0.055713162 0.036928643 -0.010733943 -0.055471081 0.03061658 -0.01353078 -0.058110502 0.02578643 -0.017991703 -0.059033558 0.022976395 -0.02617811 -0.06018728 0.046058461 -0.024335444 -0.062266376 0.045176223 -0.017462134 -0.062097102 0.045691762 -0.02617811 -0.06018728 0.046058461 -0.027962517 -0.062831812 0.043454893 -0.024335444 -0.062266376 0.045176223 -0.02617811 -0.06018728 0.046058461 -0.033204556 -0.062690325 0.038438994 -0.027962517 -0.062831812 0.043454893 -0.033204556 -0.062690325 0.038438994 -0.032737788 -0.064937174 0.037046462 -0.027962517 -0.062831812 0.043454893 -0.033204556 -0.062690325 0.038438994 -0.030708909 -0.065920755 0.028604917 -0.032737788 -0.064937174 0.037046462 -0.026001137 -0.0669199 0.02556376 -0.024523191 -0.068048872 0.027574303 -0.030708909 -0.065920755 0.028604917 -0.026001137 -0.0669199 0.02556376 -0.017652802 -0.066902816 0.025615551 -0.024523191 -0.068048872 0.027574303 -0.017652802 -0.066902816 0.025615551 -0.01825738 -0.068336345 0.02669899 -0.024523191 -0.068048872 0.027574303 -0.017991703 -0.059033558 0.022976395 -0.017652802 -0.066902816 0.025615551 -0.025951024 -0.059035558 0.02297036 -0.025951024 -0.059035558 0.02297036 -0.017652802 -0.066902816 0.025615551 -0.026001137 -0.0669199 0.02556376 -0.017991703 -0.059033558 0.022976395 -0.01353078 -0.058110502 0.02578643 -0.017652802 -0.066902816 0.025615551 -0.011123534 -0.053512823 0.036577925 -0.011984408 -0.061778612 0.041214269 -0.01044935 -0.063793167 0.035081826 -0.01353078 -0.058110502 0.02578643 -0.01132375 -0.064903826 0.031700753 -0.017652802 -0.066902816 0.025615551 -0.011123534 -0.053512823 0.036577925 -0.017021962 -0.051459949 0.042826783 -0.011984408 -0.061778612 0.041214269 -0.01353078 -0.058110502 0.02578643 -0.010733943 -0.055471081 0.03061658 -0.01132375 -0.064903826 0.031700753 -0.017021962 -0.051459949 0.042826783 -0.018049102 -0.060179621 0.046081856 -0.011984408 -0.061778612 0.041214269 -0.010733943 -0.055471081 0.03061658 -0.01044935 -0.063793167 0.035081826 -0.01132375 -0.064903826 0.031700753 -0.010733943 -0.055471081 0.03061658 -0.011123534 -0.053512823 0.036577925 -0.01044935 -0.063793167 0.035081826 -0.013063423 -0.055396624 0.025396032 -0.010733943 -0.055471081 0.03061658 -0.017991703 -0.059033558 0.022976395 -0.02710063 -0.051471166 0.042792764 -0.017021962 -0.051459949 0.042826783 -0.023439705 -0.049526837 0.043264616 -0.02617811 -0.06018728 0.046058461 -0.017021962 -0.051459949 0.042826783 -0.02710063 -0.051471166 0.042792764 -0.018049102 -0.060179621 0.046081856 -0.017021962 -0.051459949 0.042826783 -0.02617811 -0.06018728 0.046058461 -0.02710063 -0.051471166 0.042792764 -0.032969881 -0.054563124 0.036584411 -0.02617811 -0.06018728 0.046058461 -0.033204567 -0.056524765 0.03061319 -0.031284325 -0.056839298 0.026451493 -0.033520758 -0.063831784 0.034964282 -0.031284325 -0.056839298 0.026451493 -0.030708909 -0.065920755 0.028604917 -0.033520758 -0.063831784 0.034964282 -0.032969881 -0.054563124 0.036584411 -0.033204556 -0.062690325 0.038438994 -0.02617811 -0.06018728 0.046058461 -0.031284325 -0.056839298 0.026451493 -0.025951024 -0.059035558 0.02297036 -0.030708909 -0.065920755 0.028604917 -0.025951024 -0.059035558 0.02297036 -0.026001137 -0.0669199 0.02556376 -0.030708909 -0.065920755 0.028604917 -0.032969881 -0.054563124 0.036584411 -0.033520758 -0.063831784 0.034964282 -0.033204556 -0.062690325 0.038438994 -0.032969881 -0.054563124 0.036584411 -0.033204567 -0.056524765 0.03061319 -0.033520758 -0.063831784 0.034964282 -0.030708909 -0.065920755 0.028604917 -0.033204556 -0.062690325 0.038438994 -0.033520758 -0.063831784 0.034964282 -0.028894782 0.071447216 -0.027841335 -0.027597491 0.070109889 -0.028709816 -0.030696932 0.070125967 -0.033014424 -0.016088843 -0.05447416 0.040700175 -0.018306844 -0.062420469 0.044707727 -0.024420902 -0.053923625 0.042376045 -0.013344415 -0.063925147 0.04012721 -0.018306844 -0.062420469 0.044707727 -0.016088843 -0.05447416 0.040700175 -0.012463439 -0.064915061 0.03711338 -0.013344415 -0.063925147 0.04012721 -0.012517452 -0.057061229 0.032825001 -0.012517452 -0.057061229 0.032825001 -0.013344415 -0.063925147 0.04012721 -0.016088843 -0.05447416 0.040700175 -0.017652802 -0.066902816 0.025615551 -0.01132375 -0.064903826 0.031700753 -0.01825738 -0.068336345 0.02669899 -0.01132375 -0.064903826 0.031700753 -0.01044935 -0.063793167 0.035081826 -0.01825738 -0.068336345 0.02669899 -0.01044935 -0.063793167 0.035081826 -0.011335377 -0.064687796 0.037805267 -0.01825738 -0.068336345 0.02669899 -0.01044935 -0.063793167 0.035081826 -0.011984408 -0.061778612 0.041214269 -0.011335377 -0.064687796 0.037805267 -0.011984408 -0.061778612 0.041214269 -0.017462134 -0.062097102 0.045691762 -0.011335377 -0.064687796 0.037805267 -0.011984408 -0.061778612 0.041214269 -0.018049102 -0.060179621 0.046081856 -0.017462134 -0.062097102 0.045691762 -0.018049102 -0.060179621 0.046081856 -0.02617811 -0.06018728 0.046058461 -0.017462134 -0.062097102 0.045691762 -0.017203677 -0.059378248 0.02577178 -0.011335377 -0.064687796 0.037805267 -0.012517452 -0.057061229 0.032825001 -0.017100804 -0.067714393 0.028592298 -0.011335377 -0.064687796 0.037805267 -0.017203677 -0.059378248 0.02577178 -0.024523191 -0.068048872 0.027574303 -0.017100804 -0.067714393 0.028592298 -0.017203677 -0.059378248 0.02577178 -0.026862983 -0.059360545 0.02582569 -0.024523191 -0.068048872 0.027574303 -0.017203677 -0.059378248 0.02577178 -0.011335377 -0.064687796 0.037805267 -0.012463439 -0.064915061 0.03711338 -0.012517452 -0.057061229 0.032825001 -0.011335377 -0.064687796 0.037805267 -0.013344415 -0.063925147 0.04012721 -0.012463439 -0.064915061 0.03711338 -0.024523191 -0.068048872 0.027574303 -0.030183855 -0.066713594 0.031638496 -0.030708909 -0.065920755 0.028604917 -0.011335377 -0.064687796 0.037805267 -0.017462134 -0.062097102 0.045691762 -0.013344415 -0.063925147 0.04012721 -0.013344415 -0.063925147 0.04012721 -0.017462134 -0.062097102 0.045691762 -0.018306844 -0.062420469 0.044707727 -0.030183855 -0.066713594 0.031638496 -0.031471789 -0.064784236 0.037512083 -0.030708909 -0.065920755 0.028604917 -0.031471789 -0.064784236 0.037512083 -0.032737788 -0.064937174 0.037046462 -0.030708909 -0.065920755 0.028604917 -0.030696932 0.070125967 -0.033014424 -0.034368999 0.07012713 -0.033345833 -0.037108198 0.071445718 -0.027840871 -0.018306844 -0.062420469 0.044707727 -0.017462134 -0.062097102 0.045691762 -0.024335444 -0.062266376 0.045176223 -0.01825738 -0.068336345 0.02669899 -0.011335377 -0.064687796 0.037805267 -0.017100804 -0.067714393 0.028592298 -0.01825738 -0.068336345 0.02669899 -0.017100804 -0.067714393 0.028592298 -0.024523191 -0.068048872 0.027574303 -0.010733943 -0.055471081 0.03061658 -0.013063423 -0.055396624 0.025396032 -0.010940362 -0.052031614 0.035639595 -0.024101924 -0.05512045 0.021110332 -0.013063423 -0.055396624 0.025396032 -0.021559834 -0.05670372 0.021417296 -0.024101924 -0.05512045 0.021110332 -0.011553098 -0.053097662 0.027267447 -0.013063423 -0.055396624 0.025396032 -0.011553098 -0.053097662 0.027267447 -0.011100102 -0.050979782 0.032076377 -0.013063423 -0.055396624 0.025396032 -0.011100102 -0.050979782 0.032076377 -0.010940362 -0.052031614 0.035639595 -0.013063423 -0.055396624 0.025396032 -0.011100102 -0.050979782 0.032076377 -0.013828043 -0.04904383 0.039608117 -0.010940362 -0.052031614 0.035639595 -0.013828043 -0.04904383 0.039608117 -0.017522812 -0.049780771 0.042491309 -0.010940362 -0.052031614 0.035639595 -0.013828043 -0.04904383 0.039608117 -0.026954297 -0.04833233 0.041773655 -0.017522812 -0.049780771 0.042491309 -0.026954297 -0.04833233 0.041773655 -0.023439705 -0.049526837 0.043264616 -0.017522812 -0.049780771 0.042491309 -0.026954297 -0.04833233 0.041773655 -0.030903388 -0.050809156 0.039360888 -0.023439705 -0.049526837 0.043264616 -0.026954297 -0.04833233 0.041773655 -0.032752328 -0.050237391 0.03586803 -0.030903388 -0.050809156 0.039360888 -0.032752328 -0.050237391 0.03586803 -0.033250272 -0.052299898 0.034822997 -0.030903388 -0.050809156 0.039360888 -0.032752328 -0.050237391 0.03586803 -0.032827746 -0.052519679 0.028065782 -0.033250272 -0.052299898 0.034822997 -0.032827746 -0.052519679 0.028065782 -0.029867109 -0.055750445 0.024318878 -0.033250272 -0.052299898 0.034822997 -0.032827746 -0.052519679 0.028065782 -0.024101924 -0.05512045 0.021110332 -0.029867109 -0.055750445 0.024318878 -0.024101924 -0.05512045 0.021110332 -0.021559834 -0.05670372 0.021417296 -0.029867109 -0.055750445 0.024318878 -0.024101924 -0.05512045 0.021110332 -0.032827746 -0.052519679 0.028065782 -0.031728815 -0.053538214 0.025926601 -0.013828043 -0.04904383 0.039608117 -0.018311046 -0.04817231 0.042260744 -0.026954297 -0.04833233 0.041773655 -0.014819726 -0.054392736 0.023325725 -0.011553098 -0.053097662 0.027267447 -0.024101924 -0.05512045 0.021110332 -0.020596027 -0.047523409 0.019243902 -0.013260495 -0.046176355 0.023344915 -0.018527333 -0.049308449 0.019577656 -0.013260495 -0.046176355 0.023344915 -0.011831224 -0.042998299 0.033018515 -0.011262648 -0.047178145 0.026062341 -0.011831224 -0.042998299 0.033018515 -0.017295621 -0.042596307 0.040010136 -0.013131078 -0.043583144 0.037006203 -0.011831224 -0.042998299 0.033018515 -0.020928334 -0.040807582 0.039687414 -0.017295621 -0.042596307 0.040010136 -0.020928334 -0.040807582 0.039687414 -0.030074716 -0.043313384 0.037827466 -0.017295621 -0.042596307 0.040010136 -0.020928334 -0.040807582 0.039687414 -0.029594418 -0.041755658 0.036801647 -0.030074716 -0.043313384 0.037827466 -0.029594418 -0.041755658 0.036801647 -0.032793824 -0.044628553 0.033823512 -0.030074716 -0.043313384 0.037827466 -0.029594418 -0.041755658 0.036801647 -0.031462312 -0.045834783 0.024384419 -0.032793824 -0.044628553 0.033823512 -0.031462312 -0.045834783 0.024384419 -0.024887402 -0.049371548 0.019385628 -0.030074786 -0.048445258 0.022205185 -0.031462312 -0.045834783 0.024384419 -0.020596027 -0.047523409 0.019243902 -0.024887402 -0.049371548 0.019385628 -0.020596027 -0.047523409 0.019243902 -0.018527333 -0.049308449 0.019577656 -0.024887402 -0.049371548 0.019385628 -0.024887402 -0.049371548 0.019385628 -0.018527333 -0.049308449 0.019577656 -0.024101924 -0.05512045 0.021110332 -0.018527333 -0.049308449 0.019577656 -0.014819726 -0.054392736 0.023325725 -0.024101924 -0.05512045 0.021110332 -0.018527333 -0.049308449 0.019577656 -0.013260495 -0.046176355 0.023344915 -0.014819726 -0.054392736 0.023325725 -0.013260495 -0.046176355 0.023344915 -0.011262648 -0.047178145 0.026062341 -0.014819726 -0.054392736 0.023325725 -0.011262648 -0.047178145 0.026062341 -0.011553098 -0.053097662 0.027267447 -0.014819726 -0.054392736 0.023325725 -0.011262648 -0.047178145 0.026062341 -0.011100102 -0.050979782 0.032076377 -0.011553098 -0.053097662 0.027267447 -0.011831224 -0.042998299 0.033018515 -0.013828043 -0.04904383 0.039608117 -0.011100102 -0.050979782 0.032076377 -0.011831224 -0.042998299 0.033018515 -0.013131078 -0.043583144 0.037006203 -0.013828043 -0.04904383 0.039608117 -0.013131078 -0.043583144 0.037006203 -0.018311046 -0.04817231 0.042260744 -0.013828043 -0.04904383 0.039608117 -0.013131078 -0.043583144 0.037006203 -0.017295621 -0.042596307 0.040010136 -0.018311046 -0.04817231 0.042260744 -0.017295621 -0.042596307 0.040010136 -0.022676878 -0.042286061 0.040954381 -0.018311046 -0.04817231 0.042260744 -0.017295621 -0.042596307 0.040010136 -0.030074716 -0.043313384 0.037827466 -0.022676878 -0.042286061 0.040954381 -0.032793824 -0.044628553 0.033823512 -0.032827746 -0.052519679 0.028065782 -0.032752328 -0.050237391 0.03586803 -0.031462312 -0.045834783 0.024384419 -0.032827746 -0.052519679 0.028065782 -0.032793824 -0.044628553 0.033823512 -0.011262648 -0.047178145 0.026062341 -0.011831224 -0.042998299 0.033018515 -0.011100102 -0.050979782 0.032076377 -0.042700056 0.066556491 0.012250371 -0.024761185 0.066589631 0.0014940153 -0.027527317 0.066307239 -0.0017514579 -0.024763167 0.066533402 0.016308121 -0.023633108 0.066246204 0.016330866 -0.027527317 0.066307239 -0.0017514579 -0.024763167 0.066533402 0.016308121 -0.027527317 0.066307239 -0.0017514579 -0.024761185 0.066589631 0.0014940153 -0.024763167 0.066533402 0.016308121 -0.042700056 0.066556491 0.012250371 -0.035913102 0.066230975 0.020469209 -0.035913102 0.066230975 0.020469209 -0.042700056 0.066556491 0.012250371 -0.044779956 0.066277668 0.0073436247 -0.042700056 0.066556491 0.012250371 -0.027527317 0.066307239 -0.0017514579 -0.044779956 0.066277668 0.0073436247 -0.024763167 0.066533402 0.016308121 -0.035913102 0.066230975 0.020469209 -0.023633108 0.066246204 0.016330866 -0.024800058 0.066541478 0.016274016 -0.031196717 0.066592321 0.0027395461 -0.029291708 0.066545919 0.015058548 -0.029291708 0.066545919 0.015058548 -0.041178886 0.066560872 0.011121524 -0.041200101 0.066596754 0.00152402 -0.041178886 0.066560872 0.011121524 -0.031196717 0.066592321 0.0027395461 -0.041200101 0.066596754 0.00152402 -0.024800066 0.066596724 0.0015240246 -0.041200101 0.066596754 0.00152402 -0.031196717 0.066592321 0.0027395461 -0.041200101 0.066596754 0.00152402 -0.024800058 0.066541478 0.016274016 -0.029291708 0.066545919 0.015058548 -0.024800058 0.066541478 0.016274016 -0.024800066 0.066596724 0.0015240246 -0.031196717 0.066592321 0.0027395461 -0.059955373 -0.075439312 -0.041784722 0.011045329 -0.072021402 -0.033379268 -0.056780044 -0.070681646 -0.039922249 -0.056780044 -0.070681646 -0.039922249 0.011045329 -0.072021402 -0.033379268 0.011436112 -0.06823808 -0.032591138 0.011436112 -0.06823808 -0.032591138 0.011045329 -0.072021402 -0.033379268 0.011432603 -0.07300365 -0.034355734 0.012768909 -0.072841987 -0.035997763 0.011436112 -0.06823808 -0.032591138 0.011432603 -0.07300365 -0.034355734 0.0025058389 -0.074658416 -0.039575957 -0.055292051 -0.07673084 -0.047621358 0.0072263479 -0.071619742 -0.042889766 0.012768909 -0.072841987 -0.035997763 0.0025058389 -0.074658416 -0.039575957 0.0072263479 -0.071619742 -0.042889766 0.012600943 -0.070758142 -0.04026914 0.012768909 -0.072841987 -0.035997763 0.0072263479 -0.071619742 -0.042889766 -0.059900347 -0.077132657 -0.046967711 -0.056823619 -0.07424476 -0.050654963 -0.055292051 -0.07673084 -0.047621358 0.0072263479 -0.071619742 -0.042889766 -0.055292051 -0.07673084 -0.047621358 -0.056823619 -0.07424476 -0.050654963 -0.056823619 -0.07424476 -0.050654963 -0.059955373 -0.075439312 -0.041784722 -0.056780044 -0.070681646 -0.039922249 -0.056823619 -0.07424476 -0.050654963 -0.059900347 -0.077132657 -0.046967711 -0.059955373 -0.075439312 -0.041784722 0.011432603 -0.07300365 -0.034355734 0.011045329 -0.072021402 -0.033379268 -0.059955373 -0.075439312 -0.041784722 -0.055292051 -0.07673084 -0.047621358 0.0025058389 -0.074658416 -0.039575957 -0.059900347 -0.077132657 -0.046967711 0.0025058389 -0.074658416 -0.039575957 -0.059955373 -0.075439312 -0.041784722 -0.059900347 -0.077132657 -0.046967711 0.011432603 -0.07300365 -0.034355734 -0.059955373 -0.075439312 -0.041784722 0.0025058389 -0.074658416 -0.039575957 0.012768909 -0.072841987 -0.035997763 0.011432603 -0.07300365 -0.034355734 0.0025058389 -0.074658416 -0.039575957 -0.056780044 -0.070681646 -0.039922249 0.011436112 -0.06823808 -0.032591138 0.0072263479 -0.071619742 -0.042889766 -0.056780044 -0.070681646 -0.039922249 0.0072263479 -0.071619742 -0.042889766 -0.056823619 -0.07424476 -0.050654963 0.0072263479 -0.071619742 -0.042889766 0.011436112 -0.06823808 -0.032591138 0.012600943 -0.070758142 -0.04026914 0.012600943 -0.070758142 -0.04026914 0.011436112 -0.06823808 -0.032591138 0.012768909 -0.072841987 -0.035997763 0.069999993 -0.028426966 -0.088494256 0.069999784 -0.01349013 -0.094681688 0.069999993 0.019167796 0.010205095 0.069999993 0.019167796 0.010205095 0.069999993 0.048287403 -0.015109054 0.070000008 0.043260802 -0.0074341637 0.069999993 -0.055068575 -0.042272676 0.069999993 0.019167796 0.010205095 0.069999009 -0.054162353 -0.031468146 0.069999993 0.019167796 0.010205095 0.070000008 0.043260802 -0.0074341637 0.069999993 0.033870447 0.0019547292 0.069999784 -0.01349013 -0.094681688 0.070000023 -0.0022807044 -0.096308969 0.069999993 0.019167796 0.010205095 0.069999009 -0.054162353 -0.031468146 0.069999993 0.019167796 0.010205095 0.069999903 -0.049235724 -0.01668405 0.070000023 -0.0022807044 -0.096308969 0.069999874 0.0034101661 -0.09624555 0.069999993 0.019167796 0.010205095 0.069999874 0.0034101661 -0.09624555 0.069999903 0.011324382 -0.095164619 0.069999993 0.019167796 0.010205095 0.069999903 0.011324382 -0.095164619 0.069999918 0.021931751 -0.091762356 0.069999993 0.019167796 0.010205095 0.069999903 -0.049235724 -0.01668405 0.069999993 0.019167796 0.010205095 0.069999933 -0.038861614 -0.0023448039 0.069999918 0.021931751 -0.091762356 0.069999903 0.027309358 -0.089057676 0.069999993 0.019167796 0.010205095 0.069999933 -0.038861614 -0.0023448039 0.069999993 0.019167796 0.010205095 0.069999903 -0.032154892 0.0033331071 0.069999903 0.027309358 -0.089057676 0.070000008 0.033234727 -0.085164241 0.069999993 0.019167796 0.010205095 0.069999903 -0.032154892 0.0033331071 0.069999993 0.019167796 0.010205095 0.070000023 -0.019580506 0.010071891 0.070000008 0.033234727 -0.085164241 0.070000008 0.041478839 -0.077423356 0.069999993 0.019167796 0.010205095 0.070000023 -0.019580506 0.010071891 0.069999993 0.019167796 0.010205095 0.069999993 -0.012185953 0.01230573 0.070000008 0.041478839 -0.077423356 0.069999874 0.048447035 -0.067285888 0.069999993 0.019167796 0.010205095 0.069999874 0.048447035 -0.067285888 0.070000023 0.051605247 -0.060256869 0.069999993 0.019167796 0.010205095 0.069999993 -0.012185953 0.01230573 0.069999993 0.019167796 0.010205095 0.070000008 0.0052631926 0.013396179 0.070000008 -0.04509268 -0.072937809 0.070000023 -0.040392205 -0.078754544 0.069999993 0.019167796 0.010205095 0.070000008 -0.04509268 -0.072937809 0.069999993 0.019167796 0.010205095 0.070000023 -0.051482908 -0.060850222 0.070000023 -0.040392205 -0.078754544 0.069999993 -0.03296214 -0.085432641 0.069999993 0.019167796 0.010205095 -0.037108198 0.071445718 -0.027840871 -0.034368999 0.07012713 -0.033345833 -0.038158126 0.070113741 -0.029727789 0.070000023 0.051605247 -0.060256869 0.069999695 0.054448009 -0.048734959 0.069999993 0.019167796 0.010205095 0.069999993 -0.03296214 -0.085432641 0.069999993 -0.028426966 -0.088494256 0.069999993 0.019167796 0.010205095 0.069999993 0.019167796 0.010205095 0.069999695 0.054448009 -0.048734959 0.069999889 0.05483951 -0.037778545 0.069999993 0.019167796 0.010205095 0.069999889 0.05483951 -0.037778545 0.069999993 0.048287403 -0.015109054 0.070000023 -0.051482908 -0.060850222 0.069999993 0.019167796 0.010205095 0.069999993 -0.055068575 -0.042272676 0.011868216 0.066990055 -0.064187646 0.0063013509 0.066948026 -0.066256367 0.0050406456 0.067535639 -0.065451846 0.0050406456 0.067535639 -0.065451846 0.0063013509 0.066948026 -0.066256367 -0.058566354 0.067678489 -0.074033186 0.015598588 0.066917934 -0.060105957 0.011868216 0.066990055 -0.064187646 0.017230511 0.067054018 -0.051962037 -0.061464444 0.090053029 -0.061663933 -0.059785262 0.070605189 -0.071868792 -0.061163668 0.079468198 -0.069061875 -0.060394965 0.091321133 -0.055799346 -0.061464444 0.090053029 -0.061663933 -0.061569169 0.092226267 -0.057195291 -0.058566354 0.067678489 -0.074033186 -0.061163668 0.079468198 -0.069061875 -0.058374241 0.068436757 -0.072851464 -0.059785262 0.070605189 -0.071868792 -0.058374241 0.068436757 -0.072851464 -0.061163668 0.079468198 -0.069061875 -0.059785262 0.070605189 -0.071868792 -0.061464444 0.090053029 -0.061663933 -0.060394965 0.091321133 -0.055799346 -0.059549976 -0.076100849 -0.049109966 -0.061217956 -0.082529284 -0.044843454 -0.056100972 -0.074213527 -0.050795823 -0.058093552 -0.074740358 -0.050358947 -0.059549976 -0.076100849 -0.049109966 -0.056100972 -0.074213527 -0.050795823 0.016401365 -0.06759467 -0.030670915 0.010144234 -0.071354568 -0.0421082 0.015554078 -0.069568962 -0.038600203 -0.017459977 -0.072571047 -0.047405876 0.010144234 -0.071354568 -0.0421082 -0.056100972 -0.074213527 -0.050795823 0.010144234 -0.071354568 -0.0421082 -0.017459977 -0.072571047 -0.047405876 0.0070114136 -0.071491003 -0.044160862 -0.028894782 0.071447216 -0.027841335 -0.030696932 0.070125967 -0.033014424 -0.037108198 0.071445718 -0.027840871 -0.036812827 0.070093088 -0.024210168 -0.033013158 0.070092157 -0.023959052 -0.031815059 0.070089154 -0.024065571 -0.033582158 0.070092328 -0.024085503 -0.033013158 0.070092157 -0.023959052 -0.036812827 0.070093088 -0.024210168 -0.06153452 -0.09244588 -0.03150038 -0.061217956 -0.082529284 -0.044843454 -0.060252242 -0.089621499 -0.035019655 -0.061217956 -0.082529284 -0.044843454 -0.059549976 -0.076100849 -0.049109966 -0.060252242 -0.089621499 -0.035019655 -0.05979662 -0.031758342 0.08174222 -0.061090402 -0.033431977 0.084531814 -0.059549976 -0.076100849 -0.049109966 -0.03836244 0.0786025 -0.026728678 -0.038158126 0.070113741 -0.029727789 -0.035817981 0.078600906 -0.033852912 -0.058093552 -0.074740358 -0.050358947 -0.05979662 -0.031758342 0.08174222 -0.059549976 -0.076100849 -0.049109966 -0.033689566 0.070087351 -0.022703957 -0.036812827 0.070093088 -0.024210168 -0.034464058 0.078587495 -0.022714209 -0.038158126 0.070113741 -0.029727789 -0.034368999 0.07012713 -0.033345833 -0.035817981 0.078600906 -0.033852912 -0.057533935 -0.030935189 0.080966786 -0.05979662 -0.031758342 0.08174222 -0.058093552 -0.074740358 -0.050358947 -0.056100972 -0.074213527 -0.050795823 -0.057533935 -0.030935189 0.080966786 -0.058093552 -0.074740358 -0.050358947 -0.069723606 -0.090709373 -0.037236877 -0.069899872 -0.093469284 -0.026585137 -0.069611117 -0.083843634 -0.044844057 -0.069723606 -0.090709373 -0.037236877 -0.069840021 -0.093590528 -0.030042196 -0.069899872 -0.093469284 -0.026585137 -0.034464058 0.078587495 -0.022714209 -0.036812827 0.070093088 -0.024210168 -0.03836244 0.0786025 -0.026728678 -0.06913913 -0.063182533 -0.075496547 -0.069496095 -0.074688517 -0.053005569 -0.0691697 0.051055569 -0.091788836 -0.069496095 -0.074688517 -0.053005569 -0.069394171 0.061492123 -0.080422327 -0.0691697 0.051055569 -0.091788836 -0.068796143 -0.043073289 -0.098578058 -0.068766065 0.019490635 -0.11021219 -0.068713121 -0.032699894 -0.10502577 -0.069611117 -0.083843634 -0.044844057 -0.069899872 -0.093469284 -0.026585137 -0.069496095 -0.074688517 -0.053005569 -0.069496095 -0.074688517 -0.053005569 -0.06949538 0.067340121 -0.075465709 -0.069394171 0.061492123 -0.080422327 -0.036812827 0.070093088 -0.024210168 -0.038158126 0.070113741 -0.029727789 -0.03836244 0.0786025 -0.026728678 -0.069496095 -0.074688517 -0.053005569 -0.069899991 0.093348064 -0.056119852 -0.06949538 0.067340121 -0.075465709 -0.039414998 0.07546927 -0.03092863 -0.038210161 0.077792123 -0.023729442 -0.03836244 0.0786025 -0.026728678 -0.069496095 -0.074688517 -0.053005569 -0.069899872 -0.093469284 -0.026585137 -0.069899991 0.093348064 -0.056119852 -0.068713121 -0.032699894 -0.10502577 -0.068766065 0.019490635 -0.11021219 -0.068678439 0.0038078534 -0.11278041 -0.031894218 0.075427577 -0.021116953 -0.030723579 0.077784203 -0.021678722 -0.034464058 0.078587495 -0.022714209 -0.068713121 -0.032699894 -0.10502577 -0.068678439 0.0038078534 -0.11278041 -0.068651155 -0.010902677 -0.11206814 -0.068713121 -0.032699894 -0.10502577 -0.068651155 -0.010902677 -0.11206814 -0.068675883 -0.025057448 -0.10839764 -0.06949538 0.067340121 -0.075465709 -0.069899991 0.093348064 -0.056119852 -0.069674559 0.083973825 -0.067708604 -0.068994418 -0.056991268 -0.084878571 -0.069010779 0.041784961 -0.099542014 -0.068887696 -0.050609149 -0.092071325 -0.069674559 0.083973825 -0.067708604 -0.069899991 0.093348064 -0.056119852 -0.069774643 0.090196587 -0.062891796 -0.039414998 0.07546927 -0.03092863 -0.03836244 0.0786025 -0.026728678 -0.035817981 0.078600906 -0.033852912 -0.038210161 0.077792123 -0.023729442 -0.031894218 0.075427577 -0.021116953 -0.034464058 0.078587495 -0.022714209 -0.068994418 -0.056991268 -0.084878571 -0.0691697 0.051055569 -0.091788836 -0.069010779 0.041784961 -0.099542014 -0.068994418 -0.056991268 -0.084878571 -0.06913913 -0.063182533 -0.075496547 -0.0691697 0.051055569 -0.091788836 -0.068887696 -0.050609149 -0.092071325 -0.068766065 0.019490635 -0.11021219 -0.068796143 -0.043073289 -0.098578058 -0.068887696 -0.050609149 -0.092071325 -0.068860523 0.029936291 -0.10638596 -0.068766065 0.019490635 -0.11021219 -0.068887696 -0.050609149 -0.092071325 -0.069010779 0.041784961 -0.099542014 -0.068860523 0.029936291 -0.10638596 0.035737902 0.049226295 -0.067313701 0.070000023 0.051605247 -0.060256869 0.069999874 0.048447035 -0.067285888 0.037547782 0.052366443 -0.05987611 0.070000023 0.051605247 -0.060256869 0.035737902 0.049226295 -0.067313701 0.038425103 0.054246135 -0.053100407 0.070000023 0.051605247 -0.060256869 0.037547782 0.052366443 -0.05987611 0.069999695 0.054448009 -0.048734959 0.070000023 0.051605247 -0.060256869 0.038425103 0.054246135 -0.053100407 0.069999874 0.0034101661 -0.09624555 0.070000023 -0.0022807044 -0.096308969 0.065001011 -0.007654421 -0.095835969 0.019182205 0.03488512 -0.085829765 0.0029714629 0.023319289 -0.094165325 -0.01381547 0.024713445 -0.095565826 0.069999695 0.054448009 -0.048734959 0.038425103 0.054246135 -0.053100407 0.036677822 0.056123067 -0.041440345 0.019182205 0.03488512 -0.085829765 0.030102596 0.040578086 -0.07973747 0.03986118 0.033809893 -0.085326821 0.022880696 0.018877834 -0.094338559 0.069999918 0.021931751 -0.091762356 0.069999903 0.011324382 -0.095164619 0.023026533 0.025398897 -0.091525294 0.043020315 0.029145047 -0.0884194 0.069999903 0.027309358 -0.089057676 0.0017657876 0.015947489 -0.09695562 0.022880696 0.018877834 -0.094338559 0.025731146 0.0075691007 -0.096946836 0.034965917 0.046092246 -0.072499514 0.069999874 0.048447035 -0.067285888 0.070000008 0.041478839 -0.077423356 0.069999903 0.027309358 -0.089057676 0.069999918 0.021931751 -0.091762356 0.022880696 0.018877834 -0.094338559 0.0017657876 0.015947489 -0.09695562 0.025731146 0.0075691007 -0.096946836 0.0034282804 0.0063442406 -0.098709293 0.035737902 0.049226295 -0.067313701 0.069999874 0.048447035 -0.067285888 0.034965917 0.046092246 -0.072499514 0.023026533 0.025398897 -0.091525294 0.019182205 0.03488512 -0.085829765 0.043020315 0.029145047 -0.0884194 0.070000008 0.041478839 -0.077423356 0.070000008 0.033234727 -0.085164241 0.03986118 0.033809893 -0.085326821 0.0034282804 0.0063442406 -0.098709293 0.025731146 0.0075691007 -0.096946836 -0.019092444 -0.0079219639 -0.10114671 -0.019092444 -0.0079219639 -0.10114671 0.025731146 0.0075691007 -0.096946836 0.023023717 -0.0038542859 -0.097482711 0.022880696 0.018877834 -0.094338559 0.069999903 0.011324382 -0.095164619 0.025731146 0.0075691007 -0.096946836 0.070000008 0.033234727 -0.085164241 0.069999903 0.027309358 -0.089057676 0.043020315 0.029145047 -0.0884194 0.023023717 -0.0038542859 -0.097482711 0.069999874 0.0034101661 -0.09624555 0.065001011 -0.007654421 -0.095835969 0.034965917 0.046092246 -0.072499514 0.070000008 0.041478839 -0.077423356 0.030102596 0.040578086 -0.07973747 0.023023717 -0.0038542859 -0.097482711 0.065001011 -0.007654421 -0.095835969 0.040152699 -0.0096197641 -0.096002467 0.019182205 0.03488512 -0.085829765 0.03986118 0.033809893 -0.085326821 0.043020315 0.029145047 -0.0884194 -0.029319718 0.07548064 -0.034050282 -0.03425343 0.074736945 -0.034981839 -0.02956409 0.078599095 -0.033509236 0.0029714629 0.023319289 -0.094165325 0.023026533 0.025398897 -0.091525294 0.022880696 0.018877834 -0.094338559 0.030102596 0.040578086 -0.07973747 0.070000008 0.041478839 -0.077423356 0.03986118 0.033809893 -0.085326821 -0.028007329 0.075440228 -0.023127444 -0.027600825 0.078602985 -0.026820228 -0.028589189 0.07859496 -0.024705919 -0.028007329 0.075440228 -0.023127444 -0.026090086 0.075454041 -0.026808258 -0.027600825 0.078602985 -0.026820228 -0.028007329 0.075440228 -0.023127444 -0.028589189 0.07859496 -0.024705919 -0.030723579 0.077784203 -0.021678722 0.023023717 -0.0038542859 -0.097482711 0.025731146 0.0075691007 -0.096946836 0.069999874 0.0034101661 -0.09624555 0.0029714629 0.023319289 -0.094165325 0.022880696 0.018877834 -0.094338559 0.0017657876 0.015947489 -0.09695562 0.03986118 0.033809893 -0.085326821 0.070000008 0.033234727 -0.085164241 0.043020315 0.029145047 -0.0884194 0.023026533 0.025398897 -0.091525294 0.069999903 0.027309358 -0.089057676 0.022880696 0.018877834 -0.094338559 -0.031894218 0.075427577 -0.021116953 -0.028007329 0.075440228 -0.023127444 -0.030723579 0.077784203 -0.021678722 0.019182205 0.03488512 -0.085829765 0.023026533 0.025398897 -0.091525294 0.0029714629 0.023319289 -0.094165325 -0.026090086 0.075454041 -0.026808258 -0.029319718 0.07548064 -0.034050282 -0.02956409 0.078599095 -0.033509236 0.025731146 0.0075691007 -0.096946836 0.069999903 0.011324382 -0.095164619 0.069999874 0.0034101661 -0.09624555 0.065001011 -0.007654421 -0.095835969 0.070000023 -0.0022807044 -0.096308969 0.069999784 -0.01349013 -0.094681688 -0.03277988 0.021944638 -0.099841401 -0.025749266 0.033204768 -0.093086027 -0.01381547 0.024713445 -0.095565826 -0.01381547 0.024713445 -0.095565826 0.0029714629 0.023319289 -0.094165325 0.0017657876 0.015947489 -0.09695562 -0.03277988 0.021944638 -0.099841401 -0.01381547 0.024713445 -0.095565826 -0.013788648 0.011026235 -0.099905021 -0.023298219 0.008212965 -0.10169733 -0.013789725 0.0019814917 -0.10090943 -0.051917624 -6.3649022e-05 -0.10793567 -0.051917624 -6.3649022e-05 -0.10793567 -0.013789725 0.0019814917 -0.10090943 -0.019092444 -0.0079219639 -0.10114671 0.0034282804 0.0063442406 -0.098709293 -0.013788648 0.011026235 -0.099905021 0.0017657876 0.015947489 -0.09695562 -0.051917624 -6.3649022e-05 -0.10793567 -0.019092444 -0.0079219639 -0.10114671 -0.040335957 -0.010664415 -0.10439917 -0.03277988 0.021944638 -0.099841401 -0.013788648 0.011026235 -0.099905021 -0.023298219 0.008212965 -0.10169733 -0.01381547 0.024713445 -0.095565826 0.0017657876 0.015947489 -0.09695562 -0.013788648 0.011026235 -0.099905021 -0.013789725 0.0019814917 -0.10090943 0.0034282804 0.0063442406 -0.098709293 -0.019092444 -0.0079219639 -0.10114671 -0.023298219 0.008212965 -0.10169733 -0.013788648 0.011026235 -0.099905021 0.0034282804 0.0063442406 -0.098709293 -0.023298219 0.008212965 -0.10169733 0.0034282804 0.0063442406 -0.098709293 -0.013789725 0.0019814917 -0.10090943 -0.060155045 0.075097367 -0.049428005 -0.059785262 0.070605189 -0.071868792 -0.060394965 0.091321133 -0.055799346 -0.009465985 -0.056533873 0.0030296226 -0.010942701 -0.053863183 0.011159563 -0.033047076 -0.056098539 0.0043545221 -0.025958836 -0.042510584 0.045717578 -0.025949236 -0.040298641 0.052450951 -0.057533935 -0.030935189 0.080966786 -0.019406743 -0.039865851 0.053768683 -0.011104465 -0.033764236 0.071284026 -0.026378214 -0.031603601 0.078876033 -0.0030315518 -0.053913604 0.011005981 0.0066117644 -0.053599562 0.011749684 -0.010942701 -0.053863183 0.011159563 -0.010942701 -0.053863183 0.011159563 -0.033031583 -0.053913601 0.01100598 -0.033047076 -0.056098539 0.0043545221 -0.019406743 -0.039865851 0.053768683 -0.026378214 -0.031603601 0.078876033 -0.025949236 -0.040298641 0.052450951 -0.010942701 -0.053863183 0.011159563 0.0066117644 -0.053599562 0.011749684 -0.018028449 -0.042483091 0.045801472 -0.025949236 -0.040298641 0.052450951 -0.026378214 -0.031603601 0.078876033 -0.057533935 -0.030935189 0.080966786 -0.010942701 -0.053863183 0.011159563 -0.018028449 -0.042483091 0.045801472 -0.033031583 -0.053913601 0.01100598 0.010144234 -0.071354568 -0.0421082 0.016161799 -0.06760405 -0.030668851 0.016199835 -0.06760335 -0.030668816 0.010144234 -0.071354568 -0.0421082 0.016401365 -0.06759467 -0.030670915 0.016161799 -0.06760405 -0.030668851 -0.033031583 -0.053913601 0.01100598 -0.018028449 -0.042483091 0.045801472 -0.039443504 -0.053433087 0.012468922 -0.036216095 0.069384135 -0.021846227 -0.031894218 0.075427577 -0.021116953 -0.038210161 0.077792123 -0.023729442 0.010144234 -0.071354568 -0.0421082 -0.009465985 -0.056533873 0.0030296226 -0.056100972 -0.074213527 -0.050795823 0.010144234 -0.071354568 -0.0421082 0.016199835 -0.06760335 -0.030668816 -0.009465985 -0.056533873 0.0030296226 -0.039443504 -0.053433087 0.012468922 -0.018028449 -0.042483091 0.045801472 -0.025958836 -0.042510584 0.045717578 -0.056100972 -0.074213527 -0.050795823 -0.009465985 -0.056533873 0.0030296226 -0.033047076 -0.056098539 0.0043545221 -0.03425343 0.074736945 -0.034981839 -0.039414998 0.07546927 -0.03092863 -0.035817981 0.078600906 -0.033852912 0.0066117644 -0.053599562 0.011749684 -0.011104465 -0.033764236 0.071284026 -0.018028449 -0.042483091 0.045801472 -0.056100972 -0.074213527 -0.050795823 -0.033047076 -0.056098539 0.0043545221 -0.040982246 -0.056018297 0.0045994883 0.016199835 -0.06760335 -0.030668816 -0.0030315518 -0.053913604 0.011005981 -0.009465985 -0.056533873 0.0030296226 -0.056100972 -0.074213527 -0.050795823 -0.039443504 -0.053433087 0.012468922 -0.057533935 -0.030935189 0.080966786 -0.056100972 -0.074213527 -0.050795823 -0.040982246 -0.056018297 0.0045994883 -0.039443504 -0.053433087 0.012468922 0.016199835 -0.06760335 -0.030668816 0.0066117644 -0.053599562 0.011749684 -0.0030315518 -0.053913604 0.011005981 -0.039443504 -0.053433087 0.012468922 -0.025958836 -0.042510584 0.045717578 -0.057533935 -0.030935189 0.080966786 -0.011104465 -0.033764236 0.071284026 -0.019406743 -0.039865851 0.053768683 -0.018028449 -0.042483091 0.045801472 -0.060450613 -0.085629143 -0.015987612 -0.060452454 -0.079680465 -0.0097901365 -0.061030142 -0.054923929 0.057820477 -0.059549976 -0.076100849 -0.049109966 -0.060166005 -0.069077916 -0.019993527 -0.060164213 -0.075026654 -0.026190907 -0.061090402 -0.033431977 0.084531814 -0.061155275 -0.025447736 0.097042829 -0.061477475 -0.044754632 0.099868104 -0.060166005 -0.069077916 -0.019993527 -0.060915515 -0.05102424 0.053389795 -0.060318582 -0.071768522 -0.011542751 -0.061477475 -0.044754632 0.099868104 -0.061155275 -0.025447736 0.097042829 -0.061221078 -0.01775687 0.1097124 -0.060318582 -0.071768522 -0.011542751 -0.060915515 -0.05102424 0.053389795 -0.060967635 -0.054441482 0.053727102 -0.060252242 -0.089621499 -0.035019655 -0.060298026 -0.082938649 -0.024438296 -0.060423668 -0.090261035 -0.023038901 -0.061147146 -0.046311162 0.075183868 -0.061198514 -0.045863457 0.079407185 -0.060423668 -0.090261035 -0.023038901 -0.061090402 -0.033431977 0.084531814 -0.060405549 -0.017907593 0.092698343 -0.061155275 -0.025447736 0.097042829 -0.061221078 -0.01775687 0.1097124 -0.061155275 -0.025447736 0.097042829 -0.061267372 -0.025563627 0.10515012 -0.060423668 -0.090261035 -0.023038901 -0.060298026 -0.082938649 -0.024438296 -0.060450613 -0.085629143 -0.015987612 -0.060452454 -0.079680465 -0.0097901365 -0.060967635 -0.054441482 0.053727102 -0.061030142 -0.054923929 0.057820477 -0.061030142 -0.054923929 0.057820477 -0.061147146 -0.046311162 0.075183868 -0.060423668 -0.090261035 -0.023038901 -0.061147146 -0.046311162 0.075183868 -0.061090402 -0.033431977 0.084531814 -0.061157621 -0.044148467 0.07815858 -0.061198514 -0.045863457 0.079407185 -0.061090402 -0.033431977 0.084531814 -0.060423668 -0.090261035 -0.023038901 -0.061198514 -0.045863457 0.079407185 -0.061157621 -0.044148467 0.07815858 -0.061090402 -0.033431977 0.084531814 -0.060423668 -0.090261035 -0.023038901 -0.061090402 -0.033431977 0.084531814 -0.061477475 -0.044754632 0.099868104 -0.061030142 -0.054923929 0.057820477 -0.060976204 -0.050531767 0.058341056 -0.061147146 -0.046311162 0.075183868 -0.060452454 -0.079680465 -0.0097901365 -0.060318582 -0.071768522 -0.011542751 -0.060967635 -0.054441482 0.053727102 -0.060977824 -0.0095476229 0.1002334 -0.060818836 -0.012676383 0.094566807 -0.060651116 0.024382966 0.10861168 -0.060977824 -0.0095476229 0.1002334 -0.060651116 0.024382966 0.10861168 -0.061221078 -0.01775687 0.1097124 -0.060423668 -0.090261035 -0.023038901 -0.060450613 -0.085629143 -0.015987612 -0.061030142 -0.054923929 0.057820477 -0.060166005 -0.069077916 -0.019993527 -0.061090402 -0.033431977 0.084531814 -0.060915515 -0.05102424 0.053389795 -0.059549976 -0.076100849 -0.049109966 -0.061090402 -0.033431977 0.084531814 -0.060166005 -0.069077916 -0.019993527 -0.032128625 0.069433786 -0.035092898 -0.03425343 0.074736945 -0.034981839 -0.029319718 0.07548064 -0.034050282 -0.060818836 -0.012676383 0.094566807 -0.060453892 0.020810181 0.094311811 -0.060651116 0.024382966 0.10861168 -0.060252242 -0.089621499 -0.035019655 -0.059549976 -0.076100849 -0.049109966 -0.060298026 -0.082938649 -0.024438296 -0.028673772 0.069386758 -0.022538669 -0.025978744 0.069408253 -0.028278733 -0.026090086 0.075454041 -0.026808258 -0.060915515 -0.05102424 0.053389795 -0.061090402 -0.033431977 0.084531814 -0.060976204 -0.050531767 0.058341056 -0.028673772 0.069386758 -0.022538669 -0.026090086 0.075454041 -0.026808258 -0.028007329 0.075440228 -0.023127444 -0.059549976 -0.076100849 -0.049109966 -0.060164213 -0.075026654 -0.026190907 -0.060298026 -0.082938649 -0.024438296 -0.060976204 -0.050531767 0.058341056 -0.061090402 -0.033431977 0.084531814 -0.061147146 -0.046311162 0.075183868 0.029788777 0.053590633 -0.062320389 0.030345306 0.056839295 -0.050418712 0.037547782 0.052366443 -0.05987611 0.023471579 0.057399228 -0.062118899 0.017230511 0.067054018 -0.051962037 0.017403357 0.066837214 -0.051928058 0.035737902 0.049226295 -0.067313701 0.034965917 0.046092246 -0.072499514 0.037547782 0.052366443 -0.05987611 -0.025749266 0.033204768 -0.093086027 -0.049963728 0.029436011 -0.1005061 -0.036011167 0.040910956 -0.090472616 -0.025978744 0.069408253 -0.028278733 -0.032128625 0.069433786 -0.035092898 -0.029319718 0.07548064 -0.034050282 -0.058566354 0.067678489 -0.074033186 -0.069394171 0.061492123 -0.080422327 -0.06949538 0.067340121 -0.075465709 -0.025978744 0.069408253 -0.028278733 -0.029319718 0.07548064 -0.034050282 -0.026090086 0.075454041 -0.026808258 -0.028673772 0.069386758 -0.022538669 -0.028007329 0.075440228 -0.023127444 -0.031894218 0.075427577 -0.021116953 -0.051865354 0.052775074 -0.085350551 -0.053441618 0.043979734 -0.092628717 -0.0691697 0.051055569 -0.091788836 -0.0691697 0.051055569 -0.091788836 -0.053441618 0.043979734 -0.092628717 -0.069010779 0.041784961 -0.099542014 -0.036011167 0.040910956 -0.090472616 -0.051865354 0.052775074 -0.085350551 -0.029607732 0.052218635 -0.081721388 -0.051865354 0.052775074 -0.085350551 -0.036011167 0.040910956 -0.090472616 -0.053441618 0.043979734 -0.092628717 0.034965917 0.046092246 -0.072499514 0.030102596 0.040578086 -0.07973747 0.022146776 0.049897417 -0.073062472 0.037547782 0.052366443 -0.05987611 0.023471579 0.057399228 -0.062118899 0.029788777 0.053590633 -0.062320389 -0.029607732 0.052218635 -0.081721388 0.0063013509 0.066948026 -0.066256367 -0.0037733316 0.049674053 -0.079686977 -0.025749266 0.033204768 -0.093086027 -0.0037733316 0.049674053 -0.079686977 0.019182205 0.03488512 -0.085829765 0.022146776 0.049897417 -0.073062472 0.019182205 0.03488512 -0.085829765 0.015419118 0.053869389 -0.072647914 -0.036216095 0.069384135 -0.021846227 -0.028673772 0.069386758 -0.022538669 -0.031894218 0.075427577 -0.021116953 -0.0037733316 0.049674053 -0.079686977 0.0063013509 0.066948026 -0.066256367 0.019182205 0.03488512 -0.085829765 0.022146776 0.049897417 -0.073062472 0.015598588 0.066917934 -0.060105957 0.023471579 0.057399228 -0.062118899 0.030102596 0.040578086 -0.07973747 0.019182205 0.03488512 -0.085829765 0.022146776 0.049897417 -0.073062472 0.029788777 0.053590633 -0.062320389 0.023471579 0.057399228 -0.062118899 0.030345306 0.056839295 -0.050418712 0.023471579 0.057399228 -0.062118899 0.034965917 0.046092246 -0.072499514 0.022146776 0.049897417 -0.073062472 0.034965917 0.046092246 -0.072499514 0.023471579 0.057399228 -0.062118899 0.037547782 0.052366443 -0.05987611 -0.0691697 0.051055569 -0.091788836 -0.069394171 0.061492123 -0.080422327 -0.051865354 0.052775074 -0.085350551 -0.051865354 0.052775074 -0.085350551 -0.069394171 0.061492123 -0.080422327 -0.058566354 0.067678489 -0.074033186 -0.041886155 0.069279991 -0.029674456 -0.039971113 0.069404319 -0.027230103 -0.039414998 0.07546927 -0.03092863 -0.051865354 0.052775074 -0.085350551 -0.058566354 0.067678489 -0.074033186 -0.029607732 0.052218635 -0.081721388 -0.041886155 0.069279991 -0.029674456 -0.039414998 0.07546927 -0.03092863 -0.03425343 0.074736945 -0.034981839 0.030345306 0.056839295 -0.050418712 0.023471579 0.057399228 -0.062118899 0.026235938 0.058864731 -0.050680798 -0.039971113 0.069404319 -0.027230103 -0.036216095 0.069384135 -0.021846227 -0.038210161 0.077792123 -0.023729442 -0.029607732 0.052218635 -0.081721388 -0.058566354 0.067678489 -0.074033186 0.0063013509 0.066948026 -0.066256367 -0.032128625 0.069433786 -0.035092898 -0.041886155 0.069279991 -0.029674456 -0.03425343 0.074736945 -0.034981839 -0.069010779 0.041784961 -0.099542014 -0.053441618 0.043979734 -0.092628717 -0.068860523 0.029936291 -0.10638596 -0.049963728 0.029436011 -0.1005061 -0.053441618 0.043979734 -0.092628717 -0.036011167 0.040910956 -0.090472616 -0.049963728 0.029436011 -0.1005061 -0.068860523 0.029936291 -0.10638596 -0.053441618 0.043979734 -0.092628717 0.037547782 0.052366443 -0.05987611 0.030345306 0.056839295 -0.050418712 0.038425103 0.054246135 -0.053100407 -0.0037733316 0.049674053 -0.079686977 -0.036011167 0.040910956 -0.090472616 -0.029607732 0.052218635 -0.081721388 -0.025749266 0.033204768 -0.093086027 -0.036011167 0.040910956 -0.090472616 -0.0037733316 0.049674053 -0.079686977 0.019182205 0.03488512 -0.085829765 0.0063013509 0.066948026 -0.066256367 0.011868216 0.066990055 -0.064187646 0.015419118 0.053869389 -0.072647914 0.019182205 0.03488512 -0.085829765 0.011868216 0.066990055 -0.064187646 0.015419118 0.053869389 -0.072647914 0.011868216 0.066990055 -0.064187646 0.015598588 0.066917934 -0.060105957 0.017230511 0.067054018 -0.051962037 0.023471579 0.057399228 -0.062118899 0.015598588 0.066917934 -0.060105957 0.019182205 0.03488512 -0.085829765 -0.01381547 0.024713445 -0.095565826 -0.025749266 0.033204768 -0.093086027 0.026235938 0.058864731 -0.050680798 0.023471579 0.057399228 -0.062118899 0.017403357 0.066837214 -0.051928058 0.022146776 0.049897417 -0.073062472 0.015419118 0.053869389 -0.072647914 0.015598588 0.066917934 -0.060105957 -0.03277988 0.021944638 -0.099841401 -0.023298219 0.008212965 -0.10169733 -0.045512341 0.012651791 -0.10514629 -0.056922905 0.022808729 -0.10530008 -0.049963728 0.029436011 -0.1005061 -0.03277988 0.021944638 -0.099841401 -0.068860523 0.029936291 -0.10638596 -0.049963728 0.029436011 -0.1005061 -0.056922905 0.022808729 -0.10530008 -0.056922905 0.022808729 -0.10530008 -0.045512341 0.012651791 -0.10514629 -0.058404755 0.011027851 -0.10875528 -0.068860523 0.029936291 -0.10638596 -0.056922905 0.022808729 -0.10530008 -0.068766065 0.019490635 -0.11021219 -0.055844016 -0.0112395 -0.10801324 -0.051917624 -6.3649022e-05 -0.10793567 -0.040335957 -0.010664415 -0.10439917 -0.056922905 0.022808729 -0.10530008 -0.03277988 0.021944638 -0.099841401 -0.045512341 0.012651791 -0.10514629 -0.058404755 0.011027851 -0.10875528 -0.045512341 0.012651791 -0.10514629 -0.023298219 0.008212965 -0.10169733 -0.068766065 0.019490635 -0.11021219 -0.058404755 0.011027851 -0.10875528 -0.068678439 0.0038078534 -0.11278041 -0.049963728 0.029436011 -0.1005061 -0.025749266 0.033204768 -0.093086027 -0.03277988 0.021944638 -0.099841401 -0.068766065 0.019490635 -0.11021219 -0.056922905 0.022808729 -0.10530008 -0.058404755 0.011027851 -0.10875528 -0.058404755 0.011027851 -0.10875528 -0.023298219 0.008212965 -0.10169733 -0.051917624 -6.3649022e-05 -0.10793567 -0.068678439 0.0038078534 -0.11278041 -0.058404755 0.011027851 -0.10875528 -0.051917624 -6.3649022e-05 -0.10793567 -0.068651155 -0.010902677 -0.11206814 -0.051917624 -6.3649022e-05 -0.10793567 -0.055844016 -0.0112395 -0.10801324 -0.068678439 0.0038078534 -0.11278041 -0.051917624 -6.3649022e-05 -0.10793567 -0.068651155 -0.010902677 -0.11206814 -0.061569169 0.092226267 -0.057195291 -0.069774643 0.090196587 -0.062891796 -0.069899991 0.093348064 -0.056119852 -0.06949538 0.067340121 -0.075465709 -0.061163668 0.079468198 -0.069061875 -0.058566354 0.067678489 -0.074033186 -0.061163668 0.079468198 -0.069061875 -0.06949538 0.067340121 -0.075465709 -0.069674559 0.083973825 -0.067708604 -0.061163668 0.079468198 -0.069061875 -0.069674559 0.083973825 -0.067708604 -0.061464444 0.090053029 -0.061663933 -0.061464444 0.090053029 -0.061663933 -0.069674559 0.083973825 -0.067708604 -0.069774643 0.090196587 -0.062891796 -0.061464444 0.090053029 -0.061663933 -0.069774643 0.090196587 -0.062891796 -0.061569169 0.092226267 -0.057195291 0.0070114136 -0.071491003 -0.044160862 0.018354118 -0.049756628 -0.069349349 0.020414338 -0.05686466 -0.058119543 -0.059178464 -0.06823533 -0.06158847 -0.069496095 -0.074688517 -0.053005569 -0.06913913 -0.063182533 -0.075496547 -0.017459977 -0.072571047 -0.047405876 -0.0014832541 -0.060618713 -0.060229201 0.0070114136 -0.071491003 -0.044160862 -0.059178464 -0.06823533 -0.06158847 -0.043414764 -0.062944204 -0.065869458 -0.017459977 -0.072571047 -0.047405876 -0.054800037 -0.05775883 -0.077104203 -0.068994418 -0.056991268 -0.084878571 -0.056614123 -0.048081588 -0.089229167 0.018354118 -0.049756628 -0.069349349 0.026199229 -0.048458721 -0.069679335 0.020414338 -0.05686466 -0.058119543 -0.017459977 -0.072571047 -0.047405876 -0.043414764 -0.062944204 -0.065869458 -0.032612272 -0.056827411 -0.071272068 -0.039971113 0.069404319 -0.027230103 -0.038210161 0.077792123 -0.023729442 -0.039414998 0.07546927 -0.03092863 -0.032612272 -0.056827411 -0.071272068 -0.041572805 -0.042240802 -0.089742266 -0.018659823 -0.045210905 -0.08134754 0.02701883 -0.059212729 -0.04052658 0.038130917 -0.055624738 -0.041287433 0.038314015 -0.055018108 -0.033240024 0.02701883 -0.059212729 -0.04052658 0.038314015 -0.055018108 -0.033240024 0.027745649 -0.058158208 -0.032161068 0.020414338 -0.05686466 -0.058119543 0.026199229 -0.048458721 -0.069679335 0.022882827 -0.05983939 -0.049677186 0.020414338 -0.05686466 -0.058119543 0.010144234 -0.071354568 -0.0421082 0.0070114136 -0.071491003 -0.044160862 -0.032612272 -0.056827411 -0.071272068 -0.018659823 -0.045210905 -0.08134754 0.0028792024 -0.043135583 -0.079843976 0.022882827 -0.05983939 -0.049677186 0.02701883 -0.059212729 -0.04052658 0.015554078 -0.069568962 -0.038600203 0.02701883 -0.059212729 -0.04052658 0.016401365 -0.06759467 -0.030670915 0.015554078 -0.069568962 -0.038600203 -0.054800037 -0.05775883 -0.077104203 -0.056614123 -0.048081588 -0.089229167 -0.041572805 -0.042240802 -0.089742266 -0.0014832541 -0.060618713 -0.060229201 0.0028792024 -0.043135583 -0.079843976 0.018354118 -0.049756628 -0.069349349 -0.032612272 -0.056827411 -0.071272068 -0.054800037 -0.05775883 -0.077104203 -0.041572805 -0.042240802 -0.089742266 0.022882827 -0.05983939 -0.049677186 0.015554078 -0.069568962 -0.038600203 0.010144234 -0.071354568 -0.0421082 0.010144234 -0.071354568 -0.0421082 0.020414338 -0.05686466 -0.058119543 0.022882827 -0.05983939 -0.049677186 0.022882827 -0.05983939 -0.049677186 0.033647902 -0.052549124 -0.060074639 0.02701883 -0.059212729 -0.04052658 0.033647902 -0.052549124 -0.060074639 0.036535412 -0.05487616 -0.050749764 0.02701883 -0.059212729 -0.04052658 0.02701883 -0.059212729 -0.04052658 0.036535412 -0.05487616 -0.050749764 0.038130917 -0.055624738 -0.041287433 0.022882827 -0.05983939 -0.049677186 0.026199229 -0.048458721 -0.069679335 0.033647902 -0.052549124 -0.060074639 0.016401365 -0.06759467 -0.030670915 0.02701883 -0.059212729 -0.04052658 0.023067892 -0.061036482 -0.031584922 0.016401365 -0.06759467 -0.030670915 0.023067892 -0.061036482 -0.031584922 0.016482532 -0.065805227 -0.026034841 -0.069496095 -0.074688517 -0.053005569 -0.059178464 -0.06823533 -0.06158847 -0.017459977 -0.072571047 -0.047405876 -0.069496095 -0.074688517 -0.053005569 -0.017459977 -0.072571047 -0.047405876 -0.056100972 -0.074213527 -0.050795823 0.023067892 -0.061036482 -0.031584922 0.02701883 -0.059212729 -0.04052658 0.027745649 -0.058158208 -0.032161068 -0.068887696 -0.050609149 -0.092071325 -0.056614123 -0.048081588 -0.089229167 -0.068994418 -0.056991268 -0.084878571 -0.059178464 -0.06823533 -0.06158847 -0.054800037 -0.05775883 -0.077104203 -0.032612272 -0.056827411 -0.071272068 -0.059178464 -0.06823533 -0.06158847 -0.06913913 -0.063182533 -0.075496547 -0.054800037 -0.05775883 -0.077104203 -0.06913913 -0.063182533 -0.075496547 -0.068994418 -0.056991268 -0.084878571 -0.054800037 -0.05775883 -0.077104203 -0.017459977 -0.072571047 -0.047405876 -0.032612272 -0.056827411 -0.071272068 -0.0014832541 -0.060618713 -0.060229201 -0.043414764 -0.062944204 -0.065869458 -0.059178464 -0.06823533 -0.06158847 -0.032612272 -0.056827411 -0.071272068 -0.032612272 -0.056827411 -0.071272068 0.0028792024 -0.043135583 -0.079843976 -0.0014832541 -0.060618713 -0.060229201 0.0070114136 -0.071491003 -0.044160862 -0.0014832541 -0.060618713 -0.060229201 0.018354118 -0.049756628 -0.069349349 0.0034257174 -0.038550146 -0.084353387 0.0028792024 -0.043135583 -0.079843976 -0.018659823 -0.045210905 -0.08134754 -0.06153452 -0.09244588 -0.03150038 -0.069723606 -0.090709373 -0.037236877 -0.061217956 -0.082529284 -0.044843454 -0.069840021 -0.093590528 -0.030042196 -0.06153452 -0.09244588 -0.03150038 -0.069899872 -0.093469284 -0.026585137 -0.069899872 -0.093469284 -0.026585137 -0.06153452 -0.09244588 -0.03150038 -0.061544292 -0.09160509 -0.023046942 -0.069611117 -0.083843634 -0.044844057 -0.061217956 -0.082529284 -0.044843454 -0.069723606 -0.090709373 -0.037236877 -0.069496095 -0.074688517 -0.053005569 -0.061217956 -0.082529284 -0.044843454 -0.069611117 -0.083843634 -0.044844057 -0.069496095 -0.074688517 -0.053005569 -0.056100972 -0.074213527 -0.050795823 -0.061217956 -0.082529284 -0.044843454 -0.069840021 -0.093590528 -0.030042196 -0.069723606 -0.090709373 -0.037236877 -0.06153452 -0.09244588 -0.03150038 -0.057325251 0.067059122 0.065262415 -0.058566354 0.067678489 -0.074033186 -0.058374241 0.068436757 -0.072851464 -0.029057387 0.067332514 -0.0080049243 -0.033931974 0.067313999 -0.003085976 -0.025869984 0.067305297 -0.00076583429 -0.020990245 0.067268327 0.009158792 -0.024550695 0.067237318 0.017456261 0.0034679621 0.067194059 0.004780767 -0.036958896 0.067359015 -0.015129917 -0.044224992 0.067285217 0.0046236357 -0.035555668 0.066827431 -0.0066508711 -0.024550695 0.067237318 0.017456261 -0.02902462 0.067208931 0.024992786 0.0034679621 0.067194059 0.004780767 -0.044224992 0.067285217 0.0046236357 -0.057325251 0.067059122 0.065262415 -0.043062285 0.067244589 0.015483867 -0.035555668 0.066827431 -0.0066508711 -0.044224992 0.067285217 0.0046236357 -0.033931974 0.067313999 -0.003085976 -0.043062285 0.067244589 0.015483867 -0.057325251 0.067059122 0.065262415 -0.036942698 0.067182906 0.031994786 -0.02902462 0.067208931 0.024992786 -0.02903159 0.067183524 0.031833209 0.0034679621 0.067194059 0.004780767 -0.043062285 0.067244589 0.015483867 -0.036942698 0.067182906 0.031994786 -0.036975525 0.067208871 0.024992796 -0.036942698 0.067182906 0.031994786 -0.057325251 0.067059122 0.065262415 -0.02903159 0.067183524 0.031833209 -0.043062285 0.067244589 0.015483867 -0.036975525 0.067208871 0.024992796 -0.03596247 0.067225672 0.020554915 -0.029041234 0.067359015 -0.015129921 -0.029057387 0.067332514 -0.0080049243 -0.025869984 0.067305297 -0.00076583429 -0.024161343 0.069273122 -0.0263997 -0.028673772 0.069386758 -0.022538669 -0.035951737 0.069247842 -0.019590812 -0.024161343 0.069273122 -0.0263997 -0.025978744 0.069408253 -0.028278733 -0.028673772 0.069386758 -0.022538669 -0.029041234 0.067359015 -0.015129921 -0.025869984 0.067305297 -0.00076583429 0.011387497 0.067379236 -0.026932612 -0.025869984 0.067305297 -0.00076583429 0.0034679621 0.067194059 0.004780767 0.011387497 0.067379236 -0.026932612 -0.02903159 0.067183524 0.031833209 -0.057325251 0.067059122 0.065262415 -0.012313806 0.06708844 0.055059604 -0.035555668 0.066827431 -0.0066508711 -0.033931974 0.067313999 -0.003085976 -0.029057387 0.067332514 -0.0080049243 -0.032128625 0.069433786 -0.035092898 -0.036252931 0.069299608 -0.036542919 -0.041886155 0.069279991 -0.029674456 -0.025869984 0.067305297 -0.00076583429 -0.020990245 0.067268327 0.009158792 0.0034679621 0.067194059 0.004780767 -0.02903159 0.067183524 0.031833209 -0.012313806 0.06708844 0.055059604 0.0034679621 0.067194059 0.004780767 -0.058566354 0.067678489 -0.074033186 -0.057325251 0.067059122 0.065262415 -0.044224992 0.067285217 0.0046236357 -0.058566354 0.067678489 -0.074033186 -0.044224992 0.067285217 0.0046236357 -0.036958896 0.067359015 -0.015129917 -0.058566354 0.067678489 -0.074033186 -0.036958896 0.067359015 -0.015129917 -0.029041234 0.067359015 -0.015129921 -0.058566354 0.067678489 -0.074033186 -0.029041234 0.067359015 -0.015129921 0.0050406456 0.067535639 -0.065451846 -0.03596247 0.067225672 0.020554915 -0.036975525 0.067208871 0.024992796 -0.02902462 0.067208931 0.024992786 0.0050406456 0.067535639 -0.065451846 -0.029041234 0.067359015 -0.015129921 0.011387497 0.067379236 -0.026932612 0.0050406456 0.067535639 -0.065451846 0.011387497 0.067379236 -0.026932612 0.017230511 0.067054018 -0.051962037 -0.03596247 0.067225672 0.020554915 -0.02902462 0.067208931 0.024992786 -0.024550695 0.067237318 0.017456261 -0.032128625 0.069433786 -0.035092898 -0.027117901 0.069299109 -0.03490283 -0.036252931 0.069299608 -0.036542919 -0.036216095 0.069384135 -0.021846227 -0.039971113 0.069404319 -0.027230103 -0.041886155 0.069279991 -0.029674456 0.0050406456 0.067535639 -0.065451846 0.017230511 0.067054018 -0.051962037 0.011868216 0.066990055 -0.064187646 0.027745649 -0.058158208 -0.032161068 0.02887547 -0.053918436 -0.018783959 0.018032059 -0.05492444 -0.0076477327 0.054379314 -0.048847031 -0.013903429 0.032887198 -0.049293853 -0.0071280818 0.038355723 -0.053606838 -0.02541302 -0.025978744 0.069408253 -0.028278733 -0.027117901 0.069299109 -0.03490283 -0.032128625 0.069433786 -0.035092898 -0.035951737 0.069247842 -0.019590812 -0.036216095 0.069384135 -0.021846227 -0.041886155 0.069279991 -0.029674456 0.018032059 -0.05492444 -0.0076477327 0.023067892 -0.061036482 -0.031584922 0.027745649 -0.058158208 -0.032161068 0.0066117644 -0.053599562 0.011749684 0.016482532 -0.065805227 -0.026034841 0.013426296 -0.05860943 -0.0079973517 0.02887547 -0.053918436 -0.018783959 0.027745649 -0.058158208 -0.032161068 0.038314015 -0.055018108 -0.033240024 0.018032059 -0.05492444 -0.0076477327 0.0066117644 -0.053599562 0.011749684 0.013426296 -0.05860943 -0.0079973517 0.069999903 -0.032154892 0.0033331071 0.039370432 -0.042488929 0.0027045896 0.059842512 -0.041298255 -0.0031719629 0.050216109 -0.043591838 -0.0033420823 0.059842512 -0.041298255 -0.0031719629 0.039370432 -0.042488929 0.0027045896 -0.035951737 0.069247842 -0.019590812 -0.028673772 0.069386758 -0.022538669 -0.036216095 0.069384135 -0.021846227 -0.024161343 0.069273122 -0.0263997 -0.027117901 0.069299109 -0.03490283 -0.025978744 0.069408253 -0.028278733 0.069999933 -0.038861614 -0.0023448039 0.050216109 -0.043591838 -0.0033420823 0.054379314 -0.048847031 -0.013903429 0.013426296 -0.05860943 -0.0079973517 0.023067892 -0.061036482 -0.031584922 0.018032059 -0.05492444 -0.0076477327 0.069999903 -0.032154892 0.0033331071 0.059842512 -0.041298255 -0.0031719629 0.069999933 -0.038861614 -0.0023448039 0.069999933 -0.038861614 -0.0023448039 0.059842512 -0.041298255 -0.0031719629 0.050216109 -0.043591838 -0.0033420823 -0.024159856 0.067547955 -0.029785879 -0.025399037 0.068406567 -0.027824547 -0.029928282 0.067572907 -0.03658488 0.069999933 -0.038861614 -0.0023448039 0.054379314 -0.048847031 -0.013903429 0.069999903 -0.049235724 -0.01668405 0.032887198 -0.049293853 -0.0071280818 0.02887547 -0.053918436 -0.018783959 0.038355723 -0.053606838 -0.02541302 0.010739446 -0.044509664 0.026733994 0.0035723299 -0.049894687 0.022923252 0.0066117644 -0.053599562 0.011749684 0.010739446 -0.044509664 0.026733994 0.0034675598 -0.049783103 0.023273284 0.0035723299 -0.049894687 0.022923252 0.050216109 -0.043591838 -0.0033420823 0.038864724 -0.04636924 -0.003486413 0.054379314 -0.048847031 -0.013903429 0.038355723 -0.053606838 -0.02541302 0.02887547 -0.053918436 -0.018783959 0.038314015 -0.055018108 -0.033240024 0.050216109 -0.043591838 -0.0033420823 0.039370432 -0.042488929 0.0027045896 0.038864724 -0.04636924 -0.003486413 0.038864724 -0.04636924 -0.003486413 0.032887198 -0.049293853 -0.0071280818 0.054379314 -0.048847031 -0.013903429 0.023067892 -0.061036482 -0.031584922 0.013426296 -0.05860943 -0.0079973517 0.016482532 -0.065805227 -0.026034841 0.039370432 -0.042488929 0.0027045896 0.030110911 -0.041509781 0.0099448115 0.038864724 -0.04636924 -0.003486413 0.030110911 -0.041509781 0.0099448115 0.027822316 -0.046473026 0.0034117501 0.038864724 -0.04636924 -0.003486413 0.030110911 -0.041509781 0.0099448115 0.017641023 -0.045826554 0.015643854 0.027822316 -0.046473026 0.0034117501 0.054379314 -0.048847031 -0.013903429 0.038355723 -0.053606838 -0.02541302 0.069999903 -0.049235724 -0.01668405 0.038355723 -0.053606838 -0.02541302 0.069999009 -0.054162353 -0.031468146 0.069999903 -0.049235724 -0.01668405 0.027822316 -0.046473026 0.0034117501 0.0066117644 -0.053599562 0.011749684 0.018032059 -0.05492444 -0.0076477327 0.027822316 -0.046473026 0.0034117501 0.017641023 -0.045826554 0.015643854 0.0066117644 -0.053599562 0.011749684 0.027822316 -0.046473026 0.0034117501 0.018032059 -0.05492444 -0.0076477327 0.032887198 -0.049293853 -0.0071280818 0.069999009 -0.054162353 -0.031468146 0.038355723 -0.053606838 -0.02541302 0.038314015 -0.055018108 -0.033240024 0.039370432 -0.042488929 0.0027045896 0.069999903 -0.032154892 0.0033331071 0.049863204 -0.034909021 0.0060257916 0.038864724 -0.04636924 -0.003486413 0.027822316 -0.046473026 0.0034117501 0.032887198 -0.049293853 -0.0071280818 0.017641023 -0.045826554 0.015643854 0.010739446 -0.044509664 0.026733994 0.0066117644 -0.053599562 0.011749684 0.032887198 -0.049293853 -0.0071280818 0.018032059 -0.05492444 -0.0076477327 0.02887547 -0.053918436 -0.018783959 0.016482532 -0.065805227 -0.026034841 0.0066117644 -0.053599562 0.011749684 0.016199835 -0.06760335 -0.030668816 0.016482532 -0.065805227 -0.026034841 0.016199835 -0.06760335 -0.030668816 0.016401365 -0.06759467 -0.030670915 -0.060423668 -0.090261035 -0.023038901 -0.061544292 -0.09160509 -0.023046942 -0.06153452 -0.09244588 -0.03150038 -0.060423668 -0.090261035 -0.023038901 -0.06153452 -0.09244588 -0.03150038 -0.060252242 -0.089621499 -0.035019655 -0.069899872 -0.093469284 -0.026585137 -0.061544292 -0.09160509 -0.023046942 -0.069999985 -0.092704214 -0.023412999 -0.069999993 0.056973822 0.090753354 -0.070000008 0.040672239 0.081576854 -0.070000008 0.034420546 0.10895113 -0.069999978 -0.05086305 0.053484567 -0.069999985 -0.06351658 -0.01649157 -0.069999993 -0.055019334 0.054382585 -0.070000008 0.078245208 0.037654478 -0.069999993 0.077537239 0.033179708 -0.070000008 0.064174011 0.066608347 -0.024159856 0.067547955 -0.029785879 -0.027136505 0.06751547 -0.021258617 -0.025399037 0.068406567 -0.027824547 -0.069999993 0.057101663 0.086428501 -0.070000008 0.040672239 0.081576854 -0.069999993 0.056973822 0.090753354 -0.069899991 0.093348064 -0.056119852 -0.070000008 0.077265427 -0.045945488 -0.069999993 0.0833693 -0.046620898 -0.069999993 -0.014493683 0.087373495 -0.069999978 -0.023866871 0.085126877 -0.069999985 -0.019728346 0.097018555 -0.069999978 -0.04816201 0.077764906 -0.069999978 -0.055354647 0.057000097 -0.069999978 -0.050456937 0.092110619 -0.069999993 -0.045575023 0.075234093 -0.069999978 -0.055354647 0.057000097 -0.069999978 -0.04816201 0.077764906 -0.069999978 -0.050155409 0.057959389 -0.069999978 -0.055354647 0.057000097 -0.069999993 -0.045575023 0.075234093 -0.069999993 0.089145653 0.068124406 -0.070000008 0.078245208 0.037654478 -0.070000008 0.064174011 0.066608347 -0.069999993 0.054547865 0.076065794 -0.070000008 0.040672239 0.081576854 -0.069999993 0.057101663 0.086428501 -0.069899991 0.093348064 -0.056119852 -0.069999993 0.0833693 -0.046620898 -0.069999993 0.093590438 -0.052100264 -0.070000008 0.082401305 0.036756475 -0.070000008 0.078245208 0.037654478 -0.069999993 0.089145653 0.068124406 -0.069999993 0.089145653 0.068124406 -0.069999993 0.082736678 0.034138922 -0.070000008 0.082401305 0.036756475 -0.069999993 -0.022111431 0.099296696 -0.069999993 -0.02914892 0.10972413 -0.069999993 -0.022216873 0.10286393 -0.07 -0.02772335 0.081423976 -0.069999978 -0.05086305 0.053484567 -0.069999978 -0.050155409 0.057959389 -0.07 0.061354116 0.084197141 -0.069999993 0.054547865 0.076065794 -0.069999993 0.057101663 0.086428501 -0.069999978 -0.013972934 0.099158473 -0.069999993 -0.014493683 0.087373495 -0.069999985 -0.019728346 0.097018555 -0.07 -0.02772335 0.081423976 -0.069999978 -0.050155409 0.057959389 -0.069999978 -0.044012658 0.076826014 -0.069999978 -0.044012658 0.076826014 -0.069999978 -0.050155409 0.057959389 -0.069999993 -0.045575023 0.075234093 -0.069999993 0.064323805 0.085628897 -0.069999993 0.054547865 0.076065794 -0.07 0.061354116 0.084197141 -0.070000008 0.064174011 0.066608347 -0.069999993 0.054547865 0.076065794 -0.069999993 0.064323805 0.085628897 -0.069999993 0.093590438 -0.052100264 -0.069999993 0.0833693 -0.046620898 -0.070000015 0.085160345 -0.043688577 -0.069999993 0.089145653 0.068124406 -0.070000008 0.064174011 0.066608347 -0.069998935 0.086686134 0.082350038 -0.069999978 -0.04816201 0.077764906 -0.069999978 -0.050456937 0.092110619 -0.07 -0.046599846 0.079356968 -0.069999993 0.082736678 0.034138922 -0.070000008 0.083148755 -0.039187163 -0.069999993 0.077537239 0.033179708 -0.069998935 0.086686134 0.082350038 -0.070000008 0.064174011 0.066608347 -0.069999993 0.078753687 0.089981861 -0.069999993 0.078753687 0.089981861 -0.070000008 0.064174011 0.066608347 -0.069999993 0.064323805 0.085628897 -0.07 0.067971162 -0.037560131 -0.070000008 0.064174011 0.066608347 -0.069999993 0.077537239 0.033179708 -0.07 -0.02772335 0.081423976 -0.069999985 -0.06351658 -0.01649157 -0.069999978 -0.05086305 0.053484567 -0.027136505 0.06751547 -0.021258617 -0.035954602 0.067503929 -0.019597372 -0.032193255 0.06837932 -0.020527793 -0.069899991 0.093348064 -0.056119852 -0.07 -0.057864897 -0.026104527 -0.07 0.059645295 -0.044682544 -0.069899991 0.093348064 -0.056119852 -0.069899872 -0.093469284 -0.026585137 -0.07 -0.057864897 -0.026104527 -0.069999985 -0.075017691 -0.021865273 -0.069899872 -0.093469284 -0.026585137 -0.069999978 -0.08103212 -0.020624453 -0.07 -0.057864897 -0.026104527 -0.069899872 -0.093469284 -0.026585137 -0.069999985 -0.075017691 -0.021865273 -0.07 -0.02772335 0.081423976 -0.07 -0.046599846 0.079356968 -0.069999978 -0.050456937 0.092110619 -0.07 -0.02772335 0.081423976 -0.069999978 -0.044012658 0.076826014 -0.07 -0.046599846 0.079356968 -0.069999978 -0.08103212 -0.020624453 -0.069899872 -0.093469284 -0.026585137 -0.069999985 -0.092704214 -0.023412999 -0.07 -0.02772335 0.081423976 -0.069999978 -0.050456937 0.092110619 -0.06999933 -0.046640016 0.10057989 -0.07 -0.02772335 0.081423976 -0.06999933 -0.046640016 0.10057989 -0.069999993 -0.02914892 0.10972413 -0.025399037 0.068406567 -0.027824547 -0.027136505 0.06751547 -0.021258617 -0.032193255 0.06837932 -0.020527793 -0.069999978 -0.08103212 -0.020624453 -0.069999985 -0.092704214 -0.023412999 -0.069999978 -0.081181422 -0.015578973 -0.069999978 -0.081181422 -0.015578973 -0.069999985 -0.092704214 -0.023412999 -0.069999993 -0.055019334 0.054382585 -0.069999993 -0.055019334 0.054382585 -0.069999985 -0.092704214 -0.023412999 -0.069999978 -0.055354647 0.057000097 -0.069999978 -0.055354647 0.057000097 -0.069999985 -0.092704214 -0.023412999 -0.069999978 -0.050456937 0.092110619 -0.070000008 0.059557449 0.10130908 -0.069999993 0.056973822 0.090753354 -0.070000008 0.034420546 0.10895113 -0.069899991 0.093348064 -0.056119852 -0.07 0.059645295 -0.044682544 -0.070000008 0.077265427 -0.045945488 -0.069999993 0.093590438 -0.052100264 -0.070000015 0.085160345 -0.043688577 -0.070000008 0.083148755 -0.039187163 -0.069999993 0.093590438 -0.052100264 -0.070000008 0.083148755 -0.039187163 -0.069999993 0.082736678 0.034138922 -0.069999993 0.089145653 0.068124406 -0.069999993 0.093590438 -0.052100264 -0.069999993 0.082736678 0.034138922 -0.07 -0.057864897 -0.026104527 -0.069999985 -0.075017691 -0.021865273 -0.069999985 -0.06351658 -0.01649157 -0.069999993 -0.016685864 0.10552999 -0.069999993 -0.022216873 0.10286393 -0.069999993 -0.02914892 0.10972413 -0.07 0.062729232 0.09289328 -0.069999993 0.056973822 0.090753354 -0.070000008 0.059557449 0.10130908 -0.069999978 -0.012170043 0.11278046 -0.069999993 -0.016685864 0.10552999 -0.069999993 -0.02914892 0.10972413 -0.069999993 -0.014493683 0.087373495 -0.069999978 -0.013972934 0.099158473 -0.07 0.014513521 0.11213996 -0.069999993 -0.075251468 -0.013984108 -0.069999978 -0.081181422 -0.015578973 -0.069999993 -0.055019334 0.054382585 -0.07 0.014513521 0.11213996 -0.069999978 -0.013972934 0.099158473 -0.069999978 -0.012170043 0.11278046 -0.069999993 0.078753687 0.089981861 -0.069999993 0.064323805 0.085628897 -0.07 0.065112196 0.090615049 -0.069999985 -0.06351658 -0.01649157 -0.069999985 -0.075017691 -0.021865273 -0.07 -0.073090971 -0.016474381 -0.069999978 -0.012170043 0.11278046 -0.069999978 -0.013972934 0.099158473 -0.069999993 -0.016685864 0.10552999 -0.069999978 -0.023866871 0.085126877 -0.07 -0.02772335 0.081423976 -0.069999993 -0.02914892 0.10972413 -0.070000008 0.077265427 -0.045945488 -0.07 0.059645295 -0.044682544 -0.07 0.067971162 -0.037560131 -0.069999993 -0.022111431 0.099296696 -0.069999978 -0.023866871 0.085126877 -0.069999993 -0.02914892 0.10972413 -0.07 0.065112196 0.090615049 -0.07 0.062729232 0.09289328 -0.070000008 0.059557449 0.10130908 -0.069999985 -0.06351658 -0.01649157 -0.069999993 -0.075251468 -0.013984108 -0.069999993 -0.055019334 0.054382585 -0.069999993 0.013431945 0.087087952 -0.069999993 -0.014493683 0.087373495 -0.07 0.014513521 0.11213996 -0.069999985 -0.019728346 0.097018555 -0.069999978 -0.023866871 0.085126877 -0.069999993 -0.022111431 0.099296696 -0.070000008 0.077265427 -0.045945488 -0.07 0.067971162 -0.037560131 -0.069999993 0.07709606 -0.040223148 -0.069999993 0.078753687 0.089981861 -0.07 0.065112196 0.090615049 -0.070000008 0.059557449 0.10130908 -0.07 -0.073090971 -0.016474381 -0.069999993 -0.075251468 -0.013984108 -0.069999985 -0.06351658 -0.01649157 -0.070000008 0.034420546 0.10895113 -0.069999993 0.013431945 0.087087952 -0.07 0.014513521 0.11213996 -0.070000008 0.040672239 0.081576854 -0.069999993 0.013431945 0.087087952 -0.070000008 0.034420546 0.10895113 -0.070000008 0.083148755 -0.039187163 -0.07 0.067971162 -0.037560131 -0.069999993 0.077537239 0.033179708 -0.069999993 0.07709606 -0.040223148 -0.07 0.067971162 -0.037560131 -0.070000008 0.083148755 -0.039187163 -0.069899991 0.093348064 -0.056119852 -0.061573271 0.092671372 -0.051927648 -0.061569169 0.092226267 -0.057195291 -0.061573271 0.092671372 -0.051927648 -0.069899991 0.093348064 -0.056119852 -0.069999993 0.093590438 -0.052100264 -0.025399037 0.068406567 -0.027824547 -0.032193255 0.06837932 -0.020527793 -0.028607249 0.066389509 -0.023279354 -0.061573271 0.092671372 -0.051927648 -0.060394965 0.091321133 -0.055799346 -0.061569169 0.092226267 -0.057195291 -0.060155045 0.075097367 -0.049428005 -0.060394965 0.091321133 -0.055799346 -0.060277719 0.083009303 -0.051180996 -0.062500089 0.066485301 0.082177013 -0.061086591 0.070614561 0.067380689 -0.061234169 0.069264449 0.086608663 -0.061086591 0.070614561 0.067380689 -0.061466411 0.085790336 0.079633012 -0.061234169 0.069264449 0.086608663 -0.060473755 0.0885766 -0.039768957 -0.061025981 0.081823818 0.037411854 -0.060974427 0.081331164 0.032460615 -0.060453892 0.020810181 0.094311811 -0.060955055 0.052794091 0.086422302 -0.060651116 0.024382966 0.10861168 -0.061011203 0.053454485 0.092655398 -0.061238065 0.064598061 0.096437715 -0.060651116 0.024382966 0.10861168 -0.060277719 0.083009303 -0.051180996 -0.060394965 0.091321133 -0.055799346 -0.060435135 0.088958472 -0.044983417 -0.06091946 0.076851577 0.035119504 -0.061025981 0.081823818 0.037411854 -0.061086591 0.070614561 0.067380689 -0.061025981 0.081823818 0.037411854 -0.061466411 0.085790336 0.079633012 -0.061086591 0.070614561 0.067380689 -0.060250308 0.074453644 -0.037161987 -0.060974427 0.081331164 0.032460615 -0.06091946 0.076851577 0.035119504 -0.024159856 0.067547955 -0.029785879 -0.027117901 0.069299109 -0.03490283 -0.024161343 0.069273122 -0.0263997 -0.060250308 0.074453644 -0.037161987 -0.060381841 0.080653474 -0.034456227 -0.060974427 0.081331164 0.032460615 -0.060955055 0.052794091 0.086422302 -0.061011203 0.053454485 0.092655398 -0.060651116 0.024382966 0.10861168 -0.060394965 0.091321133 -0.055799346 -0.060473755 0.0885766 -0.039768957 -0.060435135 0.088958472 -0.044983417 -0.027136505 0.06751547 -0.021258617 -0.035951737 0.069247842 -0.019590812 -0.035954602 0.067503929 -0.019597372 -0.061234169 0.069264449 0.086608663 -0.061238065 0.064598061 0.096437715 -0.06250006 0.069181733 0.091129944 -0.061234169 0.069264449 0.086608663 -0.061466411 0.085790336 0.079633012 -0.061238065 0.064598061 0.096437715 -0.060381841 0.080653474 -0.034456227 -0.060473755 0.0885766 -0.039768957 -0.060974427 0.081331164 0.032460615 -0.060473755 0.0885766 -0.039768957 -0.061466411 0.085790336 0.079633012 -0.061025981 0.081823818 0.037411854 -0.060394965 0.091321133 -0.055799346 -0.061466411 0.085790336 0.079633012 -0.060473755 0.0885766 -0.039768957 -0.061086591 0.070614561 0.067380689 -0.060250308 0.074453644 -0.037161987 -0.06091946 0.076851577 0.035119504 -0.061086591 0.070614561 0.067380689 -0.060181495 0.072407186 -0.040977538 -0.060250308 0.074453644 -0.037161987 -0.061086591 0.070614561 0.067380689 -0.060155045 0.075097367 -0.049428005 -0.060181495 0.072407186 -0.040977538 -0.060197726 0.068508856 0.066115871 -0.057325251 0.067059122 0.065262415 -0.058374241 0.068436757 -0.072851464 -0.061086591 0.070614561 0.067380689 -0.060197726 0.068508856 0.066115871 -0.059785262 0.070605189 -0.071868792 -0.059785262 0.070605189 -0.071868792 -0.060197726 0.068508856 0.066115871 -0.058374241 0.068436757 -0.072851464 -0.041863091 0.067548469 -0.029732728 -0.041840378 0.067535236 -0.026409315 -0.041886155 0.069279991 -0.029674456 -0.060155045 0.075097367 -0.049428005 -0.061086591 0.070614561 0.067380689 -0.059785262 0.070605189 -0.071868792 -0.035951737 0.069247842 -0.019590812 -0.041886155 0.069279991 -0.029674456 -0.041840378 0.067535236 -0.026409315 0.011387497 0.067379236 -0.026932612 0.017366692 0.066900998 -0.051937554 0.017230511 0.067054018 -0.051962037 0.011387497 0.067379236 -0.026932612 0.0034679621 0.067194059 0.004780767 0.0035656691 0.067187056 0.0044325353 0.069999889 0.05483951 -0.037778545 0.069999695 0.054448009 -0.048734959 0.036677822 0.056123067 -0.041440345 0.019380078 0.061282292 -0.01209362 0.017648578 0.061079599 -0.0013419732 0.034428507 0.054310679 -0.0084613487 0.019380078 0.061282292 -0.01209362 0.034428507 0.054310679 -0.0084613487 0.032108516 0.056941815 -0.016514543 0.032108516 0.056941815 -0.016514543 0.039435402 0.056002043 -0.022838844 0.046311408 0.055598285 -0.029215295 0.017648578 0.061079599 -0.0013419732 0.019380078 0.061282292 -0.01209362 0.0075415373 0.067231581 -0.010465654 0.032108516 0.056941815 -0.016514543 0.046311408 0.055598285 -0.029215295 0.036677822 0.056123067 -0.041440345 -0.041863091 0.067548469 -0.029732728 -0.041886155 0.069279991 -0.029674456 -0.036252931 0.069299608 -0.036542919 0.0035656691 0.067187056 0.0044325353 0.0034754872 0.067188509 0.0047486955 0.011387497 0.067379236 -0.026932612 0.019380078 0.061282292 -0.01209362 0.032108516 0.056941815 -0.016514543 0.024488553 0.059675504 -0.026063392 0.036677822 0.056123067 -0.041440345 0.046311408 0.055598285 -0.029215295 0.069999889 0.05483951 -0.037778545 0.024488553 0.059675504 -0.026063392 0.036677822 0.056123067 -0.041440345 0.038425103 0.054246135 -0.053100407 0.024488553 0.059675504 -0.026063392 0.032108516 0.056941815 -0.016514543 0.036677822 0.056123067 -0.041440345 0.019380078 0.061282292 -0.01209362 0.024488553 0.059675504 -0.026063392 0.030345306 0.056839295 -0.050418712 0.019380078 0.061282292 -0.01209362 0.026235938 0.058864731 -0.050680798 0.0075415373 0.067231581 -0.010465654 0.030345306 0.056839295 -0.050418712 0.024488553 0.059675504 -0.026063392 0.038425103 0.054246135 -0.053100407 0.030345306 0.056839295 -0.050418712 0.026235938 0.058864731 -0.050680798 0.019380078 0.061282292 -0.01209362 0.011387497 0.067379236 -0.026932612 0.0034754872 0.067188509 0.0047486955 0.0075415373 0.067231581 -0.010465654 -0.027117901 0.069299109 -0.03490283 -0.029928282 0.067572907 -0.03658488 -0.036252931 0.069299608 -0.036542919 0.017403357 0.066837214 -0.051928058 0.011387497 0.067379236 -0.026932612 0.026235938 0.058864731 -0.050680798 0.069999993 0.048287403 -0.015109054 0.057843924 0.049129572 -0.012838353 0.070000008 0.043260802 -0.0074341637 0.011387497 0.067379236 -0.026932612 0.0075415373 0.067231581 -0.010465654 0.026235938 0.058864731 -0.050680798 0.057843924 0.049129572 -0.012838353 0.069999993 0.048287403 -0.015109054 0.062201381 0.052988056 -0.024983253 0.069999889 0.05483951 -0.037778545 0.062201381 0.052988056 -0.024983253 0.069999993 0.048287403 -0.015109054 0.062201381 0.052988056 -0.024983253 0.069999889 0.05483951 -0.037778545 0.046311408 0.055598285 -0.029215295 0.032108516 0.056941815 -0.016514543 0.057843924 0.049129572 -0.012838353 0.062201381 0.052988056 -0.024983253 0.034428507 0.054310679 -0.0084613487 0.057843924 0.049129572 -0.012838353 0.032108516 0.056941815 -0.016514543 0.032108516 0.056941815 -0.016514543 0.062201381 0.052988056 -0.024983253 0.039435402 0.056002043 -0.022838844 0.011387497 0.067379236 -0.026932612 0.017403357 0.066837214 -0.051928058 0.017366692 0.066900998 -0.051937554 0.062201381 0.052988056 -0.024983253 0.046311408 0.055598285 -0.029215295 0.039435402 0.056002043 -0.022838844 0.040637188 0.040807635 0.0067837657 0.030939594 0.047622535 0.0093773017 0.032981202 0.04293311 0.012831192 0.032981202 0.04293311 0.012831192 0.044032425 0.027591208 0.013303258 0.040637188 0.040807635 0.0067837657 0.052948818 0.02022155 0.012151033 0.044032425 0.027591208 0.013303258 0.052442215 0.007848301 0.015099191 0.0422782 0.022562029 0.016604031 0.052442215 0.007848301 0.015099191 0.044032425 0.027591208 0.013303258 -0.038244732 0.066422187 -0.032004844 -0.039554365 0.068393126 -0.024235737 -0.041840378 0.067535236 -0.026409315 -0.038244732 0.066422187 -0.032004844 -0.038007203 0.066391706 -0.023871526 -0.039554365 0.068393126 -0.024235737 0.044032425 0.027591208 0.013303258 0.034257725 0.034318529 0.019103644 0.0422782 0.022562029 0.016604031 0.036757797 0.015547283 0.024214929 0.0422782 0.022562029 0.016604031 0.034257725 0.034318529 0.019103644 0.069999993 0.033870447 0.0019547292 0.057956219 0.038676079 0.00036750591 0.052452996 0.037159562 0.0034343489 0.027501941 0.053819202 0.002495754 0.017648578 0.061079599 -0.0013419732 0.01193475 0.062241983 0.011344201 0.069999993 0.019167796 0.010205095 0.0591795 0.0078186663 0.013728308 0.070000008 0.0052631926 0.013396179 -0.038007203 0.066391706 -0.023871526 -0.032193255 0.06837932 -0.020527793 -0.039554365 0.068393126 -0.024235737 -0.038244732 0.066422187 -0.032004844 -0.041840378 0.067535236 -0.026409315 -0.041863091 0.067548469 -0.029732728 0.053230904 0.030748572 0.0074932468 0.052948818 0.02022155 0.012151033 0.069999993 0.019167796 0.010205095 0.069999993 0.019167796 0.010205095 0.069999993 0.033870447 0.0019547292 0.053230904 0.030748572 0.0074932468 0.017648578 0.061079599 -0.0013419732 0.027501941 0.053819202 0.002495754 0.034428507 0.054310679 -0.0084613487 0.0591795 0.0078186663 0.013728308 0.069999993 0.019167796 0.010205095 0.052948818 0.02022155 0.012151033 -0.034738671 0.066431269 -0.034428589 -0.038244732 0.066422187 -0.032004844 -0.041863091 0.067548469 -0.029732728 0.017648578 0.061079599 -0.0013419732 0.0075415373 0.067231581 -0.010465654 0.01193475 0.062241983 0.011344201 0.040637188 0.040807635 0.0067837657 0.027501941 0.053819202 0.002495754 0.030939594 0.047622535 0.0093773017 -0.034738671 0.066431269 -0.034428589 -0.041863091 0.067548469 -0.029732728 -0.033806983 0.068435878 -0.035660882 0.030939594 0.047622535 0.0093773017 0.027501941 0.053819202 0.002495754 0.019887328 0.054261085 0.017997365 0.040637188 0.040807635 0.0067837657 0.044032425 0.027591208 0.013303258 0.053230904 0.030748572 0.0074932468 0.052442215 0.007848301 0.015099191 0.0591795 0.0078186663 0.013728308 0.052948818 0.02022155 0.012151033 0.052452996 0.037159562 0.0034343489 0.040637188 0.040807635 0.0067837657 0.053230904 0.030748572 0.0074932468 0.0075415373 0.067231581 -0.010465654 0.0034754872 0.067188509 0.0047486955 0.01193475 0.062241983 0.011344201 0.057956219 0.038676079 0.00036750591 0.048570409 0.045572948 -0.0034168931 0.052452996 0.037159562 0.0034343489 0.034257725 0.034318529 0.019103644 0.044032425 0.027591208 0.013303258 0.032981202 0.04293311 0.012831192 0.048570409 0.045572948 -0.0034168931 0.034428507 0.054310679 -0.0084613487 0.027501941 0.053819202 0.002495754 -0.035951737 0.069247842 -0.019590812 -0.041840378 0.067535236 -0.026409315 -0.035954602 0.067503929 -0.019597372 0.047362916 0.0069994745 0.017102299 0.052442215 0.007848301 0.015099191 0.0422782 0.022562029 0.016604031 0.053230904 0.030748572 0.0074932468 0.069999993 0.033870447 0.0019547292 0.052452996 0.037159562 0.0034343489 0.019887328 0.054261085 0.017997365 0.027501941 0.053819202 0.002495754 0.01193475 0.062241983 0.011344201 0.034257725 0.034318529 0.019103644 0.030908212 0.024569364 0.029350484 0.036757797 0.015547283 0.024214929 -0.028607249 0.066389509 -0.023279354 -0.027846873 0.066422604 -0.032124702 -0.025399037 0.068406567 -0.027824547 0.047362916 0.0069994745 0.017102299 0.0422782 0.022562029 0.016604031 0.042044118 0.0085557373 0.020160262 0.052452996 0.037159562 0.0034343489 0.027501941 0.053819202 0.002495754 0.040637188 0.040807635 0.0067837657 0.048570409 0.045572948 -0.0034168931 0.027501941 0.053819202 0.002495754 0.052452996 0.037159562 0.0034343489 0.070000008 0.043260802 -0.0074341637 0.057956219 0.038676079 0.00036750591 0.069999993 0.033870447 0.0019547292 0.048570409 0.045572948 -0.0034168931 0.070000008 0.043260802 -0.0074341637 0.057843924 0.049129572 -0.012838353 0.057956219 0.038676079 0.00036750591 0.070000008 0.043260802 -0.0074341637 0.048570409 0.045572948 -0.0034168931 -0.027846873 0.066422604 -0.032124702 -0.034738671 0.066431269 -0.034428589 -0.033806983 0.068435878 -0.035660882 0.030939594 0.047622535 0.0093773017 0.019887328 0.054261085 0.017997365 0.032981202 0.04293311 0.012831192 -0.027846873 0.066422604 -0.032124702 -0.033806983 0.068435878 -0.035660882 -0.029928282 0.067572907 -0.03658488 0.034428507 0.054310679 -0.0084613487 0.048570409 0.045572948 -0.0034168931 0.057843924 0.049129572 -0.012838353 0.052948818 0.02022155 0.012151033 0.053230904 0.030748572 0.0074932468 0.044032425 0.027591208 0.013303258 0.050535113 -0.023626074 0.012558234 0.040013924 -0.023097359 0.017901717 0.039915323 -0.035365473 0.0099480487 0.042044118 0.0085557373 0.020160262 0.0422782 0.022562029 0.016604031 0.035738498 0.0068674576 0.026947943 0.061227113 -0.025985258 0.0086266948 0.069999903 -0.032154892 0.0033331071 0.070000023 -0.019580506 0.010071891 -0.027846873 0.066422604 -0.032124702 -0.029928282 0.067572907 -0.03658488 -0.025399037 0.068406567 -0.027824547 0.040013924 -0.023097359 0.017901717 0.044005916 -0.0059605218 0.019493205 0.042724296 -0.013597317 0.0192574 0.035738498 0.0068674576 0.026947943 0.0422782 0.022562029 0.016604031 0.036757797 0.015547283 0.024214929 -0.038007203 0.066391706 -0.023871526 -0.028607249 0.066389509 -0.023279354 -0.032193255 0.06837932 -0.020527793 0.049274109 -0.005653176 0.016950281 0.047362916 0.0069994745 0.017102299 0.044005916 -0.0059605218 0.019493205 0.061227113 -0.025985258 0.0086266948 0.044005916 -0.0059605218 0.019493205 0.050535113 -0.023626074 0.012558234 0.061227113 -0.025985258 0.0086266948 0.056189403 -0.013739766 0.013948106 0.044005916 -0.0059605218 0.019493205 0.049863204 -0.034909021 0.0060257916 0.039915323 -0.035365473 0.0099480487 0.039370432 -0.042488929 0.0027045896 -0.036252931 0.069299608 -0.036542919 -0.029928282 0.067572907 -0.03658488 -0.033806983 0.068435878 -0.035660882 0.039915323 -0.035365473 0.0099480487 0.034558997 -0.02529626 0.021163391 0.028722763 -0.035632659 0.018219639 0.058680698 -0.0035936462 0.014566763 0.0591795 0.0078186663 0.013728308 0.049274109 -0.005653176 0.016950281 0.034979314 -0.015162227 0.025553258 0.042724296 -0.013597317 0.0192574 0.037192315 -0.0065507013 0.025098637 0.070000023 -0.019580506 0.010071891 0.069999993 -0.012185953 0.01230573 0.056189403 -0.013739766 0.013948106 0.070000023 -0.019580506 0.010071891 0.056189403 -0.013739766 0.013948106 0.061227113 -0.025985258 0.0086266948 -0.032193255 0.06837932 -0.020527793 -0.035954602 0.067503929 -0.019597372 -0.039554365 0.068393126 -0.024235737 0.040013924 -0.023097359 0.017901717 0.042724296 -0.013597317 0.0192574 0.034979314 -0.015162227 0.025553258 0.040013924 -0.023097359 0.017901717 0.034979314 -0.015162227 0.025553258 0.034558997 -0.02529626 0.021163391 0.061227113 -0.025985258 0.0086266948 0.050535113 -0.023626074 0.012558234 0.049863204 -0.034909021 0.0060257916 0.039915323 -0.035365473 0.0099480487 0.040013924 -0.023097359 0.017901717 0.034558997 -0.02529626 0.021163391 0.049863204 -0.034909021 0.0060257916 0.050535113 -0.023626074 0.012558234 0.039915323 -0.035365473 0.0099480487 -0.035954602 0.067503929 -0.019597372 -0.041840378 0.067535236 -0.026409315 -0.039554365 0.068393126 -0.024235737 0.042724296 -0.013597317 0.0192574 0.044005916 -0.0059605218 0.019493205 0.037192315 -0.0065507013 0.025098637 0.070000008 0.0052631926 0.013396179 0.0591795 0.0078186663 0.013728308 0.058680698 -0.0035936462 0.014566763 0.050535113 -0.023626074 0.012558234 0.044005916 -0.0059605218 0.019493205 0.040013924 -0.023097359 0.017901717 0.039915323 -0.035365473 0.0099480487 0.030110911 -0.041509781 0.0099448115 0.039370432 -0.042488929 0.0027045896 -0.041863091 0.067548469 -0.029732728 -0.036252931 0.069299608 -0.036542919 -0.033806983 0.068435878 -0.035660882 0.047362916 0.0069994745 0.017102299 0.042044118 0.0085557373 0.020160262 0.044005916 -0.0059605218 0.019493205 0.044005916 -0.0059605218 0.019493205 0.042044118 0.0085557373 0.020160262 0.037192315 -0.0065507013 0.025098637 0.058680698 -0.0035936462 0.014566763 0.049274109 -0.005653176 0.016950281 0.056189403 -0.013739766 0.013948106 0.0591795 0.0078186663 0.013728308 0.052442215 0.007848301 0.015099191 0.049274109 -0.005653176 0.016950281 0.061227113 -0.025985258 0.0086266948 0.049863204 -0.034909021 0.0060257916 0.069999903 -0.032154892 0.0033331071 0.069999993 -0.012185953 0.01230573 0.058680698 -0.0035936462 0.014566763 0.056189403 -0.013739766 0.013948106 0.028722763 -0.035632659 0.018219639 0.030110911 -0.041509781 0.0099448115 0.039915323 -0.035365473 0.0099480487 0.030110911 -0.041509781 0.0099448115 0.028722763 -0.035632659 0.018219639 0.017641023 -0.045826554 0.015643854 0.028722763 -0.035632659 0.018219639 0.034558997 -0.02529626 0.021163391 0.029744208 -0.030762747 0.022065073 0.058680698 -0.0035936462 0.014566763 0.069999993 -0.012185953 0.01230573 0.070000008 0.0052631926 0.013396179 0.010739446 -0.044509664 0.026733994 0.017641023 -0.045826554 0.015643854 0.028722763 -0.035632659 0.018219639 0.037192315 -0.0065507013 0.025098637 0.042044118 0.0085557373 0.020160262 0.035738498 0.0068674576 0.026947943 0.044005916 -0.0059605218 0.019493205 0.056189403 -0.013739766 0.013948106 0.049274109 -0.005653176 0.016950281 0.049274109 -0.005653176 0.016950281 0.052442215 0.007848301 0.015099191 0.047362916 0.0069994745 0.017102299 -0.04444129 0.06255988 0.073957637 -0.057675079 0.064142086 0.073697835 -0.057615168 0.06144442 0.076486297 -0.057675079 0.064142086 0.073697835 -0.031066239 0.064842999 0.069323868 -0.057465672 0.066157669 0.069905601 -0.012313806 0.06708844 0.055059604 -0.015475936 0.066329405 0.061415281 -0.0096955895 0.065589413 0.05629896 -0.015475936 0.066329405 0.061415281 -0.012313806 0.06708844 0.055059604 -0.057325251 0.067059122 0.065262415 -0.031066239 0.064842999 0.069323868 -0.057675079 0.064142086 0.073697835 -0.04444129 0.06255988 0.073957637 -0.015475936 0.066329405 0.061415281 -0.057465672 0.066157669 0.069905601 -0.031066239 0.064842999 0.069323868 -0.015475936 0.066329405 0.061415281 -0.057325251 0.067059122 0.065262415 -0.057465672 0.066157669 0.069905601 -0.025869984 0.067305297 -0.00076583429 -0.033931974 0.067313999 -0.003085976 -0.037755147 0.066310517 -0.0021332831 -0.021837499 0.066252634 0.013336025 -0.020990245 0.067268327 0.009158792 -0.025869984 0.067305297 -0.00076583429 -0.024550695 0.067237318 0.017456261 -0.020990245 0.067268327 0.009158792 -0.021837499 0.066252634 0.013336025 -0.026577834 0.066231273 0.01904957 -0.024550695 0.067237318 0.017456261 -0.021837499 0.066252634 0.013336025 -0.03596247 0.067225672 0.020554915 -0.024550695 0.067237318 0.017456261 -0.026577834 0.066231273 0.01904957 0.0066117644 -0.053599562 0.011749684 0.0035723299 -0.049894687 0.022923252 0.0034755617 -0.049791373 0.023246281 -0.046086155 -0.02016812 0.089111708 -0.057589408 -0.019002272 0.090598658 -0.05792284 -0.024106804 0.088884905 -0.057525933 -0.028842557 0.084753729 -0.026378214 -0.031603601 0.078876033 -0.0403772 -0.029093599 0.083662681 -0.030440748 -0.027766716 0.083766706 -0.026378214 -0.031603601 0.078876033 -0.014273591 -0.031927325 0.075879633 -0.027136505 0.06751547 -0.021258617 -0.024161343 0.069273122 -0.0263997 -0.035951737 0.069247842 -0.019590812 -0.057533935 -0.030935189 0.080966786 -0.026378214 -0.031603601 0.078876033 -0.057525933 -0.028842557 0.084753729 -0.014273591 -0.031927325 0.075879633 -0.026378214 -0.031603601 0.078876033 -0.011104465 -0.033764236 0.071284026 -0.0403772 -0.029093599 0.083662681 -0.026378214 -0.031603601 0.078876033 -0.030440748 -0.027766716 0.083766706 -0.057525933 -0.028842557 0.084753729 -0.0403772 -0.029093599 0.083662681 -0.05792284 -0.024106804 0.088884905 -0.046086155 -0.02016812 0.089111708 -0.05792284 -0.024106804 0.088884905 -0.030440748 -0.027766716 0.083766706 -0.05792284 -0.024106804 0.088884905 -0.0403772 -0.029093599 0.083662681 -0.030440748 -0.027766716 0.083766706 -0.030440748 -0.027766716 0.083766706 -0.014273591 -0.031927325 0.075879633 -0.017077811 -0.027851969 0.080243558 -0.060405549 -0.017907593 0.092698343 -0.05792284 -0.024106804 0.088884905 -0.057589408 -0.019002272 0.090598658 -0.061090402 -0.033431977 0.084531814 -0.05979662 -0.031758342 0.08174222 -0.057525933 -0.028842557 0.084753729 -0.060405549 -0.017907593 0.092698343 -0.061090402 -0.033431977 0.084531814 -0.05792284 -0.024106804 0.088884905 -0.05792284 -0.024106804 0.088884905 -0.061090402 -0.033431977 0.084531814 -0.057525933 -0.028842557 0.084753729 -0.057525933 -0.028842557 0.084753729 -0.05979662 -0.031758342 0.08174222 -0.057533935 -0.030935189 0.080966786 -0.069999993 -0.045575023 0.075234093 -0.069999978 -0.04816201 0.077764906 -0.061147146 -0.046311162 0.075183868 -0.069999978 -0.044012658 0.076826014 -0.069999993 -0.045575023 0.075234093 -0.061147146 -0.046311162 0.075183868 -0.024159856 0.067547955 -0.029785879 -0.029928282 0.067572907 -0.03658488 -0.027117901 0.069299109 -0.03490283 -0.061147146 -0.046311162 0.075183868 -0.069999978 -0.04816201 0.077764906 -0.061198514 -0.045863457 0.079407185 -0.024161343 0.069273122 -0.0263997 -0.027136505 0.06751547 -0.021258617 -0.024159856 0.067547955 -0.029785879 -0.060298026 -0.082938649 -0.024438296 -0.062500045 -0.085525863 -0.020411719 -0.060450613 -0.085629143 -0.015987612 -0.062500045 -0.083109803 -0.024281481 -0.062500045 -0.085525863 -0.020411719 -0.060298026 -0.082938649 -0.024438296 -0.060166005 -0.069077916 -0.019993527 -0.062500037 -0.074863911 -0.026143098 -0.060164213 -0.075026654 -0.026190907 -0.062500052 -0.069706246 -0.021756176 -0.062500037 -0.074863911 -0.026143098 -0.060166005 -0.069077916 -0.019993527 -0.062500067 -0.069181241 -0.015569324 -0.062500052 -0.069706246 -0.021756176 -0.060166005 -0.069077916 -0.019993527 -0.062500037 -0.074863911 -0.026143098 -0.062500045 -0.083109803 -0.024281481 -0.060164213 -0.075026654 -0.026190907 -0.060164213 -0.075026654 -0.026190907 -0.062500045 -0.083109803 -0.024281481 -0.060298026 -0.082938649 -0.024438296 -0.060405549 -0.017907593 0.092698343 -0.062500052 -0.025795884 0.097738445 -0.061155275 -0.025447736 0.097042829 -0.062500052 -0.016493732 0.092825092 -0.062500052 -0.025795884 0.097738445 -0.060405549 -0.017907593 0.092698343 -0.062500052 -0.025795884 0.097738445 -0.062500067 -0.024364077 0.10688394 -0.061267372 -0.025563627 0.10515012 -0.061155275 -0.025447736 0.097042829 -0.062500052 -0.025795884 0.097738445 -0.061267372 -0.025563627 0.10515012 -0.060977824 -0.0095476229 0.1002334 -0.062500052 -0.012063912 0.095091909 -0.060818836 -0.012676383 0.094566807 -0.062500052 -0.0098363822 0.10362493 -0.062500052 -0.012063912 0.095091909 -0.060977824 -0.0095476229 0.1002334 -0.060818836 -0.012676383 0.094566807 -0.062500052 -0.016493732 0.092825092 -0.060405549 -0.017907593 0.092698343 -0.062500052 -0.012063912 0.095091909 -0.062500052 -0.016493732 0.092825092 -0.060818836 -0.012676383 0.094566807 -0.057732578 -0.010435039 0.091940708 -0.057087015 0.014568255 0.091550358 -0.060405549 -0.017907593 0.092698343 -0.060405549 -0.017907593 0.092698343 -0.057087015 0.014568255 0.091550358 -0.060453892 0.020810181 0.094311811 -0.060405549 -0.017907593 0.092698343 -0.060453892 0.020810181 0.094311811 -0.060818836 -0.012676383 0.094566807 -0.057087015 0.014568255 0.091550358 -0.059382986 0.021457959 0.091860458 -0.060453892 0.020810181 0.094311811 -0.057589408 -0.019002272 0.090598658 -0.057732578 -0.010435039 0.091940708 -0.060405549 -0.017907593 0.092698343 -0.062351175 -0.018839421 0.11114404 -0.061221078 -0.01775687 0.1097124 -0.060651116 0.024382966 0.10861168 -0.060651116 0.024382966 0.10861168 -0.061729133 0.019259436 0.11060862 -0.061958179 0.0088289576 0.11178244 -0.061958179 0.0088289576 0.11178244 -0.062351175 -0.018839421 0.11114404 -0.060651116 0.024382966 0.10861168 -0.062351175 -0.018839421 0.11114404 -0.062538601 -0.03501796 0.10678919 -0.061221078 -0.01775687 0.1097124 -0.062608108 -0.045077667 0.10133749 -0.061477475 -0.044754632 0.099868104 -0.062538601 -0.03501796 0.10678919 -0.061477475 -0.044754632 0.099868104 -0.061221078 -0.01775687 0.1097124 -0.062538601 -0.03501796 0.10678919 -0.062557817 -0.050085653 0.090793669 -0.061477475 -0.044754632 0.099868104 -0.062608108 -0.045077667 0.10133749 -0.062557817 -0.050085653 0.090793669 -0.060423668 -0.090261035 -0.023038901 -0.061477475 -0.044754632 0.099868104 -0.03425343 0.074736945 -0.034981839 -0.035817981 0.078600906 -0.033852912 -0.02956409 0.078599095 -0.033509236 -0.061544292 -0.09160509 -0.023046942 -0.060423668 -0.090261035 -0.023038901 -0.062557817 -0.050085653 0.090793669 -0.069999978 -0.05086305 0.053484567 -0.069999993 -0.055019334 0.054382585 -0.060967635 -0.054441482 0.053727102 -0.060915515 -0.05102424 0.053389795 -0.069999978 -0.05086305 0.053484567 -0.060967635 -0.054441482 0.053727102 -0.069999993 -0.055019334 0.054382585 -0.069999978 -0.055354647 0.057000097 -0.061030142 -0.054923929 0.057820477 -0.060967635 -0.054441482 0.053727102 -0.069999993 -0.055019334 0.054382585 -0.061030142 -0.054923929 0.057820477 -0.061544292 -0.09160509 -0.023046942 -0.069999978 -0.050456937 0.092110619 -0.069999985 -0.092704214 -0.023412999 -0.061544292 -0.09160509 -0.023046942 -0.062557817 -0.050085653 0.090793669 -0.069999978 -0.050456937 0.092110619 -0.060974427 0.081331164 0.032460615 -0.069999993 0.077537239 0.033179708 -0.06091946 0.076851577 0.035119504 -0.069999993 0.082736678 0.034138922 -0.069999993 0.077537239 0.033179708 -0.060974427 0.081331164 0.032460615 -0.069999993 0.077537239 0.033179708 -0.070000008 0.078245208 0.037654478 -0.06091946 0.076851577 0.035119504 -0.061025981 0.081823818 0.037411854 -0.069999993 0.082736678 0.034138922 -0.060974427 0.081331164 0.032460615 -0.062608108 -0.045077667 0.10133749 -0.062538601 -0.03501796 0.10678919 -0.069999993 -0.02914892 0.10972413 -0.062608108 -0.045077667 0.10133749 -0.069999993 -0.02914892 0.10972413 -0.06999933 -0.046640016 0.10057989 -0.062608108 -0.045077667 0.10133749 -0.06999933 -0.046640016 0.10057989 -0.062557817 -0.050085653 0.090793669 -0.06999933 -0.046640016 0.10057989 -0.069999978 -0.050456937 0.092110619 -0.062557817 -0.050085653 0.090793669 -0.069999978 -0.012170043 0.11278046 -0.062351175 -0.018839421 0.11114404 -0.061958179 0.0088289576 0.11178244 -0.069999993 -0.02914892 0.10972413 -0.062538601 -0.03501796 0.10678919 -0.062351175 -0.018839421 0.11114404 -0.069999978 -0.012170043 0.11278046 -0.061958179 0.0088289576 0.11178244 -0.07 0.014513521 0.11213996 -0.07 0.014513521 0.11213996 -0.061958179 0.0088289576 0.11178244 -0.061729133 0.019259436 0.11060862 -0.069999993 -0.02914892 0.10972413 -0.062351175 -0.018839421 0.11114404 -0.069999978 -0.012170043 0.11278046 -0.06239241 0.065995403 0.097341843 -0.070000008 0.059557449 0.10130908 -0.062082641 0.041904796 0.10628921 -0.062082641 0.041904796 0.10628921 -0.070000008 0.059557449 0.10130908 -0.070000008 0.034420546 0.10895113 -0.062473357 0.074379198 0.092258342 -0.069999993 0.078753687 0.089981861 -0.06239241 0.065995403 0.097341843 -0.06239241 0.065995403 0.097341843 -0.069999993 0.078753687 0.089981861 -0.070000008 0.059557449 0.10130908 -0.026090086 0.075454041 -0.026808258 -0.02956409 0.078599095 -0.033509236 -0.027600825 0.078602985 -0.026820228 -0.062082641 0.041904796 0.10628921 -0.070000008 0.034420546 0.10895113 -0.061729133 0.019259436 0.11060862 -0.061729133 0.019259436 0.11060862 -0.070000008 0.034420546 0.10895113 -0.07 0.014513521 0.11213996 -0.069998935 0.086686134 0.082350038 -0.061845195 0.087397262 0.07596349 -0.062595025 0.088165015 0.071999818 -0.062586501 0.084968291 0.083224162 -0.069999993 0.078753687 0.089981861 -0.062473357 0.074379198 0.092258342 -0.062595025 0.088165015 0.071999818 -0.069999993 0.089145653 0.068124406 -0.069998935 0.086686134 0.082350038 -0.062586501 0.084968291 0.083224162 -0.069998935 0.086686134 0.082350038 -0.069999993 0.078753687 0.089981861 -0.061845195 0.087397262 0.07596349 -0.069998935 0.086686134 0.082350038 -0.062586501 0.084968291 0.083224162 -0.069999993 0.093590438 -0.052100264 -0.062595025 0.088165015 0.071999818 -0.061573271 0.092671372 -0.051927648 -0.069999993 0.093590438 -0.052100264 -0.069999993 0.089145653 0.068124406 -0.062595025 0.088165015 0.071999818 -0.069999993 0.07709606 -0.040223148 -0.070000008 0.083148755 -0.039187163 -0.06250006 0.08012902 -0.038622282 -0.062500075 0.076479681 -0.04168909 -0.069999993 0.07709606 -0.040223148 -0.06250006 0.08012902 -0.038622282 0.014672935 0.067523561 -0.059108049 0.011532664 0.071502291 -0.05715153 0.011087358 0.070751183 -0.055898406 -0.06250006 0.08012902 -0.038622282 -0.070000008 0.083148755 -0.039187163 -0.062500075 0.083266959 -0.039427619 -0.062500075 0.083266959 -0.039427619 -0.070000015 0.085160345 -0.043688577 -0.062500067 0.085060306 -0.042789526 -0.070000008 0.083148755 -0.039187163 -0.070000015 0.085160345 -0.043688577 -0.062500075 0.083266959 -0.039427619 -0.07 0.062729232 0.09289328 -0.07 0.065112196 0.090615049 -0.06250006 0.065215647 0.089907177 -0.06250006 0.057618897 0.091501795 -0.069999993 0.056973822 0.090753354 -0.062500067 0.060455468 0.093066663 0.011339836 0.067504816 -0.054029021 -0.056823682 0.067647181 -0.073092028 0.0060949177 0.067545854 -0.065104686 0.014672935 0.067523561 -0.059108049 0.011339836 0.067504816 -0.054029021 0.0060949177 0.067545854 -0.065104686 0.011339836 0.067504816 -0.054029021 -0.056780096 0.067569509 -0.061783593 -0.056823682 0.067647181 -0.073092028 -0.062500067 0.060455468 0.093066663 -0.07 0.062729232 0.09289328 -0.06250006 0.065215647 0.089907177 -0.07 0.065112196 0.090615049 -0.069999993 0.064323805 0.085628897 -0.062500082 0.064864315 0.086601712 -0.06250006 0.065215647 0.089907177 -0.07 0.065112196 0.090615049 -0.062500082 0.064864315 0.086601712 -0.069999993 0.056973822 0.090753354 -0.07 0.062729232 0.09289328 -0.062500067 0.060455468 0.093066663 -0.06250006 -0.022405168 0.1012717 -0.069999993 -0.022216873 0.10286393 -0.062500067 -0.020130029 0.10505036 0.011087358 0.070751183 -0.055898406 -0.059955597 0.07152161 -0.065025829 -0.056780096 0.067569509 -0.061783593 0.011339836 0.067504816 -0.054029021 0.011087358 0.070751183 -0.055898406 -0.056780096 0.067569509 -0.061783593 -0.069999993 -0.022111431 0.099296696 -0.069999993 -0.022216873 0.10286393 -0.06250006 -0.022405168 0.1012717 -0.062500067 -0.020130029 0.10505036 -0.069999993 -0.016685864 0.10552999 -0.06250006 -0.014296156 0.10355251 -0.06250006 -0.014296156 0.10355251 -0.069999978 -0.013972934 0.099158473 -0.062500052 -0.013724085 0.10031704 -0.069999993 -0.016685864 0.10552999 -0.069999978 -0.013972934 0.099158473 -0.06250006 -0.014296156 0.10355251 -0.069999993 -0.022216873 0.10286393 -0.069999993 -0.016685864 0.10552999 -0.062500067 -0.020130029 0.10505036 0.011339836 0.067504816 -0.054029021 0.014672935 0.067523561 -0.059108049 0.011087358 0.070751183 -0.055898406 -0.06250006 -0.081208318 -0.015883813 -0.069999978 -0.081181422 -0.015578973 -0.062500045 -0.078715354 -0.01381371 -0.062500045 -0.078715354 -0.01381371 -0.069999993 -0.075251468 -0.013984108 -0.062500067 -0.073266454 -0.016379785 -0.062500067 -0.073266454 -0.016379785 -0.07 -0.073090971 -0.016474381 -0.062500075 -0.07396277 -0.020783728 -0.069999978 -0.081181422 -0.015578973 -0.069999993 -0.075251468 -0.013984108 -0.062500045 -0.078715354 -0.01381371 -0.056823682 0.067647181 -0.073092028 -0.059852723 0.070947506 -0.07151062 0.0064541176 0.070988648 -0.062953413 -0.069999993 -0.075251468 -0.013984108 -0.07 -0.073090971 -0.016474381 -0.062500067 -0.073266454 -0.016379785 -0.066252843 0.029045982 0.084392637 -0.070000008 0.040672239 0.081576854 -0.066302598 0.049540229 0.078261875 -0.066302598 0.049540229 0.078261875 -0.070000008 0.040672239 0.081576854 -0.069999993 0.054547865 0.076065794 -0.066302598 0.049540229 0.078261875 -0.069999993 0.054547865 0.076065794 -0.066382959 0.061250247 0.071748674 -0.066252843 0.029045982 0.084392637 -0.069999993 0.013431945 0.087087952 -0.070000008 0.040672239 0.081576854 -0.066382959 0.061250247 0.071748674 -0.069999993 0.054547865 0.076065794 -0.070000008 0.064174011 0.066608347 -0.06629473 -0.0082856137 0.08786539 -0.069999993 -0.014493683 0.087373495 -0.066251457 0.012357405 0.087108046 -0.066251457 0.012357405 0.087108046 -0.069999993 -0.014493683 0.087373495 -0.069999993 0.013431945 0.087087952 0.0064541176 0.070988648 -0.062953413 0.0060949177 0.067545854 -0.065104686 -0.056823682 0.067647181 -0.073092028 0.0064541176 0.070988648 -0.062953413 0.014672935 0.067523561 -0.059108049 0.0060949177 0.067545854 -0.065104686 -0.066251457 0.012357405 0.087108046 -0.069999993 0.013431945 0.087087952 -0.066252843 0.029045982 0.084392637 -0.06629473 -0.0082856137 0.08786539 -0.069999978 -0.023866871 0.085126877 -0.069999993 -0.014493683 0.087373495 -0.06638442 -0.023629772 0.085088693 -0.069999978 -0.023866871 0.085126877 -0.06629473 -0.0082856137 0.08786539 -0.07 -0.02772335 0.081423976 -0.069999978 -0.023866871 0.085126877 -0.06638442 -0.023629772 0.085088693 -0.059903443 0.071527667 -0.070516273 -0.059852723 0.070947506 -0.07151062 -0.059955597 0.07152161 -0.065025829 -0.066464365 -0.027725967 0.081096061 -0.07 -0.02772335 0.081423976 -0.06638442 -0.023629772 0.085088693 -0.059852723 0.070947506 -0.07151062 -0.056823682 0.067647181 -0.073092028 -0.056780096 0.067569509 -0.061783593 -0.059852723 0.070947506 -0.07151062 -0.056780096 0.067569509 -0.061783593 -0.059955597 0.07152161 -0.065025829 -0.066464365 -0.027725967 0.081096061 -0.068242431 -0.063425362 -0.016386263 -0.07 -0.02772335 0.081423976 0.011087358 0.070751183 -0.055898406 0.011532664 0.071502291 -0.05715153 -0.059955597 0.07152161 -0.065025829 -0.07 -0.02772335 0.081423976 -0.068242431 -0.063425362 -0.016386263 -0.069999985 -0.06351658 -0.01649157 -0.07 -0.057864897 -0.026104527 -0.069999985 -0.06351658 -0.01649157 -0.068347692 -0.062465705 -0.022641767 -0.068394065 -0.057571605 -0.026106497 -0.07 -0.057864897 -0.026104527 -0.068347692 -0.062465705 -0.022641767 -0.068347692 -0.062465705 -0.022641767 -0.069999985 -0.06351658 -0.01649157 -0.068242431 -0.063425362 -0.016386263 -0.07 -0.057864897 -0.026104527 -0.068394065 -0.057571605 -0.026106497 -0.068393826 0.059717007 -0.044637721 -0.07 -0.057864897 -0.026104527 -0.068393826 0.059717007 -0.044637721 -0.07 0.059645295 -0.044682544 -0.068242848 0.067928448 -0.037179034 -0.070000008 0.064174011 0.066608347 -0.07 0.067971162 -0.037560131 -0.068242848 0.067928448 -0.037179034 -0.066461623 0.064035259 0.066749051 -0.070000008 0.064174011 0.066608347 -0.066382959 0.061250247 0.071748674 -0.070000008 0.064174011 0.066608347 -0.066461623 0.064035259 0.066749051 -0.060394965 0.091321133 -0.055799346 -0.061845195 0.087397262 0.07596349 -0.061466411 0.085790336 0.079633012 0.0064541176 0.070988648 -0.062953413 0.011532664 0.071502291 -0.05715153 0.014672935 0.067523561 -0.059108049 -0.060394965 0.091321133 -0.055799346 -0.061573271 0.092671372 -0.051927648 -0.061845195 0.087397262 0.07596349 -0.061573271 0.092671372 -0.051927648 -0.062595025 0.088165015 0.071999818 -0.061845195 0.087397262 0.07596349 -0.060955055 0.052794091 0.086422302 -0.062500067 0.053771857 0.084203586 -0.061011203 0.053454485 0.092655398 -0.059903443 0.071527667 -0.070516273 0.0064541176 0.070988648 -0.062953413 -0.059852723 0.070947506 -0.07151062 -0.060296483 0.057098791 0.081132047 -0.062500067 0.053771857 0.084203586 -0.060955055 0.052794091 0.086422302 -0.062500067 0.060526665 0.080199212 -0.062500067 0.053771857 0.084203586 -0.060296483 0.057098791 0.081132047 -0.062500089 0.066485301 0.082177013 -0.062500067 0.060526665 0.080199212 -0.060296483 0.057098791 0.081132047 -0.06250006 0.069181733 0.091129944 -0.062500089 0.066485301 0.082177013 -0.061234169 0.069264449 0.086608663 -0.057465672 0.066157669 0.069905601 -0.057325251 0.067059122 0.065262415 -0.057675079 0.064142086 0.073697835 -0.060197726 0.068508856 0.066115871 -0.061086591 0.070614561 0.067380689 -0.057325251 0.067059122 0.065262415 -0.057325251 0.067059122 0.065262415 -0.057615168 0.06144442 0.076486297 -0.057675079 0.064142086 0.073697835 -0.057325251 0.067059122 0.065262415 -0.062500089 0.066485301 0.082177013 -0.057615168 0.06144442 0.076486297 -0.061086591 0.070614561 0.067380689 -0.062500089 0.066485301 0.082177013 -0.057325251 0.067059122 0.065262415 -0.061466411 0.085790336 0.079633012 -0.062586501 0.084968291 0.083224162 -0.062473357 0.074379198 0.092258342 -0.061845195 0.087397262 0.07596349 -0.062586501 0.084968291 0.083224162 -0.061466411 0.085790336 0.079633012 -0.062082641 0.041904796 0.10628921 -0.060651116 0.024382966 0.10861168 -0.06239241 0.065995403 0.097341843 -0.060651116 0.024382966 0.10861168 -0.061238065 0.064598061 0.096437715 -0.06239241 0.065995403 0.097341843 -0.060651116 0.024382966 0.10861168 -0.062082641 0.041904796 0.10628921 -0.061729133 0.019259436 0.11060862 -0.061238065 0.064598061 0.096437715 -0.061466411 0.085790336 0.079633012 -0.062473357 0.074379198 0.092258342 -0.062473357 0.074379198 0.092258342 -0.06239241 0.065995403 0.097341843 -0.061238065 0.064598061 0.096437715 -0.057463162 0.038761098 0.086563624 -0.060453892 0.020810181 0.094311811 -0.059382986 0.021457959 0.091860458 -0.060296483 0.057098791 0.081132047 -0.057463162 0.038761098 0.086563624 -0.057477891 0.05111384 0.082124919 -0.060296483 0.057098791 0.081132047 -0.060453892 0.020810181 0.094311811 -0.057463162 0.038761098 0.086563624 -0.059903443 0.071527667 -0.070516273 0.011532664 0.071502291 -0.05715153 0.0064541176 0.070988648 -0.062953413 -0.060453892 0.020810181 0.094311811 -0.060296483 0.057098791 0.081132047 -0.060955055 0.052794091 0.086422302 -0.062500089 0.066485301 0.082177013 -0.060296483 0.057098791 0.081132047 -0.057615168 0.06144442 0.076486297 -0.057615168 0.06144442 0.076486297 -0.060296483 0.057098791 0.081132047 -0.057477891 0.05111384 0.082124919 -0.059955597 0.07152161 -0.065025829 0.011532664 0.071502291 -0.05715153 -0.059903443 0.071527667 -0.070516273 -0.057463162 0.038761098 0.086563624 -0.059382986 0.021457959 0.091860458 -0.057087015 0.014568255 0.091550358 -0.060155045 0.075097367 -0.049428005 -0.062500067 0.072510473 -0.045401663 -0.060181495 0.072407186 -0.040977538 -0.06250006 0.074926406 -0.049271334 -0.062500067 0.072510473 -0.045401663 -0.060155045 0.075097367 -0.049428005 -0.060435135 0.088958472 -0.044983417 -0.06250006 0.083172426 -0.051133033 -0.060277719 0.083009303 -0.051180996 -0.06250006 0.083172426 -0.051133033 -0.06250006 0.074926406 -0.049271334 -0.060277719 0.083009303 -0.051180996 -0.062500067 0.088855073 -0.040559407 -0.06250006 0.083172426 -0.051133033 -0.060435135 0.088958472 -0.044983417 -0.033367638 -0.054624569 -0.016779127 -0.03667248 -0.059020713 -0.014152793 -0.033148658 -0.053805511 -0.014297678 -0.03667248 -0.059020713 -0.014152793 -0.033635203 -0.058671106 -0.013088132 -0.033148658 -0.053805511 -0.014297678 -0.060277719 0.083009303 -0.051180996 -0.06250006 0.074926406 -0.049271334 -0.060155045 0.075097367 -0.049428005 0.019887328 0.054261085 0.017997365 0.0018873215 0.059618812 0.043741412 0.032981202 0.04293311 0.012831192 0.010633633 0.051492777 0.039879199 0.0075506419 0.047483504 0.049061652 0.032981202 0.04293311 0.012831192 0.01193475 0.062241983 0.011344201 -0.012313806 0.06708844 0.055059604 -0.0096955895 0.065589413 0.05629896 -0.02486749 0.049037915 0.077980466 -0.029071271 0.056575269 0.0752552 -0.037054062 0.05337568 0.078501783 0.034257725 0.034318529 0.019103644 0.032981202 0.04293311 0.012831192 0.0075506419 0.047483504 0.049061652 -0.0096955895 0.065589413 0.05629896 -0.015475936 0.066329405 0.061415281 -0.013150275 0.062432747 0.065031968 -0.033148658 -0.053805511 -0.014297678 -0.033635203 -0.058671106 -0.013088132 -0.031555537 -0.052197888 -0.0094041303 -0.042071577 -0.053266685 -0.012657482 -0.042048752 -0.05804513 -0.011182912 -0.033367638 -0.054624569 -0.016779127 0.01193475 0.062241983 0.011344201 0.0018873215 0.059618812 0.043741412 0.019887328 0.054261085 0.017997365 -0.023284376 0.02665084 0.084800377 -0.029848821 0.035309896 0.084064595 -0.03840781 0.02634885 0.088000715 -0.042048752 -0.05804513 -0.011182912 -0.03667248 -0.059020713 -0.014152793 -0.033367638 -0.054624569 -0.016779127 0.0070183277 0.020410249 0.061619662 0.01850073 0.021396499 0.046893183 -0.0029001459 0.040032223 0.068662494 -0.020090826 0.038473334 0.080494486 -0.029848821 0.035309896 0.084064595 -0.023284376 0.02665084 0.084800377 -0.029848821 0.035309896 0.084064595 -0.037054062 0.05337568 0.078501783 -0.040391587 0.039773777 0.084446892 -0.040391587 0.039773777 0.084446892 -0.057477891 0.05111384 0.082124919 -0.057463162 0.038761098 0.086563624 -0.024157234 0.06070675 0.071309492 -0.031066239 0.064842999 0.069323868 -0.029071271 0.056575269 0.0752552 -0.013150275 0.062432747 0.065031968 -0.024157234 0.06070675 0.071309492 -0.018260188 0.05349499 0.073838279 -0.031066239 0.064842999 0.069323868 -0.013150275 0.062432747 0.065031968 -0.015475936 0.066329405 0.061415281 -0.02486749 0.049037915 0.077980466 -0.037054062 0.05337568 0.078501783 -0.029848821 0.035309896 0.084064595 -0.024157234 0.06070675 0.071309492 -0.029071271 0.056575269 0.0752552 -0.018260188 0.05349499 0.073838279 -0.019937158 0.018857077 0.085219577 -0.023284376 0.02665084 0.084800377 -0.024073668 0.012084324 0.087220289 -0.030935653 -0.059541445 -0.0029212011 -0.031303536 -0.062076341 -0.010637638 -0.02903343 -0.057431467 -0.0077228467 -0.057463162 0.038761098 0.086563624 -0.03840781 0.02634885 0.088000715 -0.040391587 0.039773777 0.084446892 -0.015277267 0.028150856 0.081602521 -0.020090826 0.038473334 0.080494486 -0.023284376 0.02665084 0.084800377 -0.044765539 -0.061430048 -0.008669869 -0.043162998 -0.057566848 -0.0065229689 -0.043209787 -0.058872208 -0.010496352 -0.010621928 0.038245086 0.076387532 -0.020090826 0.038473334 0.080494486 -0.015277267 0.028150856 0.081602521 -0.015277267 0.028150856 0.081602521 -0.023284376 0.02665084 0.084800377 -0.019937158 0.018857077 0.085219577 -0.013150275 0.062432747 0.065031968 -0.018260188 0.05349499 0.073838279 -0.0093784928 0.056913156 0.066905245 -0.013150275 0.062432747 0.065031968 -0.0081312656 0.062981278 0.058924437 -0.0096955895 0.065589413 0.05629896 -0.029071271 0.056575269 0.0752552 -0.02486749 0.049037915 0.077980466 -0.018260188 0.05349499 0.073838279 -0.0062228665 0.022017935 0.077095591 -0.010621928 0.038245086 0.076387532 -0.015277267 0.028150856 0.081602521 -0.031303536 -0.062076341 -0.010637638 -0.036722593 -0.063524775 -0.015046896 -0.032629184 -0.05982291 -0.015072157 -0.044765539 -0.061430048 -0.008669869 -0.043209787 -0.058872208 -0.010496352 -0.041455094 -0.059542388 -0.015158391 -0.0081312656 0.062981278 0.058924437 -0.013150275 0.062432747 0.065031968 -0.0093784928 0.056913156 0.066905245 -0.036722593 -0.063524775 -0.015046896 -0.044765539 -0.061430048 -0.008669869 -0.041455094 -0.059542388 -0.015158391 -0.040391587 0.039773777 0.084446892 -0.03840781 0.02634885 0.088000715 -0.029848821 0.035309896 0.084064595 -0.0062228665 0.022017935 0.077095591 -0.015277267 0.028150856 0.081602521 -0.010317802 0.010588285 0.081796758 -0.036722593 -0.063524775 -0.015046896 -0.041455094 -0.059542388 -0.015158391 -0.032629184 -0.05982291 -0.015072157 0.01193475 0.062241983 0.011344201 -0.0096955895 0.065589413 0.05629896 0.0018873215 0.059618812 0.043741412 -0.031303536 -0.062076341 -0.010637638 -0.032629184 -0.05982291 -0.015072157 -0.02903343 -0.057431467 -0.0077228467 0.0075506419 0.047483504 0.049061652 -0.0081312656 0.062981278 0.058924437 -0.0048002079 0.053670473 0.063973017 -0.018260188 0.05349499 0.073838279 -0.02486749 0.049037915 0.077980466 -0.020090826 0.038473334 0.080494486 -0.0048002079 0.053670473 0.063973017 0.0078439116 0.041047297 0.053115252 0.0075506419 0.047483504 0.049061652 0.0018873215 0.059618812 0.043741412 -0.0081312656 0.062981278 0.058924437 0.010633633 0.051492777 0.039879199 -0.030935958 0.012742159 0.088741384 -0.03840781 0.02634885 0.088000715 -0.050802782 0.022589821 0.090072528 0.0034754872 0.067188509 0.0047486955 -0.012313806 0.06708844 0.055059604 0.01193475 0.062241983 0.011344201 -0.02486749 0.049037915 0.077980466 -0.029848821 0.035309896 0.084064595 -0.020090826 0.038473334 0.080494486 -0.0029001459 0.040032223 0.068662494 -0.0062228665 0.022017935 0.077095591 0.0070183277 0.020410249 0.061619662 -0.030935958 0.012742159 0.088741384 -0.023284376 0.02665084 0.084800377 -0.03840781 0.02634885 0.088000715 -0.0081312656 0.062981278 0.058924437 -0.0093784928 0.056913156 0.066905245 -0.0048002079 0.053670473 0.063973017 -0.010621928 0.038245086 0.076387532 -0.018260188 0.05349499 0.073838279 -0.020090826 0.038473334 0.080494486 -0.044765539 -0.061430048 -0.008669869 -0.045861904 -0.060775526 -0.0094498415 -0.040252868 -0.057629116 0.00014313046 0.0018873215 0.059618812 0.043741412 0.010633633 0.051492777 0.039879199 0.032981202 0.04293311 0.012831192 0.01850073 0.021396499 0.046893183 0.0070183277 0.020410249 0.061619662 0.024162695 0.01017975 0.041775562 -0.0048002079 0.053670473 0.063973017 -0.010621928 0.038245086 0.076387532 -0.0029001459 0.040032223 0.068662494 -0.0093784928 0.056913156 0.066905245 -0.018260188 0.05349499 0.073838279 -0.010621928 0.038245086 0.076387532 0.0075506419 0.047483504 0.049061652 0.0078439116 0.041047297 0.053115252 0.034257725 0.034318529 0.019103644 0.0018873215 0.059618812 0.043741412 -0.0096955895 0.065589413 0.05629896 -0.0081312656 0.062981278 0.058924437 0.01850073 0.021396499 0.046893183 0.030908212 0.024569364 0.029350484 -0.0029001459 0.040032223 0.068662494 0.030908212 0.024569364 0.029350484 0.01850073 0.021396499 0.046893183 0.036757797 0.015547283 0.024214929 -0.057615168 0.06144442 0.076486297 -0.057477891 0.05111384 0.082124919 -0.037054062 0.05337568 0.078501783 -0.0029001459 0.040032223 0.068662494 -0.010621928 0.038245086 0.076387532 -0.0062228665 0.022017935 0.077095591 0.036757797 0.015547283 0.024214929 0.01850073 0.021396499 0.046893183 0.024162695 0.01017975 0.041775562 -0.04444129 0.06255988 0.073957637 -0.057615168 0.06144442 0.076486297 -0.037054062 0.05337568 0.078501783 -0.0048002079 0.053670473 0.063973017 -0.0093784928 0.056913156 0.066905245 -0.010621928 0.038245086 0.076387532 -0.031066239 0.064842999 0.069323868 -0.04444129 0.06255988 0.073957637 -0.029071271 0.056575269 0.0752552 -0.029071271 0.056575269 0.0752552 -0.04444129 0.06255988 0.073957637 -0.037054062 0.05337568 0.078501783 -0.013150275 0.062432747 0.065031968 -0.031066239 0.064842999 0.069323868 -0.024157234 0.06070675 0.071309492 0.010633633 0.051492777 0.039879199 -0.0081312656 0.062981278 0.058924437 0.0075506419 0.047483504 0.049061652 0.034257725 0.034318529 0.019103644 0.0078439116 0.041047297 0.053115252 0.030908212 0.024569364 0.029350484 -0.042695474 -0.069302715 -0.0092450418 -0.043416727 -0.070936747 -0.0050335601 -0.04387933 -0.061569788 -0.0058913832 -0.031304721 -0.069302715 -0.0092450259 -0.036818087 -0.070221335 -0.01204139 -0.033902105 -0.064553007 -0.015399853 -0.042695474 -0.069302715 -0.0092450418 -0.04387933 -0.061569788 -0.0058913832 -0.042275067 -0.063481845 -0.011712012 -0.031304721 -0.069302715 -0.0092450259 -0.033902105 -0.064553007 -0.015399853 -0.028098166 -0.062378567 -0.0087881088 0.0078439116 0.041047297 0.053115252 -0.0048002079 0.053670473 0.063973017 -0.0029001459 0.040032223 0.068662494 0.0034679621 0.067194059 0.004780767 -0.012313806 0.06708844 0.055059604 0.0034754872 0.067188509 0.0047486955 -0.057477891 0.05111384 0.082124919 -0.040391587 0.039773777 0.084446892 -0.037054062 0.05337568 0.078501783 -0.03840781 0.02634885 0.088000715 -0.057463162 0.038761098 0.086563624 -0.050802782 0.022589821 0.090072528 -0.050802782 0.022589821 0.090072528 -0.057463162 0.038761098 0.086563624 -0.057087015 0.014568255 0.091550358 0.0078439116 0.041047297 0.053115252 -0.0029001459 0.040032223 0.068662494 0.030908212 0.024569364 0.029350484 -0.057589408 -0.019002272 0.090598658 -0.046086155 -0.02016812 0.089111708 -0.057732578 -0.010435039 0.091940708 -0.057732578 -0.010435039 0.091940708 -0.046086155 -0.02016812 0.089111708 -0.045009855 -0.0091610039 0.090758517 -0.04100474 0.0026308922 0.09068235 -0.02577883 -0.0092769954 0.087566942 -0.024073668 0.012084324 0.087220289 -0.046086155 -0.02016812 0.089111708 -0.030440748 -0.027766716 0.083766706 -0.027712822 -0.017764937 0.086801611 -0.029975835 -0.067855529 -0.0048396848 -0.028098166 -0.062378567 -0.0087881088 -0.030196737 -0.062579378 -0.0089646634 -0.029975835 -0.067855529 -0.0048396848 -0.031304721 -0.069302715 -0.0092450259 -0.028098166 -0.062378567 -0.0087881088 -0.036818087 -0.070221335 -0.01204139 -0.042275067 -0.063481845 -0.011712012 -0.033902105 -0.064553007 -0.015399853 -0.015818365 -0.019263631 0.083068863 -0.014303453 0.0048046536 0.084222145 -0.02577883 -0.0092769954 0.087566942 -0.041693747 0.0090568056 0.090643331 -0.030935958 0.012742159 0.088741384 -0.050802782 0.022589821 0.090072528 -0.057732578 -0.010435039 0.091940708 -0.04100474 0.0026308922 0.09068235 -0.041693747 0.0090568056 0.090643331 -0.057732578 -0.010435039 0.091940708 -0.041693747 0.0090568056 0.090643331 -0.057087015 0.014568255 0.091550358 -0.057732578 -0.010435039 0.091940708 -0.045009855 -0.0091610039 0.090758517 -0.04100474 0.0026308922 0.09068235 -0.046086155 -0.02016812 0.089111708 -0.027712822 -0.017764937 0.086801611 -0.045009855 -0.0091610039 0.090758517 -0.030440748 -0.027766716 0.083766706 -0.017077811 -0.027851969 0.080243558 -0.022252433 -0.02261506 0.084230855 -0.030440748 -0.027766716 0.083766706 -0.022252433 -0.02261506 0.084230855 -0.027712822 -0.017764937 0.086801611 0.0034755617 -0.049791373 0.023246281 0.0034675598 -0.049783103 0.023273284 0.0066117644 -0.053599562 0.011749684 0.0034675598 -0.049783103 0.023273284 0.010739446 -0.044509664 0.026733994 -0.011104465 -0.033764236 0.071284026 -0.02577883 -0.0092769954 0.087566942 -0.014303453 0.0048046536 0.084222145 -0.024073668 0.012084324 0.087220289 -0.0027297139 -0.0020640634 0.075519748 0.012165308 0.0060782996 0.057094168 -0.0028957725 0.0035248343 0.07559932 0.0034675598 -0.049783103 0.023273284 -0.011104465 -0.033764236 0.071284026 0.0066117644 -0.053599562 0.011749684 -0.014303453 0.0048046536 0.084222145 -0.015818365 -0.019263631 0.083068863 -0.0097413287 -0.00031404506 0.081936553 -0.0028957725 0.0035248343 0.07559932 0.0070183277 0.020410249 0.061619662 -0.0062228665 0.022017935 0.077095591 -0.0098562315 -0.031822082 0.072681144 0.0050373077 -0.025215745 0.058365181 -0.007396698 -0.027721392 0.073698148 -0.041693747 0.0090568056 0.090643331 -0.050802782 0.022589821 0.090072528 -0.057087015 0.014568255 0.091550358 -0.011104465 -0.033764236 0.071284026 0.0067394376 -0.03311279 0.048825406 -0.0098562315 -0.031822082 0.072681144 -0.011104465 -0.033764236 0.071284026 0.010739446 -0.044509664 0.026733994 0.028722763 -0.035632659 0.018219639 -0.045009855 -0.0091610039 0.090758517 -0.02577883 -0.0092769954 0.087566942 -0.04100474 0.0026308922 0.09068235 0.037192315 -0.0065507013 0.025098637 0.0041059703 -0.014354212 0.064884499 0.034979314 -0.015162227 0.025553258 -0.014273591 -0.031927325 0.075879633 -0.011104465 -0.033764236 0.071284026 -0.0098562315 -0.031822082 0.072681144 -0.015818365 -0.019263631 0.083068863 -0.0077487752 -0.011394477 0.080002055 -0.0097413287 -0.00031404506 0.081936553 0.0041059703 -0.014354212 0.064884499 0.037192315 -0.0065507013 0.025098637 -0.0027297139 -0.0020640634 0.075519748 0.0067394376 -0.03311279 0.048825406 0.028722763 -0.035632659 0.018219639 0.029744208 -0.030762747 0.022065073 -0.0052003264 -0.019707227 0.075538538 -0.007396698 -0.027721392 0.073698148 0.0050373077 -0.025215745 0.058365181 -0.022252433 -0.02261506 0.084230855 -0.017077811 -0.027851969 0.080243558 -0.0097740963 -0.021895099 0.079119988 -0.022252433 -0.02261506 0.084230855 -0.0097740963 -0.021895099 0.079119988 -0.015818365 -0.019263631 0.083068863 -0.017077811 -0.027851969 0.080243558 -0.014273591 -0.031927325 0.075879633 -0.0097740963 -0.021895099 0.079119988 -0.0098562315 -0.031822082 0.072681144 0.029744208 -0.030762747 0.022065073 0.0050373077 -0.025215745 0.058365181 -0.0098562315 -0.031822082 0.072681144 0.0067394376 -0.03311279 0.048825406 0.029744208 -0.030762747 0.022065073 -0.036818087 -0.070221335 -0.01204139 -0.042695474 -0.069302715 -0.0092450418 -0.042275067 -0.063481845 -0.011712012 -0.027712822 -0.017764937 0.086801611 -0.022252433 -0.02261506 0.084230855 -0.02577883 -0.0092769954 0.087566942 0.0050373077 -0.025215745 0.058365181 0.034558997 -0.02529626 0.021163391 0.034979314 -0.015162227 0.025553258 0.034558997 -0.02529626 0.021163391 0.0050373077 -0.025215745 0.058365181 0.029744208 -0.030762747 0.022065073 -0.014273591 -0.031927325 0.075879633 -0.007396698 -0.027721392 0.073698148 -0.0097740963 -0.021895099 0.079119988 0.012165308 0.0060782996 0.057094168 0.035738498 0.0068674576 0.026947943 0.024162695 0.01017975 0.041775562 -0.02577883 -0.0092769954 0.087566942 -0.045009855 -0.0091610039 0.090758517 -0.027712822 -0.017764937 0.086801611 0.012165308 0.0060782996 0.057094168 0.037192315 -0.0065507013 0.025098637 0.035738498 0.0068674576 0.026947943 0.035738498 0.0068674576 0.026947943 0.036757797 0.015547283 0.024214929 0.024162695 0.01017975 0.041775562 -0.024073668 0.012084324 0.087220289 -0.014303453 0.0048046536 0.084222145 -0.019937158 0.018857077 0.085219577 -0.0052003264 -0.019707227 0.075538538 -0.0027297139 -0.0020640634 0.075519748 -0.0077487752 -0.011394477 0.080002055 -0.024073668 0.012084324 0.087220289 -0.030935958 0.012742159 0.088741384 -0.04100474 0.0026308922 0.09068235 -0.014273591 -0.031927325 0.075879633 -0.0098562315 -0.031822082 0.072681144 -0.007396698 -0.027721392 0.073698148 -0.0077487752 -0.011394477 0.080002055 -0.015818365 -0.019263631 0.083068863 -0.0097740963 -0.021895099 0.079119988 -0.022252433 -0.02261506 0.084230855 -0.015818365 -0.019263631 0.083068863 -0.02577883 -0.0092769954 0.087566942 -0.0077487752 -0.011394477 0.080002055 -0.0097740963 -0.021895099 0.079119988 -0.0052003264 -0.019707227 0.075538538 -0.0097413287 -0.00031404506 0.081936553 -0.010317802 0.010588285 0.081796758 -0.014303453 0.0048046536 0.084222145 -0.030935958 0.012742159 0.088741384 -0.024073668 0.012084324 0.087220289 -0.023284376 0.02665084 0.084800377 -0.04100474 0.0026308922 0.09068235 -0.030935958 0.012742159 0.088741384 -0.041693747 0.0090568056 0.090643331 -0.0077487752 -0.011394477 0.080002055 -0.0027297139 -0.0020640634 0.075519748 -0.0028957725 0.0035248343 0.07559932 -0.010317802 0.010588285 0.081796758 -0.0097413287 -0.00031404506 0.081936553 -0.0062228665 0.022017935 0.077095591 -0.0062228665 0.022017935 0.077095591 -0.0097413287 -0.00031404506 0.081936553 -0.0028957725 0.0035248343 0.07559932 -0.011104465 -0.033764236 0.071284026 0.028722763 -0.035632659 0.018219639 0.0067394376 -0.03311279 0.048825406 0.0050373077 -0.025215745 0.058365181 0.0041059703 -0.014354212 0.064884499 -0.0052003264 -0.019707227 0.075538538 -0.019937158 0.018857077 0.085219577 -0.014303453 0.0048046536 0.084222145 -0.010317802 0.010588285 0.081796758 -0.0052003264 -0.019707227 0.075538538 0.0041059703 -0.014354212 0.064884499 -0.0027297139 -0.0020640634 0.075519748 0.0070183277 0.020410249 0.061619662 -0.0028957725 0.0035248343 0.07559932 0.012165308 0.0060782996 0.057094168 0.034979314 -0.015162227 0.025553258 0.0041059703 -0.014354212 0.064884499 0.0050373077 -0.025215745 0.058365181 -0.0097740963 -0.021895099 0.079119988 -0.007396698 -0.027721392 0.073698148 -0.0052003264 -0.019707227 0.075538538 0.0070183277 0.020410249 0.061619662 0.012165308 0.0060782996 0.057094168 0.024162695 0.01017975 0.041775562 -0.0027297139 -0.0020640634 0.075519748 0.037192315 -0.0065507013 0.025098637 0.012165308 0.0060782996 0.057094168 -0.010317802 0.010588285 0.081796758 -0.015277267 0.028150856 0.081602521 -0.019937158 0.018857077 0.085219577 -0.0097413287 -0.00031404506 0.081936553 -0.0077487752 -0.011394477 0.080002055 -0.0028957725 0.0035248343 0.07559932 -0.021837499 0.066252634 0.013336025 -0.045023512 0.066269569 0.0088007106 -0.026577834 0.066231273 0.01904957 -0.026577834 0.066231273 0.01904957 -0.045023512 0.066269569 0.0088007106 -0.040129974 0.066233069 0.018565604 -0.026577834 0.066231273 0.01904957 -0.040129974 0.066233069 0.018565604 -0.03596247 0.067225672 0.020554915 -0.021837499 0.066252634 0.013336025 -0.037755147 0.066310517 -0.0021332831 -0.045023512 0.066269569 0.0088007106 -0.021837499 0.066252634 0.013336025 -0.025869984 0.067305297 -0.00076583429 -0.037755147 0.066310517 -0.0021332831 -0.045023512 0.066269569 0.0088007106 -0.037755147 0.066310517 -0.0021332831 -0.044224992 0.067285217 0.0046236357 -0.02903159 0.067183524 0.031833209 -0.02902462 0.067208931 0.024992786 -0.030500066 0.066695891 0.028500993 -0.030500066 0.066695891 0.028500993 -0.02902462 0.067208931 0.024992786 -0.032885373 0.066700868 0.027154636 -0.032885373 0.066700868 0.027154636 -0.02902462 0.067208931 0.024992786 -0.036975525 0.067208871 0.024992796 -0.03335518 -0.071583934 -0.0085588908 -0.036818087 -0.070221335 -0.01204139 -0.031304721 -0.069302715 -0.0092450259 -0.032885373 0.066700868 0.027154636 -0.036975525 0.067208871 0.024992796 -0.036942698 0.067182906 0.031994786 -0.041781008 -0.072074607 -0.0086051784 -0.043416727 -0.070936747 -0.0050335601 -0.042695474 -0.069302715 -0.0092450418 -0.030500066 0.066695891 0.028500993 -0.032885373 0.066700868 0.027154636 -0.036942698 0.067182906 0.031994786 -0.02903159 0.067183524 0.031833209 -0.030500066 0.066695891 0.028500993 -0.036942698 0.067182906 0.031994786 -0.034461096 0.067188151 -0.0095493877 -0.036958896 0.067359015 -0.015129917 -0.035555668 0.066827431 -0.0066508711 -0.029057387 0.067332514 -0.0080049243 -0.029041234 0.067359015 -0.015129921 -0.03288538 0.067203864 -0.013722497 -0.036818087 -0.070221335 -0.01204139 -0.041781008 -0.072074607 -0.0086051784 -0.042695474 -0.069302715 -0.0092450418 -0.029041234 0.067359015 -0.015129921 -0.036958896 0.067359015 -0.015129917 -0.03288538 0.067203864 -0.013722497 -0.029057387 0.067332514 -0.0080049243 -0.03288538 0.067203864 -0.013722497 -0.034461096 0.067188151 -0.0095493877 -0.030633744 -0.071043633 -0.0053433743 -0.031304721 -0.069302715 -0.0092450259 -0.029975835 -0.067855529 -0.0048396848 -0.034461096 0.067188151 -0.0095493877 -0.03288538 0.067203864 -0.013722497 -0.036958896 0.067359015 -0.015129917 -0.035555668 0.066827431 -0.0066508711 -0.029057387 0.067332514 -0.0080049243 -0.034461096 0.067188151 -0.0095493877 -0.033047076 -0.056098539 0.0043545221 -0.038694385 -0.055843748 0.0046499097 -0.038698379 -0.055514768 0.0045296536 -0.040982246 -0.056018297 0.0045994883 -0.038904604 -0.055481929 0.0046296502 -0.039101772 -0.055437427 0.0047651525 -0.036818087 -0.070221335 -0.01204139 -0.03335518 -0.071583934 -0.0085588908 -0.041781008 -0.072074607 -0.0086051784 -0.039101772 -0.055437427 0.0047651525 -0.039274521 -0.055384893 0.0049254196 -0.040982246 -0.056018297 0.0045994883 -0.038694385 -0.055843748 0.0046499097 -0.039582547 -0.055156417 0.0056204456 -0.039398368 -0.055658001 0.0052151275 -0.039274521 -0.055384893 0.0049254196 -0.039403852 -0.055329997 0.0050920611 -0.040982246 -0.056018297 0.0045994883 -0.039403852 -0.055329997 0.0050920611 -0.039498273 -0.055271696 0.005269256 -0.040982246 -0.056018297 0.0045994883 -0.039498273 -0.055271696 0.005269256 -0.039559491 -0.055207469 0.0054653557 -0.040982246 -0.056018297 0.0045994883 -0.039559491 -0.055207469 0.0054653557 -0.039582547 -0.055156417 0.0056204456 -0.040982246 -0.056018297 0.0045994883 -0.039582547 -0.055156417 0.0056204456 -0.036885392 -0.053898845 0.0094486065 -0.040982246 -0.056018297 0.0045994883 -0.040982246 -0.056018297 0.0045994883 -0.036885392 -0.053898845 0.0094486065 -0.039443504 -0.053433087 0.012468922 -0.040982246 -0.056018297 0.0045994883 -0.038698379 -0.055514768 0.0045296536 -0.038904604 -0.055481929 0.0046296502 -0.036885392 -0.053898845 0.0094486065 -0.033031583 -0.053913601 0.01100598 -0.039443504 -0.053433087 0.012468922 -0.038694385 -0.055843748 0.0046499097 -0.036885392 -0.053898845 0.0094486065 -0.039582547 -0.055156417 0.0056204456 -0.033047076 -0.056098539 0.0043545221 -0.033031583 -0.053913601 0.01100598 -0.036885392 -0.053898845 0.0094486065 -0.031304721 -0.069302715 -0.0092450259 -0.030633744 -0.071043633 -0.0053433743 -0.03335518 -0.071583934 -0.0085588908 -0.033047076 -0.056098539 0.0043545221 -0.038698379 -0.055514768 0.0045296536 -0.040982246 -0.056018297 0.0045994883 -0.0064676851 -0.055271335 0.0052711829 -0.0047183037 -0.05538984 0.0049101687 -0.0069482327 -0.055150472 0.0056385063 -0.0075501129 -0.05534108 0.0050582588 -0.0078335367 -0.055262811 0.0052964394 -0.009465985 -0.056533873 0.0030296226 -0.0045434833 -0.055279203 0.0052465387 -0.0030315518 -0.053913604 0.011005981 -0.0068853572 -0.053898904 0.0094486121 -0.0069482327 -0.055150472 0.0056385063 -0.0068853572 -0.053898904 0.0094486121 -0.0073353648 -0.055044357 0.0059612519 -0.0078335367 -0.055262811 0.0052964394 -0.0073353648 -0.055044357 0.0059612519 -0.009465985 -0.056533873 0.0030296226 -0.009465985 -0.056533873 0.0030296226 -0.0073353648 -0.055044357 0.0059612519 -0.010942701 -0.053863183 0.011159563 -0.0045434833 -0.055279203 0.0052465387 -0.0068853572 -0.053898904 0.0094486121 -0.0069482327 -0.055150472 0.0056385063 -0.009465985 -0.056533873 0.0030296226 -0.0030315518 -0.053913604 0.011005981 -0.0048522949 -0.055435766 0.0047702491 -0.009465985 -0.056533873 0.0030296226 -0.0048522949 -0.055435766 0.0047702491 -0.0050193071 -0.055476442 0.0046468107 -0.0030315518 -0.053913604 0.011005981 -0.0047183111 -0.055389836 0.004910225 -0.0048522949 -0.055435766 0.0047702491 -0.009465985 -0.056533873 0.0030296226 -0.0050193071 -0.055476442 0.0046468107 -0.0052362084 -0.055514224 0.0045312005 -0.0068853572 -0.053898904 0.0094486121 -0.0030315518 -0.053913604 0.011005981 -0.010942701 -0.053863183 0.011159563 -0.0030315518 -0.053913604 0.011005981 -0.00461936 -0.05533962 0.0050626933 -0.0047183111 -0.055389836 0.004910225 -0.0030315518 -0.053913604 0.011005981 -0.0045434833 -0.055279203 0.0052465387 -0.00461936 -0.05533962 0.0050626933 -0.0068853572 -0.053898904 0.0094486121 -0.010942701 -0.053863183 0.011159563 -0.0073353648 -0.055044357 0.0059612519 -0.009465985 -0.056533873 0.0030296226 -0.0057898611 -0.055561207 0.004388955 -0.0075501129 -0.05534108 0.0050582588 -0.009465985 -0.056533873 0.0030296226 -0.0054399371 -0.055537868 0.0044596209 -0.0057898611 -0.055561207 0.004388955 -0.009465985 -0.056533873 0.0030296226 -0.0052362084 -0.055514224 0.0045312005 -0.0054399371 -0.055537868 0.0044596209 -0.025958836 -0.042510584 0.045717578 -0.021885462 -0.040322609 0.050775871 -0.025949236 -0.040298641 0.052450951 -0.021885462 -0.040322609 0.050775871 -0.019406743 -0.039865851 0.053768683 -0.025949236 -0.040298641 0.052450951 -0.018028449 -0.042483091 0.045801472 -0.021885462 -0.040322609 0.050775871 -0.025958836 -0.042510584 0.045717578 -0.018028449 -0.042483091 0.045801472 -0.019406743 -0.039865851 0.053768683 -0.021885462 -0.040322609 0.050775871 -0.062500045 -0.085525863 -0.020411719 -0.062500045 -0.083109803 -0.024281481 -0.06250006 -0.079937682 -0.021543397 -0.062500067 -0.073266454 -0.016379785 -0.062500067 -0.069181241 -0.015569324 -0.06250006 -0.07159733 -0.011699634 -0.062500045 -0.085525863 -0.020411719 -0.06250006 -0.079937682 -0.021543397 -0.06250006 -0.081208318 -0.015883813 -0.062500045 -0.078715354 -0.01381371 -0.062500067 -0.073266454 -0.016379785 -0.06250006 -0.07159733 -0.011699634 -0.062500045 -0.079843238 -0.0098380679 -0.062500045 -0.078715354 -0.01381371 -0.06250006 -0.07159733 -0.011699634 -0.037477564 -0.068738088 0.0016757083 -0.043416727 -0.070936747 -0.0050335601 -0.039732337 -0.068808757 -2.7000227e-05 -0.062500045 -0.085525863 -0.020411719 -0.06250006 -0.081208318 -0.015883813 -0.062500045 -0.079843238 -0.0098380679 -0.062500075 -0.07396277 -0.020783728 -0.062500037 -0.074863911 -0.026143098 -0.062500052 -0.069706246 -0.021756176 -0.06250006 -0.081208318 -0.015883813 -0.062500045 -0.078715354 -0.01381371 -0.062500045 -0.079843238 -0.0098380679 -0.062500075 -0.07396277 -0.020783728 -0.062500052 -0.069706246 -0.021756176 -0.062500067 -0.069181241 -0.015569324 -0.062500045 -0.083109803 -0.024281481 -0.062500037 -0.074863911 -0.026143098 -0.06250006 -0.079937682 -0.021543397 -0.06250006 -0.079937682 -0.021543397 -0.062500037 -0.074863911 -0.026143098 -0.062500075 -0.07396277 -0.020783728 -0.062500075 -0.07396277 -0.020783728 -0.062500067 -0.069181241 -0.015569324 -0.062500067 -0.073266454 -0.016379785 -0.062500052 -0.013724085 0.10031704 -0.062500052 -0.0098363822 0.10362493 -0.06250006 -0.014296156 0.10355251 -0.062500052 -0.025795884 0.097738445 -0.062500052 -0.016493732 0.092825092 -0.062500067 -0.018282782 0.096818708 -0.062500052 -0.025795884 0.097738445 -0.062500067 -0.018282782 0.096818708 -0.06250006 -0.022405168 0.1012717 -0.037477564 -0.068738088 0.0016757083 -0.036531921 -0.060982898 -0.0018618718 -0.032568302 -0.069282487 3.1515981e-06 -0.06250006 -0.014296156 0.10355251 -0.062500052 -0.0098363822 0.10362493 -0.06250006 -0.016411338 0.1095798 -0.062500052 -0.025795884 0.097738445 -0.06250006 -0.022405168 0.1012717 -0.062500067 -0.024364077 0.10688394 -0.062500067 -0.024364077 0.10688394 -0.06250006 -0.022405168 0.1012717 -0.062500067 -0.020130029 0.10505036 -0.043416727 -0.070936747 -0.0050335601 -0.042513959 -0.062553063 -0.0066415458 -0.039732337 -0.068808757 -2.7000227e-05 -0.036531921 -0.060982898 -0.0018618718 -0.033017881 -0.061508369 -0.0034614354 -0.032568302 -0.069282487 3.1515981e-06 -0.042513959 -0.062553063 -0.0066415458 -0.040712364 -0.061416537 -0.003181932 -0.039732337 -0.068808757 -2.7000227e-05 -0.062500067 -0.020130029 0.10505036 -0.06250006 -0.014296156 0.10355251 -0.06250006 -0.016411338 0.1095798 -0.032568302 -0.069282487 3.1515981e-06 -0.033017881 -0.061508369 -0.0034614354 -0.030633744 -0.071043633 -0.0053433743 -0.062500067 -0.018282782 0.096818708 -0.062500052 -0.012063912 0.095091909 -0.062500052 -0.013724085 0.10031704 -0.033017881 -0.061508369 -0.0034614354 -0.031586282 -0.063042372 -0.0081312852 -0.030633744 -0.071043633 -0.0053433743 -0.040712364 -0.061416537 -0.003181932 -0.036531921 -0.060982898 -0.0018618718 -0.039732337 -0.068808757 -2.7000227e-05 -0.039732337 -0.068808757 -2.7000227e-05 -0.036531921 -0.060982898 -0.0018618718 -0.037477564 -0.068738088 0.0016757083 -0.062500052 -0.016493732 0.092825092 -0.062500052 -0.012063912 0.095091909 -0.062500067 -0.018282782 0.096818708 -0.062500067 -0.024364077 0.10688394 -0.062500067 -0.020130029 0.10505036 -0.06250006 -0.016411338 0.1095798 -0.062500052 -0.013724085 0.10031704 -0.062500052 -0.012063912 0.095091909 -0.062500052 -0.0098363822 0.10362493 -0.062500067 0.085060306 -0.042789526 -0.062500067 0.088855073 -0.040559407 -0.062500075 0.083266959 -0.039427619 -0.062500067 0.072510473 -0.045401663 -0.06250006 0.074926406 -0.049271334 -0.062500082 0.077477731 -0.045985162 -0.062500067 0.072510473 -0.045401663 -0.062500082 0.077477731 -0.045985162 -0.062500075 0.076479681 -0.04168909 -0.06250006 0.078193277 -0.034827922 -0.062500075 0.083266959 -0.039427619 -0.062500067 0.088855073 -0.040559407 -0.06250006 0.08012902 -0.038622282 -0.062500075 0.083266959 -0.039427619 -0.06250006 0.078193277 -0.034827922 -0.062500067 0.072510473 -0.045401663 -0.062500075 0.076479681 -0.04168909 -0.062500075 0.074327566 -0.037299566 -0.062500075 0.074327566 -0.037299566 -0.06250006 0.08012902 -0.038622282 -0.06250006 0.078193277 -0.034827922 -0.062500075 0.074327566 -0.037299566 -0.062500075 0.076479681 -0.04168909 -0.06250006 0.08012902 -0.038622282 -0.062500082 0.077477731 -0.045985162 -0.06250006 0.083172426 -0.051133033 -0.06250006 0.083488882 -0.046360709 -0.06250006 0.083488882 -0.046360709 -0.06250006 0.083172426 -0.051133033 -0.062500067 0.088855073 -0.040559407 -0.06250006 0.083488882 -0.046360709 -0.062500067 0.088855073 -0.040559407 -0.062500067 0.085060306 -0.042789526 -0.06250006 0.074926406 -0.049271334 -0.06250006 0.083172426 -0.051133033 -0.062500082 0.077477731 -0.045985162 -0.062500067 0.053771857 0.084203586 -0.062500067 0.060526665 0.080199212 -0.06250006 0.059137773 0.084733792 -0.06250006 0.065215647 0.089907177 -0.06250006 0.069181733 0.091129944 -0.061238065 0.064598061 0.096437715 -0.062500067 0.053771857 0.084203586 -0.06250006 0.059137773 0.084733792 -0.06250006 0.057618897 0.091501795 -0.062500067 0.060455468 0.093066663 -0.06250006 0.065215647 0.089907177 -0.061238065 0.064598061 0.096437715 -0.062500067 0.055483885 0.095199138 -0.062500067 0.060455468 0.093066663 -0.061238065 0.064598061 0.096437715 -0.062500067 0.053771857 0.084203586 -0.06250006 0.057618897 0.091501795 -0.062500067 0.055483885 0.095199138 -0.06250006 0.057618897 0.091501795 -0.062500067 0.060455468 0.093066663 -0.062500067 0.055483885 0.095199138 -0.062500067 0.060526665 0.080199212 -0.062500089 0.066485301 0.082177013 -0.062500082 0.064864315 0.086601712 -0.06250006 0.059137773 0.084733792 -0.062500067 0.060526665 0.080199212 -0.062500082 0.064864315 0.086601712 -0.062500082 0.064864315 0.086601712 -0.062500089 0.066485301 0.082177013 -0.06250006 0.069181733 0.091129944 -0.062500082 0.064864315 0.086601712 -0.06250006 0.069181733 0.091129944 -0.06250006 0.065215647 0.089907177 -0.06737335 0.011888487 0.022112394 -0.067354456 0.019774079 0.021963533 -0.067472517 0.015180125 0.015842818 -0.068393826 0.059717007 -0.044637721 -0.067539759 0.021307312 0.010972431 -0.068242848 0.067928448 -0.037179034 -0.067354456 0.019774079 0.021963533 -0.067268081 0.02373749 0.026341509 -0.066461623 0.064035259 0.066749051 -0.067354456 0.019774079 0.021963533 -0.066461623 0.064035259 0.066749051 -0.068242848 0.067928448 -0.037179034 -0.068393826 0.059717007 -0.044637721 -0.068242848 0.067928448 -0.037179034 -0.068360344 0.064256132 -0.043414947 -0.06638442 -0.023629772 0.085088693 -0.06629473 -0.0082856137 0.08786539 -0.06660682 0.0032109956 0.067946613 -0.067268081 0.02373749 0.026341509 -0.067167699 0.023924422 0.032134481 -0.067111745 0.025137331 0.035193861 -0.067268081 0.02373749 0.026341509 -0.067111745 0.025137331 0.035193861 -0.066461623 0.064035259 0.066749051 -0.067001708 0.0152136 0.043140832 -0.066848218 0.021359235 0.051072463 -0.067001097 0.0193976 0.042515069 -0.06737335 0.011888487 0.022112394 -0.067306042 0.012490874 0.025922026 -0.067354456 0.019774079 0.021963533 -0.067001708 0.0152136 0.043140832 -0.06685394 0.010541799 0.052451011 -0.066848218 0.021359235 0.051072463 -0.067180805 0.0018612546 0.034862228 -0.066464365 -0.027725967 0.081096061 -0.067001693 0.0034641321 0.044998761 -0.066355951 0.020317731 0.079791248 -0.066251457 0.012357405 0.087108046 -0.066252843 0.029045982 0.084392637 -0.067111731 0.018408196 0.036257911 -0.067001097 0.0193976 0.042515069 -0.0675143 0.022248635 0.041302588 -0.066642888 0.031850692 0.061321981 -0.066302598 0.049540229 0.078261875 -0.066461623 0.064035259 0.066749051 -0.067821801 0.0084662242 0.025646431 -0.067733288 0.0075031496 0.030934539 -0.067180805 0.01361075 0.03300428 -0.067821801 0.0084662242 0.025646431 -0.067180805 0.01361075 0.03300428 -0.067306042 0.012490874 0.025922026 -0.067539759 0.021307312 0.010972431 -0.067416251 0.022443864 0.017891414 -0.068242848 0.067928448 -0.037179034 -0.066464365 -0.027725967 0.081096061 -0.06674432 0.0040235077 0.059839837 -0.067001693 0.0034641321 0.044998761 -0.066464365 -0.027725967 0.081096061 -0.06638442 -0.023629772 0.085088693 -0.06660682 0.0032109956 0.067946613 -0.066464365 -0.027725967 0.081096061 -0.06660682 0.0032109956 0.067946613 -0.06674432 0.0040235077 0.059839837 -0.068393826 0.059717007 -0.044637721 -0.068394065 -0.057571605 -0.026106497 -0.068287671 0.0037067775 -0.029628446 -0.067001708 0.0152136 0.043140832 -0.067001693 0.0034641321 0.044998761 -0.06685394 0.010541799 0.052451011 -0.067180805 0.01361075 0.03300428 -0.067180805 0.0018612546 0.034862228 -0.067147613 0.0072276513 0.035940111 -0.067517169 -0.0011482106 0.015830589 -0.067623913 0.0096460069 0.007931116 -0.067623913 -0.0021035797 0.0097890468 -0.067821801 0.0084662242 0.025646431 -0.067462862 -0.00066258799 0.018901829 -0.067358196 0.0032351913 0.024360254 -0.06737335 0.011888487 0.022112394 -0.067462862 -0.00066258799 0.018901829 -0.067821801 0.0084662242 0.025646431 -0.067623913 -0.0021035797 0.0097890468 -0.068266571 0.0039243675 0.00056988263 -0.067815602 -0.0038178854 -0.0010526933 -0.067815602 0.0079316422 -0.0029106303 -0.06817311 0.0019206763 0.0063063805 -0.067623913 0.0096460069 0.007931116 -0.067306042 0.012490874 0.025922026 -0.067180805 0.01361075 0.03300428 -0.067268081 0.02373749 0.026341509 -0.068409503 0.00047370259 -0.0071750046 -0.067989282 -0.0053730742 -0.010887216 -0.067857087 -0.0041894242 -0.0034020757 -0.067857102 0.0075601623 -0.0052600186 -0.067815602 -0.0038178854 -0.0010526933 -0.067815602 0.0079316422 -0.0029106303 -0.067857102 0.0075601623 -0.0052600186 -0.067857087 -0.0041894242 -0.0034020757 -0.067815602 -0.0038178854 -0.0010526933 -0.068055689 0.0057887407 -0.016517252 -0.067989282 -0.0053730742 -0.010887216 -0.068472914 -0.00035869775 -0.010720029 -0.068055689 0.0057887407 -0.016517252 -0.068145931 -0.0067742616 -0.019748326 -0.067989282 -0.0053730742 -0.010887216 -0.066355951 0.020317731 0.079791248 -0.066252843 0.029045982 0.084392637 -0.066434205 0.029757258 0.073760591 -0.067001097 0.0193976 0.042515069 -0.067111731 0.018408196 0.036257911 -0.067001708 0.0152136 0.043140832 -0.067001089 0.026126731 0.041450992 -0.067001097 0.0193976 0.042515069 -0.066848218 0.021359235 0.051072463 -0.067111731 0.018408196 0.036257911 -0.067167699 0.023924422 0.032134481 -0.067215264 0.017481124 0.030394852 -0.067111745 0.025137331 0.035193861 -0.067111731 0.018408196 0.036257911 -0.0675143 0.022248635 0.041302588 -0.067167699 0.023924422 0.032134481 -0.067111731 0.018408196 0.036257911 -0.067111745 0.025137331 0.035193861 -0.067215264 0.017481124 0.030394852 -0.067167699 0.023924422 0.032134481 -0.067268081 0.02373749 0.026341509 -0.067354456 0.019774079 0.021963533 -0.067306042 0.012490874 0.025922026 -0.067268081 0.02373749 0.026341509 -0.067472517 0.015180125 0.015842818 -0.067539759 0.021307312 0.010972431 -0.067623913 0.0096460069 0.007931116 -0.067416251 0.022443864 0.017891414 -0.067472517 0.015180125 0.015842818 -0.067354456 0.019774079 0.021963533 -0.0675143 0.022248635 0.041302588 -0.067001089 0.026126731 0.041450992 -0.067111745 0.025137331 0.035193861 -0.068347692 -0.062465705 -0.022641767 -0.068242431 -0.063425362 -0.016386263 -0.068394065 -0.057571605 -0.026106497 -0.068394065 -0.057571605 -0.026106497 -0.068200231 -0.0072598555 -0.022819571 -0.068287671 0.0037067775 -0.029628446 -0.068394065 -0.057571605 -0.026106497 -0.068145931 -0.0067742616 -0.019748326 -0.068200231 -0.0072598555 -0.022819571 -0.068394065 -0.057571605 -0.026106497 -0.067989282 -0.0053730742 -0.010887216 -0.068145931 -0.0067742616 -0.019748326 -0.068394065 -0.057571605 -0.026106497 -0.068242431 -0.063425362 -0.016386263 -0.067989282 -0.0053730742 -0.010887216 -0.067147613 0.0072276513 0.035940111 -0.067001693 0.0034641321 0.044998761 -0.067554176 0.0080823014 0.041232958 -0.041449554 -0.05511187 -0.01662444 -0.041513331 -0.056728635 -0.016096219 -0.044969387 -0.053427033 -0.011329519 -0.066642888 0.031850692 0.061321981 -0.066434205 0.029757258 0.073760591 -0.066302598 0.049540229 0.078261875 -0.068242431 -0.063425362 -0.016386263 -0.066464365 -0.027725967 0.081096061 -0.067180805 0.0018612546 0.034862228 -0.068242431 -0.063425362 -0.016386263 -0.067462862 -0.00066258799 0.018901829 -0.067517169 -0.0011482106 0.015830589 -0.068242431 -0.063425362 -0.016386263 -0.067517169 -0.0011482106 0.015830589 -0.067623913 -0.0021035797 0.0097890468 -0.068242431 -0.063425362 -0.016386263 -0.067180805 0.0018612546 0.034862228 -0.067462862 -0.00066258799 0.018901829 -0.068242431 -0.063425362 -0.016386263 -0.067815602 -0.0038178854 -0.0010526933 -0.067857087 -0.0041894242 -0.0034020757 -0.068242431 -0.063425362 -0.016386263 -0.067857087 -0.0041894242 -0.0034020757 -0.067989282 -0.0053730742 -0.010887216 -0.068242431 -0.063425362 -0.016386263 -0.067623913 -0.0021035797 0.0097890468 -0.067815602 -0.0038178854 -0.0010526933 -0.067111745 0.025137331 0.035193861 -0.067001089 0.026126731 0.041450992 -0.066461623 0.064035259 0.066749051 -0.068716705 0.0021606679 -0.025258681 -0.068625525 0.0029764953 -0.02009964 -0.068287671 0.0037067775 -0.029628446 -0.068287671 0.0037067775 -0.029628446 -0.068625525 0.0029764953 -0.02009964 -0.068055689 0.0057887407 -0.016517252 -0.068287671 0.0037067775 -0.029628446 -0.068055689 0.0057887407 -0.016517252 -0.068393826 0.059717007 -0.044637721 -0.066434205 0.029757258 0.073760591 -0.066252843 0.029045982 0.084392637 -0.066302598 0.049540229 0.078261875 -0.067180805 0.01361075 0.03300428 -0.067215264 0.017481124 0.030394852 -0.067268081 0.02373749 0.026341509 -0.068055689 0.0057887407 -0.016517252 -0.067539759 0.021307312 0.010972431 -0.068393826 0.059717007 -0.044637721 -0.068055689 0.0057887407 -0.016517252 -0.068409503 0.00047370259 -0.0071750046 -0.067857102 0.0075601623 -0.0052600186 -0.068055689 0.0057887407 -0.016517252 -0.067857102 0.0075601623 -0.0052600186 -0.067539759 0.021307312 0.010972431 -0.067857102 0.0075601623 -0.0052600186 -0.067815602 0.0079316422 -0.0029106303 -0.067539759 0.021307312 0.010972431 -0.067147613 0.0072276513 0.035940111 -0.067001708 0.0152136 0.043140832 -0.067180805 0.01361075 0.03300428 -0.067147613 0.0072276513 0.035940111 -0.067554176 0.0080823014 0.041232958 -0.067001708 0.0152136 0.043140832 -0.067815602 0.0079316422 -0.0029106303 -0.067623913 0.0096460069 0.007931116 -0.067539759 0.021307312 0.010972431 -0.067001693 0.0034641321 0.044998761 -0.06674432 0.0040235077 0.059839837 -0.06685394 0.010541799 0.052451011 -0.067462862 -0.00066258799 0.018901829 -0.067180805 0.0018612546 0.034862228 -0.067358196 0.0032351913 0.024360254 -0.067001089 0.026126731 0.041450992 -0.066848218 0.021359235 0.051072463 -0.066642888 0.031850692 0.061321981 -0.067001089 0.026126731 0.041450992 -0.066642888 0.031850692 0.061321981 -0.066461623 0.064035259 0.066749051 -0.067623913 0.0096460069 0.007931116 -0.068033651 0.0082724625 0.013391506 -0.067472517 0.015180125 0.015842818 -0.067416251 0.022443864 0.017891414 -0.067354456 0.019774079 0.021963533 -0.068242848 0.067928448 -0.037179034 -0.068033651 0.0082724625 0.013391506 -0.067942448 0.0090881838 0.018550698 -0.06737335 0.011888487 0.022112394 -0.044969387 -0.053427033 -0.011329519 -0.041513331 -0.056728635 -0.016096219 -0.04443413 -0.054772805 -0.0064865979 -0.068033651 0.0082724625 0.013391506 -0.06737335 0.011888487 0.022112394 -0.067472517 0.015180125 0.015842818 -0.040587906 -0.050449871 -0.0040695276 -0.044969387 -0.053427033 -0.011329519 -0.041493293 -0.052104391 -0.0035161169 -0.066302598 0.049540229 0.078261875 -0.066382959 0.061250247 0.071748674 -0.066461623 0.064035259 0.066749051 -0.067180805 0.01361075 0.03300428 -0.067001708 0.0152136 0.043140832 -0.067111731 0.018408196 0.036257911 -0.067180805 0.01361075 0.03300428 -0.067111731 0.018408196 0.036257911 -0.067215264 0.017481124 0.030394852 -0.044969387 -0.053427033 -0.011329519 -0.04443413 -0.054772805 -0.0064865979 -0.041493293 -0.052104391 -0.0035161169 -0.06660682 0.0032109956 0.067946613 -0.06629473 -0.0082856137 0.08786539 -0.066251457 0.012357405 0.087108046 -0.06660682 0.0032109956 0.067946613 -0.066251457 0.012357405 0.087108046 -0.066355951 0.020317731 0.079791248 -0.039398368 -0.055658001 0.0052151275 -0.039498273 -0.055271696 0.005269256 -0.039403915 -0.05532996 0.0050921794 -0.039398368 -0.055658001 0.0052151275 -0.039403915 -0.05532996 0.0050921794 -0.039403852 -0.055329997 0.0050920611 -0.039398368 -0.055658001 0.0052151275 -0.039403852 -0.055329997 0.0050920611 -0.039267469 -0.055714097 0.0050447118 -0.039267469 -0.055714097 0.0050447118 -0.039403852 -0.055329997 0.0050920611 -0.039274577 -0.05538483 0.0049254885 -0.039267469 -0.055714097 0.0050447118 -0.039274577 -0.05538483 0.0049254885 -0.039267465 -0.055714101 0.005044648 -0.039267465 -0.055714101 0.005044648 -0.039274577 -0.05538483 0.0049254885 -0.039274521 -0.055384893 0.0049254196 -0.039267465 -0.055714101 0.005044648 -0.039274521 -0.055384893 0.0049254196 -0.039031625 -0.055790093 0.0048155854 -0.039031625 -0.055790093 0.0048155854 -0.039274521 -0.055384893 0.0049254196 -0.039101843 -0.055437423 0.0047652009 -0.039031625 -0.055790093 0.0048155854 -0.039101843 -0.055437423 0.0047652009 -0.039101772 -0.055437427 0.0047651525 -0.039031625 -0.055790093 0.0048155854 -0.039101772 -0.055437427 0.0047651525 -0.038904667 -0.055481926 0.0046296986 -0.039031625 -0.055790093 0.0048155854 -0.038904604 -0.055481929 0.0046296502 -0.038694385 -0.055843748 0.0046499097 -0.039031625 -0.055790093 0.0048155854 -0.038904667 -0.055481926 0.0046296986 -0.038904604 -0.055481929 0.0046296502 -0.041513331 -0.056728635 -0.016096219 -0.041513558 -0.058153737 -0.015628031 -0.04443413 -0.054772805 -0.0064865979 -0.038694385 -0.055843748 0.0046499097 -0.038698442 -0.05551476 0.0045297164 -0.038694385 -0.055843748 0.0046499097 -0.038694385 -0.055843748 0.0046499097 -0.038904604 -0.055481929 0.0046296502 -0.038698442 -0.05551476 0.0045297164 -0.038694385 -0.055843748 0.0046499097 -0.038698442 -0.05551476 0.0045297164 -0.038698379 -0.055514768 0.0045296536 -0.039398368 -0.055658001 0.0052151275 -0.039582547 -0.055156417 0.0056204456 -0.039559554 -0.055207461 0.0054654717 -0.039398368 -0.055658001 0.0052151275 -0.039559554 -0.055207461 0.0054654717 -0.039559491 -0.055207469 0.0054653557 -0.039398368 -0.055658001 0.0052151275 -0.039559491 -0.055207469 0.0054653557 -0.03949827 -0.055271659 0.0052693067 -0.039398368 -0.055658001 0.0052151275 -0.03949827 -0.055271659 0.0052693067 -0.039498273 -0.055271696 0.005269256 -0.0066431314 -0.055570923 0.0054799677 -0.0069482327 -0.055150472 0.0056385063 -0.0073435158 -0.05537983 0.0060618478 -0.0066431314 -0.055570923 0.0054799677 -0.0064676851 -0.055271335 0.0052711829 -0.0069482401 -0.055150621 0.0056385184 -0.0066431314 -0.055570923 0.0054799677 -0.0069482401 -0.055150621 0.0056385184 -0.0069482327 -0.055150472 0.0056385063 -0.0069482327 -0.055150472 0.0056385063 -0.0073353648 -0.055044357 0.0059612519 -0.0073435158 -0.05537983 0.0060618478 -0.0073435158 -0.05537983 0.0060618478 -0.0073353648 -0.055044357 0.0059612519 -0.0073435158 -0.05537983 0.0060618478 -0.0073435158 -0.05537983 0.0060618478 -0.0073353648 -0.055044357 0.0059612519 -0.0073353648 -0.055044357 0.0059612519 -0.0047183037 -0.05538984 0.0049101687 -0.0064676851 -0.055271335 0.0052711829 -0.0066431314 -0.055570923 0.0054799677 -0.0054399967 -0.055537872 0.0044596065 -0.0054399371 -0.055537868 0.0044596209 -0.005236268 -0.055514287 0.0045312177 -0.0054399967 -0.055537872 0.0044596065 -0.005236268 -0.055514287 0.0045312177 -0.0052362084 -0.055514224 0.0045312005 -0.0054399967 -0.055537872 0.0044596065 -0.0052362084 -0.055514224 0.0045312005 -0.0047183037 -0.05538984 0.0049101687 -0.0047183037 -0.05538984 0.0049101687 -0.0052362084 -0.055514224 0.0045312005 -0.0050193742 -0.055476446 0.0046468074 -0.0047183037 -0.05538984 0.0049101687 -0.0050193742 -0.055476446 0.0046468074 -0.0050193071 -0.055476442 0.0046468107 -0.0047183037 -0.05538984 0.0049101687 -0.0050193071 -0.055476442 0.0046468107 -0.0048523545 -0.055435769 0.0047702496 -0.0047183037 -0.05538984 0.0049101687 -0.0048523545 -0.055435769 0.0047702496 -0.0048522949 -0.055435766 0.0047702491 -0.0047183037 -0.05538984 0.0049101687 -0.0047183111 -0.055389836 0.004910225 -0.0046194047 -0.055339806 0.0050626397 -0.0047183037 -0.05538984 0.0049101687 -0.0046194047 -0.055339806 0.0050626397 -0.00461936 -0.05533962 0.0050626933 -0.0047183037 -0.05538984 0.0049101687 -0.00461936 -0.05533962 0.0050626933 -0.0045434833 -0.055279203 0.0052465387 -0.0047183037 -0.05538984 0.0049101687 -0.0045434833 -0.055279203 0.0052465387 -0.0045434833 -0.055279203 0.0052465387 -0.007825423 -0.055592541 0.005414363 -0.0078335367 -0.055262811 0.0052964394 -0.0078334808 -0.055262811 0.0052964357 -0.007825423 -0.055592541 0.005414363 -0.0078334808 -0.055262811 0.0052964357 -0.0075501129 -0.05534108 0.0050582588 -0.007825423 -0.055592541 0.005414363 -0.0075501129 -0.05534108 0.0050582588 -0.0075041056 -0.055681873 0.0051437728 -0.0075041056 -0.055681873 0.0051437728 -0.0075501129 -0.05534108 0.0050582588 -0.0054399967 -0.055537872 0.0044596065 -0.0054399967 -0.055537872 0.0044596065 -0.0075501129 -0.05534108 0.0050582588 -0.0057898611 -0.055561207 0.004388955 -0.0078335367 -0.055262811 0.0052964394 -0.007825423 -0.055592541 0.005414363 -0.007825423 -0.055592541 0.005414363 -0.06660682 0.0032109956 0.067946613 -0.066355951 0.020317731 0.079791248 -0.06698928 0.0060683624 0.074312076 -0.067330964 0.0233637 0.051762037 -0.066848218 0.021359235 0.051072463 -0.06685394 0.010541799 0.052451011 -0.066642888 0.031850692 0.061321981 -0.066848218 0.021359235 0.051072463 -0.067330964 0.0233637 0.051762037 -0.038694385 -0.055843748 0.0046499097 -0.039398368 -0.055658001 0.0052151275 -0.039031625 -0.055790093 0.0048155854 -0.039031625 -0.055790093 0.0048155854 -0.039398368 -0.055658001 0.0052151275 -0.039267465 -0.055714101 0.005044648 -0.033047076 -0.056098539 0.0043545221 -0.036885392 -0.053898845 0.0094486065 -0.038694385 -0.055843748 0.0046499097 -0.0047183037 -0.05538984 0.0049101687 -0.0066431314 -0.055570923 0.0054799677 -0.0054399967 -0.055537872 0.0044596065 -0.0054399967 -0.055537872 0.0044596065 -0.0066431314 -0.055570923 0.0054799677 -0.0075041056 -0.055681873 0.0051437728 -0.0047183037 -0.05538984 0.0049101687 -0.0045434833 -0.055279203 0.0052465387 -0.0069482327 -0.055150472 0.0056385063 -0.0066431314 -0.055570923 0.0054799677 -0.0073435158 -0.05537983 0.0060618478 -0.0075041056 -0.055681873 0.0051437728 -0.0075041056 -0.055681873 0.0051437728 -0.0073435158 -0.05537983 0.0060618478 -0.007825423 -0.055592541 0.005414363 -0.0073435158 -0.05537983 0.0060618478 -0.0073353648 -0.055044357 0.0059612519 -0.007825423 -0.055592541 0.005414363 -0.0078335367 -0.055262811 0.0052964394 -0.007825423 -0.055592541 0.005414363 -0.0073353648 -0.055044357 0.0059612519 -0.067001089 0.026126731 0.041450992 -0.0675143 0.022248635 0.041302588 -0.067001097 0.0193976 0.042515069 -0.068716705 0.0021606679 -0.025258681 -0.068287671 0.0037067775 -0.029628446 -0.068200231 -0.0072598555 -0.022819571 -0.068145931 -0.0067742616 -0.019748326 -0.068716705 0.0021606679 -0.025258681 -0.068200231 -0.0072598555 -0.022819571 -0.068055689 0.0057887407 -0.016517252 -0.068625525 0.0029764953 -0.02009964 -0.068145931 -0.0067742616 -0.019748326 -0.067989282 -0.0053730742 -0.010887216 -0.068409503 0.00047370259 -0.0071750046 -0.068472914 -0.00035869775 -0.010720029 -0.067857102 0.0075601623 -0.0052600186 -0.068409503 0.00047370259 -0.0071750046 -0.067857087 -0.0041894242 -0.0034020757 -0.068055689 0.0057887407 -0.016517252 -0.068472914 -0.00035869775 -0.010720029 -0.068409503 0.00047370259 -0.0071750046 -0.068266571 0.0039243675 0.00056988263 -0.06817311 0.0019206763 0.0063063805 -0.067815602 0.0079316422 -0.0029106303 -0.041513558 -0.058153737 -0.015628031 -0.041455094 -0.059542388 -0.015158391 -0.04443413 -0.054772805 -0.0064865979 -0.068266571 0.0039243675 0.00056988263 -0.067623913 -0.0021035797 0.0097890468 -0.06817311 0.0019206763 0.0063063805 -0.067623913 0.0096460069 0.007931116 -0.06817311 0.0019206763 0.0063063805 -0.067623913 -0.0021035797 0.0097890468 -0.067815602 0.0079316422 -0.0029106303 -0.067815602 -0.0038178854 -0.0010526933 -0.068266571 0.0039243675 0.00056988263 -0.041493293 -0.052104391 -0.0035161169 -0.04443413 -0.054772805 -0.0064865979 -0.041436493 -0.054926455 -0.0025996936 -0.068033651 0.0082724625 0.013391506 -0.067623913 0.0096460069 0.007931116 -0.067517169 -0.0011482106 0.015830589 -0.067462862 -0.00066258799 0.018901829 -0.068033651 0.0082724625 0.013391506 -0.067517169 -0.0011482106 0.015830589 -0.06737335 0.011888487 0.022112394 -0.067942448 0.0090881838 0.018550698 -0.067462862 -0.00066258799 0.018901829 -0.067733288 0.0075031496 0.030934539 -0.067821801 0.0084662242 0.025646431 -0.067358196 0.0032351913 0.024360254 -0.067306042 0.012490874 0.025922026 -0.06737335 0.011888487 0.022112394 -0.067821801 0.0084662242 0.025646431 -0.067733288 0.0075031496 0.030934539 -0.067358196 0.0032351913 0.024360254 -0.067180805 0.0018612546 0.034862228 -0.067180805 0.0018612546 0.034862228 -0.067180805 0.01361075 0.03300428 -0.067733288 0.0075031496 0.030934539 -0.067001708 0.0152136 0.043140832 -0.067554176 0.0080823014 0.041232958 -0.067001693 0.0034641321 0.044998761 -0.067001693 0.0034641321 0.044998761 -0.067147613 0.0072276513 0.035940111 -0.067180805 0.0018612546 0.034862228 -0.066434205 0.029757258 0.073760591 -0.067002609 0.022743229 0.070902802 -0.066355951 0.020317731 0.079791248 -0.066434205 0.029757258 0.073760591 -0.066642888 0.031850692 0.061321981 -0.067002609 0.022743229 0.070902802 -0.066642888 0.031850692 0.061321981 -0.067134634 0.02477731 0.062926732 -0.067002609 0.022743229 0.070902802 -0.067002609 0.022743229 0.070902802 -0.067079008 0.018942943 0.067075104 -0.067032993 0.0096467873 0.07121262 -0.067002609 0.022743229 0.070902802 -0.067032993 0.0096467873 0.07121262 -0.06698928 0.0060683624 0.074312076 -0.067002609 0.022743229 0.070902802 -0.06698928 0.0060683624 0.074312076 -0.066355951 0.020317731 0.079791248 -0.066642888 0.031850692 0.061321981 -0.067330964 0.0233637 0.051762037 -0.067134634 0.02477731 0.062926732 -0.067134634 0.02477731 0.062926732 -0.067330964 0.0233637 0.051762037 -0.067249537 0.01438265 0.057905834 -0.067134634 0.02477731 0.062926732 -0.067249537 0.01438265 0.057905834 -0.067079008 0.018942943 0.067075104 -0.067079008 0.018942943 0.067075104 -0.067115188 0.012660239 0.065966152 -0.067032993 0.0096467873 0.07121262 -0.067115188 0.012660239 0.065966152 -0.067172766 0.0069566001 0.063532926 -0.067032993 0.0096467873 0.07121262 -0.067115188 0.012660239 0.065966152 -0.067249537 0.01438265 0.057905834 -0.06720233 0.0099729458 0.061343055 -0.067032993 0.0096467873 0.07121262 -0.06660682 0.0032109956 0.067946613 -0.06698928 0.0060683624 0.074312076 -0.067032993 0.0096467873 0.07121262 -0.067172766 0.0069566001 0.063532926 -0.06660682 0.0032109956 0.067946613 -0.06720233 0.0099729458 0.061343055 -0.067249537 0.01438265 0.057905834 -0.06674432 0.0040235077 0.059839837 -0.06720233 0.0099729458 0.061343055 -0.06674432 0.0040235077 0.059839837 -0.067172766 0.0069566001 0.063532926 -0.067249537 0.01438265 0.057905834 -0.067330964 0.0233637 0.051762037 -0.06685394 0.010541799 0.052451011 -0.067249537 0.01438265 0.057905834 -0.06685394 0.010541799 0.052451011 -0.06674432 0.0040235077 0.059839837 -0.067172766 0.0069566001 0.063532926 -0.06674432 0.0040235077 0.059839837 -0.06660682 0.0032109956 0.067946613 -0.067472517 0.015180125 0.015842818 -0.067416251 0.022443864 0.017891414 -0.067539759 0.021307312 0.010972431 -0.029428728 -0.052560352 -0.010418383 -0.032528337 -0.051860772 -0.0035934569 -0.030017555 -0.053084146 -0.01024657 -0.068145931 -0.0067742616 -0.019748326 -0.068625525 0.0029764953 -0.02009964 -0.068716705 0.0021606679 -0.025258681 -0.067462862 -0.00066258799 0.018901829 -0.067942448 0.0090881838 0.018550698 -0.068033651 0.0082724625 0.013391506 -0.067079008 0.018942943 0.067075104 -0.067002609 0.022743229 0.070902802 -0.067134634 0.02477731 0.062926732 -0.06720233 0.0099729458 0.061343055 -0.067172766 0.0069566001 0.063532926 -0.067115188 0.012660239 0.065966152 -0.067249537 0.01438265 0.057905834 -0.067115188 0.012660239 0.065966152 -0.067079008 0.018942943 0.067075104 -0.060250308 0.074453644 -0.037161987 -0.06250006 0.078193277 -0.034827922 -0.060381841 0.080653474 -0.034456227 -0.062500075 0.074327566 -0.037299566 -0.06250006 0.078193277 -0.034827922 -0.060250308 0.074453644 -0.037161987 -0.060381841 0.080653474 -0.034456227 -0.062500067 0.088855073 -0.040559407 -0.060473755 0.0885766 -0.039768957 -0.06250006 0.078193277 -0.034827922 -0.062500067 0.088855073 -0.040559407 -0.060381841 0.080653474 -0.034456227 -0.060181495 0.072407186 -0.040977538 -0.062500075 0.074327566 -0.037299566 -0.060250308 0.074453644 -0.037161987 -0.062500067 0.072510473 -0.045401663 -0.062500075 0.074327566 -0.037299566 -0.060181495 0.072407186 -0.040977538 -0.060473755 0.0885766 -0.039768957 -0.062500067 0.088855073 -0.040559407 -0.060435135 0.088958472 -0.044983417 -0.061011203 0.053454485 0.092655398 -0.062500067 0.055483885 0.095199138 -0.061238065 0.064598061 0.096437715 -0.028980389 -0.053763945 -0.010024585 -0.030017555 -0.053084146 -0.01024657 -0.032528337 -0.051860772 -0.0035934569 -0.062500067 0.053771857 0.084203586 -0.062500067 0.055483885 0.095199138 -0.061011203 0.053454485 0.092655398 -0.07 0.067971162 -0.037560131 -0.07 0.059645295 -0.044682544 -0.068360344 0.064256132 -0.043414947 -0.068242848 0.067928448 -0.037179034 -0.07 0.067971162 -0.037560131 -0.068360344 0.064256132 -0.043414947 -0.068360344 0.064256132 -0.043414947 -0.07 0.059645295 -0.044682544 -0.068393826 0.059717007 -0.044637721 -0.07 -0.073090971 -0.016474381 -0.069999985 -0.075017691 -0.021865273 -0.062500075 -0.07396277 -0.020783728 -0.069999978 -0.08103212 -0.020624453 -0.069999978 -0.081181422 -0.015578973 -0.06250006 -0.081208318 -0.015883813 -0.062500075 -0.07396277 -0.020783728 -0.069999978 -0.08103212 -0.020624453 -0.06250006 -0.079937682 -0.021543397 -0.069999985 -0.075017691 -0.021865273 -0.069999978 -0.08103212 -0.020624453 -0.062500075 -0.07396277 -0.020783728 -0.06250006 -0.079937682 -0.021543397 -0.069999978 -0.08103212 -0.020624453 -0.06250006 -0.081208318 -0.015883813 -0.062500052 -0.013724085 0.10031704 -0.069999985 -0.019728346 0.097018555 -0.062500067 -0.018282782 0.096818708 -0.069999978 -0.013972934 0.099158473 -0.069999985 -0.019728346 0.097018555 -0.062500052 -0.013724085 0.10031704 -0.030820012 -0.059360273 -0.013531446 -0.02903343 -0.057431467 -0.0077228467 -0.032629184 -0.05982291 -0.015072157 -0.031859294 -0.059663497 -0.014535852 -0.030820012 -0.059360273 -0.013531446 -0.032629184 -0.05982291 -0.015072157 -0.062500067 -0.018282782 0.096818708 -0.069999993 -0.022111431 0.099296696 -0.06250006 -0.022405168 0.1012717 -0.069999985 -0.019728346 0.097018555 -0.069999993 -0.022111431 0.099296696 -0.062500067 -0.018282782 0.096818708 -0.031567641 -0.058636058 -0.013123316 -0.032064375 -0.059707887 -0.014700133 -0.032629184 -0.05982291 -0.015072157 -0.07 0.061354116 0.084197141 -0.069999993 0.057101663 0.086428501 -0.06250006 0.059137773 0.084733792 -0.031567641 -0.058636058 -0.013123316 -0.031859294 -0.059663497 -0.014535852 -0.032064375 -0.059707887 -0.014700133 -0.030820012 -0.059360273 -0.013531446 -0.031859294 -0.059663497 -0.014535852 -0.031567641 -0.058636058 -0.013123316 -0.031567641 -0.058636058 -0.013123316 -0.032629184 -0.05982291 -0.015072157 -0.032506108 -0.057015851 -0.016008509 -0.069999993 0.057101663 0.086428501 -0.069999993 0.056973822 0.090753354 -0.06250006 0.057618897 0.091501795 -0.06250006 0.059137773 0.084733792 -0.069999993 0.057101663 0.086428501 -0.06250006 0.057618897 0.091501795 -0.062500082 0.064864315 0.086601712 -0.07 0.061354116 0.084197141 -0.06250006 0.059137773 0.084733792 -0.069999993 0.064323805 0.085628897 -0.07 0.061354116 0.084197141 -0.062500082 0.064864315 0.086601712 -0.030800451 -0.05806208 -0.013975306 -0.031567641 -0.058636058 -0.013123316 -0.032506108 -0.057015851 -0.016008509 -0.069999993 0.0833693 -0.046620898 -0.070000008 0.077265427 -0.045945488 -0.062500082 0.077477731 -0.045985162 -0.070000015 0.085160345 -0.043688577 -0.069999993 0.0833693 -0.046620898 -0.06250006 0.083488882 -0.046360709 -0.062500067 0.085060306 -0.042789526 -0.070000015 0.085160345 -0.043688577 -0.06250006 0.083488882 -0.046360709 -0.070000008 0.077265427 -0.045945488 -0.069999993 0.07709606 -0.040223148 -0.062500075 0.076479681 -0.04168909 -0.062500082 0.077477731 -0.045985162 -0.070000008 0.077265427 -0.045945488 -0.062500075 0.076479681 -0.04168909 -0.06250006 0.083488882 -0.046360709 -0.069999993 0.0833693 -0.046620898 -0.062500082 0.077477731 -0.045985162 -0.033473011 -0.056143209 -0.0021940044 -0.02903343 -0.057431467 -0.0077228467 -0.032511957 -0.053270306 -0.0031305056 -0.070000008 0.078245208 0.037654478 -0.070000008 0.082401305 0.036756475 -0.061025981 0.081823818 0.037411854 -0.06091946 0.076851577 0.035119504 -0.070000008 0.078245208 0.037654478 -0.061025981 0.081823818 0.037411854 -0.070000008 0.082401305 0.036756475 -0.069999993 0.082736678 0.034138922 -0.061025981 0.081823818 0.037411854 -0.069999978 -0.055354647 0.057000097 -0.069999978 -0.050155409 0.057959389 -0.060976204 -0.050531767 0.058341056 -0.061030142 -0.054923929 0.057820477 -0.069999978 -0.055354647 0.057000097 -0.060976204 -0.050531767 0.058341056 -0.030820012 -0.059360273 -0.013531446 -0.030800451 -0.05806208 -0.013975306 -0.028986152 -0.055297099 -0.0099002952 -0.069999978 -0.050155409 0.057959389 -0.069999978 -0.05086305 0.053484567 -0.060915515 -0.05102424 0.053389795 -0.02903343 -0.057431467 -0.0077228467 -0.030820012 -0.059360273 -0.013531446 -0.028986152 -0.055297099 -0.0099002952 -0.060976204 -0.050531767 0.058341056 -0.069999978 -0.050155409 0.057959389 -0.060915515 -0.05102424 0.053389795 -0.061221078 -0.01775687 0.1097124 -0.062500052 -0.0098363822 0.10362493 -0.060977824 -0.0095476229 0.1002334 -0.061267372 -0.025563627 0.10515012 -0.06250006 -0.016411338 0.1095798 -0.061221078 -0.01775687 0.1097124 -0.062500067 -0.024364077 0.10688394 -0.06250006 -0.016411338 0.1095798 -0.061267372 -0.025563627 0.10515012 -0.06250006 -0.016411338 0.1095798 -0.062500052 -0.0098363822 0.10362493 -0.061221078 -0.01775687 0.1097124 -0.060318582 -0.071768522 -0.011542751 -0.062500067 -0.069181241 -0.015569324 -0.060166005 -0.069077916 -0.019993527 -0.06250006 -0.07159733 -0.011699634 -0.062500067 -0.069181241 -0.015569324 -0.060318582 -0.071768522 -0.011542751 -0.060450613 -0.085629143 -0.015987612 -0.062500045 -0.079843238 -0.0098380679 -0.060452454 -0.079680465 -0.0097901365 -0.062500045 -0.079843238 -0.0098380679 -0.06250006 -0.07159733 -0.011699634 -0.060452454 -0.079680465 -0.0097901365 -0.062500045 -0.085525863 -0.020411719 -0.062500045 -0.079843238 -0.0098380679 -0.060450613 -0.085629143 -0.015987612 -0.060452454 -0.079680465 -0.0097901365 -0.06250006 -0.07159733 -0.011699634 -0.060318582 -0.071768522 -0.011542751 -0.07 -0.046599846 0.079356968 -0.069999978 -0.044012658 0.076826014 -0.061157621 -0.044148467 0.07815858 -0.061198514 -0.045863457 0.079407185 -0.07 -0.046599846 0.079356968 -0.061157621 -0.044148467 0.07815858 -0.069999978 -0.04816201 0.077764906 -0.07 -0.046599846 0.079356968 -0.061198514 -0.045863457 0.079407185 -0.061157621 -0.044148467 0.07815858 -0.069999978 -0.044012658 0.076826014 -0.061147146 -0.046311162 0.075183868 -0.043062285 0.067244589 0.015483867 -0.03596247 0.067225672 0.020554915 -0.040129974 0.066233069 0.018565604 -0.045023512 0.066269569 0.0088007106 -0.043062285 0.067244589 0.015483867 -0.040129974 0.066233069 0.018565604 -0.044224992 0.067285217 0.0046236357 -0.043062285 0.067244589 0.015483867 -0.045023512 0.066269569 0.0088007106 -0.028986152 -0.055297099 -0.0099002952 -0.030800451 -0.05806208 -0.013975306 -0.032506108 -0.057015851 -0.016008509 -0.037755147 0.066310517 -0.0021332831 -0.033931974 0.067313999 -0.003085976 -0.044224992 0.067285217 0.0046236357 -0.053734601 -0.038778964 -0.096083172 -0.036771894 -0.035868775 -0.093466952 -0.056614123 -0.048081588 -0.089229167 -0.056614123 -0.048081588 -0.089229167 -0.036771894 -0.035868775 -0.093466952 -0.041572805 -0.042240802 -0.089742266 -0.046862673 -0.02986709 -0.09951558 -0.026986971 -0.030488633 -0.094778299 -0.053734601 -0.038778964 -0.096083172 -0.055844016 -0.0112395 -0.10801324 -0.040335957 -0.010664415 -0.10439917 -0.058822632 -0.027220294 -0.10417791 -0.068713121 -0.032699894 -0.10502577 -0.046862673 -0.02986709 -0.09951558 -0.068796143 -0.043073289 -0.098578058 -0.068796143 -0.043073289 -0.098578058 -0.046862673 -0.02986709 -0.09951558 -0.053734601 -0.038778964 -0.096083172 -0.053734601 -0.038778964 -0.096083172 -0.026986971 -0.030488633 -0.094778299 -0.036771894 -0.035868775 -0.093466952 -0.068675883 -0.025057448 -0.10839764 -0.055844016 -0.0112395 -0.10801324 -0.058822632 -0.027220294 -0.10417791 -0.058822632 -0.027220294 -0.10417791 -0.040335957 -0.010664415 -0.10439917 -0.037401322 -0.016823068 -0.10244182 -0.068651155 -0.010902677 -0.11206814 -0.055844016 -0.0112395 -0.10801324 -0.068675883 -0.025057448 -0.10839764 -0.068796143 -0.043073289 -0.098578058 -0.053734601 -0.038778964 -0.096083172 -0.068887696 -0.050609149 -0.092071325 -0.068887696 -0.050609149 -0.092071325 -0.053734601 -0.038778964 -0.096083172 -0.056614123 -0.048081588 -0.089229167 -0.046862673 -0.02986709 -0.09951558 -0.029393133 -0.022351442 -0.099093534 -0.026986971 -0.030488633 -0.094778299 -0.046862673 -0.02986709 -0.09951558 -0.037401322 -0.016823068 -0.10244182 -0.029393133 -0.022351442 -0.099093534 -0.068675883 -0.025057448 -0.10839764 -0.058822632 -0.027220294 -0.10417791 -0.068713121 -0.032699894 -0.10502577 -0.058822632 -0.027220294 -0.10417791 -0.046862673 -0.02986709 -0.09951558 -0.068713121 -0.032699894 -0.10502577 -0.058822632 -0.027220294 -0.10417791 -0.037401322 -0.016823068 -0.10244182 -0.046862673 -0.02986709 -0.09951558 -0.037401322 -0.016823068 -0.10244182 -0.015108924 -0.01825228 -0.098272257 -0.029393133 -0.022351442 -0.099093534 -0.036771894 -0.035868775 -0.093466952 -0.018659823 -0.045210905 -0.08134754 -0.041572805 -0.042240802 -0.089742266 -0.0099167079 -0.03058311 -0.09197133 0.0034257174 -0.038550146 -0.084353387 -0.036771894 -0.035868775 -0.093466952 -0.026986971 -0.030488633 -0.094778299 -0.015108924 -0.01825228 -0.098272257 -0.0099167079 -0.03058311 -0.09197133 0.0034257174 -0.038550146 -0.084353387 -0.0099167079 -0.03058311 -0.09197133 0.01198262 -0.029313747 -0.090280198 -0.037401322 -0.016823068 -0.10244182 -0.019092444 -0.0079219639 -0.10114671 -0.015108924 -0.01825228 -0.098272257 0.022424422 -0.036484238 -0.084271677 0.0034257174 -0.038550146 -0.084353387 0.01198262 -0.029313747 -0.090280198 -0.040335957 -0.010664415 -0.10439917 -0.019092444 -0.0079219639 -0.10114671 -0.037401322 -0.016823068 -0.10244182 -0.015108924 -0.01825228 -0.098272257 0.023023717 -0.0038542859 -0.097482711 0.011981845 -0.017400106 -0.09565863 -0.019092444 -0.0079219639 -0.10114671 0.023023717 -0.0038542859 -0.097482711 -0.015108924 -0.01825228 -0.098272257 -0.036771894 -0.035868775 -0.093466952 0.0034257174 -0.038550146 -0.084353387 -0.018659823 -0.045210905 -0.08134754 -0.028986152 -0.055297099 -0.0099002952 -0.032511957 -0.053270306 -0.0031305056 -0.02903343 -0.057431467 -0.0077228467 -0.026986971 -0.030488633 -0.094778299 -0.0099167079 -0.03058311 -0.09197133 -0.036771894 -0.035868775 -0.093466952 -0.015108924 -0.01825228 -0.098272257 0.011981845 -0.017400106 -0.09565863 0.01198262 -0.029313747 -0.090280198 -0.015108924 -0.01825228 -0.098272257 0.01198262 -0.029313747 -0.090280198 -0.0099167079 -0.03058311 -0.09197133 -0.029393133 -0.022351442 -0.099093534 -0.015108924 -0.01825228 -0.098272257 -0.026986971 -0.030488633 -0.094778299 0.01198262 -0.029313747 -0.090280198 0.038299605 -0.024048889 -0.091453589 0.052105516 -0.033041839 -0.085578777 0.038299605 -0.024048889 -0.091453589 0.069999993 -0.028426966 -0.088494256 0.052105516 -0.033041839 -0.085578777 0.026199229 -0.048458721 -0.069679335 0.037235111 -0.044976726 -0.074096903 0.033647902 -0.052549124 -0.060074639 0.052105516 -0.033041839 -0.085578777 0.069999993 -0.028426966 -0.088494256 0.069999993 -0.03296214 -0.085432641 0.018354118 -0.049756628 -0.069349349 0.037235111 -0.044976726 -0.074096903 0.026199229 -0.048458721 -0.069679335 0.039318092 -0.038551204 -0.081338659 0.070000023 -0.040392205 -0.078754544 0.037235111 -0.044976726 -0.074096903 0.038314015 -0.055018108 -0.033240024 0.069999993 -0.055068575 -0.042272676 0.069999009 -0.054162353 -0.031468146 0.039318092 -0.038551204 -0.081338659 0.052105516 -0.033041839 -0.085578777 0.069999993 -0.03296214 -0.085432641 0.039318092 -0.038551204 -0.081338659 0.069999993 -0.03296214 -0.085432641 0.070000023 -0.040392205 -0.078754544 0.0034257174 -0.038550146 -0.084353387 0.022424422 -0.036484238 -0.084271677 0.0028792024 -0.043135583 -0.079843976 0.01198262 -0.029313747 -0.090280198 0.052105516 -0.033041839 -0.085578777 0.022424422 -0.036484238 -0.084271677 0.036535412 -0.05487616 -0.050749764 0.069999993 -0.055068575 -0.042272676 0.038130917 -0.055624738 -0.041287433 0.033647902 -0.052549124 -0.060074639 0.070000023 -0.051482908 -0.060850222 0.036535412 -0.05487616 -0.050749764 0.038130917 -0.055624738 -0.041287433 0.069999993 -0.055068575 -0.042272676 0.038314015 -0.055018108 -0.033240024 0.037235111 -0.044976726 -0.074096903 0.070000023 -0.040392205 -0.078754544 0.070000008 -0.04509268 -0.072937809 0.037235111 -0.044976726 -0.074096903 0.070000023 -0.051482908 -0.060850222 0.033647902 -0.052549124 -0.060074639 0.069999784 -0.01349013 -0.094681688 0.038299605 -0.024048889 -0.091453589 0.033818431 -0.018860057 -0.093804017 0.022424422 -0.036484238 -0.084271677 0.052105516 -0.033041839 -0.085578777 0.039318092 -0.038551204 -0.081338659 0.011981845 -0.017400106 -0.09565863 0.033818431 -0.018860057 -0.093804017 0.01198262 -0.029313747 -0.090280198 0.069999784 -0.01349013 -0.094681688 0.033818431 -0.018860057 -0.093804017 0.040152699 -0.0096197641 -0.096002467 0.040152699 -0.0096197641 -0.096002467 0.011981845 -0.017400106 -0.09565863 0.023023717 -0.0038542859 -0.097482711 0.0028792024 -0.043135583 -0.079843976 0.039318092 -0.038551204 -0.081338659 0.037235111 -0.044976726 -0.074096903 0.065001011 -0.007654421 -0.095835969 0.069999784 -0.01349013 -0.094681688 0.040152699 -0.0096197641 -0.096002467 0.011981845 -0.017400106 -0.09565863 0.040152699 -0.0096197641 -0.096002467 0.033818431 -0.018860057 -0.093804017 0.022424422 -0.036484238 -0.084271677 0.039318092 -0.038551204 -0.081338659 0.0028792024 -0.043135583 -0.079843976 0.037235111 -0.044976726 -0.074096903 0.070000008 -0.04509268 -0.072937809 0.070000023 -0.051482908 -0.060850222 0.0028792024 -0.043135583 -0.079843976 0.037235111 -0.044976726 -0.074096903 0.018354118 -0.049756628 -0.069349349 -0.032528337 -0.051860772 -0.0035934569 -0.032511957 -0.053270306 -0.0031305056 -0.028980389 -0.053763945 -0.010024585 0.01198262 -0.029313747 -0.090280198 0.033818431 -0.018860057 -0.093804017 0.038299605 -0.024048889 -0.091453589 0.038299605 -0.024048889 -0.091453589 0.069999784 -0.01349013 -0.094681688 0.069999993 -0.028426966 -0.088494256 0.036535412 -0.05487616 -0.050749764 0.070000023 -0.051482908 -0.060850222 0.069999993 -0.055068575 -0.042272676 -0.03316528 -0.063516848 -0.0076530655 -0.036342751 -0.062030409 -0.0031283672 -0.033828203 -0.070726633 -0.0018917423 -0.036342751 -0.062030409 -0.0031283672 -0.037891567 -0.068728529 -0.001729949 -0.033828203 -0.070726633 -0.0018917423 -0.034377396 -0.06940911 -0.0038015777 -0.034117326 -0.070252776 -0.0063699023 -0.03316528 -0.063516848 -0.0076530655 -0.03316528 -0.063516848 -0.0076530655 -0.033828203 -0.070726633 -0.0018917423 -0.034377396 -0.06940911 -0.0038015777 -0.034377396 -0.06940911 -0.0038015777 -0.034629226 -0.069158189 -0.0030375104 -0.037226744 -0.06993781 -0.0054109837 -0.037226744 -0.06993781 -0.0054109837 -0.034629226 -0.069158189 -0.0030375104 -0.037111461 -0.06942144 -0.003839094 -0.035506986 -0.070509166 -0.0071507562 -0.034377396 -0.06940911 -0.0038015777 -0.037839055 -0.07012894 -0.0059929485 -0.035506986 -0.070509166 -0.0071507562 -0.037839055 -0.07012894 -0.0059929485 -0.037955634 -0.070711806 -0.007767424 -0.028980389 -0.053763945 -0.010024585 -0.032511957 -0.053270306 -0.0031305056 -0.028986152 -0.055297099 -0.0099002952 -0.037955634 -0.070711806 -0.007767424 -0.038032893 -0.070501283 -0.0071264803 -0.039514836 -0.072423719 -0.0071601137 -0.035818819 -0.070702456 -0.0077387877 -0.034117326 -0.070252776 -0.0063699023 -0.035506986 -0.070509166 -0.0071507562 -0.037111461 -0.06942144 -0.003839094 -0.034629226 -0.069158189 -0.0030375104 -0.039016124 -0.071254455 -0.0030137429 -0.038055476 -0.068942174 -0.0023805148 -0.037891567 -0.068728529 -0.001729949 -0.039584748 -0.069083586 -0.0028106561 -0.038032893 -0.070501283 -0.0071264803 -0.037839055 -0.07012894 -0.0059929485 -0.039514836 -0.072423719 -0.0071601137 -0.034629226 -0.069158189 -0.0030375104 -0.037891567 -0.068728529 -0.001729949 -0.039016124 -0.071254455 -0.0030137429 -0.033828203 -0.070726633 -0.0018917423 -0.034079146 -0.069258541 -0.0033435121 -0.034377396 -0.06940911 -0.0038015777 -0.034629226 -0.069158189 -0.0030375104 -0.034079146 -0.069258541 -0.0033435121 -0.033828203 -0.070726633 -0.0018917423 -0.034629226 -0.069158189 -0.0030375104 -0.035923779 -0.069027223 -0.0026390757 -0.037891567 -0.068728529 -0.001729949 -0.035719641 -0.06876985 -0.0018558804 -0.035923779 -0.069027223 -0.0026390757 -0.034629226 -0.069158189 -0.0030375104 -0.033828203 -0.070726633 -0.0018917423 -0.035719641 -0.06876985 -0.0018558804 -0.034629226 -0.069158189 -0.0030375104 -0.037891567 -0.068728529 -0.001729949 -0.035719641 -0.06876985 -0.0018558804 -0.033828203 -0.070726633 -0.0018917423 -0.037341494 -0.068829089 -0.0020358802 -0.038055476 -0.068942174 -0.0023805148 -0.039016124 -0.071254455 -0.0030137429 -0.037891567 -0.068728529 -0.001729949 -0.037341494 -0.068829089 -0.0020358802 -0.039016124 -0.071254455 -0.0030137429 -0.039654605 -0.069618791 -0.0044403048 -0.039626665 -0.069826096 -0.0050712083 -0.039016124 -0.071254455 -0.0030137429 -0.039584748 -0.069083586 -0.0028106561 -0.039654605 -0.069618791 -0.0044403048 -0.039016124 -0.071254455 -0.0030137429 -0.039016124 -0.071254455 -0.0030137429 -0.038963024 -0.070216 -0.0062579126 -0.037839055 -0.07012894 -0.0059929485 -0.037839055 -0.07012894 -0.0059929485 -0.038963024 -0.070216 -0.0062579126 -0.039514836 -0.072423719 -0.0071601137 -0.038963024 -0.070216 -0.0062579126 -0.039056242 -0.070391282 -0.0067912359 -0.039514836 -0.072423719 -0.0071601137 -0.038032893 -0.070501283 -0.0071264803 -0.037439104 -0.07052803 -0.0072076474 -0.037839055 -0.07012894 -0.0059929485 -0.037839055 -0.07012894 -0.0059929485 -0.037439104 -0.07052803 -0.0072076474 -0.037955634 -0.070711806 -0.007767424 -0.034331094 -0.070056252 -0.0057715657 -0.034117326 -0.070252776 -0.0063699023 -0.034377396 -0.06940911 -0.0038015777 -0.035816252 -0.069602743 -0.0043909005 -0.034377396 -0.06940911 -0.0038015777 -0.037226744 -0.06993781 -0.0054109837 -0.034377396 -0.06940911 -0.0038015777 -0.035816252 -0.069602743 -0.0043909005 -0.035513695 -0.069787212 -0.0049525672 -0.037839055 -0.07012894 -0.0059929485 -0.034377396 -0.06940911 -0.0038015777 -0.035513695 -0.069787212 -0.0049525672 -0.036117379 -0.069836482 -0.0051029869 -0.037839055 -0.07012894 -0.0059929485 -0.035513695 -0.069787212 -0.0049525672 -0.037226744 -0.06993781 -0.0054109837 -0.037111461 -0.06942144 -0.003839094 -0.037550028 -0.069555156 -0.0042463965 -0.038951278 -0.069102868 -0.0028693257 -0.039570276 -0.069273636 -0.0033891136 -0.039016124 -0.071254455 -0.0030137429 -0.038055476 -0.068942174 -0.0023805148 -0.038951278 -0.069102868 -0.0028693257 -0.039016124 -0.071254455 -0.0030137429 -0.039584748 -0.069083586 -0.0028106561 -0.038951278 -0.069102868 -0.0028693257 -0.038055476 -0.068942174 -0.0023805148 -0.039016124 -0.071254455 -0.0030137429 -0.039570276 -0.069273636 -0.0033891136 -0.039584748 -0.069083586 -0.0028106561 -0.039016124 -0.071254455 -0.0030137429 -0.037226744 -0.06993781 -0.0054109837 -0.037550028 -0.069555156 -0.0042463965 -0.033367638 -0.054624569 -0.016779127 -0.028986152 -0.055297099 -0.0099002952 -0.032506108 -0.057015851 -0.016008509 -0.028980389 -0.053763945 -0.010024585 -0.028986152 -0.055297099 -0.0099002952 -0.033367638 -0.054624569 -0.016779127 -0.037645459 -0.069311649 -0.0035050039 -0.039016124 -0.071254455 -0.0030137429 -0.037550028 -0.069555156 -0.0042463965 -0.037111461 -0.06942144 -0.003839094 -0.039016124 -0.071254455 -0.0030137429 -0.037645459 -0.069311649 -0.0035050039 -0.035816252 -0.069602743 -0.0043909005 -0.037839055 -0.07012894 -0.0059929485 -0.036117379 -0.069836482 -0.0051029869 -0.035816252 -0.069602743 -0.0043909005 -0.037226744 -0.06993781 -0.0054109837 -0.037839055 -0.07012894 -0.0059929485 -0.037823316 -0.069937773 -0.005410993 -0.039016124 -0.071254455 -0.0030137429 -0.037839055 -0.07012894 -0.0059929485 -0.037226744 -0.06993781 -0.0054109837 -0.039016124 -0.071254455 -0.0030137429 -0.037823316 -0.069937773 -0.005410993 -0.035506986 -0.070509166 -0.0071507562 -0.034331094 -0.070056252 -0.0057715657 -0.034377396 -0.06940911 -0.0038015777 -0.034809005 -0.070253283 -0.0063717267 -0.034331094 -0.070056252 -0.0057715657 -0.035506986 -0.070509166 -0.0071507562 -0.034117326 -0.070252776 -0.0063699023 -0.034809005 -0.070253283 -0.0063717267 -0.035506986 -0.070509166 -0.0071507562 -0.037955634 -0.070711806 -0.007767424 -0.036260538 -0.070567854 -0.0073293843 -0.035506986 -0.070509166 -0.0071507562 -0.035818819 -0.070702456 -0.0077387877 -0.036260538 -0.070567854 -0.0073293843 -0.037955634 -0.070711806 -0.007767424 -0.039016124 -0.071254455 -0.0030137429 -0.039542262 -0.070171423 -0.0061222445 -0.038963024 -0.070216 -0.0062579126 -0.039056242 -0.070391282 -0.0067912359 -0.039542262 -0.070171423 -0.0061222445 -0.039514836 -0.072423719 -0.0071601137 -0.039514836 -0.072423719 -0.0071601137 -0.039542262 -0.070171423 -0.0061222445 -0.039016124 -0.071254455 -0.0030137429 -0.040294465 -0.069688529 -0.0046523097 -0.039654605 -0.069618791 -0.0044403048 -0.039584748 -0.069083586 -0.0028106561 -0.039016124 -0.071254455 -0.0030137429 -0.039626665 -0.069826096 -0.0050712083 -0.040294465 -0.069688529 -0.0046523097 -0.039584748 -0.069083586 -0.0028106561 -0.039514836 -0.072423719 -0.0071601137 -0.040294465 -0.069688529 -0.0046523097 -0.039016124 -0.071254455 -0.0030137429 -0.040294465 -0.069688529 -0.0046523097 -0.039514836 -0.072423719 -0.0071601137 -0.036269721 -0.068870373 -0.0021617268 -0.035719641 -0.06876985 -0.0018558804 -0.037891567 -0.068728529 -0.001729949 -0.035923779 -0.069027223 -0.0026390757 -0.036269721 -0.068870373 -0.0021617268 -0.037891567 -0.068728529 -0.001729949 -0.041064035 -0.063144594 -0.0065200427 -0.039514836 -0.072423719 -0.0071601137 -0.039584748 -0.069083586 -0.0028106561 -0.041064035 -0.063144594 -0.0065200427 -0.038378008 -0.064471982 -0.010560558 -0.039514836 -0.072423719 -0.0071601137 -0.036342751 -0.062030409 -0.0031283672 -0.039584748 -0.069083586 -0.0028106561 -0.037891567 -0.068728529 -0.001729949 -0.036342751 -0.062030409 -0.0031283672 -0.041064035 -0.063144594 -0.0065200427 -0.039584748 -0.069083586 -0.0028106561 -0.038378008 -0.064471982 -0.010560558 -0.037955634 -0.070711806 -0.007767424 -0.039514836 -0.072423719 -0.0071601137 -0.038378008 -0.064471982 -0.010560558 -0.035818819 -0.070702456 -0.0077387877 -0.037955634 -0.070711806 -0.007767424 -0.038378008 -0.064471982 -0.010560558 -0.03316528 -0.063516848 -0.0076530655 -0.035818819 -0.070702456 -0.0077387877 -0.03316528 -0.063516848 -0.0076530655 -0.034117326 -0.070252776 -0.0063699023 -0.035818819 -0.070702456 -0.0077387877 -0.042181607 -0.056615859 -0.0068319868 -0.042048752 -0.05804513 -0.011182912 -0.042071577 -0.053266685 -0.012657482 -0.040415347 -0.051153194 -0.0062240912 -0.042181607 -0.056615859 -0.0068319868 -0.042071577 -0.053266685 -0.012657482 -0.031555537 -0.052197888 -0.0094041303 -0.034507748 -0.055723086 -0.004114138 -0.034635194 -0.050953578 -0.0056162304 -0.034507748 -0.055723086 -0.004114138 -0.042181607 -0.056615859 -0.0068319868 -0.040415347 -0.051153194 -0.0062240912 -0.034635194 -0.050953578 -0.0056162304 -0.034507748 -0.055723086 -0.004114138 -0.040415347 -0.051153194 -0.0062240912 -0.033367638 -0.054624569 -0.016779127 -0.033148658 -0.053805511 -0.014297678 -0.031555537 -0.052197888 -0.0094041303 -0.033367638 -0.054624569 -0.016779127 -0.031555537 -0.052197888 -0.0094041303 -0.029428728 -0.052560352 -0.010418383 -0.028980389 -0.053763945 -0.010024585 -0.033367638 -0.054624569 -0.016779127 -0.029428728 -0.052560352 -0.010418383 -0.031555537 -0.052197888 -0.0094041303 -0.034635194 -0.050953578 -0.0056162304 -0.029428728 -0.052560352 -0.010418383 -0.041449554 -0.05511187 -0.01662444 -0.042071577 -0.053266685 -0.012657482 -0.033367638 -0.054624569 -0.016779127 -0.041449554 -0.05511187 -0.01662444 -0.044969387 -0.053427033 -0.011329519 -0.042071577 -0.053266685 -0.012657482 -0.029428728 -0.052560352 -0.010418383 -0.034635194 -0.050953578 -0.0056162304 -0.032528337 -0.051860772 -0.0035934569 -0.032528337 -0.051860772 -0.0035934569 -0.034635194 -0.050953578 -0.0056162304 -0.040587906 -0.050449871 -0.0040695276 -0.032506108 -0.057015851 -0.016008509 -0.041513558 -0.058153737 -0.015628031 -0.041513331 -0.056728635 -0.016096219 -0.042071577 -0.053266685 -0.012657482 -0.044969387 -0.053427033 -0.011329519 -0.040415347 -0.051153194 -0.0062240912 -0.034635194 -0.050953578 -0.0056162304 -0.040415347 -0.051153194 -0.0062240912 -0.040587906 -0.050449871 -0.0040695276 -0.040415347 -0.051153194 -0.0062240912 -0.044969387 -0.053427033 -0.011329519 -0.040587906 -0.050449871 -0.0040695276 -0.041436493 -0.054926455 -0.0025996936 -0.033473011 -0.056143209 -0.0021940044 -0.032511957 -0.053270306 -0.0031305056 -0.041493293 -0.052104391 -0.0035161169 -0.032528337 -0.051860772 -0.0035934569 -0.040587906 -0.050449871 -0.0040695276 -0.033367638 -0.054624569 -0.016779127 -0.041513331 -0.056728635 -0.016096219 -0.041449554 -0.05511187 -0.01662444 -0.032506108 -0.057015851 -0.016008509 -0.041513331 -0.056728635 -0.016096219 -0.033367638 -0.054624569 -0.016779127 -0.041493293 -0.052104391 -0.0035161169 -0.032511957 -0.053270306 -0.0031305056 -0.032528337 -0.051860772 -0.0035934569 -0.041436493 -0.054926455 -0.0025996936 -0.032511957 -0.053270306 -0.0031305056 -0.041493293 -0.052104391 -0.0035161169 -0.030935653 -0.059541445 -0.0029212011 -0.02903343 -0.057431467 -0.0077228467 -0.033473011 -0.056143209 -0.0021940044 -0.041995533 -0.059768282 -0.0036113455 -0.041436493 -0.054926455 -0.0025996936 -0.043162998 -0.057566848 -0.0065229689 -0.041995533 -0.059768282 -0.0036113455 -0.038922966 -0.058717337 -0.00041237005 -0.041436493 -0.054926455 -0.0025996936 -0.038922966 -0.058717337 -0.00041237005 -0.033473011 -0.056143209 -0.0021940044 -0.041436493 -0.054926455 -0.0025996936 -0.032506108 -0.057015851 -0.016008509 -0.041455094 -0.059542388 -0.015158391 -0.041513558 -0.058153737 -0.015628031 -0.038922966 -0.058717337 -0.00041237005 -0.030935653 -0.059541445 -0.0029212011 -0.033473011 -0.056143209 -0.0021940044 -0.044765539 -0.061430048 -0.008669869 -0.041995533 -0.059768282 -0.0036113455 -0.043162998 -0.057566848 -0.0065229689 -0.032629184 -0.05982291 -0.015072157 -0.041455094 -0.059542388 -0.015158391 -0.032506108 -0.057015851 -0.016008509 -0.028240684 -0.060733858 -0.0096336035 -0.031303536 -0.062076341 -0.010637638 -0.030935653 -0.059541445 -0.0029212011 -0.036722593 -0.063524775 -0.015046896 -0.042669114 -0.064103678 -0.014041152 -0.044765539 -0.061430048 -0.008669869 -0.041995533 -0.059768282 -0.0036113455 -0.044765539 -0.061430048 -0.008669869 -0.040252868 -0.057629116 0.00014313046 -0.041995533 -0.059768282 -0.0036113455 -0.040252868 -0.057629116 0.00014313046 -0.038922966 -0.058717337 -0.00041237005 -0.028240684 -0.060733858 -0.0096336035 -0.036722593 -0.063524775 -0.015046896 -0.031303536 -0.062076341 -0.010637638 -0.042669114 -0.064103678 -0.014041152 -0.045861904 -0.060775526 -0.0094498415 -0.044765539 -0.061430048 -0.008669869 -0.028240684 -0.060733858 -0.0096336035 -0.031145595 -0.062401053 -0.014398297 -0.036722593 -0.063524775 -0.015046896 -0.031145595 -0.062401053 -0.014398297 -0.042669114 -0.064103678 -0.014041152 -0.036722593 -0.063524775 -0.015046896 -0.028240684 -0.060733858 -0.0096336035 -0.030935653 -0.059541445 -0.0029212011 -0.028064732 -0.061472081 -0.0060305372 -0.030935653 -0.059541445 -0.0029212011 -0.038922966 -0.058717337 -0.00041237005 -0.040252868 -0.057629116 0.00014313046 -0.045861904 -0.060775526 -0.0094498415 -0.042622685 -0.059689887 -0.00061357068 -0.040252868 -0.057629116 0.00014313046 -0.045861904 -0.060775526 -0.0094498415 -0.04387933 -0.061569788 -0.0058913832 -0.042622685 -0.059689887 -0.00061357068 -0.04387933 -0.061569788 -0.0058913832 -0.038392428 -0.05987544 -0.0007337163 -0.042622685 -0.059689887 -0.00061357068 -0.038392428 -0.05987544 -0.0007337163 -0.033814792 -0.059253976 0.00071218726 -0.042622685 -0.059689887 -0.00061357068 -0.030196737 -0.062579378 -0.0089646634 -0.028098166 -0.062378567 -0.0087881088 -0.028064732 -0.061472081 -0.0060305372 -0.042669114 -0.064103678 -0.014041152 -0.033902105 -0.064553007 -0.015399853 -0.042275067 -0.063481845 -0.011712012 -0.038392428 -0.05987544 -0.0007337163 -0.028064732 -0.061472081 -0.0060305372 -0.033814792 -0.059253976 0.00071218726 -0.042669114 -0.064103678 -0.014041152 -0.042275067 -0.063481845 -0.011712012 -0.04387933 -0.061569788 -0.0058913832 -0.042669114 -0.064103678 -0.014041152 -0.04387933 -0.061569788 -0.0058913832 -0.045861904 -0.060775526 -0.0094498415 -0.03450251 -0.06596595 0.0009120343 -0.03189636 -0.06550692 -0.0012182591 -0.038392428 -0.05987544 -0.0007337163 -0.03189636 -0.06550692 -0.0012182591 -0.028064732 -0.061472081 -0.0060305372 -0.038392428 -0.05987544 -0.0007337163 -0.041455094 -0.059542388 -0.015158391 -0.043162998 -0.057566848 -0.0065229689 -0.04443413 -0.054772805 -0.0064865979 -0.03974665 -0.065991111 0.00083559263 -0.038392428 -0.05987544 -0.0007337163 -0.04387933 -0.061569788 -0.0058913832 -0.03189636 -0.06550692 -0.0012182591 -0.030196737 -0.062579378 -0.0089646634 -0.028064732 -0.061472081 -0.0060305372 -0.03189636 -0.06550692 -0.0012182591 -0.029975835 -0.067855529 -0.0048396848 -0.030196737 -0.062579378 -0.0089646634 -0.03974665 -0.065991111 0.00083559263 -0.03450251 -0.06596595 0.0009120343 -0.038392428 -0.05987544 -0.0007337163 -0.043416727 -0.070936747 -0.0050335601 -0.042875305 -0.06695801 -0.0021077823 -0.04387933 -0.061569788 -0.0058913832 -0.041436493 -0.054926455 -0.0025996936 -0.04443413 -0.054772805 -0.0064865979 -0.043162998 -0.057566848 -0.0065229689 -0.042875305 -0.06695801 -0.0021077823 -0.03974665 -0.065991111 0.00083559263 -0.04387933 -0.061569788 -0.0058913832 -0.032568302 -0.069282487 3.1515981e-06 -0.03189636 -0.06550692 -0.0012182591 -0.03450251 -0.06596595 0.0009120343 -0.042875305 -0.06695801 -0.0021077823 -0.037477564 -0.068738088 0.0016757083 -0.03974665 -0.065991111 0.00083559263 -0.032568302 -0.069282487 3.1515981e-06 -0.030633744 -0.071043633 -0.0053433743 -0.03189636 -0.06550692 -0.0012182591 -0.037477564 -0.068738088 0.0016757083 -0.03450251 -0.06596595 0.0009120343 -0.03974665 -0.065991111 0.00083559263 -0.030633744 -0.071043633 -0.0053433743 -0.029975835 -0.067855529 -0.0048396848 -0.03189636 -0.06550692 -0.0012182591 -0.03450251 -0.06596595 0.0009120343 -0.037477564 -0.068738088 0.0016757083 -0.032568302 -0.069282487 3.1515981e-06 -0.043416727 -0.070936747 -0.0050335601 -0.037477564 -0.068738088 0.0016757083 -0.042875305 -0.06695801 -0.0021077823 -0.041455094 -0.059542388 -0.015158391 -0.043209787 -0.058872208 -0.010496352 -0.043162998 -0.057566848 -0.0065229689 -0.03335518 -0.071583934 -0.0085588908 -0.038404536 -0.071969844 -0.0096612545 -0.041781008 -0.072074607 -0.0086051784 -0.03335518 -0.071583934 -0.0085588908 -0.034508765 -0.064241618 -0.011781954 -0.038404536 -0.071969844 -0.0096612545 -0.041781008 -0.072074607 -0.0086051784 -0.042513959 -0.062553063 -0.0066415458 -0.043416727 -0.070936747 -0.0050335601 -0.040547851 -0.064034402 -0.011150987 -0.042513959 -0.062553063 -0.0066415458 -0.041781008 -0.072074607 -0.0086051784 -0.038404536 -0.071969844 -0.0096612545 -0.040547851 -0.064034402 -0.011150987 -0.041781008 -0.072074607 -0.0086051784 -0.031586282 -0.063042372 -0.0081312852 -0.034508765 -0.064241618 -0.011781954 -0.03335518 -0.071583934 -0.0085588908 -0.030633744 -0.071043633 -0.0053433743 -0.031586282 -0.063042372 -0.0081312852 -0.03335518 -0.071583934 -0.0085588908 -0.034508765 -0.064241618 -0.011781954 -0.040547851 -0.064034402 -0.011150987 -0.038404536 -0.071969844 -0.0096612545 -0.033814792 -0.059253976 0.00071218726 -0.028064732 -0.061472081 -0.0060305372 -0.030935653 -0.059541445 -0.0029212011 -0.028098166 -0.062378567 -0.0087881088 -0.028240684 -0.060733858 -0.0096336035 -0.028064732 -0.061472081 -0.0060305372 -0.028098166 -0.062378567 -0.0087881088 -0.031145595 -0.062401053 -0.014398297 -0.028240684 -0.060733858 -0.0096336035 -0.031145595 -0.062401053 -0.014398297 -0.028098166 -0.062378567 -0.0087881088 -0.033902105 -0.064553007 -0.015399853 -0.033902105 -0.064553007 -0.015399853 -0.042669114 -0.064103678 -0.014041152 -0.031145595 -0.062401053 -0.014398297 -0.033814792 -0.059253976 0.00071218726 -0.030935653 -0.059541445 -0.0029212011 -0.040252868 -0.057629116 0.00014313046 -0.042622685 -0.059689887 -0.00061357068 -0.033814792 -0.059253976 0.00071218726 -0.040252868 -0.057629116 0.00014313046 + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140

+
+
+
+
+ + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + + + + + + + + + + + + + +
diff --git a/external/rlbench/urdfs/panda/meshes/Pandalink1respondable_coll_1.dae b/external/rlbench/urdfs/panda/meshes/Pandalink1respondable_coll_1.dae new file mode 100644 index 0000000000000000000000000000000000000000..69154ca1666e626967d51b1c84c3fe4689d17b80 --- /dev/null +++ b/external/rlbench/urdfs/panda/meshes/Pandalink1respondable_coll_1.dae @@ -0,0 +1,84 @@ + + + + + Assimp + Assimp Exporter + + 2023-09-26T11:24:21 + 2023-09-26T11:24:21 + + Y_UP + + + + + + + + 0 0 0 4.5895327e-41 + + + 0.69490802 0.65655452 0.65975779 4.5893926e-41 + + + 0.69490802 0.65655452 0.65975779 4.5893926e-41 + + + 0.25 0.25 0.25 -3.0261091e+37 + + + + + + + + + + + + + + + + 0.053434297 0.00021139855 -0.092382587 0.051293306 -0.00024980758 -0.099427424 0.048297267 0.02677384 -0.10184287 -0.0060727298 -0.071040161 -0.11460512 -0.0087718489 -0.0099471733 -0.1329021 -0.0011740036 -0.008967489 -0.13377488 0.054241084 -0.0075200759 0.12416049 0.0514916 -0.038778685 0.057829384 0.054587014 -0.056753471 -0.067801207 0.023247292 0.049040079 0.10676025 0.018029517 0.068359919 -0.082716972 0.0078213215 0.05333358 0.10545214 0.023928601 -0.0081669185 -0.1283675 0.031895213 -0.068295442 -0.10516771 0.011785865 -0.070786171 -0.11361366 -0.022317521 0.066906996 -0.084339663 -0.028514661 0.063925125 -0.081617363 -0.026041722 0.0478325 0.10718163 -0.042575598 -0.065212771 -0.096114539 -0.050629355 -0.06130014 -0.083578408 -0.043177143 -0.0043238439 -0.11375053 0.042748522 0.053180948 -0.082422458 0.034866557 0.059974939 -0.082207955 0.037149757 0.039996728 0.10953386 -0.00017179838 -0.070956655 0.073846273 0.011785865 -0.070786171 -0.11361366 0.031895213 -0.068295442 -0.10516771 0.017239453 -0.067974724 0.07445588 0.0085780658 -0.070050478 0.074654244 0.031895213 -0.068295442 -0.10516771 -0.04481646 0.043903288 -0.10516366 -0.049053065 0.0255024 -0.10006553 -0.051909409 0.020298945 -0.090613112 -0.042563505 0.049357917 -0.10060635 -0.032715127 0.056397185 -0.10451306 -0.038770318 0.048452072 -0.10905071 0.018029517 0.068359919 -0.082716972 0.0078829573 0.070577279 -0.080395974 0.0078213215 0.05333358 0.10545214 0.0098152636 -0.0093956618 -0.13287598 0.023928601 -0.0081669185 -0.1283675 0.011785865 -0.070786171 -0.11361366 -0.021063272 -0.0085141202 -0.12966472 -0.014287007 0.011119954 -0.1342335 -0.0087718489 -0.0099471733 -0.1329021 -0.022990838 0.012409992 -0.13106753 -0.014287007 0.011119954 -0.1342335 -0.021063272 -0.0085141202 -0.12966472 -0.050629355 -0.06130014 -0.083578408 -0.049400516 -0.00082462234 -0.10417306 -0.043177143 -0.0043238439 -0.11375053 -0.041434862 0.040790532 -0.11390941 -0.049053065 0.0255024 -0.10006553 -0.04481646 0.043903288 -0.10516366 0.0078829573 0.070577279 -0.080395974 -0.0083077112 0.070521034 -0.079287916 -0.0079120733 0.053514022 0.10541224 0.0078829573 0.070577279 -0.080395974 -0.0079120733 0.053514022 0.10541224 0.0078213215 0.05333358 0.10545214 -0.022317521 0.066906996 -0.084339663 -0.026041722 0.0478325 0.10718163 -0.0079120733 0.053514022 0.10541224 -0.0083077112 0.070521034 -0.079287916 -0.022317521 0.066906996 -0.084339663 -0.0079120733 0.053514022 0.10541224 -0.026067883 -0.069231823 -0.10909297 -0.0087718489 -0.0099471733 -0.1329021 -0.0060727298 -0.071040161 -0.11460512 -0.026067883 -0.069231823 -0.10909297 -0.021063272 -0.0085141202 -0.12966472 -0.0087718489 -0.0099471733 -0.1329021 -0.0060727298 -0.071040161 -0.11460512 0.011785865 -0.070786171 -0.11361366 -0.00017179838 -0.070956655 0.073846273 -0.050629355 -0.06130014 -0.083578408 -0.033638887 -0.059995577 0.071494997 -0.055064987 -0.056779921 -0.06932392 -0.055064987 -0.056779921 -0.06932392 -0.05328019 -7.5623371e-05 -0.093882941 -0.050629355 -0.06130014 -0.083578408 -0.053632304 -0.033265516 0.05526872 -0.055065006 -0.0024317189 0.1227043 -0.055064987 -0.056779921 -0.06932392 -0.055064976 0.0015932411 -0.082532272 -0.055064987 -0.056779921 -0.06932392 -0.055065006 -0.0024317189 0.1227043 0.045696083 -0.063984402 -0.091178201 0.051568896 -0.060530931 -0.079853326 0.027683616 -0.063502297 0.072861083 0.055064965 0.0044748546 0.12046935 0.054587014 -0.056753471 -0.067801207 0.054874893 0.0013778432 -0.083223365 0.0085780658 -0.070050478 0.074654244 -0.00017179838 -0.070956655 0.073846273 0.031895213 -0.068295442 -0.10516771 0.055064965 0.0044748546 0.12046935 0.054241084 -0.0075200759 0.12416049 0.054587014 -0.056753471 -0.067801207 0.0085780658 -0.070050478 0.074654244 -0.00066209346 -0.051530574 0.13778357 -0.00017179838 -0.070956655 0.073846273 0.0085780658 -0.070050478 0.074654244 0.017239453 -0.067974724 0.07445588 0.011900653 -0.05015355 0.13734661 0.0043612872 0.033698775 -0.13778357 -0.0058740652 0.0179972 -0.13660242 -0.0042729438 0.033727266 -0.13770199 -0.0081178304 0.061022732 -0.11476975 -0.005605795 0.065391816 -0.10738577 0.0043581836 0.062857971 -0.11268827 0.004063413 0.057526082 -0.12039343 -0.011088625 0.054036878 -0.12302486 -0.0081178304 0.061022732 -0.11476975 -0.042575598 -0.065212771 -0.096114539 -0.031933539 -0.0072661275 -0.12386724 -0.026067883 -0.069231823 -0.10909297 -0.031933539 -0.0072661275 -0.12386724 -0.042575598 -0.065212771 -0.096114539 -0.043177143 -0.0043238439 -0.11375053 -0.032715127 0.056397185 -0.10451306 -0.028150635 0.056278095 -0.11017525 -0.038770318 0.048452072 -0.10905071 -0.019121196 0.062605932 -0.10667309 -0.028150635 0.056278095 -0.11017525 -0.032715127 0.056397185 -0.10451306 -0.040648196 0.054383308 -0.09200526 -0.042563505 0.049357917 -0.10060635 -0.046452552 0.047382802 -0.093240656 -0.051909409 0.020298945 -0.090613112 -0.053728655 0.01403208 0.11763138 -0.046452552 0.047382802 -0.093240656 0.034866557 0.059974939 -0.082207955 0.023247292 0.049040079 0.10676025 0.037149757 0.039996728 0.10953386 0.042748522 0.053180948 -0.082422458 0.037149757 0.039996728 0.10953386 0.049601793 0.024704697 0.11423393 -0.0011740036 -0.008967489 -0.13377488 -0.0087718489 -0.0099471733 -0.1329021 -0.0058740652 0.0179972 -0.13660242 -0.0058740652 0.0179972 -0.13660242 -0.0087718489 -0.0099471733 -0.1329021 -0.014287007 0.011119954 -0.1342335 -0.053728655 0.01403208 0.11763138 -0.055064976 0.0015932411 -0.082532272 -0.055065006 -0.0024317189 0.1227043 -0.034064829 0.013310805 -0.12383223 -0.031933539 -0.0072661275 -0.12386724 -0.043177143 -0.0043238439 -0.11375053 -0.03077808 0.060995657 -0.095438175 -0.022317521 0.066906996 -0.084339663 -0.022734538 0.064415649 -0.09807799 -0.03077808 0.060995657 -0.095438175 -0.022734538 0.064415649 -0.09807799 -0.032715127 0.056397185 -0.10451306 -0.022317521 0.066906996 -0.084339663 -0.033751067 0.060827099 -0.084589213 -0.028514661 0.063925125 -0.081617363 -0.022317521 0.066906996 -0.084339663 -0.0083077112 0.070521034 -0.079287916 -0.015376832 0.068736307 -0.089278392 -0.052505966 -0.015339979 0.12668023 -0.055065006 -0.0024317189 0.1227043 -0.053632304 -0.033265516 0.05526872 -0.033638887 -0.059995577 0.071494997 -0.050629355 -0.06130014 -0.083578408 -0.025770476 -0.064606294 0.073463812 0.055064965 0.0044748546 0.12046935 0.054874893 0.0013778432 -0.083223365 0.050668385 0.027185936 -0.091273688 0.044563711 -0.029864803 0.13106033 0.034027565 -0.040170223 0.13424699 0.037160095 -0.057127561 0.07009495 0.04653744 0.047074772 -0.093680061 0.049601793 0.024704697 0.11423393 0.055064965 0.0044748546 0.12046935 0.040619031 0.04989814 -0.10377099 0.037612569 0.056693342 -0.092744499 0.045561805 0.04981187 -0.088446319 0.053434297 0.00021139855 -0.092382587 0.048297267 0.02677384 -0.10184287 0.050668385 0.027185936 -0.091273688 0.051646031 -0.016947299 0.1270716 0.0514916 -0.038778685 0.057829384 0.054241084 -0.0075200759 0.12416049 0.037160095 -0.057127561 0.07009495 0.054587014 -0.056753471 -0.067801207 0.045274805 -0.048678484 0.065279394 0.037160095 -0.057127561 0.07009495 0.034027565 -0.040170223 0.13424699 0.027683616 -0.063502297 0.072861083 0.018037982 0.067054018 -0.094711289 0.030647421 0.059383892 -0.1008992 0.020826876 0.061795726 -0.10680968 0.00504919 0.067990698 -0.10096793 0.0091204252 0.069802999 -0.090932608 0.018037982 0.067054018 -0.094711289 0.00504919 0.067990698 -0.10096793 0.018037982 0.067054018 -0.094711289 0.013627536 0.065166399 -0.10462832 -0.011102812 0.067433752 -0.10005093 0.00504919 0.067990698 -0.10096793 -0.005605795 0.065391816 -0.10738577 -0.005605795 0.065391816 -0.10738577 0.00504919 0.067990698 -0.10096793 0.0043581836 0.062857971 -0.11268827 0.013627536 0.065166399 -0.10462832 0.017522668 0.05838168 -0.11514381 0.0043581836 0.062857971 -0.11268827 0.004063413 0.057526082 -0.12039343 0.0043581836 0.062857971 -0.11268827 0.017522668 0.05838168 -0.11514381 -0.0026328429 0.050624907 -0.12753867 -0.011088625 0.054036878 -0.12302486 0.004063413 0.057526082 -0.12039343 0.0033309946 0.037873857 -0.13616435 0.0040102731 0.047307964 -0.13020685 0.011756025 0.041113611 -0.13308415 -0.0088212052 0.041807663 -0.13334221 -0.014499944 0.0343064 -0.13581802 -0.018093303 0.040385511 -0.1315963 -0.0026328429 0.050624907 -0.12753867 0.004063413 0.057526082 -0.12039343 0.0040102731 0.047307964 -0.13020685 -0.011088625 0.054036878 -0.12302486 -0.0088212052 0.041807663 -0.13334221 -0.017932598 0.049412463 -0.12516589 -0.0026328429 0.050624907 -0.12753867 -0.0088212052 0.041807663 -0.13334221 -0.011088625 0.054036878 -0.12302486 -0.017932598 0.049412463 -0.12516589 -0.028152451 0.051727664 -0.11656681 -0.019098829 0.057713274 -0.11511817 -0.017932598 0.049412463 -0.12516589 -0.025412027 0.045000043 -0.12512057 -0.028152451 0.051727664 -0.11656681 -0.028152451 0.051727664 -0.11656681 -0.035129007 0.044271823 -0.11814905 -0.038770318 0.048452072 -0.10905071 -0.028152451 0.051727664 -0.11656681 -0.038770318 0.048452072 -0.10905071 -0.028150635 0.056278095 -0.11017525 -0.019098829 0.057713274 -0.11511817 -0.011088625 0.054036878 -0.12302486 -0.017932598 0.049412463 -0.12516589 -0.028152451 0.051727664 -0.11656681 -0.028150635 0.056278095 -0.11017525 -0.019098829 0.057713274 -0.11511817 -0.019098829 0.057713274 -0.11511817 -0.028150635 0.056278095 -0.11017525 -0.019121196 0.062605932 -0.10667309 -0.046452552 0.047382802 -0.093240656 -0.04481646 0.043903288 -0.10516366 -0.051909409 0.020298945 -0.090613112 -0.042263936 0.053732958 -0.080921255 -0.042924702 0.034836445 0.11120322 -0.033751067 0.060827099 -0.084589213 0.018029517 0.068359919 -0.082716972 0.023247292 0.049040079 0.10676025 0.025570888 0.065332681 -0.080727793 0.045561805 0.04981187 -0.088446319 0.042748522 0.053180948 -0.082422458 0.049601793 0.024704697 0.11423393 0.018029517 0.068359919 -0.082716972 0.026819624 0.064233333 -0.090762116 0.018037982 0.067054018 -0.094711289 -0.024819799 0.035935644 -0.13101442 -0.014499944 0.0343064 -0.13581802 -0.022990838 0.012409992 -0.13106753 -0.014287007 0.011119954 -0.1342335 -0.022990838 0.012409992 -0.13106753 -0.014499944 0.0343064 -0.13581802 -0.031933539 -0.0072661275 -0.12386724 -0.022990838 0.012409992 -0.13106753 -0.021063272 -0.0085141202 -0.12966472 -0.031933539 -0.0072661275 -0.12386724 -0.021063272 -0.0085141202 -0.12966472 -0.026067883 -0.069231823 -0.10909297 0.0037735433 0.014839469 -0.13646281 -0.0011740036 -0.008967489 -0.13377488 -0.0058740652 0.0179972 -0.13660242 -0.055064987 -0.056779921 -0.06932392 -0.055064976 0.0015932411 -0.082532272 -0.05328019 -7.5623371e-05 -0.093882941 -0.049400516 -0.00082462234 -0.10417306 -0.050629355 -0.06130014 -0.083578408 -0.05328019 -7.5623371e-05 -0.093882941 -0.005605795 0.065391816 -0.10738577 -0.0081178304 0.061022732 -0.11476975 -0.019121196 0.062605932 -0.10667309 -0.011102812 0.067433752 -0.10005093 -0.005605795 0.065391816 -0.10738577 -0.019121196 0.062605932 -0.10667309 -0.011102812 0.067433752 -0.10005093 -0.019121196 0.062605932 -0.10667309 -0.022734538 0.064415649 -0.09807799 -0.045484468 0.049937248 -0.086771518 -0.053728655 0.01403208 0.11763138 -0.042924702 0.034836445 0.11120322 -0.00066209346 -0.051530574 0.13778357 -0.012380375 -0.050082974 0.13734917 -0.0092236875 -0.070030697 0.074446656 -0.00017179838 -0.070956655 0.073846273 -0.026067883 -0.069231823 -0.10909297 -0.0060727298 -0.071040161 -0.11460512 -0.0092236875 -0.070030697 0.074446656 -0.026067883 -0.069231823 -0.10909297 -0.00017179838 -0.070956655 0.073846273 -0.0092236875 -0.070030697 0.074446656 -0.042575598 -0.065212771 -0.096114539 -0.026067883 -0.069231823 -0.10909297 -0.025770476 -0.064606294 0.073463812 -0.015920991 -0.068452097 0.07457424 -0.02183958 -0.047201116 0.13646999 0.044563711 -0.029864803 0.13106033 0.0514916 -0.038778685 0.057829384 0.051646031 -0.016947299 0.1270716 0.0514916 -0.038778685 0.057829384 0.045274805 -0.048678484 0.065279394 0.054587014 -0.056753471 -0.067801207 0.051293306 -0.00024980758 -0.099427424 0.051568896 -0.060530931 -0.079853326 0.045696083 -0.063984402 -0.091178201 0.046439577 -0.0023360208 -0.10899581 0.044741094 0.024954529 -0.11032491 0.051293306 -0.00024980758 -0.099427424 0.04653744 0.047074772 -0.093680061 0.055064965 0.0044748546 0.12046935 0.050668385 0.027185936 -0.091273688 0.040619031 0.04989814 -0.10377099 0.045561805 0.04981187 -0.088446319 0.04653744 0.047074772 -0.093680061 0.042748522 0.053180948 -0.082422458 0.045561805 0.04981187 -0.088446319 0.037612569 0.056693342 -0.092744499 0.042748522 0.053180948 -0.082422458 0.037612569 0.056693342 -0.092744499 0.034866557 0.059974939 -0.082207955 0.030647421 0.059383892 -0.1008992 0.037612569 0.056693342 -0.092744499 0.040619031 0.04989814 -0.10377099 0.045274805 -0.048678484 0.065279394 0.044563711 -0.029864803 0.13106033 0.037160095 -0.057127561 0.07009495 0.022624006 -0.046799306 0.13630185 0.017239453 -0.067974724 0.07445588 0.027683616 -0.063502297 0.072861083 0.017239453 -0.067974724 0.07445588 0.045696083 -0.063984402 -0.091178201 0.027683616 -0.063502297 0.072861083 0.022624006 -0.046799306 0.13630185 0.011900653 -0.05015355 0.13734661 0.017239453 -0.067974724 0.07445588 -0.00066209346 -0.051530574 0.13778357 0.0085780658 -0.070050478 0.074654244 0.011900653 -0.05015355 0.13734661 0.013627536 0.065166399 -0.10462832 0.018037982 0.067054018 -0.094711289 0.020826876 0.061795726 -0.10680968 0.017522668 0.05838168 -0.11514381 0.013627536 0.065166399 -0.10462832 0.020826876 0.061795726 -0.10680968 0.021441201 0.052657515 -0.12006632 0.029433899 0.055592567 -0.10989319 0.034571081 0.047862217 -0.11504067 -0.018093303 0.040385511 -0.1315963 -0.017932598 0.049412463 -0.12516589 -0.0088212052 0.041807663 -0.13334221 -0.018093303 0.040385511 -0.1315963 -0.024819799 0.035935644 -0.13101442 -0.025412027 0.045000043 -0.12512057 -0.024819799 0.035935644 -0.13101442 -0.033930555 0.038202446 -0.12390379 -0.025412027 0.045000043 -0.12512057 -0.0058740652 0.0179972 -0.13660242 -0.014499944 0.0343064 -0.13581802 -0.0042729438 0.033727266 -0.13770199 0.0043612872 0.033698775 -0.13778357 -0.0042729438 0.033727266 -0.13770199 0.0033309946 0.037873857 -0.13616435 -0.0058740652 0.0179972 -0.13660242 0.0043612872 0.033698775 -0.13778357 0.0037735433 0.014839469 -0.13646281 -0.0088212052 0.041807663 -0.13334221 0.0040102731 0.047307964 -0.13020685 0.0033309946 0.037873857 -0.13616435 -0.025412027 0.045000043 -0.12512057 -0.017932598 0.049412463 -0.12516589 -0.018093303 0.040385511 -0.1315963 -0.0081178304 0.061022732 -0.11476975 0.0043581836 0.062857971 -0.11268827 0.004063413 0.057526082 -0.12039343 -0.038770318 0.048452072 -0.10905071 -0.04481646 0.043903288 -0.10516366 -0.042563505 0.049357917 -0.10060635 -0.033751067 0.060827099 -0.084589213 -0.026041722 0.0478325 0.10718163 -0.028514661 0.063925125 -0.081617363 -0.033751067 0.060827099 -0.084589213 -0.042924702 0.034836445 0.11120322 -0.026041722 0.0478325 0.10718163 -0.040648196 0.054383308 -0.09200526 -0.032715127 0.056397185 -0.10451306 -0.042563505 0.049357917 -0.10060635 0.025570888 0.065332681 -0.080727793 0.023247292 0.049040079 0.10676025 0.034866557 0.059974939 -0.082207955 0.0404974 -0.0048836777 -0.11640053 0.046439577 -0.0023360208 -0.10899581 0.045696083 -0.063984402 -0.091178201 0.0404974 -0.0048836777 -0.11640053 0.045696083 -0.063984402 -0.091178201 0.031895213 -0.068295442 -0.10516771 0.04006445 0.021637468 -0.11754098 0.039388388 0.03985155 -0.11714572 0.044741094 0.024954529 -0.11032491 -0.0011740036 -0.008967489 -0.13377488 0.011785865 -0.070786171 -0.11361366 -0.0060727298 -0.071040161 -0.11460512 -0.0011740036 -0.008967489 -0.13377488 0.0098152636 -0.0093956618 -0.13287598 0.011785865 -0.070786171 -0.11361366 0.0098152636 -0.0093956618 -0.13287598 -0.0011740036 -0.008967489 -0.13377488 0.0037735433 0.014839469 -0.13646281 0.023928601 -0.0081669185 -0.1283675 0.032754574 -0.0069994368 -0.12309105 0.031895213 -0.068295442 -0.10516771 0.032292172 0.014427125 -0.12528968 0.021317063 0.01130906 -0.13172281 0.022717122 0.03537783 -0.13233502 0.021826079 0.039931636 -0.1303426 0.033345617 0.037474744 -0.12465619 0.022717122 0.03537783 -0.13233502 -0.05328019 -7.5623371e-05 -0.093882941 -0.055064976 0.0015932411 -0.082532272 -0.051909409 0.020298945 -0.090613112 -0.051909409 0.020298945 -0.090613112 -0.055064976 0.0015932411 -0.082532272 -0.053728655 0.01403208 0.11763138 -0.033930555 0.038202446 -0.12390379 -0.035129007 0.044271823 -0.11814905 -0.025412027 0.045000043 -0.12512057 0.0002326523 0.071040176 -0.08591219 -0.0083077112 0.070521034 -0.079287916 0.0078829573 0.070577279 -0.080395974 -0.022734538 0.064415649 -0.09807799 -0.019121196 0.062605932 -0.10667309 -0.032715127 0.056397185 -0.10451306 -0.019098829 0.057713274 -0.11511817 -0.0081178304 0.061022732 -0.11476975 -0.011088625 0.054036878 -0.12302486 -0.033751067 0.060827099 -0.084589213 -0.022317521 0.066906996 -0.084339663 -0.03077808 0.060995657 -0.095438175 -0.042263936 0.053732958 -0.080921255 -0.045484468 0.049937248 -0.086771518 -0.042924702 0.034836445 0.11120322 -0.045484468 0.049937248 -0.086771518 -0.046452552 0.047382802 -0.093240656 -0.053728655 0.01403208 0.11763138 -0.045484468 0.049937248 -0.086771518 -0.042263936 0.053732958 -0.080921255 -0.040648196 0.054383308 -0.09200526 -0.041351862 0.016573086 -0.11613557 -0.034064829 0.013310805 -0.12383223 -0.043177143 -0.0043238439 -0.11375053 -0.00017179838 -0.070956655 0.073846273 -0.00066209346 -0.051530574 0.13778357 -0.0092236875 -0.070030697 0.074446656 -0.015920991 -0.068452097 0.07457424 -0.0092236875 -0.070030697 0.074446656 -0.012380375 -0.050082974 0.13734917 -0.042575598 -0.065212771 -0.096114539 -0.0092236875 -0.070030697 0.074446656 -0.015920991 -0.068452097 0.07457424 -0.025770476 -0.064606294 0.073463812 -0.03104594 -0.042285431 0.13496387 -0.033638887 -0.059995577 0.071494997 -0.025770476 -0.064606294 0.073463812 -0.042575598 -0.065212771 -0.096114539 -0.015920991 -0.068452097 0.07457424 -0.050629355 -0.06130014 -0.083578408 -0.042575598 -0.065212771 -0.096114539 -0.025770476 -0.064606294 0.073463812 0.046439577 -0.0023360208 -0.10899581 0.051293306 -0.00024980758 -0.099427424 0.045696083 -0.063984402 -0.091178201 0.048297267 0.02677384 -0.10184287 0.044741094 0.024954529 -0.11032491 0.043008517 0.041943956 -0.11047195 0.051293306 -0.00024980758 -0.099427424 0.044741094 0.024954529 -0.11032491 0.048297267 0.02677384 -0.10184287 0.045526512 0.044216603 -0.10279705 0.050668385 0.027185936 -0.091273688 0.048297267 0.02677384 -0.10184287 0.037160095 -0.057127561 0.07009495 0.051568896 -0.060530931 -0.079853326 0.054587014 -0.056753471 -0.067801207 0.04653744 0.047074772 -0.093680061 0.045561805 0.04981187 -0.088446319 0.049601793 0.024704697 0.11423393 0.053434297 0.00021139855 -0.092382587 0.050668385 0.027185936 -0.091273688 0.054874893 0.0013778432 -0.083223365 0.045526512 0.044216603 -0.10279705 0.04653744 0.047074772 -0.093680061 0.050668385 0.027185936 -0.091273688 0.04653744 0.047074772 -0.093680061 0.045526512 0.044216603 -0.10279705 0.040619031 0.04989814 -0.10377099 0.034027565 -0.040170223 0.13424699 0.022624006 -0.046799306 0.13630185 0.027683616 -0.063502297 0.072861083 0.051568896 -0.060530931 -0.079853326 0.037160095 -0.057127561 0.07009495 0.027683616 -0.063502297 0.072861083 0.0043581836 0.062857971 -0.11268827 0.00504919 0.067990698 -0.10096793 0.013627536 0.065166399 -0.10462832 0.00504919 0.067990698 -0.10096793 -7.5276774e-05 0.069509245 -0.096096843 0.0091204252 0.069802999 -0.090932608 0.017522668 0.05838168 -0.11514381 0.029433899 0.055592567 -0.10989319 0.021441201 0.052657515 -0.12006632 0.0040102731 0.047307964 -0.13020685 0.004063413 0.057526082 -0.12039343 0.013927044 0.049683798 -0.12628409 -0.024819799 0.035935644 -0.13101442 -0.018093303 0.040385511 -0.1315963 -0.014499944 0.0343064 -0.13581802 0.013927044 0.049683798 -0.12628409 0.021716062 0.04676548 -0.12550706 0.021826079 0.039931636 -0.1303426 0.021826079 0.039931636 -0.1303426 0.011756025 0.041113611 -0.13308415 0.013927044 0.049683798 -0.12628409 0.0037735433 0.014839469 -0.13646281 0.0043612872 0.033698775 -0.13778357 0.011292421 0.017224655 -0.13556175 -0.0088212052 0.041807663 -0.13334221 -0.0042729438 0.033727266 -0.13770199 -0.014499944 0.0343064 -0.13581802 -0.0026328429 0.050624907 -0.12753867 0.0040102731 0.047307964 -0.13020685 -0.0088212052 0.041807663 -0.13334221 -0.033930555 0.038202446 -0.12390379 -0.024819799 0.035935644 -0.13101442 -0.034064829 0.013310805 -0.12383223 -0.035129007 0.044271823 -0.11814905 -0.028152451 0.051727664 -0.11656681 -0.025412027 0.045000043 -0.12512057 -0.041434862 0.040790532 -0.11390941 -0.038770318 0.048452072 -0.10905071 -0.035129007 0.044271823 -0.11814905 -0.038770318 0.048452072 -0.10905071 -0.041434862 0.040790532 -0.11390941 -0.04481646 0.043903288 -0.10516366 -0.042563505 0.049357917 -0.10060635 -0.04481646 0.043903288 -0.10516366 -0.046452552 0.047382802 -0.093240656 -0.046452552 0.047382802 -0.093240656 -0.045484468 0.049937248 -0.086771518 -0.040648196 0.054383308 -0.09200526 -0.033751067 0.060827099 -0.084589213 -0.040648196 0.054383308 -0.09200526 -0.042263936 0.053732958 -0.080921255 0.030647421 0.059383892 -0.1008992 0.029433899 0.055592567 -0.10989319 0.020826876 0.061795726 -0.10680968 0.0404974 -0.0048836777 -0.11640053 0.032292172 0.014427125 -0.12528968 0.04006445 0.021637468 -0.11754098 0.032292172 0.014427125 -0.12528968 0.033345617 0.037474744 -0.12465619 0.04006445 0.021637468 -0.11754098 0.011756025 0.041113611 -0.13308415 0.021826079 0.039931636 -0.1303426 0.022717122 0.03537783 -0.13233502 0.032292172 0.014427125 -0.12528968 0.032754574 -0.0069994368 -0.12309105 0.023928601 -0.0081669185 -0.1283675 0.032754574 -0.0069994368 -0.12309105 0.0404974 -0.0048836777 -0.11640053 0.031895213 -0.068295442 -0.10516771 0.021441201 0.052657515 -0.12006632 0.034571081 0.047862217 -0.11504067 0.030655475 0.044137124 -0.12210178 0.021441201 0.052657515 -0.12006632 0.030655475 0.044137124 -0.12210178 0.021716062 0.04676548 -0.12550706 0.021826079 0.039931636 -0.1303426 0.030655475 0.044137124 -0.12210178 0.033345617 0.037474744 -0.12465619 -0.0058740652 0.0179972 -0.13660242 -0.014287007 0.011119954 -0.1342335 -0.014499944 0.0343064 -0.13581802 -0.034064829 0.013310805 -0.12383223 -0.022990838 0.012409992 -0.13106753 -0.031933539 -0.0072661275 -0.12386724 -0.049053065 0.0255024 -0.10006553 -0.041434862 0.040790532 -0.11390941 -0.049400516 -0.00082462234 -0.10417306 -0.049400516 -0.00082462234 -0.10417306 -0.05328019 -7.5623371e-05 -0.093882941 -0.049053065 0.0255024 -0.10006553 -0.041351862 0.016573086 -0.11613557 -0.049400516 -0.00082462234 -0.10417306 -0.041434862 0.040790532 -0.11390941 -0.041351862 0.016573086 -0.11613557 -0.033930555 0.038202446 -0.12390379 -0.034064829 0.013310805 -0.12383223 -0.05328019 -7.5623371e-05 -0.093882941 -0.051909409 0.020298945 -0.090613112 -0.049053065 0.0255024 -0.10006553 0.0002326523 0.071040176 -0.08591219 0.0078829573 0.070577279 -0.080395974 0.0091204252 0.069802999 -0.090932608 -0.015376832 0.068736307 -0.089278392 -0.011102812 0.067433752 -0.10005093 -0.022734538 0.064415649 -0.09807799 -0.019098829 0.057713274 -0.11511817 -0.019121196 0.062605932 -0.10667309 -0.0081178304 0.061022732 -0.11476975 -0.03104594 -0.042285431 0.13496387 -0.038126979 -0.036902875 0.13331221 -0.033638887 -0.059995577 0.071494997 -0.050390389 -0.040934697 0.061394494 -0.053632304 -0.033265516 0.05526872 -0.055064987 -0.056779921 -0.06932392 -0.015920991 -0.068452097 0.07457424 -0.012380375 -0.050082974 0.13734917 -0.02183958 -0.047201116 0.13646999 0.044563711 -0.029864803 0.13106033 0.045274805 -0.048678484 0.065279394 0.0514916 -0.038778685 0.057829384 0.048297267 0.02677384 -0.10184287 0.043008517 0.041943956 -0.11047195 0.045526512 0.044216603 -0.10279705 0.034571081 0.047862217 -0.11504067 0.040619031 0.04989814 -0.10377099 0.043008517 0.041943956 -0.11047195 0.039388388 0.03985155 -0.11714572 0.034571081 0.047862217 -0.11504067 0.043008517 0.041943956 -0.11047195 0.017239453 -0.067974724 0.07445588 0.031895213 -0.068295442 -0.10516771 0.045696083 -0.063984402 -0.091178201 0.017522668 0.05838168 -0.11514381 0.020826876 0.061795726 -0.10680968 0.029433899 0.055592567 -0.10989319 0.013927044 0.049683798 -0.12628409 0.017522668 0.05838168 -0.11514381 0.021441201 0.052657515 -0.12006632 0.011756025 0.041113611 -0.13308415 0.0040102731 0.047307964 -0.13020685 0.013927044 0.049683798 -0.12628409 -0.034064829 0.013310805 -0.12383223 -0.024819799 0.035935644 -0.13101442 -0.022990838 0.012409992 -0.13106753 0.021716062 0.04676548 -0.12550706 0.030655475 0.044137124 -0.12210178 0.021826079 0.039931636 -0.1303426 0.013927044 0.049683798 -0.12628409 0.021441201 0.052657515 -0.12006632 0.021716062 0.04676548 -0.12550706 0.011292421 0.017224655 -0.13556175 0.0043612872 0.033698775 -0.13778357 0.013742442 0.033957873 -0.1359933 -0.0088212052 0.041807663 -0.13334221 0.0033309946 0.037873857 -0.13616435 -0.0042729438 0.033727266 -0.13770199 -0.033930555 0.038202446 -0.12390379 -0.041434862 0.040790532 -0.11390941 -0.035129007 0.044271823 -0.11814905 -0.03077808 0.060995657 -0.095438175 -0.040648196 0.054383308 -0.09200526 -0.033751067 0.060827099 -0.084589213 -0.03077808 0.060995657 -0.095438175 -0.032715127 0.056397185 -0.10451306 -0.040648196 0.054383308 -0.09200526 0.018029517 0.068359919 -0.082716972 0.025570888 0.065332681 -0.080727793 0.026819624 0.064233333 -0.090762116 0.030647421 0.059383892 -0.1008992 0.026819624 0.064233333 -0.090762116 0.037612569 0.056693342 -0.092744499 0.026819624 0.064233333 -0.090762116 0.030647421 0.059383892 -0.1008992 0.018037982 0.067054018 -0.094711289 0.026819624 0.064233333 -0.090762116 0.025570888 0.065332681 -0.080727793 0.034866557 0.059974939 -0.082207955 0.029433899 0.055592567 -0.10989319 0.040619031 0.04989814 -0.10377099 0.034571081 0.047862217 -0.11504067 0.0404974 -0.0048836777 -0.11640053 0.04006445 0.021637468 -0.11754098 0.046439577 -0.0023360208 -0.10899581 0.039388388 0.03985155 -0.11714572 0.04006445 0.021637468 -0.11754098 0.033345617 0.037474744 -0.12465619 0.023928601 -0.0081669185 -0.1283675 0.021317063 0.01130906 -0.13172281 0.032292172 0.014427125 -0.12528968 0.032754574 -0.0069994368 -0.12309105 0.032292172 0.014427125 -0.12528968 0.0404974 -0.0048836777 -0.11640053 0.032292172 0.014427125 -0.12528968 0.022717122 0.03537783 -0.13233502 0.033345617 0.037474744 -0.12465619 -0.041351862 0.016573086 -0.11613557 -0.043177143 -0.0043238439 -0.11375053 -0.049400516 -0.00082462234 -0.10417306 -0.0083077112 0.070521034 -0.079287916 -0.0080654789 0.069860004 -0.091537602 -0.015376832 0.068736307 -0.089278392 -0.022734538 0.064415649 -0.09807799 -0.022317521 0.066906996 -0.084339663 -0.015376832 0.068736307 -0.089278392 -0.02183958 -0.047201116 0.13646999 -0.03104594 -0.042285431 0.13496387 -0.025770476 -0.064606294 0.073463812 -0.040004317 -0.0547686 0.068896703 -0.046103485 -0.027813651 0.1305186 -0.04608164 -0.048029378 0.065048128 -0.04608164 -0.048029378 0.065048128 -0.050390389 -0.040934697 0.061394494 -0.055064987 -0.056779921 -0.06932392 0.045526512 0.044216603 -0.10279705 0.043008517 0.041943956 -0.11047195 0.040619031 0.04989814 -0.10377099 0.053434297 0.00021139855 -0.092382587 0.054874893 0.0013778432 -0.083223365 0.054587014 -0.056753471 -0.067801207 -7.5276774e-05 0.069509245 -0.096096843 0.00504919 0.067990698 -0.10096793 -0.011102812 0.067433752 -0.10005093 -0.015376832 0.068736307 -0.089278392 -0.0080654789 0.069860004 -0.091537602 -0.011102812 0.067433752 -0.10005093 0.0002326523 0.071040176 -0.08591219 0.0091204252 0.069802999 -0.090932608 -7.5276774e-05 0.069509245 -0.096096843 0.021317063 0.01130906 -0.13172281 0.023928601 -0.0081669185 -0.1283675 0.0098152636 -0.0093956618 -0.13287598 0.013742442 0.033957873 -0.1359933 0.0033309946 0.037873857 -0.13616435 0.011756025 0.041113611 -0.13308415 0.013742442 0.033957873 -0.1359933 0.0043612872 0.033698775 -0.13778357 0.0033309946 0.037873857 -0.13616435 -0.041434862 0.040790532 -0.11390941 -0.033930555 0.038202446 -0.12390379 -0.041351862 0.016573086 -0.11613557 0.026819624 0.064233333 -0.090762116 0.034866557 0.059974939 -0.082207955 0.037612569 0.056693342 -0.092744499 0.030647421 0.059383892 -0.1008992 0.040619031 0.04989814 -0.10377099 0.029433899 0.055592567 -0.10989319 0.013742442 0.033957873 -0.1359933 0.022717122 0.03537783 -0.13233502 0.021317063 0.01130906 -0.13172281 0.011292421 0.017224655 -0.13556175 0.013742442 0.033957873 -0.1359933 0.021317063 0.01130906 -0.13172281 0.0002326523 0.071040176 -0.08591219 -0.0080654789 0.069860004 -0.091537602 -0.0083077112 0.070521034 -0.079287916 0.0091204252 0.069802999 -0.090932608 0.018029517 0.068359919 -0.082716972 0.018037982 0.067054018 -0.094711289 0.018029517 0.068359919 -0.082716972 0.0091204252 0.069802999 -0.090932608 0.0078829573 0.070577279 -0.080395974 -0.033638887 -0.059995577 0.071494997 -0.038126979 -0.036902875 0.13331221 -0.040004317 -0.0547686 0.068896703 -0.033638887 -0.059995577 0.071494997 -0.040004317 -0.0547686 0.068896703 -0.055064987 -0.056779921 -0.06932392 -0.038126979 -0.036902875 0.13331221 -0.046103485 -0.027813651 0.1305186 -0.040004317 -0.0547686 0.068896703 -0.055064987 -0.056779921 -0.06932392 -0.040004317 -0.0547686 0.068896703 -0.04608164 -0.048029378 0.065048128 -0.050390389 -0.040934697 0.061394494 -0.046103485 -0.027813651 0.1305186 -0.052505966 -0.015339979 0.12668023 0.039388388 0.03985155 -0.11714572 0.043008517 0.041943956 -0.11047195 0.044741094 0.024954529 -0.11032491 0.04006445 0.021637468 -0.11754098 0.044741094 0.024954529 -0.11032491 0.046439577 -0.0023360208 -0.10899581 0.030655475 0.044137124 -0.12210178 0.034571081 0.047862217 -0.11504067 0.039388388 0.03985155 -0.11714572 0.039388388 0.03985155 -0.11714572 0.033345617 0.037474744 -0.12465619 0.030655475 0.044137124 -0.12210178 0.053434297 0.00021139855 -0.092382587 0.054587014 -0.056753471 -0.067801207 0.051568896 -0.060530931 -0.079853326 0.051568896 -0.060530931 -0.079853326 0.051293306 -0.00024980758 -0.099427424 0.053434297 0.00021139855 -0.092382587 -0.011102812 0.067433752 -0.10005093 -0.0080654789 0.069860004 -0.091537602 -7.5276774e-05 0.069509245 -0.096096843 0.013927044 0.049683798 -0.12628409 0.004063413 0.057526082 -0.12039343 0.017522668 0.05838168 -0.11514381 0.011756025 0.041113611 -0.13308415 0.022717122 0.03537783 -0.13233502 0.013742442 0.033957873 -0.1359933 0.021317063 0.01130906 -0.13172281 0.0098152636 -0.0093956618 -0.13287598 0.011292421 0.017224655 -0.13556175 -0.052505966 -0.015339979 0.12668023 -0.053632304 -0.033265516 0.05526872 -0.050390389 -0.040934697 0.061394494 0.0002326523 0.071040176 -0.08591219 -7.5276774e-05 0.069509245 -0.096096843 -0.0080654789 0.069860004 -0.091537602 0.011292421 0.017224655 -0.13556175 0.0098152636 -0.0093956618 -0.13287598 0.0037735433 0.014839469 -0.13646281 -0.050390389 -0.040934697 0.061394494 -0.04608164 -0.048029378 0.065048128 -0.046103485 -0.027813651 0.1305186 0.049601793 0.024704697 0.11423393 0.037149757 0.039996728 0.10953386 -0.046103485 -0.027813651 0.1305186 -0.046103485 -0.027813651 0.1305186 0.011900653 -0.05015355 0.13734661 0.022624006 -0.046799306 0.13630185 0.0078213215 0.05333358 0.10545214 -0.0079120733 0.053514022 0.10541224 -0.046103485 -0.027813651 0.1305186 0.054241084 -0.0075200759 0.12416049 0.055064965 0.0044748546 0.12046935 -0.046103485 -0.027813651 0.1305186 -0.026041722 0.0478325 0.10718163 -0.042924702 0.034836445 0.11120322 -0.046103485 -0.027813651 0.1305186 -0.055065006 -0.0024317189 0.1227043 -0.052505966 -0.015339979 0.12668023 -0.046103485 -0.027813651 0.1305186 -0.046103485 -0.027813651 0.1305186 0.037149757 0.039996728 0.10953386 0.023247292 0.049040079 0.10676025 -0.0079120733 0.053514022 0.10541224 -0.026041722 0.0478325 0.10718163 -0.046103485 -0.027813651 0.1305186 -0.038126979 -0.036902875 0.13331221 -0.03104594 -0.042285431 0.13496387 -0.046103485 -0.027813651 0.1305186 -0.046103485 -0.027813651 0.1305186 0.044563711 -0.029864803 0.13106033 0.051646031 -0.016947299 0.1270716 0.034027565 -0.040170223 0.13424699 0.044563711 -0.029864803 0.13106033 -0.046103485 -0.027813651 0.1305186 0.055064965 0.0044748546 0.12046935 0.049601793 0.024704697 0.11423393 -0.046103485 -0.027813651 0.1305186 -0.046103485 -0.027813651 0.1305186 0.023247292 0.049040079 0.10676025 0.0078213215 0.05333358 0.10545214 -0.046103485 -0.027813651 0.1305186 -0.042924702 0.034836445 0.11120322 -0.053728655 0.01403208 0.11763138 -0.046103485 -0.027813651 0.1305186 -0.00066209346 -0.051530574 0.13778357 0.011900653 -0.05015355 0.13734661 -0.02183958 -0.047201116 0.13646999 -0.012380375 -0.050082974 0.13734917 -0.046103485 -0.027813651 0.1305186 -0.046103485 -0.027813651 0.1305186 0.051646031 -0.016947299 0.1270716 0.054241084 -0.0075200759 0.12416049 -0.012380375 -0.050082974 0.13734917 -0.00066209346 -0.051530574 0.13778357 -0.046103485 -0.027813651 0.1305186 0.022624006 -0.046799306 0.13630185 0.034027565 -0.040170223 0.13424699 -0.046103485 -0.027813651 0.1305186 -0.053728655 0.01403208 0.11763138 -0.055065006 -0.0024317189 0.1227043 -0.046103485 -0.027813651 0.1305186 -0.046103485 -0.027813651 0.1305186 -0.03104594 -0.042285431 0.13496387 -0.02183958 -0.047201116 0.13646999 + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899

+
+
+
+
+ + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + + + + + + + + + + + + + +
diff --git a/external/rlbench/urdfs/panda/meshes/Pandalink1visual_vis_1.dae b/external/rlbench/urdfs/panda/meshes/Pandalink1visual_vis_1.dae new file mode 100644 index 0000000000000000000000000000000000000000..bf5aedc0e98a6bec26be8a5358ab3578f86d0c5f --- /dev/null +++ b/external/rlbench/urdfs/panda/meshes/Pandalink1visual_vis_1.dae @@ -0,0 +1,84 @@ + + + + + Assimp + Assimp Exporter + + 2023-09-26T11:24:21 + 2023-09-26T11:24:21 + + Y_UP + + + + + + + + 0 0 0 4.5895327e-41 + + + 0.98000002 0.98000002 0.98000002 4.5893926e-41 + + + 0.98000002 0.98000002 0.98000002 4.5893926e-41 + + + 0.25 0.25 0.25 -3.0261091e+37 + + + + + + + + + + + + + + + + -0.045360632 -0.0044271508 -0.05848949 -0.050140474 -0.014595838 -0.12350137 -0.049328689 -0.011571653 -0.058416199 -0.02781827 -0.084709086 -0.12350106 -0.018097097 -0.089187458 -0.058790613 -0.028029045 -0.084573925 -0.058336899 -0.050140474 -0.014595838 -0.12350137 -0.045360632 -0.0044271508 -0.05848949 -0.047262929 -0.0091268942 -0.12350136 -0.032431267 -0.081692241 -0.12350108 -0.028029045 -0.084573925 -0.058336899 -0.034293439 -0.080251284 -0.057756443 -0.0081803156 0.017176088 -0.10666244 -2.684842e-05 0.017982144 -0.096826449 -0.0044998694 0.01759436 -0.12350117 -0.016256412 0.087636299 0.052388635 -0.022619251 0.087400608 0.062304217 -0.014080583 0.09020704 0.062727846 -0.018097097 -0.089187458 -0.058790613 -0.013340381 -0.090619184 -0.12350097 -0.011395609 -0.091054164 -0.058905799 -0.016256412 0.087636299 0.052388635 -0.0043789879 0.089768209 0.052237485 -0.011792364 0.087673709 0.048972629 -0.040535245 -8.9271918e-05 -0.12350135 -0.047262929 -0.0091268942 -0.12350136 -0.045360632 -0.0044271508 -0.05848949 -0.013340381 -0.090619184 -0.12350097 -0.0035965443 -0.092147343 -0.1235009 -0.011395609 -0.091054164 -0.058905799 -0.0035965443 -0.092147343 -0.1235009 -0.0032485288 -0.092150658 -0.058975454 -0.011395609 -0.091054164 -0.058905799 -0.02781827 -0.084709086 -0.12350106 -0.028029045 -0.084573925 -0.058336899 -0.032431267 -0.081692241 -0.12350108 -0.040535245 -8.9271918e-05 -0.12350135 -0.045360632 -0.0044271508 -0.05848949 -0.041394319 0.0010307289 -0.05761043 -0.018097097 -0.089187458 -0.058790613 -0.018293899 -0.089134611 -0.12350104 -0.013340381 -0.090619184 -0.12350097 -0.0044998694 0.01759436 -0.12350117 -2.684842e-05 0.017982144 -0.096826449 0.0053418037 0.01751454 -0.12350111 -2.684842e-05 0.017982144 -0.096826449 -0.0081474101 0.018236926 -0.079624929 0.001133897 0.018904217 -0.078560509 -0.0081474101 0.018236926 -0.079624929 -0.014443238 0.016760042 -0.081868872 -0.015906105 0.017674234 -0.064685933 -0.035219885 0.0051626619 -0.10128423 -0.039971374 0.00090005278 -0.094030306 -0.031316038 0.0091497321 -0.076236449 -0.015536976 0.07897605 0.034333546 -0.01211811 0.083986856 0.040773451 -0.0067252335 0.080322966 0.033346992 -0.054754321 -0.031976976 -0.12350106 -0.055000909 -0.03624478 -0.11850332 -0.054914765 -0.03379019 -0.062881984 -0.03453112 0.0079246704 -0.058359411 -0.024670973 0.014733537 -0.057112318 -0.031316038 0.0091497321 -0.076236449 -0.052318182 -0.020282315 -0.12350138 -0.053875525 -0.026168501 -0.12350134 -0.052499276 -0.019308273 -0.052159201 -0.055000909 -0.03624478 -0.11850332 -0.054792862 -0.042138331 -0.045640323 -0.054914765 -0.03379019 -0.062881984 -0.053875525 -0.026168501 -0.12350134 -0.054194022 -0.026714385 -0.04920543 -0.052499276 -0.019308273 -0.052159201 -0.0058261445 0.090287253 0.082258485 0.0030945747 0.088300884 0.089489959 0.0028805765 0.09071175 0.081371024 -0.0081803156 0.017176088 -0.10666244 -0.010692502 0.016742002 -0.1235012 -0.019296834 0.014330322 -0.10502686 -0.053875525 -0.026168501 -0.12350134 -0.054754321 -0.031976976 -0.12350106 -0.054194022 -0.026714385 -0.04920543 -0.054754321 -0.031976976 -0.12350106 -0.054914765 -0.03379019 -0.062881984 -0.054194022 -0.026714385 -0.04920543 -0.054792862 -0.042138331 -0.045640323 -0.0524868 -0.053768363 -0.12350128 -0.053455908 -0.050242048 -0.04934179 -0.019252086 0.082678489 0.094539039 -0.020713169 0.077467322 0.10193985 -0.011163852 0.078740299 0.10463749 -0.023581455 0.012445951 -0.12350127 -0.027556814 0.010935821 -0.088527963 -0.019296834 0.014330322 -0.10502686 -0.040535245 -8.9271918e-05 -0.12350135 -0.041394319 0.0010307289 -0.05761043 -0.037786361 0.0048931739 -0.058783926 -0.03453112 0.0079246704 -0.058359411 -0.031316038 0.0091497321 -0.076236449 -0.039971374 0.00090005278 -0.094030306 -0.0081803156 0.017176088 -0.10666244 -0.019296834 0.014330322 -0.10502686 -0.014443238 0.016760042 -0.081868872 -0.0041792784 0.087744772 0.090744592 0.0030945747 0.088300884 0.089489959 -0.0058261445 0.090287253 0.082258485 -0.027556814 0.010935821 -0.088527963 -0.023581455 0.012445951 -0.12350127 -0.030661836 0.0086975321 -0.096889317 -0.0524868 -0.053768363 -0.12350128 -0.05043631 -0.059237957 -0.052763492 -0.053455908 -0.050242048 -0.04934179 -0.0081803156 0.017176088 -0.10666244 -0.014443238 0.016760042 -0.081868872 -0.0081474101 0.018236926 -0.079624929 -0.035219885 0.0051626619 -0.10128423 -0.030661836 0.0086975321 -0.096889317 -0.028419113 0.0098413965 -0.12350126 -0.0081474101 0.018236926 -0.079624929 -2.684842e-05 0.017982144 -0.096826449 -0.0081803156 0.017176088 -0.10666244 -0.03453112 0.0079246704 -0.058359411 -0.039971374 0.00090005278 -0.094030306 -0.037786361 0.0048931739 -0.058783926 -0.0524868 -0.053768363 -0.12350128 -0.050567128 -0.058946647 -0.12350124 -0.05043631 -0.059237957 -0.052763492 -0.014443238 0.016760042 -0.081868872 -0.019296834 0.014330322 -0.10502686 -0.01954937 0.014819963 -0.087068208 -0.054792862 -0.042138331 -0.045640323 -0.055000909 -0.03624478 -0.11850332 -0.054684892 -0.043231353 -0.12350066 -0.019296834 0.014330322 -0.10502686 -0.027556814 0.010935821 -0.088527963 -0.01954937 0.014819963 -0.087068208 -0.052499276 -0.019308273 -0.052159201 -0.049328689 -0.011571653 -0.058416199 -0.050140474 -0.014595838 -0.12350137 -0.050567128 -0.058946647 -0.12350124 -0.048008543 -0.064123847 -0.12350124 -0.05043631 -0.059237957 -0.052763492 -0.048008543 -0.064123847 -0.12350124 -0.047234043 -0.065397993 -0.053959128 -0.05043631 -0.059237957 -0.052763492 -0.0061071902 0.070223428 0.022546239 -0.0052366634 0.076115765 0.028008312 -0.00062576792 0.070279613 0.022191953 -0.048008543 -0.064123847 -0.12350124 -0.044965774 -0.068953089 -0.12350125 -0.047234043 -0.065397993 -0.053959128 -0.037086446 0.0033452665 -0.12350133 -0.040535245 -8.9271918e-05 -0.12350135 -0.039971374 0.00090005278 -0.094030306 -0.044965774 -0.068953089 -0.12350125 -0.043444779 -0.070968986 -0.055415768 -0.047234043 -0.065397993 -0.053959128 -0.0020119669 0.02088153 -0.057126958 0.001133897 0.018904217 -0.078560509 -0.0081474101 0.018236926 -0.079624929 -0.044965774 -0.068953089 -0.12350125 -0.039919272 -0.07510113 -0.12350119 -0.043444779 -0.070968986 -0.055415768 -0.014443238 0.016760042 -0.081868872 -0.01954937 0.014819963 -0.087068208 -0.015906105 0.017674234 -0.064685933 -0.035219885 0.0051626619 -0.10128423 -0.031316038 0.0091497321 -0.076236449 -0.030661836 0.0086975321 -0.096889317 -0.0020119669 0.02088153 -0.057126958 -0.0081474101 0.018236926 -0.079624929 -0.0096821478 0.019898647 -0.058120508 -0.037406106 0.077815205 0.05770842 -0.030355845 0.083562024 0.062343366 -0.0278347 0.083401896 0.054323461 -0.039919272 -0.07510113 -0.12350119 -0.034293439 -0.080251284 -0.057756443 -0.043444779 -0.070968986 -0.055415768 -0.039919272 -0.07510113 -0.12350119 -0.036472112 -0.078439571 -0.12350114 -0.034293439 -0.080251284 -0.057756443 -0.040535245 -8.9271918e-05 -0.12350135 -0.037786361 0.0048931739 -0.058783926 -0.039971374 0.00090005278 -0.094030306 -0.030661836 0.0086975321 -0.096889317 -0.031316038 0.0091497321 -0.076236449 -0.027556814 0.010935821 -0.088527963 -0.035219885 0.0051626619 -0.10128423 -0.037086446 0.0033452665 -0.12350133 -0.039971374 0.00090005278 -0.094030306 -0.0081474101 0.018236926 -0.079624929 -0.015906105 0.017674234 -0.064685933 -0.0096821478 0.019898647 -0.058120508 -0.052318182 -0.020282315 -0.12350138 -0.052499276 -0.019308273 -0.052159201 -0.050140474 -0.014595838 -0.12350137 -0.027556814 0.010935821 -0.088527963 -0.024670973 0.014733537 -0.057112318 -0.01954937 0.014819963 -0.087068208 -0.027556814 0.010935821 -0.088527963 -0.031316038 0.0091497321 -0.076236449 -0.024670973 0.014733537 -0.057112318 -0.01954937 0.014819963 -0.087068208 -0.024670973 0.014733537 -0.057112318 -0.015906105 0.017674234 -0.064685933 -0.0061071902 0.070223428 0.022546239 9.4988638e-05 0.057799477 0.012635305 -0.0098255584 0.058019035 0.014133526 -0.017515557 0.043307435 0.0020005994 -0.017747333 0.034460217 -0.01022054 -0.025891304 0.032185778 -0.0072647003 -0.020960113 0.069972858 0.02698762 -0.01100547 0.070297323 0.023524888 -0.024276929 0.058353346 0.020903958 -0.011762008 0.02415058 -0.036012437 -0.0039070109 0.023815641 -0.041451968 -0.014872884 0.019276079 -0.052884672 -0.041353505 0.074655607 0.059320115 -0.036823858 0.079486616 0.066193618 -0.037406106 0.077815205 0.05770842 -0.022619251 0.087400608 0.062304217 -0.028743261 0.084836826 0.06941916 -0.020350507 0.088617638 0.069333911 -0.019252086 0.082678489 0.094539039 -0.011163852 0.078740299 0.10463749 -0.011161499 0.085052297 0.094539464 -0.047886115 0.031641677 0.030968448 -0.051161837 0.028177282 0.039635129 -0.049759064 0.043402266 0.051897239 -0.0070329579 0.03186781 -0.019795701 -4.9974401e-06 0.034630246 -0.015906567 7.2360606e-05 0.029713511 -0.025607569 -0.044597786 0.011137639 -0.013126705 -0.048619788 -0.0044876016 -0.034163184 -0.04873839 0.0098781493 -0.0028555056 -0.030891677 0.01278849 -0.045431763 -0.03453112 0.0079246704 -0.058359411 -0.037786361 0.0048931739 -0.058783926 -0.04392413 0.044625118 0.034440383 -0.042851761 0.033880334 0.020221278 -0.046223 0.027761912 0.020253966 -0.015536976 0.07897605 0.034333546 -0.0067252335 0.080322966 0.033346992 -0.0052366634 0.076115765 0.028008312 -0.030891677 0.01278849 -0.045431763 -0.037786361 0.0048931739 -0.058783926 -0.041394319 0.0010307289 -0.05761043 -0.029462554 0.025025744 -0.015601324 -0.020160913 0.023788443 -0.029360028 -0.029874569 0.019148879 -0.027588388 -0.053208016 0.0029697474 0.0016728564 -0.052746255 -0.0057517826 -0.016350374 -0.054914489 -0.0026856093 0.0010827133 -0.02670354 0.075821221 0.099800281 -0.024387117 0.072720617 0.10537813 -0.020713169 0.077467322 0.10193985 -0.035878394 0.069674954 0.038797148 -0.025408123 0.069851838 0.029488485 -0.033320531 0.058895051 0.029108273 -0.043572184 0.073402248 0.068844989 -0.036823858 0.079486616 0.066193618 -0.041353505 0.074655607 0.059320115 -0.036754206 0.009536352 -0.039327752 -0.042980511 0.00082124386 -0.046496853 -0.047453113 -0.0062497091 -0.047492456 -0.0039070109 0.023815641 -0.041451968 -0.0020119669 0.02088153 -0.057126958 -0.0096821478 0.019898647 -0.058120508 -0.035878394 0.069674954 0.038797148 -0.033320531 0.058895051 0.029108273 -0.040154923 0.053134114 0.034145344 -0.01100547 0.070297323 0.023524888 -0.0061071902 0.070223428 0.022546239 -0.016140318 0.05822888 0.016388688 -0.010278841 0.038640466 -0.0074065384 -0.0070329579 0.03186781 -0.019795701 -0.017747333 0.034460217 -0.01022054 -0.04392413 0.044625118 0.034440383 -0.046223 0.027761912 0.020253966 -0.047886115 0.031641677 0.030968448 -0.020960113 0.069972858 0.02698762 -0.024276929 0.058353346 0.020903958 -0.025408123 0.069851838 0.029488485 -0.035878394 0.069674954 0.038797148 -0.040154923 0.053134114 0.034145344 -0.039398741 0.069615006 0.043661609 -0.0061071902 0.070223428 0.022546239 -0.0098255584 0.058019035 0.014133526 -0.016140318 0.05822888 0.016388688 -0.045408528 0.069453403 0.058105476 -0.049352445 0.055691984 0.065035298 -0.046520889 0.069661044 0.068822503 -0.031224368 0.04187838 0.011402943 -0.02583259 0.045107752 0.0097651528 -0.03205701 0.035196204 0.0040115602 -0.01100547 0.070297323 0.023524888 -0.016140318 0.05822888 0.016388688 -0.024276929 0.058353346 0.020903958 -0.050171684 0.019853637 0.020746531 -0.053208016 0.0029697474 0.0016728564 -0.054842949 0.007123861 0.018675182 -0.045408528 0.069453403 0.058105476 -0.047718734 0.047248363 0.047293916 -0.049759064 0.043402266 0.051897239 -0.011762008 0.02415058 -0.036012437 -0.014872884 0.019276079 -0.052884672 -0.021632511 0.019147707 -0.041345641 -0.040900476 0.023722647 0.0010783281 -0.044597786 0.011137639 -0.013126705 -0.045760579 0.021512212 0.0090428852 -0.037370849 0.075088985 0.087493315 -0.031351283 0.077133991 0.092892364 -0.02593503 0.080885187 0.092049375 -0.020160913 0.023788443 -0.029360028 -0.021632511 0.019147707 -0.041345641 -0.030347735 0.016538119 -0.03364386 -0.0039070109 0.023815641 -0.041451968 -0.0096821478 0.019898647 -0.058120508 -0.014872884 0.019276079 -0.052884672 -0.020350507 0.088617638 0.069333911 -0.022621397 0.08685647 0.078399591 -0.010221933 0.090606064 0.077510178 -0.02583259 0.045107752 0.0097651528 -0.025891304 0.032185778 -0.0072647003 -0.03205701 0.035196204 0.0040115602 -0.0070329579 0.03186781 -0.019795701 -0.016085632 0.029727407 -0.01966635 -0.017747333 0.034460217 -0.01022054 -0.05274922 0.037644889 0.06802205 -0.054981153 0.016817382 0.047826152 -0.05500247 0.021894604 0.06974113 -0.025408123 0.069851838 0.029488485 -0.024276929 0.058353346 0.020903958 -0.033320531 0.058895051 0.029108273 -0.020160913 0.023788443 -0.029360028 -0.030347735 0.016538119 -0.03364386 -0.029874569 0.019148879 -0.027588388 -0.039398741 0.069615006 0.043661609 -0.04392413 0.044625118 0.034440383 -0.043160133 0.069666691 0.051094495 -0.043160133 0.069666691 0.051094495 -0.047718734 0.047248363 0.047293916 -0.045408528 0.069453403 0.058105476 -0.0058705159 0.091423206 0.061017476 0.0044772471 0.089840211 0.05254066 -0.0043789879 0.089768209 0.052237485 -0.031224368 0.04187838 0.011402943 -0.03205701 0.035196204 0.0040115602 -0.037171297 0.040470518 0.0176234 -0.028563166 0.08027 0.046817061 -0.0278347 0.083401896 0.054323461 -0.023182424 0.080571674 0.041659594 7.2360606e-05 0.029713511 -0.025607569 -0.011762008 0.02415058 -0.036012437 -0.0070329579 0.03186781 -0.019795701 9.4988638e-05 0.057799477 0.012635305 -0.0068906955 0.049151253 0.0049402625 -0.0098255584 0.058019035 0.014133526 -0.036754206 0.009536352 -0.039327752 -0.041394319 0.0010307289 -0.05761043 -0.042980511 0.00082124386 -0.046496853 -0.04873839 0.0098781493 -0.0028555056 -0.048619788 -0.0044876016 -0.034163184 -0.052842159 -0.017840071 -0.041094515 -0.04873839 0.0098781493 -0.0028555056 -0.052842159 -0.017840071 -0.041094515 -0.052746255 -0.0057517826 -0.016350374 -0.029874569 0.019148879 -0.027588388 -0.035794869 0.014580243 -0.027365984 -0.029462554 0.025025744 -0.015601324 9.4988638e-05 0.057799477 0.012635305 -3.7170488e-05 0.044494499 -0.0013444885 -0.0068906955 0.049151253 0.0049402625 -0.052746255 -0.0057517826 -0.016350374 -0.05490835 -0.015568242 -0.018909073 -0.054914489 -0.0026856093 0.0010827133 -0.037171297 0.040470518 0.0176234 -0.03205701 0.035196204 0.0040115602 -0.035639569 0.029423114 0.00065813452 -0.041394319 0.0010307289 -0.05761043 -0.045360632 -0.0044271508 -0.05848949 -0.042980511 0.00082124386 -0.046496853 -0.039398741 0.069615006 0.043661609 -0.040154923 0.053134114 0.034145344 -0.04392413 0.044625118 0.034440383 -0.029462554 0.025025744 -0.015601324 -0.035794869 0.014580243 -0.027365984 -0.034968995 0.021542145 -0.013898252 -0.016140318 0.05822888 0.016388688 -0.0098255584 0.058019035 0.014133526 -0.0068906955 0.049151253 0.0049402625 -0.048619788 -0.0044876016 -0.034163184 -0.052499276 -0.019308273 -0.052159201 -0.052842159 -0.017840071 -0.041094515 -0.05274922 0.037644889 0.06802205 -0.049759064 0.043402266 0.051897239 -0.053779792 0.019984568 0.041492265 -0.0096821478 0.019898647 -0.058120508 -0.015906105 0.017674234 -0.064685933 -0.014872884 0.019276079 -0.052884672 -0.014872884 0.019276079 -0.052884672 -0.024670973 0.014733537 -0.057112318 -0.021632511 0.019147707 -0.041345641 -0.034968995 0.021542145 -0.013898252 -0.035794869 0.014580243 -0.027365984 -0.040900476 0.023722647 0.0010783281 -0.024276929 0.058353346 0.020903958 -0.032634664 0.051700056 0.0227421 -0.033320531 0.058895051 0.029108273 -0.016140318 0.05822888 0.016388688 -0.0068906955 0.049151253 0.0049402625 -0.020128125 0.050320048 0.011201975 -0.045760579 0.021512212 0.0090428852 -0.04873839 0.0098781493 -0.0028555056 -0.046223 0.027761912 0.020253966 -0.052746255 -0.0057517826 -0.016350374 -0.054194473 -0.021291761 -0.034757931 -0.05490835 -0.015568242 -0.018909073 -0.047453113 -0.0062497091 -0.047492456 -0.049328689 -0.011571653 -0.058416199 -0.048619788 -0.0044876016 -0.034163184 -0.037171297 0.040470518 0.0176234 -0.035639569 0.029423114 0.00065813452 -0.042851761 0.033880334 0.020221278 -0.02670354 0.075821221 0.099800281 -0.02655619 0.069559112 0.1067232 -0.024387117 0.072720617 0.10537813 7.2360606e-05 0.029713511 -0.025607569 -1.5692982e-05 0.026554752 -0.033521447 -0.011762008 0.02415058 -0.036012437 -0.049759064 0.043402266 0.051897239 -0.051161837 0.028177282 0.039635129 -0.053779792 0.019984568 0.041492265 -0.014951104 0.086531892 0.089029528 -0.019252086 0.082678489 0.094539039 -0.011161499 0.085052297 0.094539464 -0.01100547 0.070297323 0.023524888 -0.0052366634 0.076115765 0.028008312 -0.0061071902 0.070223428 0.022546239 -0.0067252335 0.080322966 0.033346992 -0.0047876164 0.085326165 0.041078012 0.0037315411 0.084236577 0.038917758 -0.043160133 0.069666691 0.051094495 -0.04392413 0.044625118 0.034440383 -0.047718734 0.047248363 0.047293916 -0.052746255 -0.0057517826 -0.016350374 -0.052842159 -0.017840071 -0.041094515 -0.054194473 -0.021291761 -0.034757931 -0.048619788 -0.0044876016 -0.034163184 -0.049328689 -0.011571653 -0.058416199 -0.052499276 -0.019308273 -0.052159201 -0.046223 0.027761912 0.020253966 -0.050171684 0.019853637 0.020746531 -0.047886115 0.031641677 0.030968448 -0.046223 0.027761912 0.020253966 -0.04873839 0.0098781493 -0.0028555056 -0.050171684 0.019853637 0.020746531 -0.047453113 -0.0062497091 -0.047492456 -0.045360632 -0.0044271508 -0.05848949 -0.049328689 -0.011571653 -0.058416199 -0.033320531 0.058895051 0.029108273 -0.032634664 0.051700056 0.0227421 -0.040154923 0.053134114 0.034145344 -0.016140318 0.05822888 0.016388688 -0.020128125 0.050320048 0.011201975 -0.02583259 0.045107752 0.0097651528 -0.052842159 -0.017840071 -0.041094515 -0.054194022 -0.026714385 -0.04920543 -0.054194473 -0.021291761 -0.034757931 -0.021632511 0.019147707 -0.041345641 -0.030891677 0.01278849 -0.045431763 -0.030347735 0.016538119 -0.03364386 -0.014872884 0.019276079 -0.052884672 -0.015906105 0.017674234 -0.064685933 -0.024670973 0.014733537 -0.057112318 -0.01100547 0.070297323 0.023524888 -0.015536976 0.07897605 0.034333546 -0.0052366634 0.076115765 0.028008312 -0.013217018 0.090687558 0.069816954 -0.00075025205 0.092150658 0.069858097 -0.0058705159 0.091423206 0.061017476 -0.016085632 0.029727407 -0.01966635 -0.020160913 0.023788443 -0.029360028 -0.017747333 0.034460217 -0.01022054 -0.0070329579 0.03186781 -0.019795701 -0.011762008 0.02415058 -0.036012437 -0.016085632 0.029727407 -0.01966635 -0.016140318 0.05822888 0.016388688 -0.02583259 0.045107752 0.0097651528 -0.024276929 0.058353346 0.020903958 -1.5692982e-05 0.026554752 -0.033521447 -0.0039070109 0.023815641 -0.041451968 -0.011762008 0.02415058 -0.036012437 -0.021632511 0.019147707 -0.041345641 -0.024670973 0.014733537 -0.057112318 -0.030891677 0.01278849 -0.045431763 -0.025891304 0.032185778 -0.0072647003 -0.029462554 0.025025744 -0.015601324 -0.03205701 0.035196204 0.0040115602 -0.037370849 0.075088985 0.087493315 -0.034206394 0.070622712 0.099283174 -0.031351283 0.077133991 0.092892364 -0.05274922 0.037644889 0.06802205 -0.053779792 0.019984568 0.041492265 -0.054981153 0.016817382 0.047826152 -0.052499276 -0.019308273 -0.052159201 -0.054194022 -0.026714385 -0.04920543 -0.052842159 -0.017840071 -0.041094515 -0.040900476 0.023722647 0.0010783281 -0.035794869 0.014580243 -0.027365984 -0.042152207 0.0091570104 -0.024336768 -0.054194473 -0.021291761 -0.034757931 -0.054917552 -0.029385593 -0.03593706 -0.05490835 -0.015568242 -0.018909073 -0.045760579 0.021512212 0.0090428852 -0.044597786 0.011137639 -0.013126705 -0.04873839 0.0098781493 -0.0028555056 -0.03205701 0.035196204 0.0040115602 -0.029462554 0.025025744 -0.015601324 -0.035639569 0.029423114 0.00065813452 -0.045408528 0.069453403 0.058105476 -0.049759064 0.043402266 0.051897239 -0.049352445 0.055691984 0.065035298 -3.7170488e-05 0.044494499 -0.0013444885 -0.010278841 0.038640466 -0.0074065384 -0.0068906955 0.049151253 0.0049402625 -0.035639569 0.029423114 0.00065813452 -0.040900476 0.023722647 0.0010783281 -0.042851761 0.033880334 0.020221278 -0.040900476 0.023722647 0.0010783281 -0.042152207 0.0091570104 -0.024336768 -0.044597786 0.011137639 -0.013126705 -0.014951104 0.086531892 0.089029528 -0.0041792784 0.087744772 0.090744592 -0.0058261445 0.090287253 0.082258485 -0.016085632 0.029727407 -0.01966635 -0.011762008 0.02415058 -0.036012437 -0.020160913 0.023788443 -0.029360028 -0.024276929 0.058353346 0.020903958 -0.031224368 0.04187838 0.011402943 -0.032634664 0.051700056 0.0227421 -0.054194022 -0.026714385 -0.04920543 -0.054914765 -0.03379019 -0.062881984 -0.054194473 -0.021291761 -0.034757931 -0.054194473 -0.021291761 -0.034757931 -0.054792862 -0.042138331 -0.045640323 -0.054917552 -0.029385593 -0.03593706 -0.020128125 0.050320048 0.011201975 -0.0068906955 0.049151253 0.0049402625 -0.017515557 0.043307435 0.0020005994 -0.024276929 0.058353346 0.020903958 -0.02583259 0.045107752 0.0097651528 -0.031224368 0.04187838 0.011402943 -0.042851761 0.033880334 0.020221278 -0.045760579 0.021512212 0.0090428852 -0.046223 0.027761912 0.020253966 -0.047886115 0.031641677 0.030968448 -0.050171684 0.019853637 0.020746531 -0.054842949 0.007123861 0.018675182 -0.030347735 0.016538119 -0.03364386 -0.036754206 0.009536352 -0.039327752 -0.029874569 0.019148879 -0.027588388 -0.054194473 -0.021291761 -0.034757931 -0.054914765 -0.03379019 -0.062881984 -0.054792862 -0.042138331 -0.045640323 -0.017515557 0.043307435 0.0020005994 -0.02583259 0.045107752 0.0097651528 -0.020128125 0.050320048 0.011201975 -0.02670354 0.075821221 0.099800281 -0.020713169 0.077467322 0.10193985 -0.019252086 0.082678489 0.094539039 -0.025891304 0.032185778 -0.0072647003 -0.017747333 0.034460217 -0.01022054 -0.029462554 0.025025744 -0.015601324 -0.029874569 0.019148879 -0.027588388 -0.036754206 0.009536352 -0.039327752 -0.035794869 0.014580243 -0.027365984 -0.01211811 0.083986856 0.040773451 -0.011792364 0.087673709 0.048972629 -0.0047876164 0.085326165 0.041078012 -0.047886115 0.031641677 0.030968448 -0.054842949 0.007123861 0.018675182 -0.051161837 0.028177282 0.039635129 -0.040154923 0.053134114 0.034145344 -0.032634664 0.051700056 0.0227421 -0.042851761 0.033880334 0.020221278 -0.014951104 0.086531892 0.089029528 -0.011161499 0.085052297 0.094539464 -0.0041792784 0.087744772 0.090744592 -0.050171684 0.019853637 0.020746531 -0.052746255 -0.0057517826 -0.016350374 -0.053208016 0.0029697474 0.0016728564 -0.037370849 0.075088985 0.087493315 -0.043581221 0.070389077 0.08386679 -0.034206394 0.070622712 0.099283174 -3.7170488e-05 0.044494499 -0.0013444885 -4.9974401e-06 0.034630246 -0.015906567 -0.010278841 0.038640466 -0.0074065384 -0.04873839 0.0098781493 -0.0028555056 -0.052746255 -0.0057517826 -0.016350374 -0.050171684 0.019853637 0.020746531 -0.037370849 0.075088985 0.087493315 -0.02593503 0.080885187 0.092049375 -0.030476702 0.081917666 0.082486019 -0.032634664 0.051700056 0.0227421 -0.037171297 0.040470518 0.0176234 -0.042851761 0.033880334 0.020221278 -0.051161837 0.028177282 0.039635129 -0.054842949 0.007123861 0.018675182 -0.053779792 0.019984568 0.041492265 -0.0068906955 0.049151253 0.0049402625 -0.010278841 0.038640466 -0.0074065384 -0.017515557 0.043307435 0.0020005994 -0.032634664 0.051700056 0.0227421 -0.031224368 0.04187838 0.011402943 -0.037171297 0.040470518 0.0176234 -0.02670354 0.075821221 0.099800281 -0.034206394 0.070622712 0.099283174 -0.02655619 0.069559112 0.1067232 -0.049352445 0.055691984 0.065035298 -0.049759064 0.043402266 0.051897239 -0.05274922 0.037644889 0.06802205 -0.030891677 0.01278849 -0.045431763 -0.024670973 0.014733537 -0.057112318 -0.03453112 0.0079246704 -0.058359411 -0.017747333 0.034460217 -0.01022054 -0.020160913 0.023788443 -0.029360028 -0.029462554 0.025025744 -0.015601324 -0.035639569 0.029423114 0.00065813452 -0.029462554 0.025025744 -0.015601324 -0.034968995 0.021542145 -0.013898252 -0.042851761 0.033880334 0.020221278 -0.040900476 0.023722647 0.0010783281 -0.045760579 0.021512212 0.0090428852 -0.030891677 0.01278849 -0.045431763 -0.041394319 0.0010307289 -0.05761043 -0.030347735 0.016538119 -0.03364386 -0.053779792 0.019984568 0.041492265 -0.054842949 0.007123861 0.018675182 -0.054981153 0.016817382 0.047826152 -0.04392413 0.044625118 0.034440383 -0.047886115 0.031641677 0.030968448 -0.047718734 0.047248363 0.047293916 -0.053208016 0.0029697474 0.0016728564 -0.054914489 -0.0026856093 0.0010827133 -0.054842949 0.007123861 0.018675182 -0.02583259 0.045107752 0.0097651528 -0.017515557 0.043307435 0.0020005994 -0.025891304 0.032185778 -0.0072647003 -0.040154923 0.053134114 0.034145344 -0.042851761 0.033880334 0.020221278 -0.04392413 0.044625118 0.034440383 -0.011762008 0.02415058 -0.036012437 -0.021632511 0.019147707 -0.041345641 -0.020160913 0.023788443 -0.029360028 -0.035794869 0.014580243 -0.027365984 -0.047453113 -0.0062497091 -0.047492456 -0.042152207 0.0091570104 -0.024336768 -0.035794869 0.014580243 -0.027365984 -0.036754206 0.009536352 -0.039327752 -0.047453113 -0.0062497091 -0.047492456 -0.010278841 0.038640466 -0.0074065384 -4.9974401e-06 0.034630246 -0.015906567 -0.0070329579 0.03186781 -0.019795701 -0.010278841 0.038640466 -0.0074065384 -0.017747333 0.034460217 -0.01022054 -0.017515557 0.043307435 0.0020005994 -0.042152207 0.0091570104 -0.024336768 -0.048619788 -0.0044876016 -0.034163184 -0.044597786 0.011137639 -0.013126705 -0.019326923 0.074901752 0.031082725 -0.023182424 0.080571674 0.041659594 -0.015536976 0.07897605 0.034333546 -0.042152207 0.0091570104 -0.024336768 -0.047453113 -0.0062497091 -0.047492456 -0.048619788 -0.0044876016 -0.034163184 -0.030347735 0.016538119 -0.03364386 -0.041394319 0.0010307289 -0.05761043 -0.036754206 0.009536352 -0.039327752 -0.042980511 0.00082124386 -0.046496853 -0.045360632 -0.0044271508 -0.05848949 -0.047453113 -0.0062497091 -0.047492456 -0.047718734 0.047248363 0.047293916 -0.047886115 0.031641677 0.030968448 -0.049759064 0.043402266 0.051897239 -0.035639569 0.029423114 0.00065813452 -0.034968995 0.021542145 -0.013898252 -0.040900476 0.023722647 0.0010783281 -0.0061071902 0.070223428 0.022546239 -0.00062576792 0.070279613 0.022191953 9.4988638e-05 0.057799477 0.012635305 -0.050347749 0.046255942 0.079059899 -0.045939781 0.069534756 0.076130964 -0.04994509 0.052104644 0.074388616 -0.0010685448 0.041366193 0.12109034 -0.0059251403 0.027226949 0.12316521 0.0010470289 0.026662856 0.12350127 -0.02655619 0.069559112 0.1067232 -0.029971939 0.053474963 0.10864934 -0.026313828 0.042757992 0.11363817 -0.048939098 0.038836624 0.088404953 -0.050347749 0.046255942 0.079059899 -0.052189928 0.024350299 0.085943229 -0.039548963 0.04643409 0.10145877 -0.03602986 0.042010467 0.10647 -0.034673918 0.069607697 0.099521145 -0.046520889 0.069661044 0.068822503 -0.049352445 0.055691984 0.065035298 -0.04994509 0.052104644 0.074388616 -0.043872274 0.045929413 0.095610872 -0.048939098 0.038836624 0.088404953 -0.048037678 0.025935564 0.095271677 -0.010016454 0.04367093 0.11969106 -0.019069102 0.043288913 0.11707663 -0.013751773 0.027244946 0.12173837 -0.037880294 0.026893841 0.10835943 -0.039548963 0.04643409 0.10145877 -0.041273266 0.026093299 0.10489263 -0.034673918 0.069607697 0.099521145 -0.03602986 0.042010467 0.10647 -0.029971939 0.053474963 0.10864934 -0.010016454 0.04367093 0.11969106 -0.013751773 0.027244946 0.12173837 -0.0059251403 0.027226949 0.12316521 -0.019069102 0.043288913 0.11707663 -0.026313828 0.042757992 0.11363817 -0.02472849 0.026603071 0.11765533 -0.046564635 0.053952709 0.086671419 -0.050347749 0.046255942 0.079059899 -0.048939098 0.038836624 0.088404953 -0.039548963 0.04643409 0.10145877 -0.043872274 0.045929413 0.095610872 -0.041273266 0.026093299 0.10489263 -0.043872274 0.045929413 0.095610872 -0.048037678 0.025935564 0.095271677 -0.045870502 0.025671709 0.098878488 -0.046564635 0.053952709 0.086671419 -0.043872274 0.045929413 0.095610872 -0.039293416 0.069401599 0.093531534 -0.00075025205 0.092150658 0.069858097 -0.0058261445 0.090287253 0.082258485 0.0028805765 0.09071175 0.081371024 -0.019069102 0.043288913 0.11707663 -0.02472849 0.026603071 0.11765533 -0.013751773 0.027244946 0.12173837 -0.039293416 0.069401599 0.093531534 -0.043581221 0.070389077 0.08386679 -0.046564635 0.053952709 0.086671419 -0.039293416 0.069401599 0.093531534 -0.039548963 0.04643409 0.10145877 -0.034673918 0.069607697 0.099521145 -0.043872274 0.045929413 0.095610872 -0.039548963 0.04643409 0.10145877 -0.039293416 0.069401599 0.093531534 -0.026313828 0.042757992 0.11363817 -0.029971939 0.053474963 0.10864934 -0.037880294 0.026893841 0.10835943 -0.04994509 0.052104644 0.074388616 -0.049352445 0.055691984 0.065035298 -0.05274922 0.037644889 0.06802205 -0.043872274 0.045929413 0.095610872 -0.045870502 0.025671709 0.098878488 -0.041273266 0.026093299 0.10489263 -0.048037678 0.025935564 0.095271677 -0.048939098 0.038836624 0.088404953 -0.052189928 0.024350299 0.085943229 -0.052189928 0.024350299 0.085943229 -0.050347749 0.046255942 0.079059899 -0.053904973 0.024058511 0.079393029 -0.053904973 0.024058511 0.079393029 -0.04994509 0.052104644 0.074388616 -0.054581024 0.023443449 0.075204551 -0.0053570662 0.069266148 0.11482362 -0.0010161885 0.051936753 0.11903229 0.0061016483 0.06941893 0.1146877 -0.029971939 0.053474963 0.10864934 -0.03602986 0.042010467 0.10647 -0.037880294 0.026893841 0.10835943 -0.04994509 0.052104644 0.074388616 -0.05274922 0.037644889 0.06802205 -0.054581024 0.023443449 0.075204551 -0.010221933 0.090606064 0.077510178 -0.014951104 0.086531892 0.089029528 -0.0058261445 0.090287253 0.082258485 -0.0053570662 0.069266148 0.11482362 -0.018392155 0.069463938 0.11129396 -0.010016454 0.04367093 0.11969106 -0.054581024 0.023443449 0.075204551 -0.05274922 0.037644889 0.06802205 -0.05500247 0.021894604 0.06974113 -0.0010161885 0.051936753 0.11903229 -0.0053570662 0.069266148 0.11482362 -0.010016454 0.04367093 0.11969106 -0.046520889 0.069661044 0.068822503 -0.043572184 0.073402248 0.068844989 -0.041353505 0.074655607 0.059320115 -0.018392155 0.069463938 0.11129396 -0.019069102 0.043288913 0.11707663 -0.010016454 0.04367093 0.11969106 -0.026313828 0.042757992 0.11363817 -0.031116406 0.026516682 0.1138704 -0.02472849 0.026603071 0.11765533 -0.043581221 0.070389077 0.08386679 -0.045939781 0.069534756 0.076130964 -0.050347749 0.046255942 0.079059899 -0.0010161885 0.051936753 0.11903229 -0.010016454 0.04367093 0.11969106 -0.0010685448 0.041366193 0.12109034 -0.03602986 0.042010467 0.10647 -0.039548963 0.04643409 0.10145877 -0.037880294 0.026893841 0.10835943 -0.043581221 0.070389077 0.08386679 -0.050347749 0.046255942 0.079059899 -0.046564635 0.053952709 0.086671419 -0.026313828 0.042757992 0.11363817 -0.037880294 0.026893841 0.10835943 -0.031116406 0.026516682 0.1138704 -0.030476702 0.081917666 0.082486019 -0.02593503 0.080885187 0.092049375 -0.025539313 0.08442805 0.083188273 -0.018392155 0.069463938 0.11129396 -0.02655619 0.069559112 0.1067232 -0.019069102 0.043288913 0.11707663 -0.043872274 0.045929413 0.095610872 -0.046564635 0.053952709 0.086671419 -0.048939098 0.038836624 0.088404953 -0.0010685448 0.041366193 0.12109034 -0.010016454 0.04367093 0.11969106 -0.0059251403 0.027226949 0.12316521 -0.02655619 0.069559112 0.1067232 -0.034673918 0.069607697 0.099521145 -0.029971939 0.053474963 0.10864934 -0.045939781 0.069534756 0.076130964 -0.046520889 0.069661044 0.068822503 -0.04994509 0.052104644 0.074388616 -0.043581221 0.070389077 0.08386679 -0.037370849 0.075088985 0.087493315 -0.039132129 0.077337928 0.073749214 -0.050347749 0.046255942 0.079059899 -0.04994509 0.052104644 0.074388616 -0.053904973 0.024058511 0.079393029 -0.036823858 0.079486616 0.066193618 -0.039132129 0.077337928 0.073749214 -0.028743261 0.084836826 0.06941916 -0.02655619 0.069559112 0.1067232 -0.026313828 0.042757992 0.11363817 -0.019069102 0.043288913 0.11707663 -0.024653869 -0.026919942 0.012259628 -0.012066317 -0.029689414 0.012527693 -0.02170947 -0.029176498 0.015502143 -0.055000182 -0.031743027 0.06750226 -0.054614685 -0.036741372 0.061890319 -0.054634079 -0.03674135 0.075096563 -0.052634932 -0.024254927 0.050876375 -0.051159553 -0.036741365 0.048273358 -0.053069916 -0.036741186 0.054016761 -0.049767572 -0.025293199 0.042911101 -0.051159553 -0.036741365 0.048273358 -0.052634932 -0.024254927 0.050876375 -0.051159553 -0.036741365 0.048273358 -0.049767572 -0.025293199 0.042911101 -0.044732187 -0.031552482 0.03594071 -0.030355845 0.083562024 0.062343366 -0.028743261 0.084836826 0.06941916 -0.022619251 0.087400608 0.062304217 -0.051159553 -0.036741365 0.048273358 -0.044732187 -0.031552482 0.03594071 -0.042345863 -0.03674132 0.033379018 -0.049767572 -0.025293199 0.042911101 -0.046031624 -0.025434371 0.035367798 -0.044732187 -0.031552482 0.03594071 -0.034071125 -0.036739871 0.025313815 -0.044732187 -0.031552482 0.03594071 -0.04152751 -0.027282711 0.029951347 -0.0048604053 -0.028435457 0.0090124309 -0.012066317 -0.029689414 0.012527693 -0.024653869 -0.026919942 0.012259628 -0.037706442 -0.024209226 0.019481746 -0.024653869 -0.026919942 0.012259628 -0.02170947 -0.029176498 0.015502143 -0.01211811 0.083986856 0.040773451 -0.016256412 0.087636299 0.052388635 -0.011792364 0.087673709 0.048972629 -0.0076413979 -0.03674116 0.014020445 -0.0026711961 -0.03374932 0.01326638 0.0050053871 -0.036741406 0.013716836 -0.012066317 -0.029689414 0.012527693 0.00074596831 -0.031245936 0.01205648 -0.0026711961 -0.03374932 0.01326638 -0.034071125 -0.036739871 0.025313815 -0.04152751 -0.027282711 0.029951347 -0.034394007 -0.030779256 0.024586294 -0.019326923 0.074901752 0.031082725 -0.015536976 0.07897605 0.034333546 -0.01100547 0.070297323 0.023524888 -0.01211811 0.083986856 0.040773451 -0.0047876164 0.085326165 0.041078012 -0.0067252335 0.080322966 0.033346992 -0.012066317 -0.029689414 0.012527693 -0.0048604053 -0.028435457 0.0090124309 0.00074596831 -0.031245936 0.01205648 -0.02170947 -0.029176498 0.015502143 -0.034394007 -0.030779256 0.024586294 -0.035291046 -0.026421567 0.021890152 -0.054614685 -0.036741372 0.061890319 -0.052634932 -0.024254927 0.050876375 -0.053069916 -0.036741186 0.054016761 -0.044732187 -0.031552482 0.03594071 -0.034071125 -0.036739871 0.025313815 -0.042345863 -0.03674132 0.033379018 -0.044732187 -0.031552482 0.03594071 -0.046031624 -0.025434371 0.035367798 -0.04152751 -0.027282711 0.029951347 -0.0038189657 0.070706353 0.11429044 0.003814196 0.070736833 0.11426801 -0.00017702325 0.074954748 0.11054835 -0.034394007 -0.030779256 0.024586294 -0.04152751 -0.027282711 0.029951347 -0.035291046 -0.026421567 0.021890152 -0.037987433 0.075548999 0.051943313 -0.037406106 0.077815205 0.05770842 -0.0278347 0.083401896 0.054323461 -0.022542408 -0.033677481 0.018051825 -0.034071125 -0.036739871 0.025313815 -0.034394007 -0.030779256 0.024586294 -0.035291046 -0.026421567 0.021890152 -0.04152751 -0.027282711 0.029951347 -0.037706442 -0.024209226 0.019481746 -0.022054678 -0.036741402 0.018105362 -0.034071125 -0.036739871 0.025313815 -0.022542408 -0.033677481 0.018051825 -0.022542408 -0.033677481 0.018051825 -0.034394007 -0.030779256 0.024586294 -0.02170947 -0.029176498 0.015502143 -0.0076413979 -0.03674116 0.014020445 -0.022054678 -0.036741402 0.018105362 -0.022542408 -0.033677481 0.018051825 -0.037706442 -0.024209226 0.019481746 -0.02170947 -0.029176498 0.015502143 -0.035291046 -0.026421567 0.021890152 -0.022542408 -0.033677481 0.018051825 -0.02170947 -0.029176498 0.015502143 -0.012066317 -0.029689414 0.012527693 -0.0076413979 -0.03674116 0.014020445 -0.022542408 -0.033677481 0.018051825 -0.012066317 -0.029689414 0.012527693 -0.0026711961 -0.03374932 0.01326638 -0.0076413979 -0.03674116 0.014020445 -0.012066317 -0.029689414 0.012527693 -0.030997533 -0.026881335 0.0015500945 -0.01548898 -0.028827442 -0.00040722344 -0.021246642 -0.027377427 0.0050211418 -0.045219839 -0.020001834 0.027638707 -0.049767572 -0.025293199 0.042911101 -0.050054833 -0.013333191 0.035301138 -0.053952765 0.00013956771 0.048531406 -0.052625991 -0.0040508886 0.040200602 -0.050054833 -0.013333191 0.035301138 -0.01836222 -0.035110086 -0.011133529 -0.019401276 -0.030740693 -0.0053398255 -0.033227246 -0.028849384 -0.0053274264 -0.041637674 -0.028259659 -0.0095143477 -0.033227246 -0.028849384 -0.0053274264 -0.044761743 -0.025296301 -0.0074029979 -0.03670061 -0.032929629 -0.013434534 -0.033227246 -0.028849384 -0.0053274264 -0.041637674 -0.028259659 -0.0095143477 -0.050168626 -0.013145198 0.0072239218 -0.048942562 -0.011518436 0.018561652 -0.051769052 -0.0046954942 0.018935431 -0.020350507 0.088617638 0.069333911 -0.010221933 0.090606064 0.077510178 -0.013217018 0.090687558 0.069816954 -0.054253526 0.0079374611 0.041837666 -0.053952765 0.00013956771 0.048531406 -0.054981153 0.016817382 0.047826152 -0.052625991 -0.0040508886 0.040200602 -0.054253526 0.0079374611 0.041837666 -0.053234279 0.0023682693 0.029570783 -0.050054833 -0.013333191 0.035301138 -0.052625991 -0.0040508886 0.040200602 -0.050610725 -0.0078044608 0.029787214 -0.050610725 -0.0078044608 0.029787214 -0.052625991 -0.0040508886 0.040200602 -0.053234279 0.0023682693 0.029570783 -0.046086714 -0.016452638 0.017130068 -0.037706442 -0.024209226 0.019481746 -0.045219839 -0.020001834 0.027638707 -0.047138151 -0.015709 0.026234966 -0.046086714 -0.016452638 0.017130068 -0.045219839 -0.020001834 0.027638707 -0.046086714 -0.016452638 0.017130068 -0.047138151 -0.015709 0.026234966 -0.048942562 -0.011518436 0.018561652 -0.011356806 0.070717044 0.11301962 -0.0038189657 0.070706353 0.11429044 -0.00017702325 0.074954748 0.11054835 -0.033068173 -0.025387084 0.0092926919 -0.021246642 -0.027377427 0.0050211418 -0.024653869 -0.026919942 0.012259628 -0.05249989 -0.03035433 -0.027691992 -0.044761743 -0.025296301 -0.0074029979 -0.051186349 -0.02194885 -0.013425677 -0.050168626 -0.013145198 0.0072239218 -0.051769052 -0.0046954942 0.018935431 -0.052101322 -0.0063677803 0.012344321 -0.033068173 -0.025387084 0.0092926919 -0.039746519 -0.022561999 0.015780045 -0.039994463 -0.022991586 0.0081078233 -0.033068173 -0.025387084 0.0092926919 -0.030997533 -0.026881335 0.0015500945 -0.021246642 -0.027377427 0.0050211418 -0.019401276 -0.030740693 -0.0053398255 -0.01548898 -0.028827442 -0.00040722344 -0.030997533 -0.026881335 0.0015500945 -0.050610725 -0.0078044608 0.029787214 -0.048942562 -0.011518436 0.018561652 -0.047138151 -0.015709 0.026234966 -0.030997533 -0.026881335 0.0015500945 -0.033227246 -0.028849384 -0.0053274264 -0.019401276 -0.030740693 -0.0053398255 -0.053234279 0.0023682693 0.029570783 -0.054842949 0.007123861 0.018675182 -0.052101322 -0.0063677803 0.012344321 -0.042062223 -0.035717823 -0.019749241 -0.048155941 -0.034547023 -0.024399903 -0.039737366 -0.045257334 -0.026442971 -0.01836222 -0.035110086 -0.011133529 -0.033227246 -0.028849384 -0.0053274264 -0.03670061 -0.032929629 -0.013434534 -0.034475651 -0.037480339 -0.017665308 -0.01836222 -0.035110086 -0.011133529 -0.03670061 -0.032929629 -0.013434534 -0.047570165 -0.021218322 -0.0036278151 -0.050168626 -0.013145198 0.0072239218 -0.051186349 -0.02194885 -0.013425677 -0.051186349 -0.02194885 -0.013425677 -0.053450596 -0.015367475 -0.010401455 -0.05249989 -0.03035433 -0.027691992 -0.041353505 0.074655607 0.059320115 -0.045408528 0.069453403 0.058105476 -0.046520889 0.069661044 0.068822503 -0.051186349 -0.02194885 -0.013425677 -0.050168626 -0.013145198 0.0072239218 -0.052101322 -0.0063677803 0.012344321 -0.054614685 -0.036741372 0.061890319 -0.053952765 0.00013956771 0.048531406 -0.052634932 -0.024254927 0.050876375 -0.053450596 -0.015367475 -0.010401455 -0.052101322 -0.0063677803 0.012344321 -0.054914489 -0.0026856093 0.0010827133 -0.054914489 -0.0026856093 0.0010827133 -0.052101322 -0.0063677803 0.012344321 -0.054842949 0.007123861 0.018675182 -0.052634932 -0.024254927 0.050876375 -0.050054833 -0.013333191 0.035301138 -0.049767572 -0.025293199 0.042911101 -0.050054833 -0.013333191 0.035301138 -0.052634932 -0.024254927 0.050876375 -0.053952765 0.00013956771 0.048531406 -0.053952765 0.00013956771 0.048531406 -0.054864116 0.0022753021 0.06136249 -0.054981153 0.016817382 0.047826152 -0.050168626 -0.013145198 0.0072239218 -0.046086714 -0.016452638 0.017130068 -0.048942562 -0.011518436 0.018561652 -0.014080583 0.09020704 0.062727846 -0.013217018 0.090687558 0.069816954 -0.0058705159 0.091423206 0.061017476 -0.05249989 -0.03035433 -0.027691992 -0.053450596 -0.015367475 -0.010401455 -0.05490835 -0.015568242 -0.018909073 -0.049767572 -0.025293199 0.042911101 -0.045219839 -0.020001834 0.027638707 -0.046031624 -0.025434371 0.035367798 -0.052625991 -0.0040508886 0.040200602 -0.053952765 0.00013956771 0.048531406 -0.054253526 0.0079374611 0.041837666 -0.031466968 0.074174777 0.039434575 -0.028563166 0.08027 0.046817061 -0.023182424 0.080571674 0.041659594 -0.046031624 -0.025434371 0.035367798 -0.045219839 -0.020001834 0.027638707 -0.04152751 -0.027282711 0.029951347 -0.01836222 -0.035110086 -0.011133529 0.0021938956 -0.034344226 -0.008859966 0.0021928796 -0.030314161 -0.0030983218 -0.046086714 -0.016452638 0.017130068 -0.050168626 -0.013145198 0.0072239218 -0.047570165 -0.021218322 -0.0036278151 -0.037706442 -0.024209226 0.019481746 -0.04152751 -0.027282711 0.029951347 -0.045219839 -0.020001834 0.027638707 -0.047138151 -0.015709 0.026234966 -0.050054833 -0.013333191 0.035301138 -0.050610725 -0.0078044608 0.029787214 -0.0278347 0.083401896 0.054323461 -0.022619251 0.087400608 0.062304217 -0.016256412 0.087636299 0.052388635 -0.048155941 -0.034547023 -0.024399903 -0.05249989 -0.03035433 -0.027691992 -0.050756872 -0.038270663 -0.031444672 -0.05490835 -0.015568242 -0.018909073 -0.053450596 -0.015367475 -0.010401455 -0.054914489 -0.0026856093 0.0010827133 -0.053234279 0.0023682693 0.029570783 -0.054253526 0.0079374611 0.041837666 -0.054981153 0.016817382 0.047826152 -0.054842949 0.007123861 0.018675182 -0.053234279 0.0023682693 0.029570783 -0.054981153 0.016817382 0.047826152 -0.048155941 -0.034547023 -0.024399903 -0.041637674 -0.028259659 -0.0095143477 -0.044761743 -0.025296301 -0.0074029979 -0.01836222 -0.035110086 -0.011133529 -0.0064958483 -0.039053533 -0.013075844 0.0021938956 -0.034344226 -0.008859966 -0.037706442 -0.024209226 0.019481746 -0.039746519 -0.022561999 0.015780045 -0.033068173 -0.025387084 0.0092926919 -0.037706442 -0.024209226 0.019481746 -0.033068173 -0.025387084 0.0092926919 -0.024653869 -0.026919942 0.012259628 -0.042062223 -0.035717823 -0.019749241 -0.041637674 -0.028259659 -0.0095143477 -0.048155941 -0.034547023 -0.024399903 -0.054917552 -0.029385593 -0.03593706 -0.05249989 -0.03035433 -0.027691992 -0.05490835 -0.015568242 -0.018909073 -0.011163852 0.078740299 0.10463749 -0.00017702325 0.074954748 0.11054835 -0.0023197161 0.079975203 0.10467631 -0.011163852 0.078740299 0.10463749 -0.011356806 0.070717044 0.11301962 -0.00017702325 0.074954748 0.11054835 -0.05249989 -0.03035433 -0.027691992 -0.048155941 -0.034547023 -0.024399903 -0.044761743 -0.025296301 -0.0074029979 -0.024653869 -0.026919942 0.012259628 -0.021246642 -0.027377427 0.0050211418 -0.0048604053 -0.028435457 0.0090124309 -0.050756872 -0.038270663 -0.031444672 -0.05249989 -0.03035433 -0.027691992 -0.053002197 -0.045810323 -0.040786624 -0.0048604053 -0.028435457 0.0090124309 -0.021246642 -0.027377427 0.0050211418 -0.0039146426 -0.027863204 0.0048806411 -0.044761743 -0.025296301 -0.0074029979 -0.039994463 -0.022991586 0.0081078233 -0.047570165 -0.021218322 -0.0036278151 0.0021928796 -0.030314161 -0.0030983218 0.01196479 -0.028327173 0.0016947511 -0.01548898 -0.028827442 -0.00040722344 -0.048942562 -0.011518436 0.018561652 -0.050610725 -0.0078044608 0.029787214 -0.051769052 -0.0046954942 0.018935431 -0.053002197 -0.045810323 -0.040786624 -0.05249989 -0.03035433 -0.027691992 -0.054917552 -0.029385593 -0.03593706 0.0021928796 -0.030314161 -0.0030983218 -0.01548898 -0.028827442 -0.00040722344 -0.019401276 -0.030740693 -0.0053398255 -0.042062223 -0.035717823 -0.019749241 -0.034475651 -0.037480339 -0.017665308 -0.03670061 -0.032929629 -0.013434534 -0.020960113 0.069972858 0.02698762 -0.019326923 0.074901752 0.031082725 -0.01100547 0.070297323 0.023524888 -0.033068173 -0.025387084 0.0092926919 -0.039994463 -0.022991586 0.0081078233 -0.030997533 -0.026881335 0.0015500945 -0.047570165 -0.021218322 -0.0036278151 -0.039746519 -0.022561999 0.015780045 -0.046086714 -0.016452638 0.017130068 -0.03670061 -0.032929629 -0.013434534 -0.041637674 -0.028259659 -0.0095143477 -0.042062223 -0.035717823 -0.019749241 -0.039994463 -0.022991586 0.0081078233 -0.039746519 -0.022561999 0.015780045 -0.047570165 -0.021218322 -0.0036278151 -0.019401276 -0.030740693 -0.0053398255 -0.01836222 -0.035110086 -0.011133529 0.0021928796 -0.030314161 -0.0030983218 -0.05500247 0.021894604 0.06974113 -0.054864116 0.0022753021 0.06136249 -0.055000182 -0.031743027 0.06750226 -0.033227246 -0.028849384 -0.0053274264 -0.030997533 -0.026881335 0.0015500945 -0.039994463 -0.022991586 0.0081078233 -0.033227246 -0.028849384 -0.0053274264 -0.039994463 -0.022991586 0.0081078233 -0.044761743 -0.025296301 -0.0074029979 -0.054981153 0.016817382 0.047826152 -0.054864116 0.0022753021 0.06136249 -0.05500247 0.021894604 0.06974113 -0.037987433 0.075548999 0.051943313 -0.0278347 0.083401896 0.054323461 -0.028563166 0.08027 0.046817061 -0.047138151 -0.015709 0.026234966 -0.045219839 -0.020001834 0.027638707 -0.050054833 -0.013333191 0.035301138 -0.053450596 -0.015367475 -0.010401455 -0.051186349 -0.02194885 -0.013425677 -0.052101322 -0.0063677803 0.012344321 -0.051769052 -0.0046954942 0.018935431 -0.050610725 -0.0078044608 0.029787214 -0.053234279 0.0023682693 0.029570783 -0.053952765 0.00013956771 0.048531406 -0.054614685 -0.036741372 0.061890319 -0.055000182 -0.031743027 0.06750226 -0.044761743 -0.025296301 -0.0074029979 -0.047570165 -0.021218322 -0.0036278151 -0.051186349 -0.02194885 -0.013425677 0.01196479 -0.028327173 0.0016947511 -0.0039146426 -0.027863204 0.0048806411 -0.01548898 -0.028827442 -0.00040722344 -0.031466968 0.074174777 0.039434575 -0.023182424 0.080571674 0.041659594 -0.019326923 0.074901752 0.031082725 -0.051769052 -0.0046954942 0.018935431 -0.053234279 0.0023682693 0.029570783 -0.052101322 -0.0063677803 0.012344321 -0.055000182 -0.031743027 0.06750226 -0.054864116 0.0022753021 0.06136249 -0.053952765 0.00013956771 0.048531406 -0.037706442 -0.024209226 0.019481746 -0.046086714 -0.016452638 0.017130068 -0.039746519 -0.022561999 0.015780045 -0.028743261 0.084836826 0.06941916 -0.025539313 0.08442805 0.083188273 -0.022621397 0.08685647 0.078399591 -0.0039146426 -0.027863204 0.0048806411 -0.021246642 -0.027377427 0.0050211418 -0.01548898 -0.028827442 -0.00040722344 -0.004031762 -0.076107576 -0.032795019 -0.011366901 -0.075599693 -0.03353361 0.00034358411 -0.081243068 -0.03679581 -0.041353505 0.074655607 0.059320115 -0.037406106 0.077815205 0.05770842 -0.037987433 0.075548999 0.051943313 -0.01111054 -0.089133866 -0.05120606 -0.011395609 -0.091054164 -0.058905799 -0.0032485288 -0.092150658 -0.058975454 -0.033054043 -0.041437857 -0.020605914 -0.039737366 -0.045257334 -0.026442971 -0.034978103 -0.047699392 -0.025606176 0.00034358411 -0.081243068 -0.03679581 -0.011366901 -0.075599693 -0.03353361 -0.0076426356 -0.081515893 -0.037826214 -0.01934284 -0.084906794 -0.047886007 -0.023722325 -0.086174913 -0.055538222 -0.01111054 -0.089133866 -0.05120606 0.00034358411 -0.081243068 -0.03679581 -0.0076426356 -0.081515893 -0.037826214 -0.0019808367 -0.085056879 -0.041186366 -0.01934284 -0.084906794 -0.047886007 -0.029475674 -0.078806981 -0.045681767 -0.023722325 -0.086174913 -0.055538222 -0.01111054 -0.089133866 -0.05120606 -0.018097097 -0.089187458 -0.058790613 -0.011395609 -0.091054164 -0.058905799 -0.011366901 -0.075599693 -0.03353361 -0.016016804 -0.078625232 -0.037489668 -0.0076426356 -0.081515893 -0.037826214 -0.011366901 -0.075599693 -0.03353361 -0.022469027 -0.068993285 -0.031969562 -0.016016804 -0.078625232 -0.037489668 -0.035922464 -0.071585752 -0.041403744 -0.040902916 -0.071784198 -0.048802499 -0.029475674 -0.078806981 -0.045681767 -0.024838705 -0.060294218 -0.027897259 -0.034978103 -0.047699392 -0.025606176 -0.034773216 -0.061708476 -0.03287803 -0.01111054 -0.089133866 -0.05120606 -0.023722325 -0.086174913 -0.055538222 -0.018097097 -0.089187458 -0.058790613 -0.01111054 -0.089133866 -0.05120606 -0.010360983 -0.085334755 -0.043333855 -0.01934284 -0.084906794 -0.047886007 -0.0019808367 -0.085056879 -0.041186366 -0.0076426356 -0.081515893 -0.037826214 -0.010360983 -0.085334755 -0.043333855 -0.023016989 -0.076771423 -0.038763404 -0.022469027 -0.068993285 -0.031969562 -0.033188011 -0.068338186 -0.036309339 -0.016016804 -0.078625232 -0.037489668 -0.01934284 -0.084906794 -0.047886007 -0.010360983 -0.085334755 -0.043333855 -0.029475674 -0.078806981 -0.045681767 -0.040902916 -0.071784198 -0.048802499 -0.035368063 -0.077543847 -0.050678045 -0.001788918 -0.090135217 -0.050365426 -0.0022425472 -0.08842288 -0.046576113 -0.01111054 -0.089133866 -0.05120606 -0.050756872 -0.038270663 -0.031444672 -0.053002197 -0.045810323 -0.040786624 -0.05102516 -0.051598873 -0.041450772 -0.042290036 -0.064339504 -0.040596943 -0.035922464 -0.071585752 -0.041403744 -0.039946645 -0.059968084 -0.035089232 -0.039737366 -0.045257334 -0.026442971 -0.048155941 -0.034547023 -0.024399903 -0.047539279 -0.054328047 -0.038229428 -0.0067252335 0.080322966 0.033346992 0.0037315411 0.084236577 0.038917758 -0.0052366634 0.076115765 0.028008312 -0.042290036 -0.064339504 -0.040596943 -0.047539279 -0.054328047 -0.038229428 -0.05102516 -0.051598873 -0.041450772 -0.035922464 -0.071585752 -0.041403744 -0.042290036 -0.064339504 -0.040596943 -0.040902916 -0.071784198 -0.048802499 -0.042290036 -0.064339504 -0.040596943 -0.045915086 -0.066296525 -0.050402969 -0.040902916 -0.071784198 -0.048802499 -0.045915086 -0.066296525 -0.050402969 -0.042290036 -0.064339504 -0.040596943 -0.05102516 -0.051598873 -0.041450772 -0.028743261 0.084836826 0.06941916 -0.022621397 0.08685647 0.078399591 -0.020350507 0.088617638 0.069333911 -0.05102516 -0.051598873 -0.041450772 -0.05043631 -0.059237957 -0.052763492 -0.045915086 -0.066296525 -0.050402969 -0.023722325 -0.086174913 -0.055538222 -0.028029045 -0.084573925 -0.058336899 -0.018097097 -0.089187458 -0.058790613 -0.022469027 -0.068993285 -0.031969562 -0.023016989 -0.076771423 -0.038763404 -0.016016804 -0.078625232 -0.037489668 -0.024838705 -0.060294218 -0.027897259 -0.033188011 -0.068338186 -0.036309339 -0.022469027 -0.068993285 -0.031969562 -0.034978103 -0.047699392 -0.025606176 -0.039737366 -0.045257334 -0.026442971 -0.034773216 -0.061708476 -0.03287803 0.0021938956 -0.034344226 -0.008859966 -0.0064958483 -0.039053533 -0.013075844 0.0021237019 -0.041235656 -0.014247883 -0.0076426356 -0.081515893 -0.037826214 -0.016016804 -0.078625232 -0.037489668 -0.010360983 -0.085334755 -0.043333855 -0.0064958483 -0.039053533 -0.013075844 -0.0065813917 -0.043553211 -0.015787907 0.0021237019 -0.041235656 -0.014247883 -0.0019808367 -0.085056879 -0.041186366 -0.010360983 -0.085334755 -0.043333855 -0.0022425472 -0.08842288 -0.046576113 -0.039737366 -0.045257334 -0.026442971 -0.039946645 -0.059968084 -0.035089232 -0.034773216 -0.061708476 -0.03287803 -0.05102516 -0.051598873 -0.041450772 -0.053002197 -0.045810323 -0.040786624 -0.05043631 -0.059237957 -0.052763492 -0.0064958483 -0.039053533 -0.013075844 -0.01836222 -0.035110086 -0.011133529 -0.020567508 -0.038677249 -0.014761416 -0.0065813917 -0.043553211 -0.015787907 -0.0051547904 -0.055269297 -0.021077411 0.0021237019 -0.041235656 -0.014247883 -0.053002197 -0.045810323 -0.040786624 -0.054792862 -0.042138331 -0.045640323 -0.053455908 -0.050242048 -0.04934179 -0.024838705 -0.060294218 -0.027897259 -0.034773216 -0.061708476 -0.03287803 -0.033188011 -0.068338186 -0.036309339 -0.028743261 0.084836826 0.06941916 -0.030476702 0.081917666 0.082486019 -0.025539313 0.08442805 0.083188273 -0.053002197 -0.045810323 -0.040786624 -0.053455908 -0.050242048 -0.04934179 -0.05043631 -0.059237957 -0.052763492 -0.0051547904 -0.055269297 -0.021077411 0.00063835696 -0.057870328 -0.022142878 0.0021237019 -0.041235656 -0.014247883 -0.023722325 -0.086174913 -0.055538222 -0.029475674 -0.078806981 -0.045681767 -0.035368063 -0.077543847 -0.050678045 -0.016016804 -0.078625232 -0.037489668 -0.023016989 -0.076771423 -0.038763404 -0.01934284 -0.084906794 -0.047886007 -0.039737366 -0.045257334 -0.026442971 -0.047539279 -0.054328047 -0.038229428 -0.039946645 -0.059968084 -0.035089232 -0.020567508 -0.038677249 -0.014761416 -0.012787079 -0.046385154 -0.018058561 -0.0064958483 -0.039053533 -0.013075844 -0.0065813917 -0.043553211 -0.015787907 -0.0064958483 -0.039053533 -0.013075844 -0.012787079 -0.046385154 -0.018058561 -0.047539279 -0.054328047 -0.038229428 -0.048155941 -0.034547023 -0.024399903 -0.050756872 -0.038270663 -0.031444672 -0.02593503 0.080885187 0.092049375 -0.02670354 0.075821221 0.099800281 -0.019252086 0.082678489 0.094539039 -0.0065813917 -0.043553211 -0.015787907 -0.012787079 -0.046385154 -0.018058561 -0.0051547904 -0.055269297 -0.021077411 -0.01836222 -0.035110086 -0.011133529 -0.034475651 -0.037480339 -0.017665308 -0.020567508 -0.038677249 -0.014761416 -0.023722325 -0.086174913 -0.055538222 -0.035368063 -0.077543847 -0.050678045 -0.028029045 -0.084573925 -0.058336899 -0.02593503 0.080885187 0.092049375 -0.019252086 0.082678489 0.094539039 -0.014951104 0.086531892 0.089029528 -0.020567508 -0.038677249 -0.014761416 -0.033054043 -0.041437857 -0.020605914 -0.012787079 -0.046385154 -0.018058561 -0.0051547904 -0.055269297 -0.021077411 -0.012787079 -0.046385154 -0.018058561 -0.013830297 -0.061474983 -0.025466645 -0.020567508 -0.038677249 -0.014761416 -0.034475651 -0.037480339 -0.017665308 -0.033054043 -0.041437857 -0.020605914 -0.0047876164 0.085326165 0.041078012 -0.0043789879 0.089768209 0.052237485 0.0053140963 0.087446585 0.045760043 0.00063835696 -0.057870328 -0.022142878 -0.0090526026 -0.069066964 -0.02885733 0.00094137952 -0.067336038 -0.027269121 -0.035368063 -0.077543847 -0.050678045 -0.040902916 -0.071784198 -0.048802499 -0.034293439 -0.080251284 -0.057756443 -0.031466968 0.074174777 0.039434575 -0.037987433 0.075548999 0.051943313 -0.028563166 0.08027 0.046817061 0.00063835696 -0.057870328 -0.022142878 -0.0051547904 -0.055269297 -0.021077411 -0.0090526026 -0.069066964 -0.02885733 -0.027340936 0.072577052 0.033590995 -0.031466968 0.074174777 0.039434575 -0.019326923 0.074901752 0.031082725 -0.035368063 -0.077543847 -0.050678045 -0.034293439 -0.080251284 -0.057756443 -0.028029045 -0.084573925 -0.058336899 -0.034773216 -0.061708476 -0.03287803 -0.039946645 -0.059968084 -0.035089232 -0.033188011 -0.068338186 -0.036309339 -0.030355845 0.083562024 0.062343366 -0.022619251 0.087400608 0.062304217 -0.0278347 0.083401896 0.054323461 -0.012787079 -0.046385154 -0.018058561 -0.024838705 -0.060294218 -0.027897259 -0.013830297 -0.061474983 -0.025466645 -0.010360983 -0.085334755 -0.043333855 -0.01111054 -0.089133866 -0.05120606 -0.0022425472 -0.08842288 -0.046576113 -0.01934284 -0.084906794 -0.047886007 -0.023016989 -0.076771423 -0.038763404 -0.029475674 -0.078806981 -0.045681767 -0.040902916 -0.071784198 -0.048802499 -0.045915086 -0.066296525 -0.050402969 -0.043444779 -0.070968986 -0.055415768 -0.012787079 -0.046385154 -0.018058561 -0.033054043 -0.041437857 -0.020605914 -0.024838705 -0.060294218 -0.027897259 -0.0051547904 -0.055269297 -0.021077411 -0.013830297 -0.061474983 -0.025466645 -0.0090526026 -0.069066964 -0.02885733 -0.033188011 -0.068338186 -0.036309339 -0.035922464 -0.071585752 -0.041403744 -0.023016989 -0.076771423 -0.038763404 -0.040902916 -0.071784198 -0.048802499 -0.043444779 -0.070968986 -0.055415768 -0.034293439 -0.080251284 -0.057756443 -0.045915086 -0.066296525 -0.050402969 -0.05043631 -0.059237957 -0.052763492 -0.047234043 -0.065397993 -0.053959128 -0.045915086 -0.066296525 -0.050402969 -0.047234043 -0.065397993 -0.053959128 -0.043444779 -0.070968986 -0.055415768 -0.001788918 -0.090135217 -0.050365426 -0.0032485288 -0.092150658 -0.058975454 0.003883803 -0.091357663 -0.054674432 -0.023016989 -0.076771423 -0.038763404 -0.035922464 -0.071585752 -0.041403744 -0.029475674 -0.078806981 -0.045681767 0.00094137952 -0.067336038 -0.027269121 -0.0090526026 -0.069066964 -0.02885733 -0.004031762 -0.076107576 -0.032795019 -0.033054043 -0.041437857 -0.020605914 -0.034978103 -0.047699392 -0.025606176 -0.024838705 -0.060294218 -0.027897259 -0.033188011 -0.068338186 -0.036309339 -0.039946645 -0.059968084 -0.035089232 -0.035922464 -0.071585752 -0.041403744 -0.0090526026 -0.069066964 -0.02885733 -0.013830297 -0.061474983 -0.025466645 -0.022469027 -0.068993285 -0.031969562 -0.0090526026 -0.069066964 -0.02885733 -0.011366901 -0.075599693 -0.03353361 -0.004031762 -0.076107576 -0.032795019 -0.045939781 0.069534756 0.076130964 -0.043581221 0.070389077 0.08386679 -0.039132129 0.077337928 0.073749214 -0.053002197 -0.045810323 -0.040786624 -0.054917552 -0.029385593 -0.03593706 -0.054792862 -0.042138331 -0.045640323 -0.001788918 -0.090135217 -0.050365426 -0.01111054 -0.089133866 -0.05120606 -0.0032485288 -0.092150658 -0.058975454 -0.050756872 -0.038270663 -0.031444672 -0.05102516 -0.051598873 -0.041450772 -0.047539279 -0.054328047 -0.038229428 -0.039946645 -0.059968084 -0.035089232 -0.047539279 -0.054328047 -0.038229428 -0.042290036 -0.064339504 -0.040596943 -0.031351283 0.077133991 0.092892364 -0.034206394 0.070622712 0.099283174 -0.02670354 0.075821221 0.099800281 -0.034475651 -0.037480339 -0.017665308 -0.039737366 -0.045257334 -0.026442971 -0.033054043 -0.041437857 -0.020605914 -0.036823858 0.079486616 0.066193618 -0.028743261 0.084836826 0.06941916 -0.030355845 0.083562024 0.062343366 -0.0090526026 -0.069066964 -0.02885733 -0.022469027 -0.068993285 -0.031969562 -0.011366901 -0.075599693 -0.03353361 -0.013830297 -0.061474983 -0.025466645 -0.024838705 -0.060294218 -0.027897259 -0.022469027 -0.068993285 -0.031969562 -0.042062223 -0.035717823 -0.019749241 -0.039737366 -0.045257334 -0.026442971 -0.034475651 -0.037480339 -0.017665308 -0.039398741 0.069615006 0.043661609 -0.031466968 0.074174777 0.039434575 -0.035878394 0.069674954 0.038797148 -0.027340936 0.072577052 0.033590995 -0.025408123 0.069851838 0.029488485 -0.031466968 0.074174777 0.039434575 -0.035878394 0.069674954 0.038797148 -0.031466968 0.074174777 0.039434575 -0.025408123 0.069851838 0.029488485 -0.0038189657 0.070706353 0.11429044 -0.011356806 0.070717044 0.11301962 -0.0053570662 0.069266148 0.11482362 -0.018392155 0.069463938 0.11129396 -0.011356806 0.070717044 0.11301962 -0.02655619 0.069559112 0.1067232 -0.020960113 0.069972858 0.02698762 -0.027340936 0.072577052 0.033590995 -0.019326923 0.074901752 0.031082725 -0.02655619 0.069559112 0.1067232 -0.034206394 0.070622712 0.099283174 -0.034673918 0.069607697 0.099521145 -0.039293416 0.069401599 0.093531534 -0.034673918 0.069607697 0.099521145 -0.034206394 0.070622712 0.099283174 -0.0043789879 0.089768209 0.052237485 -0.014080583 0.09020704 0.062727846 -0.0058705159 0.091423206 0.061017476 -0.034206394 0.070622712 0.099283174 -0.043581221 0.070389077 0.08386679 -0.039293416 0.069401599 0.093531534 -0.011356806 0.070717044 0.11301962 -0.018392155 0.069463938 0.11129396 -0.0053570662 0.069266148 0.11482362 -0.0053570662 0.069266148 0.11482362 0.0061016483 0.06941893 0.1146877 -0.0038189657 0.070706353 0.11429044 -0.034293439 -0.080251284 -0.057756443 -0.036472112 -0.078439571 -0.12350114 -0.032431267 -0.081692241 -0.12350108 -0.018293899 -0.089134611 -0.12350104 -0.018097097 -0.089187458 -0.058790613 -0.02781827 -0.084709086 -0.12350106 -0.055000909 -0.03624478 -0.11850332 -0.054754321 -0.031976976 -0.12350106 -0.054684892 -0.043231353 -0.12350066 -0.010692502 0.016742002 -0.1235012 -0.0081803156 0.017176088 -0.10666244 -0.0044998694 0.01759436 -0.12350117 -0.023581455 0.012445951 -0.12350127 -0.019296834 0.014330322 -0.10502686 -0.010692502 0.016742002 -0.1235012 -0.030661836 0.0086975321 -0.096889317 -0.023581455 0.012445951 -0.12350127 -0.028419113 0.0098413965 -0.12350126 -0.035219885 0.0051626619 -0.10128423 -0.028419113 0.0098413965 -0.12350126 -0.037086446 0.0033452665 -0.12350133 -0.054684892 -0.043231353 -0.12350066 -0.0524868 -0.053768363 -0.12350128 -0.054792862 -0.042138331 -0.045640323 0.044858914 -0.036741469 0.036665164 0.030725492 -0.036741331 0.022865202 0.039661508 -0.036741447 0.030383131 -0.020713169 0.077467322 0.10193985 -0.02655619 0.069559112 0.1067232 -0.011356806 0.070717044 0.11301962 0.0050053871 -0.036741406 0.013716836 -0.034071125 -0.036739871 0.025313815 -0.022054678 -0.036741402 0.018105362 0.0050053871 -0.036741406 0.013716836 -0.022054678 -0.036741402 0.018105362 -0.0076413979 -0.03674116 0.014020445 -0.054614685 -0.036741372 0.061890319 -0.051159553 -0.036741365 0.048273358 0.0050053871 -0.036741406 0.013716836 -0.053069916 -0.036741186 0.054016761 -0.051159553 -0.036741365 0.048273358 -0.054614685 -0.036741372 0.061890319 -0.035492573 -0.036741275 0.11055268 -0.054614685 -0.036741372 0.061890319 -0.031367533 -0.036741264 0.1136967 -0.031367533 -0.036741264 0.1136967 -0.054614685 -0.036741372 0.061890319 -0.024203764 -0.03674126 0.11791744 -0.024203764 -0.03674126 0.11791744 -0.054614685 -0.036741372 0.061890319 -0.018832885 -0.036741268 0.12020209 -0.018832885 -0.036741268 0.12020209 -0.054614685 -0.036741372 0.061890319 0.0050053871 -0.036741406 0.013716836 -0.048354022 -0.036741313 0.094777487 -0.054614685 -0.036741372 0.061890319 -0.043076422 -0.036741298 0.10276454 -0.043076422 -0.036741298 0.10276454 -0.054614685 -0.036741372 0.061890319 -0.039234664 -0.036741287 0.10706834 -0.039234664 -0.036741287 0.10706834 -0.054614685 -0.036741372 0.061890319 -0.035492573 -0.036741275 0.11055268 -0.010221933 0.090606064 0.077510178 -0.0058261445 0.090287253 0.082258485 -0.00075025205 0.092150658 0.069858097 -0.054634079 -0.03674135 0.075096563 -0.054614685 -0.036741372 0.061890319 -0.052638788 -0.036741327 0.084593497 -0.052638788 -0.036741327 0.084593497 -0.054614685 -0.036741372 0.061890319 -0.050643176 -0.03674132 0.090004988 -0.050643176 -0.03674132 0.090004988 -0.054614685 -0.036741372 0.061890319 -0.048354022 -0.036741313 0.094777487 0.051245026 -0.036741357 0.048524797 0.0050053871 -0.036741406 0.013716836 0.044858914 -0.036741469 0.036665164 0.053723648 -0.036741037 0.056730349 0.0050053871 -0.036741406 0.013716836 0.051245026 -0.036741357 0.048524797 0.05499588 -0.036741395 0.068905555 0.0050053871 -0.036741406 0.013716836 0.053723648 -0.036741037 0.056730349 -0.02593503 0.080885187 0.092049375 -0.031351283 0.077133991 0.092892364 -0.02670354 0.075821221 0.099800281 -0.018832885 -0.036741268 0.12020209 0.0050053871 -0.036741406 0.013716836 -0.010425359 -0.036741246 0.12252794 -0.0041792784 0.087744772 0.090744592 -0.0023197161 0.079975203 0.10467631 0.002974171 0.081464827 0.1025695 -0.010425359 -0.036741246 0.12252794 0.0050053871 -0.036741406 0.013716836 0.0020225972 -0.036741257 0.12347481 -0.020713169 0.077467322 0.10193985 -0.011356806 0.070717044 0.11301962 -0.011163852 0.078740299 0.10463749 0.0020225972 -0.036741257 0.12347481 0.0050053871 -0.036741406 0.013716836 0.0073226951 -0.03674126 0.12303531 0.0073226951 -0.03674126 0.12303531 0.0050053871 -0.036741406 0.013716836 0.012502428 -0.036741246 0.1220708 0.012502428 -0.036741246 0.1220708 0.0050053871 -0.036741406 0.013716836 0.024218911 -0.036741272 0.11790197 -0.027340936 0.072577052 0.033590995 -0.020960113 0.069972858 0.02698762 -0.025408123 0.069851838 0.029488485 0.024218911 -0.036741272 0.11790197 0.0050053871 -0.036741406 0.013716836 0.028796675 -0.036741275 0.11537038 0.028796675 -0.036741275 0.11537038 0.0050053871 -0.036741406 0.013716836 0.033176344 -0.036741272 0.1123911 0.033176344 -0.036741272 0.1123911 0.0050053871 -0.036741406 0.013716836 0.037679486 -0.036741294 0.10859061 0.037679486 -0.036741294 0.10859061 0.0050053871 -0.036741406 0.013716836 0.041681759 -0.036741298 0.10440904 0.041681759 -0.036741298 0.10440904 0.0050053871 -0.036741406 0.013716836 0.048672024 -0.03674132 0.094129488 0.048672024 -0.03674132 0.094129488 0.0050053871 -0.036741406 0.013716836 0.051672779 -0.036741327 0.087356515 0.051672779 -0.036741327 0.087356515 0.0050053871 -0.036741406 0.013716836 0.053258404 -0.036741346 0.082306609 0.053258404 -0.036741346 0.082306609 0.0050053871 -0.036741406 0.013716836 0.054774772 -0.036741368 0.073645435 0.054774772 -0.036741368 0.073645435 0.0050053871 -0.036741406 0.013716836 0.05499588 -0.036741395 0.068905555 0.044858914 -0.036741469 0.036665164 0.0050053871 -0.036741406 0.013716836 0.030725492 -0.036741331 0.022865202 0.05499588 -0.036741395 0.068905555 0.053723648 -0.036741037 0.056730349 0.054646801 -0.036741346 0.062297665 0.030725492 -0.036741331 0.022865202 0.0050053871 -0.036741406 0.013716836 0.017936416 -0.036741417 0.016502298 -0.042345863 -0.03674132 0.033379018 -0.034071125 -0.036739871 0.025313815 -0.051159553 -0.036741365 0.048273358 -0.051159553 -0.036741365 0.048273358 -0.034071125 -0.036739871 0.025313815 0.0050053871 -0.036741406 0.013716836 -0.053875525 -0.026168501 -0.12350134 -0.052318182 -0.020282315 -0.12350138 -0.054684892 -0.043231353 -0.12350066 -0.032431267 -0.081692241 -0.12350108 -0.054684892 -0.043231353 -0.12350066 -0.02781827 -0.084709086 -0.12350106 -0.036472112 -0.078439571 -0.12350114 -0.054684892 -0.043231353 -0.12350066 -0.032431267 -0.081692241 -0.12350108 -0.043160133 0.069666691 0.051094495 -0.045408528 0.069453403 0.058105476 -0.041353505 0.074655607 0.059320115 -0.039919272 -0.07510113 -0.12350119 -0.054684892 -0.043231353 -0.12350066 -0.036472112 -0.078439571 -0.12350114 -0.0524868 -0.053768363 -0.12350128 -0.054684892 -0.043231353 -0.12350066 -0.050567128 -0.058946647 -0.12350124 -0.024387117 0.072720617 0.10537813 -0.02655619 0.069559112 0.1067232 -0.020713169 0.077467322 0.10193985 -0.054754321 -0.031976976 -0.12350106 -0.053875525 -0.026168501 -0.12350134 -0.054684892 -0.043231353 -0.12350066 -0.054684892 -0.043231353 -0.12350066 -0.010692502 0.016742002 -0.1235012 -0.0044998694 0.01759436 -0.12350117 -0.054684892 -0.043231353 -0.12350066 -0.0044998694 0.01759436 -0.12350117 0.0053418037 0.01751454 -0.12350111 -0.044965774 -0.068953089 -0.12350125 -0.054684892 -0.043231353 -0.12350066 -0.039919272 -0.07510113 -0.12350119 -0.048008543 -0.064123847 -0.12350124 -0.054684892 -0.043231353 -0.12350066 -0.044965774 -0.068953089 -0.12350125 0.019891972 0.014025986 -0.12350101 -0.054684892 -0.043231353 -0.12350066 0.0053418037 0.01751454 -0.12350111 0.028493598 0.0097733941 -0.12350094 -0.054684892 -0.043231353 -0.12350066 0.019891972 0.014025986 -0.12350101 -0.050567128 -0.058946647 -0.12350124 -0.054684892 -0.043231353 -0.12350066 -0.048008543 -0.064123847 -0.12350124 0.054791424 -0.03234135 -0.12350069 -0.054684892 -0.043231353 -0.12350066 0.051100004 -0.016879968 -0.12350078 -0.043572184 0.073402248 0.068844989 -0.039132129 0.077337928 0.073749214 -0.036823858 0.079486616 0.066193618 0.035802163 0.0044825128 -0.12350089 -0.054684892 -0.043231353 -0.12350066 0.028493598 0.0097733941 -0.12350094 0.04464177 -0.0051464997 -0.12350083 -0.054684892 -0.043231353 -0.12350066 0.035802163 0.0044825128 -0.12350089 -0.0041792784 0.087744772 0.090744592 -0.011163852 0.078740299 0.10463749 -0.0023197161 0.079975203 0.10467631 0.04803488 -0.010451903 -0.12350078 -0.054684892 -0.043231353 -0.12350066 0.04464177 -0.0051464997 -0.12350083 -0.043160133 0.069666691 0.051094495 -0.041353505 0.074655607 0.059320115 -0.037987433 0.075548999 0.051943313 0.051100004 -0.016879968 -0.12350078 -0.054684892 -0.043231353 -0.12350066 0.04803488 -0.010451903 -0.12350078 0.054941311 -0.039907563 -0.12350063 -0.054684892 -0.043231353 -0.12350066 0.054791424 -0.03234135 -0.12350069 0.054475628 -0.044898983 -0.1235007 -0.054684892 -0.043231353 -0.12350066 0.054941311 -0.039907563 -0.12350063 0.052895561 -0.052341152 -0.12350069 -0.054684892 -0.043231353 -0.12350066 0.054475628 -0.044898983 -0.1235007 0.049555037 -0.061098393 -0.12350065 -0.054684892 -0.043231353 -0.12350066 0.052895561 -0.052341152 -0.12350069 0.045513112 -0.06812001 -0.12350068 -0.054684892 -0.043231353 -0.12350066 0.049555037 -0.061098393 -0.12350065 0.038939435 -0.07610964 -0.12350072 -0.054684892 -0.043231353 -0.12350066 0.045513112 -0.06812001 -0.12350068 0.035322484 -0.079409592 -0.12350073 -0.054684892 -0.043231353 -0.12350066 0.038939435 -0.07610964 -0.12350072 0.031460728 -0.082376644 -0.12350073 -0.054684892 -0.043231353 -0.12350066 0.035322484 -0.079409592 -0.12350073 -0.020350507 0.088617638 0.069333911 -0.013217018 0.090687558 0.069816954 -0.014080583 0.09020704 0.062727846 0.025975512 -0.085760564 -0.12350072 -0.054684892 -0.043231353 -0.12350066 0.031460728 -0.082376644 -0.12350073 -0.054684892 -0.043231353 -0.12350066 -0.040535245 -8.9271918e-05 -0.12350135 -0.037086446 0.0033452665 -0.12350133 -0.047262929 -0.0091268942 -0.12350136 -0.040535245 -8.9271918e-05 -0.12350135 -0.054684892 -0.043231353 -0.12350066 0.019627193 -0.088657193 -0.12350079 -0.054684892 -0.043231353 -0.12350066 0.025975512 -0.085760564 -0.12350072 0.009633976 -0.091396376 -0.12350085 -0.054684892 -0.043231353 -0.12350066 0.019627193 -0.088657193 -0.12350079 0.0052132783 -0.092016742 -0.12350086 -0.054684892 -0.043231353 -0.12350066 0.009633976 -0.091396376 -0.12350085 -0.0035965443 -0.092147343 -0.1235009 -0.054684892 -0.043231353 -0.12350066 0.0052132783 -0.092016742 -0.12350086 -0.054684892 -0.043231353 -0.12350066 -0.037086446 0.0033452665 -0.12350133 -0.028419113 0.0098413965 -0.12350126 -0.013340381 -0.090619184 -0.12350097 -0.054684892 -0.043231353 -0.12350066 -0.0035965443 -0.092147343 -0.1235009 -0.018293899 -0.089134611 -0.12350104 -0.054684892 -0.043231353 -0.12350066 -0.013340381 -0.090619184 -0.12350097 -0.011792364 0.087673709 0.048972629 -0.0043789879 0.089768209 0.052237485 -0.0047876164 0.085326165 0.041078012 -0.02781827 -0.084709086 -0.12350106 -0.054684892 -0.043231353 -0.12350066 -0.018293899 -0.089134611 -0.12350104 -0.054684892 -0.043231353 -0.12350066 -0.028419113 0.0098413965 -0.12350126 -0.023581455 0.012445951 -0.12350127 -0.050140474 -0.014595838 -0.12350137 -0.047262929 -0.0091268942 -0.12350136 -0.054684892 -0.043231353 -0.12350066 -0.052318182 -0.020282315 -0.12350138 -0.050140474 -0.014595838 -0.12350137 -0.054684892 -0.043231353 -0.12350066 -0.022621397 0.08685647 0.078399591 -0.014951104 0.086531892 0.089029528 -0.010221933 0.090606064 0.077510178 -0.054684892 -0.043231353 -0.12350066 -0.023581455 0.012445951 -0.12350127 -0.010692502 0.016742002 -0.1235012 0.051100004 -0.016879968 -0.12350078 0.053896297 -0.026042076 -0.08958102 0.054791424 -0.03234135 -0.12350069 0.019627193 -0.088657193 -0.12350079 0.016448889 -0.089734212 -0.058838025 0.009633976 -0.091396376 -0.12350085 0.035802163 0.0044825128 -0.12350089 0.041084372 -0.00053518749 -0.10271829 0.04464177 -0.0051464997 -0.12350083 0.019596536 0.014240609 -0.10294855 0.027556784 0.010477243 -0.10242517 0.028493598 0.0097733941 -0.12350094 0.019891972 0.014025986 -0.12350101 0.019596536 0.014240609 -0.10294855 0.028493598 0.0097733941 -0.12350094 0.0083411876 0.017175257 -0.10416365 0.019596536 0.014240609 -0.10294855 0.019891972 0.014025986 -0.12350101 -0.043160133 0.069666691 0.051094495 -0.037987433 0.075548999 0.051943313 -0.039398741 0.069615006 0.043661609 0.0053418037 0.01751454 -0.12350111 0.0083411876 0.017175257 -0.10416365 0.019891972 0.014025986 -0.12350101 -2.684842e-05 0.017982144 -0.096826449 0.0083411876 0.017175257 -0.10416365 0.0053418037 0.01751454 -0.12350111 0.051046688 -0.057717275 -0.052235063 0.049555037 -0.061098393 -0.12350065 0.052895561 -0.052341152 -0.12350069 0.020252982 0.069454722 0.11043917 0.027853556 0.069440715 0.10581902 0.023181634 0.073000707 0.10583901 0.023181634 0.073000707 0.10583901 0.027853556 0.069440715 0.10581902 0.031010548 0.069511011 0.10320807 0.023181634 0.073000707 0.10583901 0.031010548 0.069511011 0.10320807 0.029984834 0.073791996 0.099589236 0.029984834 0.073791996 0.099589236 0.031010548 0.069511011 0.10320807 0.037235714 0.069526196 0.096422888 -0.0038189657 0.070706353 0.11429044 0.0061016483 0.06941893 0.1146877 0.003814196 0.070736833 0.11426801 0.040317472 0.075169154 0.079623587 0.045340531 0.069538653 0.079075567 0.045926604 0.070521146 0.072434954 0.041418809 0.069629185 0.089688331 0.043832846 0.069614768 0.084113404 0.045340531 0.069538653 0.079075567 0.041418809 0.069629185 0.089688331 0.045340531 0.069538653 0.079075567 0.040317472 0.075169154 0.079623587 0.003814196 0.070736833 0.11426801 0.0061016483 0.06941893 0.1146877 0.013965345 0.070718028 0.11226139 -0.025539313 0.08442805 0.083188273 -0.02593503 0.080885187 0.092049375 -0.014951104 0.086531892 0.089029528 0.014794017 -0.041985143 -0.015953705 0.0021237019 -0.041235656 -0.014247883 0.010944086 -0.057865333 -0.023121702 0.016448889 -0.089734212 -0.058838025 0.013436192 -0.089339502 -0.05355208 0.01314924 -0.090649143 -0.0588823 -0.039398741 0.069615006 0.043661609 -0.037987433 0.075548999 0.051943313 -0.031466968 0.074174777 0.039434575 0.029484643 -0.072887272 -0.038189325 0.020386465 -0.070487037 -0.032291118 0.01462854 -0.082700469 -0.041516092 0.051803552 -0.039066881 -0.0338558 0.04489198 -0.035926819 -0.022277648 0.047842097 -0.050315648 -0.03574108 0.02970917 -0.068786889 -0.034797426 0.020386465 -0.070487037 -0.032291118 0.029484643 -0.072887272 -0.038189325 0.037303612 -0.060074531 -0.033406287 0.027144013 -0.063669033 -0.030476043 0.02970917 -0.068786889 -0.034797426 0.01462854 -0.082700469 -0.041516092 0.0046837856 -0.08432769 -0.040523347 0.0092269368 -0.085722201 -0.04352621 -0.043572184 0.073402248 0.068844989 -0.046520889 0.069661044 0.068822503 -0.045939781 0.069534756 0.076130964 0.023723086 -0.084310599 -0.050612539 0.013436192 -0.089339502 -0.05355208 0.016448889 -0.089734212 -0.058838025 0.016231297 -0.033340011 -0.0088096065 0.014794017 -0.041985143 -0.015953705 0.023149895 -0.040714011 -0.016933557 0.023242552 -0.047522232 -0.021180222 0.014794017 -0.041985143 -0.015953705 0.010944086 -0.057865333 -0.023121702 0.0092269368 -0.085722201 -0.04352621 0.0046837856 -0.08432769 -0.040523347 0.0031172708 -0.089024365 -0.047922023 -0.001788918 -0.090135217 -0.050365426 0.0031172708 -0.089024365 -0.047922023 -0.0022425472 -0.08842288 -0.046576113 0.055002462 -0.037300285 -0.043222848 0.053844616 -0.043353904 -0.041398402 0.054308861 -0.045988563 -0.047505323 0.010944086 -0.057865333 -0.023121702 0.0021237019 -0.041235656 -0.014247883 0.00063835696 -0.057870328 -0.022142878 0.030840155 -0.076848902 -0.043851886 0.029484643 -0.072887272 -0.038189325 0.01462854 -0.082700469 -0.041516092 -0.011161499 0.085052297 0.094539464 -0.011163852 0.078740299 0.10463749 -0.0041792784 0.087744772 0.090744592 0.032994807 -0.035589859 -0.015208609 0.016231297 -0.033340011 -0.0088096065 0.023149895 -0.040714011 -0.016933557 0.010944086 -0.057865333 -0.023121702 0.00063835696 -0.057870328 -0.022142878 0.0078551415 -0.06802655 -0.02810031 0.023149895 -0.040714011 -0.016933557 0.014794017 -0.041985143 -0.015953705 0.023242552 -0.047522232 -0.021180222 0.044255536 -0.068381131 -0.050009474 0.047189135 -0.061371498 -0.044909578 0.039517079 -0.06788782 -0.04107213 0.017313818 -0.084476702 -0.045677118 0.01462854 -0.082700469 -0.041516092 0.0092269368 -0.085722201 -0.04352621 -0.023182424 0.080571674 0.041659594 -0.016256412 0.087636299 0.052388635 -0.01211811 0.083986856 0.040773451 0.0031172708 -0.089024365 -0.047922023 -0.001788918 -0.090135217 -0.050365426 0.003883803 -0.091357663 -0.054674432 0.00063835696 -0.057870328 -0.022142878 0.00094137952 -0.067336038 -0.027269121 0.0078551415 -0.06802655 -0.02810031 0.053844616 -0.043353904 -0.041398402 0.050023537 -0.051402189 -0.039375816 0.051046688 -0.057717275 -0.052235063 0.02033164 -0.059999403 -0.026345909 0.010944086 -0.057865333 -0.023121702 0.0078551415 -0.06802655 -0.02810031 0.0092269368 -0.085722201 -0.04352621 0.0031172708 -0.089024365 -0.047922023 0.013436192 -0.089339502 -0.05355208 0.044255536 -0.068381131 -0.050009474 0.039517079 -0.06788782 -0.04107213 0.039214268 -0.073024102 -0.047891904 0.032994807 -0.035589859 -0.015208609 0.023149895 -0.040714011 -0.016933557 0.039982453 -0.03868765 -0.021434294 0.023242552 -0.047522232 -0.021180222 0.010944086 -0.057865333 -0.023121702 0.02033164 -0.059999403 -0.026345909 0.051046688 -0.057717275 -0.052235063 0.050023537 -0.051402189 -0.039375816 0.049661193 -0.060887758 -0.053263675 0.024107495 -0.086675115 -0.058569722 0.023723086 -0.084310599 -0.050612539 0.016448889 -0.089734212 -0.058838025 0.054308861 -0.045988563 -0.047505323 0.053844616 -0.043353904 -0.041398402 0.051046688 -0.057717275 -0.052235063 0.037303612 -0.060074531 -0.033406287 0.02970917 -0.068786889 -0.034797426 0.039517079 -0.06788782 -0.04107213 0.0078551415 -0.06802655 -0.02810031 0.00094137952 -0.067336038 -0.027269121 0.0079981377 -0.073859051 -0.031717777 0.023149895 -0.040714011 -0.016933557 0.023242552 -0.047522232 -0.021180222 0.033483714 -0.049063385 -0.025719363 0.030840155 -0.076848902 -0.043851886 0.01462854 -0.082700469 -0.041516092 0.017313818 -0.084476702 -0.045677118 -0.0278347 0.083401896 0.054323461 -0.016256412 0.087636299 0.052388635 -0.023182424 0.080571674 0.041659594 0.02033164 -0.059999403 -0.026345909 0.0078551415 -0.06802655 -0.02810031 0.016090738 -0.068637386 -0.029903 0.039517079 -0.06788782 -0.04107213 0.02970917 -0.068786889 -0.034797426 0.029484643 -0.072887272 -0.038189325 -0.045939781 0.069534756 0.076130964 -0.039132129 0.077337928 0.073749214 -0.043572184 0.073402248 0.068844989 0.049661193 -0.060887758 -0.053263675 0.047189135 -0.061371498 -0.044909578 0.044255536 -0.068381131 -0.050009474 0.0079981377 -0.073859051 -0.031717777 0.00094137952 -0.067336038 -0.027269121 -0.004031762 -0.076107576 -0.032795019 0.017313818 -0.084476702 -0.045677118 0.0092269368 -0.085722201 -0.04352621 0.013436192 -0.089339502 -0.05355208 0.039214268 -0.073024102 -0.047891904 0.032330249 -0.078930669 -0.049023423 0.034976371 -0.078759797 -0.053274635 -0.037406106 0.077815205 0.05770842 -0.036823858 0.079486616 0.066193618 -0.030355845 0.083562024 0.062343366 0.033483714 -0.049063385 -0.025719363 0.039982453 -0.03868765 -0.021434294 0.023149895 -0.040714011 -0.016933557 0.016090738 -0.068637386 -0.029903 0.0078551415 -0.06802655 -0.02810031 0.0079981377 -0.073859051 -0.031717777 0.00034358411 -0.081243068 -0.03679581 0.0079981377 -0.073859051 -0.031717777 -0.004031762 -0.076107576 -0.032795019 0.051238734 -0.031049203 -0.025674473 0.051803552 -0.039066881 -0.0338558 0.053844616 -0.043353904 -0.041398402 0.033483714 -0.049063385 -0.025719363 0.023242552 -0.047522232 -0.021180222 0.02033164 -0.059999403 -0.026345909 0.038138408 -0.076873198 -0.05716126 0.039214268 -0.073024102 -0.047891904 0.034976371 -0.078759797 -0.053274635 -0.013217018 0.090687558 0.069816954 -0.010221933 0.090606064 0.077510178 -0.00075025205 0.092150658 0.069858097 0.013436192 -0.089339502 -0.05355208 0.0031172708 -0.089024365 -0.047922023 0.003883803 -0.091357663 -0.054674432 0.049661193 -0.060887758 -0.053263675 0.044255536 -0.068381131 -0.050009474 0.046730187 -0.066239841 -0.054839749 0.051803552 -0.039066881 -0.0338558 0.047842097 -0.050315648 -0.03574108 0.050023537 -0.051402189 -0.039375816 0.0079981377 -0.073859051 -0.031717777 0.00034358411 -0.081243068 -0.03679581 0.0063182916 -0.07958851 -0.035771545 0.038138408 -0.076873198 -0.05716126 0.034976371 -0.078759797 -0.053274635 0.028366707 -0.084366225 -0.058307052 0.050023537 -0.051402189 -0.039375816 0.047842097 -0.050315648 -0.03574108 0.043065768 -0.062449843 -0.039751399 0.044255536 -0.068381131 -0.050009474 0.039214268 -0.073024102 -0.047891904 0.038138408 -0.076873198 -0.05716126 0.039517079 -0.06788782 -0.04107213 0.029484643 -0.072887272 -0.038189325 0.030840155 -0.076848902 -0.043851886 0.02033164 -0.059999403 -0.026345909 0.016090738 -0.068637386 -0.029903 0.020386465 -0.070487037 -0.032291118 0.0064533832 -0.091869138 -0.058936771 0.003883803 -0.091357663 -0.054674432 -0.0032485288 -0.092150658 -0.058975454 0.053844616 -0.043353904 -0.041398402 0.051803552 -0.039066881 -0.0338558 0.050023537 -0.051402189 -0.039375816 0.046730187 -0.066239841 -0.054839749 0.044255536 -0.068381131 -0.050009474 0.043481447 -0.070897788 -0.055373177 0.043481447 -0.070897788 -0.055373177 0.044255536 -0.068381131 -0.050009474 0.038138408 -0.076873198 -0.05716126 0.0063182916 -0.07958851 -0.035771545 0.00034358411 -0.081243068 -0.03679581 0.0046837856 -0.08432769 -0.040523347 0.0046837856 -0.08432769 -0.040523347 0.00034358411 -0.081243068 -0.03679581 -0.0019808367 -0.085056879 -0.041186366 0.043065768 -0.062449843 -0.039751399 0.037303612 -0.060074531 -0.033406287 0.039517079 -0.06788782 -0.04107213 0.033483714 -0.049063385 -0.025719363 0.02033164 -0.059999403 -0.026345909 0.027144013 -0.063669033 -0.030476043 0.016090738 -0.068637386 -0.029903 0.0079981377 -0.073859051 -0.031717777 0.020386465 -0.070487037 -0.032291118 0.043133531 -0.044994373 -0.028425992 0.039982453 -0.03868765 -0.021434294 0.033483714 -0.049063385 -0.025719363 0.04489198 -0.035926819 -0.022277648 0.039982453 -0.03868765 -0.021434294 0.043133531 -0.044994373 -0.028425992 0.020386465 -0.070487037 -0.032291118 0.0079981377 -0.073859051 -0.031717777 0.0063182916 -0.07958851 -0.035771545 -0.039132129 0.077337928 0.073749214 -0.030476702 0.081917666 0.082486019 -0.028743261 0.084836826 0.06941916 0.013436192 -0.089339502 -0.05355208 0.003883803 -0.091357663 -0.054674432 0.01314924 -0.090649143 -0.0588823 0.027144013 -0.063669033 -0.030476043 0.02033164 -0.059999403 -0.026345909 0.020386465 -0.070487037 -0.032291118 0.043133531 -0.044994373 -0.028425992 0.033483714 -0.049063385 -0.025719363 0.037303612 -0.060074531 -0.033406287 0.030840155 -0.076848902 -0.043851886 0.017313818 -0.084476702 -0.045677118 0.023723086 -0.084310599 -0.050612539 0.039214268 -0.073024102 -0.047891904 0.039517079 -0.06788782 -0.04107213 0.030840155 -0.076848902 -0.043851886 0.01314924 -0.090649143 -0.0588823 0.003883803 -0.091357663 -0.054674432 0.0064533832 -0.091869138 -0.058936771 0.020386465 -0.070487037 -0.032291118 0.0063182916 -0.07958851 -0.035771545 0.01462854 -0.082700469 -0.041516092 -0.022621397 0.08685647 0.078399591 -0.025539313 0.08442805 0.083188273 -0.014951104 0.086531892 0.089029528 -0.022619251 0.087400608 0.062304217 -0.020350507 0.088617638 0.069333911 -0.014080583 0.09020704 0.062727846 0.01462854 -0.082700469 -0.041516092 0.0063182916 -0.07958851 -0.035771545 0.0046837856 -0.08432769 -0.040523347 0.033483714 -0.049063385 -0.025719363 0.027144013 -0.063669033 -0.030476043 0.037303612 -0.060074531 -0.033406287 0.02970917 -0.068786889 -0.034797426 0.027144013 -0.063669033 -0.030476043 0.020386465 -0.070487037 -0.032291118 0.043133531 -0.044994373 -0.028425992 0.037303612 -0.060074531 -0.033406287 0.047842097 -0.050315648 -0.03574108 0.047842097 -0.050315648 -0.03574108 0.037303612 -0.060074531 -0.033406287 0.043065768 -0.062449843 -0.039751399 0.050023537 -0.051402189 -0.039375816 0.043065768 -0.062449843 -0.039751399 0.047189135 -0.061371498 -0.044909578 0.043065768 -0.062449843 -0.039751399 0.039517079 -0.06788782 -0.04107213 0.047189135 -0.061371498 -0.044909578 0.023723086 -0.084310599 -0.050612539 0.032330249 -0.078930669 -0.049023423 0.030840155 -0.076848902 -0.043851886 0.050023537 -0.051402189 -0.039375816 0.047189135 -0.061371498 -0.044909578 0.049661193 -0.060887758 -0.053263675 0.034976371 -0.078759797 -0.053274635 0.032330249 -0.078930669 -0.049023423 0.023723086 -0.084310599 -0.050612539 0.024107495 -0.086675115 -0.058569722 0.034976371 -0.078759797 -0.053274635 0.023723086 -0.084310599 -0.050612539 0.028366707 -0.084366225 -0.058307052 0.034976371 -0.078759797 -0.053274635 0.024107495 -0.086675115 -0.058569722 0.0046837856 -0.08432769 -0.040523347 -0.0019808367 -0.085056879 -0.041186366 -0.0022425472 -0.08842288 -0.046576113 0.039214268 -0.073024102 -0.047891904 0.030840155 -0.076848902 -0.043851886 0.032330249 -0.078930669 -0.049023423 0.04489198 -0.035926819 -0.022277648 0.043133531 -0.044994373 -0.028425992 0.047842097 -0.050315648 -0.03574108 0.014794017 -0.041985143 -0.015953705 0.0021938956 -0.034344226 -0.008859966 0.0021237019 -0.041235656 -0.014247883 0.0046837856 -0.08432769 -0.040523347 -0.0022425472 -0.08842288 -0.046576113 0.0031172708 -0.089024365 -0.047922023 0.023723086 -0.084310599 -0.050612539 0.017313818 -0.084476702 -0.045677118 0.013436192 -0.089339502 -0.05355208 0.029573897 -0.026615327 0.00410017 0.01196479 -0.028327173 0.0016947511 0.02736219 -0.028858794 -0.0030828835 0.0021928796 -0.030314161 -0.0030983218 0.0021938956 -0.034344226 -0.008859966 0.016231297 -0.033340011 -0.0088096065 0.035672478 -0.031277753 -0.010702924 0.02333078 -0.031781167 -0.0077851717 0.032994807 -0.035589859 -0.015208609 0.02736219 -0.028858794 -0.0030828835 0.016231297 -0.033340011 -0.0088096065 0.02333078 -0.031781167 -0.0077851717 0.042012442 -0.022390671 0.005327615 0.046584796 -0.019631634 0.002868617 0.04424911 -0.019379549 0.011751631 0.052155983 -0.0077751111 0.0091896672 0.052790496 -0.019566644 -0.014596729 0.054900844 -0.012266626 -0.01425323 0.052155983 -0.0077751111 0.0091896672 0.051507529 -0.0046969927 0.021700313 0.047976568 -0.014128132 0.014490446 0.042012442 -0.022390671 0.005327615 0.037559744 -0.026153645 -0.0013910094 0.045898706 -0.024113331 -0.0067384536 0.042012442 -0.022390671 0.005327615 0.045898706 -0.024113331 -0.0067384536 0.046584796 -0.019631634 0.002868617 0.043027163 -0.027830569 -0.010052242 0.051005855 -0.021011155 -0.011424636 0.045898706 -0.024113331 -0.0067384536 0.039982453 -0.03868765 -0.021434294 0.04489198 -0.035926819 -0.022277648 0.043027163 -0.027830569 -0.010052242 0.043027163 -0.027830569 -0.010052242 0.04489198 -0.035926819 -0.022277648 0.051005855 -0.021011155 -0.011424636 0.051005855 -0.021011155 -0.011424636 0.04489198 -0.035926819 -0.022277648 0.051238734 -0.031049203 -0.025674473 0.051005855 -0.021011155 -0.011424636 0.051238734 -0.031049203 -0.025674473 0.052790496 -0.019566644 -0.014596729 0.048894007 -0.015597889 0.0062766369 0.046584796 -0.019631634 0.002868617 0.052790496 -0.019566644 -0.014596729 0.045898706 -0.024113331 -0.0067384536 0.037559744 -0.026153645 -0.0013910094 0.043027163 -0.027830569 -0.010052242 0.052155983 -0.0077751111 0.0091896672 0.048894007 -0.015597889 0.0062766369 0.052790496 -0.019566644 -0.014596729 0.054994784 0.021826712 0.069532529 0.054184403 -0.0044431845 0.053536959 0.054978769 0.018391721 0.053588111 0.043027163 -0.027830569 -0.010052242 0.035672478 -0.031277753 -0.010702924 0.039982453 -0.03868765 -0.021434294 0.035672478 -0.031277753 -0.010702924 0.032994807 -0.035589859 -0.015208609 0.039982453 -0.03868765 -0.021434294 0.04489198 -0.035926819 -0.022277648 0.051803552 -0.039066881 -0.0338558 0.051238734 -0.031049203 -0.025674473 0.053844616 -0.043353904 -0.041398402 0.055002462 -0.037300285 -0.043222848 0.051238734 -0.031049203 -0.025674473 0.05499588 -0.036741395 0.068905555 0.054646801 -0.036741346 0.062297665 0.054994784 0.021826712 0.069532529 -0.039132129 0.077337928 0.073749214 -0.037370849 0.075088985 0.087493315 -0.030476702 0.081917666 0.082486019 0.054184403 -0.0044431845 0.053536959 0.054994784 0.021826712 0.069532529 0.054646801 -0.036741346 0.062297665 0.054646801 -0.036741346 0.062297665 0.053499471 -0.02810223 0.055290099 0.054184403 -0.0044431845 0.053536959 0.051238734 -0.031049203 -0.025674473 0.054900844 -0.012266626 -0.01425323 0.052790496 -0.019566644 -0.014596729 0.054184403 -0.0044431845 0.053536959 0.052454509 -0.006514532 0.041494668 0.052271985 -0.0026115654 0.034319036 0.054184403 -0.0044431845 0.053536959 0.052271985 -0.0026115654 0.034319036 0.054358955 0.0065576243 0.048760127 0.054184403 -0.0044431845 0.053536959 0.054358955 0.0065576243 0.048760127 0.054978769 0.018391721 0.053588111 0.052008435 -0.024219301 0.048723586 0.052454509 -0.006514532 0.041494668 0.053499471 -0.02810223 0.055290099 -0.016256412 0.087636299 0.052388635 -0.014080583 0.09020704 0.062727846 -0.0043789879 0.089768209 0.052237485 0.051238734 -0.031049203 -0.025674473 0.055002462 -0.037300285 -0.043222848 0.054900844 -0.012266626 -0.01425323 0.054978769 0.018391721 0.053588111 0.054358955 0.0065576243 0.048760127 0.05490702 0.010523304 0.029039808 0.048778817 -0.026313951 0.041214071 0.04591212 -0.021878839 0.031790968 0.050403256 -0.013860214 0.037326876 0.050403256 -0.013860214 0.037326876 0.04591212 -0.021878839 0.031790968 0.049341798 -0.011014838 0.02795624 0.016231297 -0.033340011 -0.0088096065 0.02736219 -0.028858794 -0.0030828835 0.0021928796 -0.030314161 -0.0030983218 0.052271985 -0.0026115654 0.034319036 0.05490702 0.010523304 0.029039808 0.054358955 0.0065576243 0.048760127 0.045946497 -0.016523212 0.018594218 0.040852372 -0.025448335 0.027364226 0.040413361 -0.022713279 0.020934099 -0.015536976 0.07897605 0.034333546 -0.023182424 0.080571674 0.041659594 -0.01211811 0.083986856 0.040773451 0.013240674 0.085342586 0.09294644 0.020718802 0.079908773 0.098351449 0.020887939 0.082446493 0.093716346 0.042012442 -0.022390671 0.005327615 0.036647484 -0.024173835 0.011642311 0.03484593 -0.025795698 0.0027222601 0.052271985 -0.0026115654 0.034319036 0.049341798 -0.011014838 0.02795624 0.051507529 -0.0046969927 0.021700313 0.02333078 -0.031781167 -0.0077851717 0.016231297 -0.033340011 -0.0088096065 0.032994807 -0.035589859 -0.015208609 0.040413361 -0.022713279 0.020934099 0.030164391 -0.026241587 0.015422761 0.036647484 -0.024173835 0.011642311 0.052271985 -0.0026115654 0.034319036 0.051507529 -0.0046969927 0.021700313 0.05490702 0.010523304 0.029039808 0.032884255 0.082276218 0.065804042 0.03525437 0.079582646 0.078888953 0.039598059 0.076755337 0.075036496 0.032884255 0.082276218 0.065804042 0.039598059 0.076755337 0.075036496 0.039861478 0.076539814 0.062093679 0.040413361 -0.022713279 0.020934099 0.04424911 -0.019379549 0.011751631 0.045946497 -0.016523212 0.018594218 0.040413361 -0.022713279 0.020934099 0.036647484 -0.024173835 0.011642311 0.04424911 -0.019379549 0.011751631 0.01196479 -0.028327173 0.0016947511 0.021651363 -0.027104851 0.0094932998 -0.0039146426 -0.027863204 0.0048806411 0.027183285 0.085445717 0.063811004 0.032884255 0.082276218 0.065804042 0.034810726 0.079467587 0.056241866 0.01196479 -0.028327173 0.0016947511 0.0021928796 -0.030314161 -0.0030983218 0.02736219 -0.028858794 -0.0030828835 0.021651363 -0.027104851 0.0094932998 0.029573897 -0.026615327 0.00410017 0.030164391 -0.026241587 0.015422761 0.042012442 -0.022390671 0.005327615 0.03484593 -0.025795698 0.0027222601 0.037559744 -0.026153645 -0.0013910094 0.045946497 -0.016523212 0.018594218 0.051507529 -0.0046969927 0.021700313 0.049341798 -0.011014838 0.02795624 0.02736219 -0.028858794 -0.0030828835 0.02333078 -0.031781167 -0.0077851717 0.035672478 -0.031277753 -0.010702924 0.017676054 0.082197182 0.040498741 0.028870765 0.081535086 0.050363615 0.026198624 0.076514669 0.037751924 0.035672478 -0.031277753 -0.010702924 0.037559744 -0.026153645 -0.0013910094 0.02736219 -0.028858794 -0.0030828835 0.048894007 -0.015597889 0.0062766369 0.052155983 -0.0077751111 0.0091896672 0.047976568 -0.014128132 0.014490446 0.037559744 -0.026153645 -0.0013910094 0.035672478 -0.031277753 -0.010702924 0.043027163 -0.027830569 -0.010052242 0.045946497 -0.016523212 0.018594218 0.047976568 -0.014128132 0.014490446 0.051507529 -0.0046969927 0.021700313 0.052155983 -0.0077751111 0.0091896672 0.054900844 -0.012266626 -0.01425323 0.054887719 0.0014475089 0.0088438662 0.053499471 -0.02810223 0.055290099 0.052454509 -0.006514532 0.041494668 0.054184403 -0.0044431845 0.053536959 0.050403256 -0.013860214 0.037326876 0.052008435 -0.024219301 0.048723586 0.048778817 -0.026313951 0.041214071 0.050403256 -0.013860214 0.037326876 0.052454509 -0.006514532 0.041494668 0.052008435 -0.024219301 0.048723586 0.051507529 -0.0046969927 0.021700313 0.054887719 0.0014475089 0.0088438662 0.05490702 0.010523304 0.029039808 0.052271985 -0.0026115654 0.034319036 0.052454509 -0.006514532 0.041494668 0.050403256 -0.013860214 0.037326876 0.049341798 -0.011014838 0.02795624 0.052271985 -0.0026115654 0.034319036 0.050403256 -0.013860214 0.037326876 0.04591212 -0.021878839 0.031790968 0.040852372 -0.025448335 0.027364226 0.049341798 -0.011014838 0.02795624 0.0030945747 0.088300884 0.089489959 -0.0041792784 0.087744772 0.090744592 0.002974171 0.081464827 0.1025695 0.040852372 -0.025448335 0.027364226 0.045946497 -0.016523212 0.018594218 0.049341798 -0.011014838 0.02795624 0.046584796 -0.019631634 0.002868617 0.045898706 -0.024113331 -0.0067384536 0.051005855 -0.021011155 -0.011424636 0.051507529 -0.0046969927 0.021700313 0.052155983 -0.0077751111 0.0091896672 0.054887719 0.0014475089 0.0088438662 0.009672638 0.09056285 0.078310966 0.012608363 0.088532254 0.084734105 0.0161436 0.088887535 0.079596147 -0.0058705159 0.091423206 0.061017476 -0.00075025205 0.092150658 0.069858097 0.0061747716 0.09155634 0.062542059 0.029573897 -0.026615327 0.00410017 0.02736219 -0.028858794 -0.0030828835 0.03484593 -0.025795698 0.0027222601 0.046584796 -0.019631634 0.002868617 0.051005855 -0.021011155 -0.011424636 0.052790496 -0.019566644 -0.014596729 0.047976568 -0.014128132 0.014490446 0.04424911 -0.019379549 0.011751631 0.046584796 -0.019631634 0.002868617 0.046584796 -0.019631634 0.002868617 0.048894007 -0.015597889 0.0062766369 0.047976568 -0.014128132 0.014490446 0.036647484 -0.024173835 0.011642311 0.030164391 -0.026241587 0.015422761 0.029573897 -0.026615327 0.00410017 0.037559744 -0.026153645 -0.0013910094 0.03484593 -0.025795698 0.0027222601 0.02736219 -0.028858794 -0.0030828835 0.01196479 -0.028327173 0.0016947511 0.029573897 -0.026615327 0.00410017 0.021651363 -0.027104851 0.0094932998 0.013965345 0.070718028 0.11226139 0.020252982 0.069454722 0.11043917 0.017889155 0.076044701 0.10529657 0.045946497 -0.016523212 0.018594218 0.04424911 -0.019379549 0.011751631 0.047976568 -0.014128132 0.014490446 0.036647484 -0.024173835 0.011642311 0.042012442 -0.022390671 0.005327615 0.04424911 -0.019379549 0.011751631 0.016231297 -0.033340011 -0.0088096065 0.0021938956 -0.034344226 -0.008859966 0.014794017 -0.041985143 -0.015953705 0.036647484 -0.024173835 0.011642311 0.029573897 -0.026615327 0.00410017 0.03484593 -0.025795698 0.0027222601 0.021893727 -0.028032878 0.014000905 0.017181948 -0.031332526 0.015195599 0.00074596831 -0.031245936 0.01205648 0.020718802 0.079908773 0.098351449 0.023181634 0.073000707 0.10583901 0.029984834 0.073791996 0.099589236 0.00074596831 -0.031245936 0.01205648 -0.0048604053 -0.028435457 0.0090124309 -0.0039146426 -0.027863204 0.0048806411 0.054646801 -0.036741346 0.062297665 0.053723648 -0.036741037 0.056730349 0.053499471 -0.02810223 0.055290099 0.053723648 -0.036741037 0.056730349 0.051245026 -0.036741357 0.048524797 0.053499471 -0.02810223 0.055290099 0.053499471 -0.02810223 0.055290099 0.051245026 -0.036741357 0.048524797 0.052008435 -0.024219301 0.048723586 0.051245026 -0.036741357 0.048524797 0.048778817 -0.026313951 0.041214071 0.052008435 -0.024219301 0.048723586 0.051245026 -0.036741357 0.048524797 0.043296427 -0.030588266 0.033751369 0.048778817 -0.026313951 0.041214071 0.051245026 -0.036741357 0.048524797 0.044858914 -0.036741469 0.036665164 0.043296427 -0.030588266 0.033751369 0.044858914 -0.036741469 0.036665164 0.039661508 -0.036741447 0.030383131 0.043296427 -0.030588266 0.033751369 0.017181948 -0.031332526 0.015195599 0.0050053871 -0.036741406 0.013716836 0.00074596831 -0.031245936 0.01205648 0.040413361 -0.022713279 0.020934099 0.040852372 -0.025448335 0.027364226 0.037100729 -0.028754249 0.025987105 0.043296427 -0.030588266 0.033751369 0.039661508 -0.036741447 0.030383131 0.037100729 -0.028754249 0.025987105 0.030725492 -0.036741331 0.022865202 0.027935194 -0.030640086 0.020031955 0.039661508 -0.036741447 0.030383131 0.04591212 -0.021878839 0.031790968 0.037100729 -0.028754249 0.025987105 0.040852372 -0.025448335 0.027364226 0.037100729 -0.028754249 0.025987105 0.039661508 -0.036741447 0.030383131 0.027935194 -0.030640086 0.020031955 0.026198624 0.076514669 0.037751924 0.034949962 0.072156765 0.04060854 0.029605825 0.07054095 0.033188745 0.021651363 -0.027104851 0.0094932998 0.021893727 -0.028032878 0.014000905 -0.0039146426 -0.027863204 0.0048806411 -0.0039146426 -0.027863204 0.0048806411 0.021893727 -0.028032878 0.014000905 0.00074596831 -0.031245936 0.01205648 0.048778817 -0.026313951 0.041214071 0.043296427 -0.030588266 0.033751369 0.04591212 -0.021878839 0.031790968 0.04591212 -0.021878839 0.031790968 0.043296427 -0.030588266 0.033751369 0.037100729 -0.028754249 0.025987105 0.0044772471 0.089840211 0.05254066 0.0061747716 0.09155634 0.062542059 0.011774678 0.089184813 0.053956881 0.037100729 -0.028754249 0.025987105 0.027935194 -0.030640086 0.020031955 0.021893727 -0.028032878 0.014000905 0.030725492 -0.036741331 0.022865202 0.017181948 -0.031332526 0.015195599 0.027935194 -0.030640086 0.020031955 0.030725492 -0.036741331 0.022865202 0.017936416 -0.036741417 0.016502298 0.017181948 -0.031332526 0.015195599 0.027935194 -0.030640086 0.020031955 0.017181948 -0.031332526 0.015195599 0.021893727 -0.028032878 0.014000905 0.040413361 -0.022713279 0.020934099 0.037100729 -0.028754249 0.025987105 0.021893727 -0.028032878 0.014000905 0.017936416 -0.036741417 0.016502298 0.0050053871 -0.036741406 0.013716836 0.017181948 -0.031332526 0.015195599 0.031907246 0.077450879 0.091515645 0.020718802 0.079908773 0.098351449 0.029984834 0.073791996 0.099589236 0.021893727 -0.028032878 0.014000905 0.030164391 -0.026241587 0.015422761 0.040413361 -0.022713279 0.020934099 0.00074596831 -0.031245936 0.01205648 0.0050053871 -0.036741406 0.013716836 -0.0026711961 -0.03374932 0.01326638 0.021893727 -0.028032878 0.014000905 0.021651363 -0.027104851 0.0094932998 0.030164391 -0.026241587 0.015422761 -0.043076422 -0.036741298 0.10276454 -0.039234664 -0.036741287 0.10706834 -0.041273266 0.026093299 0.10489263 -0.039234664 -0.036741287 0.10706834 -0.037880294 0.026893841 0.10835943 -0.041273266 0.026093299 0.10489263 0.0028805765 0.09071175 0.081371024 0.0030945747 0.088300884 0.089489959 0.012608363 0.088532254 0.084734105 -0.039234664 -0.036741287 0.10706834 -0.035492573 -0.036741275 0.11055268 -0.037880294 0.026893841 0.10835943 -0.035492573 -0.036741275 0.11055268 -0.031116406 0.026516682 0.1138704 -0.037880294 0.026893841 0.10835943 -0.035492573 -0.036741275 0.11055268 -0.031367533 -0.036741264 0.1136967 -0.031116406 0.026516682 0.1138704 -0.031367533 -0.036741264 0.1136967 -0.02472849 0.026603071 0.11765533 -0.031116406 0.026516682 0.1138704 -0.031367533 -0.036741264 0.1136967 -0.024203764 -0.03674126 0.11791744 -0.02472849 0.026603071 0.11765533 -0.024203764 -0.03674126 0.11791744 -0.018832885 -0.036741268 0.12020209 -0.02472849 0.026603071 0.11765533 -0.018832885 -0.036741268 0.12020209 -0.013751773 0.027244946 0.12173837 -0.02472849 0.026603071 0.11765533 -0.018832885 -0.036741268 0.12020209 -0.010425359 -0.036741246 0.12252794 -0.013751773 0.027244946 0.12173837 -0.010425359 -0.036741246 0.12252794 -0.0059251403 0.027226949 0.12316521 -0.013751773 0.027244946 0.12173837 -0.010425359 -0.036741246 0.12252794 0.0020225972 -0.036741257 0.12347481 -0.0059251403 0.027226949 0.12316521 0.0020225972 -0.036741257 0.12347481 0.0010470289 0.026662856 0.12350127 -0.0059251403 0.027226949 0.12316521 0.0020225972 -0.036741257 0.12347481 0.0080776019 0.027245184 0.1228884 0.0010470289 0.026662856 0.12350127 0.0020225972 -0.036741257 0.12347481 0.0073226951 -0.03674126 0.12303531 0.0080776019 0.027245184 0.1228884 0.0073226951 -0.03674126 0.12303531 0.012502428 -0.036741246 0.1220708 0.0080776019 0.027245184 0.1228884 0.012502428 -0.036741246 0.1220708 0.016197609 0.027197927 0.12104827 0.0080776019 0.027245184 0.1228884 0.012502428 -0.036741246 0.1220708 0.023484649 0.026630059 0.11825441 0.016197609 0.027197927 0.12104827 0.012502428 -0.036741246 0.1220708 0.024218911 -0.036741272 0.11790197 0.023484649 0.026630059 0.11825441 0.024218911 -0.036741272 0.11790197 0.028280945 0.026614675 0.11568685 0.023484649 0.026630059 0.11825441 0.024218911 -0.036741272 0.11790197 0.028796675 -0.036741275 0.11537038 0.028280945 0.026614675 0.11568685 0.039598059 0.076755337 0.075036496 0.040317472 0.075169154 0.079623587 0.045926604 0.070521146 0.072434954 0.028796675 -0.036741275 0.11537038 0.031681493 0.027045194 0.11343444 0.028280945 0.026614675 0.11568685 0.017889155 0.076044701 0.10529657 0.023181634 0.073000707 0.10583901 0.020718802 0.079908773 0.098351449 0.0044772471 0.089840211 0.05254066 -0.0058705159 0.091423206 0.061017476 0.0061747716 0.09155634 0.062542059 0.028796675 -0.036741275 0.11537038 0.033176344 -0.036741272 0.1123911 0.031681493 0.027045194 0.11343444 0.033176344 -0.036741272 0.1123911 0.03936119 0.026205176 0.10693758 0.031681493 0.027045194 0.11343444 0.033176344 -0.036741272 0.1123911 0.037679486 -0.036741294 0.10859061 0.03936119 0.026205176 0.10693758 0.011774678 0.089184813 0.053956881 0.019009298 0.086488284 0.051514748 0.014936535 0.086016685 0.046654712 0.037679486 -0.036741294 0.10859061 0.041681759 -0.036741298 0.10440904 0.03936119 0.026205176 0.10693758 0.032541413 0.079066865 0.086962536 0.031907246 0.077450879 0.091515645 0.037972294 0.074327856 0.087950677 0.041681759 -0.036741298 0.10440904 0.042586263 0.026487978 0.10328321 0.03936119 0.026205176 0.10693758 0.041681759 -0.036741298 0.10440904 0.048672024 -0.03674132 0.094129488 0.042586263 0.026487978 0.10328321 0.048672024 -0.03674132 0.094129488 0.046626933 0.025577437 0.097679868 0.042586263 0.026487978 0.10328321 -0.055000182 -0.031743027 0.06750226 -0.054634079 -0.03674135 0.075096563 -0.05500247 0.021894604 0.06974113 -0.054634079 -0.03674135 0.075096563 -0.054581024 0.023443449 0.075204551 -0.05500247 0.021894604 0.06974113 0.048672024 -0.03674132 0.094129488 0.050430477 0.025440941 0.090406187 0.046626933 0.025577437 0.097679868 0.048672024 -0.03674132 0.094129488 0.051672779 -0.036741327 0.087356515 0.050430477 0.025440941 0.090406187 -0.054634079 -0.03674135 0.075096563 -0.053904973 0.024058511 0.079393029 -0.054581024 0.023443449 0.075204551 0.0090449145 0.08467678 0.096095361 0.0096719926 0.078002423 0.105968 0.013343127 0.080755703 0.10106413 -0.054634079 -0.03674135 0.075096563 -0.052638788 -0.036741327 0.084593497 -0.053904973 0.024058511 0.079393029 0.051672779 -0.036741327 0.087356515 0.052184474 0.024348067 0.085914277 0.050430477 0.025440941 0.090406187 0.051672779 -0.036741327 0.087356515 0.053258404 -0.036741346 0.082306609 0.052184474 0.024348067 0.085914277 -0.052638788 -0.036741327 0.084593497 -0.052189928 0.024350299 0.085943229 -0.053904973 0.024058511 0.079393029 -0.052638788 -0.036741327 0.084593497 -0.050643176 -0.03674132 0.090004988 -0.052189928 0.024350299 0.085943229 0.053258404 -0.036741346 0.082306609 0.053898498 0.024039431 0.079362065 0.052184474 0.024348067 0.085914277 0.053258404 -0.036741346 0.082306609 0.054774772 -0.036741368 0.073645435 0.053898498 0.024039431 0.079362065 0.054774772 -0.036741368 0.073645435 0.05454953 0.023496367 0.075308211 0.053898498 0.024039431 0.079362065 -0.050643176 -0.03674132 0.090004988 -0.048354022 -0.036741313 0.094777487 -0.048037678 0.025935564 0.095271677 -0.050643176 -0.03674132 0.090004988 -0.048037678 0.025935564 0.095271677 -0.052189928 0.024350299 0.085943229 -0.048354022 -0.036741313 0.094777487 -0.045870502 0.025671709 0.098878488 -0.048037678 0.025935564 0.095271677 0.054774772 -0.036741368 0.073645435 0.05499588 -0.036741395 0.068905555 0.054994784 0.021826712 0.069532529 0.054774772 -0.036741368 0.073645435 0.054994784 0.021826712 0.069532529 0.05454953 0.023496367 0.075308211 -0.048354022 -0.036741313 0.094777487 -0.043076422 -0.036741298 0.10276454 -0.045870502 0.025671709 0.098878488 -0.043076422 -0.036741298 0.10276454 -0.041273266 0.026093299 0.10489263 -0.045870502 0.025671709 0.098878488 0.05490702 0.010523304 0.029039808 0.054887719 0.0014475089 0.0088438662 0.054823015 0.0033455484 0.010678463 0.054823015 0.0033455484 0.010678463 0.054887719 0.0014475089 0.0088438662 0.054900844 -0.012266626 -0.01425323 0.034256712 0.0066979956 -0.080428295 0.027556784 0.010477243 -0.10242517 0.03521724 0.0072874185 -0.058732584 0.03521724 0.0072874185 -0.058732584 0.028176522 0.010773463 -0.083919056 0.03095944 0.010506252 -0.060652304 0.028176522 0.010773463 -0.083919056 0.03521724 0.0072874185 -0.058732584 0.027556784 0.010477243 -0.10242517 0.0028805765 0.09071175 0.081371024 0.012608363 0.088532254 0.084734105 0.009672638 0.09056285 0.078310966 0.03095944 0.010506252 -0.060652304 0.028176522 0.010773463 -0.083919056 0.023349099 0.015401475 -0.057178427 0.019627193 -0.088657193 -0.12350079 0.025975512 -0.085760564 -0.12350072 0.024107495 -0.086675115 -0.058569722 0.049661193 -0.060887758 -0.053263675 0.046730187 -0.066239841 -0.054839749 0.045513112 -0.06812001 -0.12350068 0.046730187 -0.066239841 -0.054839749 0.043481447 -0.070897788 -0.055373177 0.045513112 -0.06812001 -0.12350068 0.0090449145 0.08467678 0.096095361 0.013343127 0.080755703 0.10106413 0.013240674 0.085342586 0.09294644 0.054791424 -0.03234135 -0.12350069 0.053896297 -0.026042076 -0.08958102 0.054734234 -0.031333514 -0.047779102 0.053896297 -0.026042076 -0.08958102 0.052295882 -0.019865187 -0.086900935 0.053053912 -0.02193597 -0.057530694 0.054791424 -0.03234135 -0.12350069 0.054734234 -0.031333514 -0.047779102 0.055002462 -0.037300285 -0.043222848 0.054941311 -0.039907563 -0.12350063 0.054791424 -0.03234135 -0.12350069 0.055002462 -0.037300285 -0.043222848 0.054475628 -0.044898983 -0.1235007 0.054941311 -0.039907563 -0.12350063 0.055002462 -0.037300285 -0.043222848 0.028366707 -0.084366225 -0.058307052 0.031460728 -0.082376644 -0.12350073 0.035322484 -0.079409592 -0.12350073 0.054308861 -0.045988563 -0.047505323 0.054475628 -0.044898983 -0.1235007 0.055002462 -0.037300285 -0.043222848 0.051100004 -0.016879968 -0.12350078 0.051353469 -0.016458176 -0.058003828 0.052295882 -0.019865187 -0.086900935 0.051100004 -0.016879968 -0.12350078 0.052295882 -0.019865187 -0.086900935 0.053896297 -0.026042076 -0.08958102 0.040950123 0.0023077747 -0.051716998 0.041084372 -0.00053518749 -0.10271829 0.03521724 0.0072874185 -0.058732584 0.03521724 0.0072874185 -0.058732584 0.041084372 -0.00053518749 -0.10271829 0.034256712 0.0066979956 -0.080428295 0.043899391 -0.0035895493 -0.087717503 0.041084372 -0.00053518749 -0.10271829 0.040950123 0.0023077747 -0.051716998 0.034256712 0.0066979956 -0.080428295 0.035802163 0.0044825128 -0.12350089 0.028493598 0.0097733941 -0.12350094 0.020887939 0.082446493 0.093716346 0.020718802 0.079908773 0.098351449 0.031907246 0.077450879 0.091515645 0.043481447 -0.070897788 -0.055373177 0.038939435 -0.07610964 -0.12350072 0.045513112 -0.06812001 -0.12350068 0.0053140963 0.087446585 0.045760043 0.011774678 0.089184813 0.053956881 0.014936535 0.086016685 0.046654712 0.038138408 -0.076873198 -0.05716126 0.038939435 -0.07610964 -0.12350072 0.043481447 -0.070897788 -0.055373177 0.038138408 -0.076873198 -0.05716126 0.035322484 -0.079409592 -0.12350073 0.038939435 -0.07610964 -0.12350072 0.053053912 -0.02193597 -0.057530694 0.054734234 -0.031333514 -0.047779102 0.053896297 -0.026042076 -0.08958102 0.028366707 -0.084366225 -0.058307052 0.035322484 -0.079409592 -0.12350073 0.038138408 -0.076873198 -0.05716126 0.002974171 0.081464827 0.1025695 0.0096719926 0.078002423 0.105968 0.0090449145 0.08467678 0.096095361 0.052836835 -0.052522451 -0.062380251 0.052895561 -0.052341152 -0.12350069 0.054308861 -0.045988563 -0.047505323 0.009633976 -0.091396376 -0.12350085 0.016448889 -0.089734212 -0.058838025 0.01314924 -0.090649143 -0.0588823 0.024107495 -0.086675115 -0.058569722 0.016448889 -0.089734212 -0.058838025 0.019627193 -0.088657193 -0.12350079 0.051100004 -0.016879968 -0.12350078 0.04803488 -0.010451903 -0.12350078 0.048112188 -0.0091383075 -0.058485214 0.051353469 -0.016458176 -0.058003828 0.051100004 -0.016879968 -0.12350078 0.048112188 -0.0091383075 -0.058485214 0.0064533832 -0.091869138 -0.058936771 0.009633976 -0.091396376 -0.12350085 0.01314924 -0.090649143 -0.0588823 0.0052132783 -0.092016742 -0.12350086 0.009633976 -0.091396376 -0.12350085 0.0064533832 -0.091869138 -0.058936771 0.048112188 -0.0091383075 -0.058485214 0.043899391 -0.0035895493 -0.087717503 0.040950123 0.0023077747 -0.051716998 -0.0032485288 -0.092150658 -0.058975454 0.0052132783 -0.092016742 -0.12350086 0.0064533832 -0.091869138 -0.058936771 -0.0035965443 -0.092147343 -0.1235009 0.0052132783 -0.092016742 -0.12350086 -0.0032485288 -0.092150658 -0.058975454 0.051046688 -0.057717275 -0.052235063 0.052895561 -0.052341152 -0.12350069 0.052836835 -0.052522451 -0.062380251 0.04803488 -0.010451903 -0.12350078 0.04464177 -0.0051464997 -0.12350083 0.048112188 -0.0091383075 -0.058485214 0.028232545 0.084792353 0.074288614 0.03525437 0.079582646 0.078888953 0.032884255 0.082276218 0.065804042 0.032541413 0.079066865 0.086962536 0.037972294 0.074327856 0.087950677 0.040317472 0.075169154 0.079623587 0.052895561 -0.052341152 -0.12350069 0.054475628 -0.044898983 -0.1235007 0.054308861 -0.045988563 -0.047505323 0.013365428 0.016758589 -0.086923681 0.018461492 0.015550773 -0.080934376 0.019596536 0.014240609 -0.10294855 0.049661193 -0.060887758 -0.053263675 0.049555037 -0.061098393 -0.12350065 0.051046688 -0.057717275 -0.052235063 0.028366707 -0.084366225 -0.058307052 0.024107495 -0.086675115 -0.058569722 0.025975512 -0.085760564 -0.12350072 0.002974171 0.081464827 0.1025695 -0.00017702325 0.074954748 0.11054835 0.0096719926 0.078002423 0.105968 0.0083411876 0.017175257 -0.10416365 -2.684842e-05 0.017982144 -0.096826449 0.001133897 0.018904217 -0.078560509 0.048112188 -0.0091383075 -0.058485214 0.04464177 -0.0051464997 -0.12350083 0.043899391 -0.0035895493 -0.087717503 0.0083411876 0.017175257 -0.10416365 0.001133897 0.018904217 -0.078560509 0.013365428 0.016758589 -0.086923681 0.0083411876 0.017175257 -0.10416365 0.013365428 0.016758589 -0.086923681 0.019596536 0.014240609 -0.10294855 0.051353469 -0.016458176 -0.058003828 0.053053912 -0.02193597 -0.057530694 0.052295882 -0.019865187 -0.086900935 0.049661193 -0.060887758 -0.053263675 0.045513112 -0.06812001 -0.12350068 0.049555037 -0.061098393 -0.12350065 0.001133897 0.018904217 -0.078560509 0.0095950635 0.019252196 -0.064456947 0.013365428 0.016758589 -0.086923681 0.019596536 0.014240609 -0.10294855 0.018461492 0.015550773 -0.080934376 0.027556784 0.010477243 -0.10242517 0.031460728 -0.082376644 -0.12350073 0.028366707 -0.084366225 -0.058307052 0.025975512 -0.085760564 -0.12350072 0.019007474 0.088738404 0.062231749 0.0161436 0.088887535 0.079596147 0.021209929 0.088242844 0.070740268 0.041084372 -0.00053518749 -0.10271829 0.035802163 0.0044825128 -0.12350089 0.034256712 0.0066979956 -0.080428295 0.027556784 0.010477243 -0.10242517 0.018461492 0.015550773 -0.080934376 0.028176522 0.010773463 -0.083919056 0.04464177 -0.0051464997 -0.12350083 0.041084372 -0.00053518749 -0.10271829 0.043899391 -0.0035895493 -0.087717503 0.0095950635 0.019252196 -0.064456947 0.012646747 0.019898832 -0.052816633 0.013365428 0.016758589 -0.086923681 0.0095950635 0.019252196 -0.064456947 0.001133897 0.018904217 -0.078560509 -0.0020119669 0.02088153 -0.057126958 0.028870765 0.081535086 0.050363615 0.034810726 0.079467587 0.056241866 0.033906411 0.077229701 0.048030343 0.018461492 0.015550773 -0.080934376 0.013365428 0.016758589 -0.086923681 0.012646747 0.019898832 -0.052816633 0.018461492 0.015550773 -0.080934376 0.023349099 0.015401475 -0.057178427 0.028176522 0.010773463 -0.083919056 0.034256712 0.0066979956 -0.080428295 0.028493598 0.0097733941 -0.12350094 0.027556784 0.010477243 -0.10242517 0.023349099 0.015401475 -0.057178427 0.018461492 0.015550773 -0.080934376 0.012646747 0.019898832 -0.052816633 0.054308861 -0.045988563 -0.047505323 0.051046688 -0.057717275 -0.052235063 0.052836835 -0.052522451 -0.062380251 0.042586263 0.026487978 0.10328321 0.03619726 0.04502856 0.10550334 0.03936119 0.026205176 0.10693758 0.044731896 0.052956548 0.091231167 0.041892834 0.053149059 0.096042968 0.046626933 0.025577437 0.097679868 0.0044772471 0.089840211 0.05254066 0.011774678 0.089184813 0.053956881 0.0053140963 0.087446585 0.045760043 0.044731896 0.052956548 0.091231167 0.046626933 0.025577437 0.097679868 0.050430477 0.025440941 0.090406187 0.051656321 0.040675513 0.077297635 0.049052767 0.056700617 0.073951766 0.049473852 0.041403476 0.085625313 0.0096710064 0.091335133 0.070866168 0.009672638 0.09056285 0.078310966 0.0161436 0.088887535 0.079596147 0.03619726 0.04502856 0.10550334 0.027853556 0.069440715 0.10581902 0.031681493 0.027045194 0.11343444 0.041418809 0.069629185 0.089688331 0.037235714 0.069526196 0.096422888 0.041892834 0.053149059 0.096042968 0.046514824 0.069461234 0.066477507 0.049052767 0.056700617 0.073951766 0.051695134 0.042997148 0.065379024 0.023484649 0.026630059 0.11825441 0.022527415 0.042832997 0.11564258 0.016197609 0.027197927 0.12104827 0.024635402 0.053585239 0.11212324 0.022527415 0.042832997 0.11564258 0.028280945 0.026614675 0.11568685 0.044731896 0.052956548 0.091231167 0.041418809 0.069629185 0.089688331 0.041892834 0.053149059 0.096042968 0.027853556 0.069440715 0.10581902 0.024635402 0.053585239 0.11212324 0.031681493 0.027045194 0.11343444 0.051695134 0.042997148 0.065379024 0.049052767 0.056700617 0.073951766 0.051656321 0.040675513 0.077297635 0.043832846 0.069614768 0.084113404 0.041418809 0.069629185 0.089688331 0.044731896 0.052956548 0.091231167 0.031681493 0.027045194 0.11343444 0.024635402 0.053585239 0.11212324 0.028280945 0.026614675 0.11568685 0.033906411 0.077229701 0.048030343 0.034810726 0.079467587 0.056241866 0.042044356 0.070540503 0.049674902 0.051695134 0.042997148 0.065379024 0.05454953 0.023496367 0.075308211 0.054994784 0.021826712 0.069532529 0.051656321 0.040675513 0.077297635 0.05454953 0.023496367 0.075308211 0.051695134 0.042997148 0.065379024 0.051656321 0.040675513 0.077297635 0.049473852 0.041403476 0.085625313 0.053898498 0.024039431 0.079362065 0.049052767 0.056700617 0.073951766 0.046514824 0.069461234 0.066477507 0.045926604 0.070521146 0.072434954 0.03936119 0.026205176 0.10693758 0.03619726 0.04502856 0.10550334 0.031681493 0.027045194 0.11343444 0.028870765 0.081535086 0.050363615 0.027183285 0.085445717 0.063811004 0.034810726 0.079467587 0.056241866 0.052184474 0.024348067 0.085914277 0.049473852 0.041403476 0.085625313 0.050430477 0.025440941 0.090406187 0.028280945 0.026614675 0.11568685 0.022527415 0.042832997 0.11564258 0.023484649 0.026630059 0.11825441 0.05454953 0.023496367 0.075308211 0.051656321 0.040675513 0.077297635 0.053898498 0.024039431 0.079362065 0.037235714 0.069526196 0.096422888 0.03619726 0.04502856 0.10550334 0.042586263 0.026487978 0.10328321 0.0073815165 0.059262179 0.11689662 0.0061016483 0.06941893 0.1146877 -0.0010161885 0.051936753 0.11903229 0.053898498 0.024039431 0.079362065 0.049473852 0.041403476 0.085625313 0.052184474 0.024348067 0.085914277 0.013531859 0.053609453 0.1167907 0.0061016483 0.06941893 0.1146877 0.0073815165 0.059262179 0.11689662 0.013965345 0.070718028 0.11226139 0.0061016483 0.06941893 0.1146877 0.013531859 0.053609453 0.1167907 0.041892834 0.053149059 0.096042968 0.037235714 0.069526196 0.096422888 0.042586263 0.026487978 0.10328321 0.045340531 0.069538653 0.079075567 0.043832846 0.069614768 0.084113404 0.049473852 0.041403476 0.085625313 0.020252982 0.069454722 0.11043917 0.013965345 0.070718028 0.11226139 0.013531859 0.053609453 0.1167907 0.046626933 0.025577437 0.097679868 0.041892834 0.053149059 0.096042968 0.042586263 0.026487978 0.10328321 0.049473852 0.041403476 0.085625313 0.043832846 0.069614768 0.084113404 0.044731896 0.052956548 0.091231167 0.0080776019 0.027245184 0.1228884 -0.0010161885 0.051936753 0.11903229 -0.0010685448 0.041366193 0.12109034 0.049052767 0.056700617 0.073951766 0.045340531 0.069538653 0.079075567 0.049473852 0.041403476 0.085625313 0.0073815165 0.059262179 0.11689662 -0.0010161885 0.051936753 0.11903229 0.0080776019 0.027245184 0.1228884 0.027853556 0.069440715 0.10581902 0.020252982 0.069454722 0.11043917 0.024635402 0.053585239 0.11212324 0.012608363 0.088532254 0.084734105 0.020887939 0.082446493 0.093716346 0.021908548 0.085744791 0.084292971 0.013531859 0.053609453 0.1167907 0.0073815165 0.059262179 0.11689662 0.0080776019 0.027245184 0.1228884 0.045926604 0.070521146 0.072434954 0.045340531 0.069538653 0.079075567 0.049052767 0.056700617 0.073951766 0.022527415 0.042832997 0.11564258 0.013531859 0.053609453 0.1167907 0.016197609 0.027197927 0.12104827 0.020252982 0.069454722 0.11043917 0.013531859 0.053609453 0.1167907 0.022527415 0.042832997 0.11564258 0.0096710064 0.091335133 0.070866168 0.0161436 0.088887535 0.079596147 0.019007474 0.088738404 0.062231749 0.022882866 0.070574626 0.028521691 0.026198624 0.076514669 0.037751924 0.029605825 0.07054095 0.033188745 0.0080776019 0.027245184 0.1228884 -0.0010685448 0.041366193 0.12109034 0.0010470289 0.026662856 0.12350127 0.013531859 0.053609453 0.1167907 0.0080776019 0.027245184 0.1228884 0.016197609 0.027197927 0.12104827 0.049473852 0.041403476 0.085625313 0.044731896 0.052956548 0.091231167 0.050430477 0.025440941 0.090406187 0.031010548 0.069511011 0.10320807 0.027853556 0.069440715 0.10581902 0.03619726 0.04502856 0.10550334 0.024635402 0.053585239 0.11212324 0.020252982 0.069454722 0.11043917 0.022527415 0.042832997 0.11564258 0.037235714 0.069526196 0.096422888 0.031010548 0.069511011 0.10320807 0.03619726 0.04502856 0.10550334 0.012646747 0.019898832 -0.052816633 0.0068772202 0.025146572 -0.035848755 0.013312358 0.023750987 -0.036010571 0.038204536 0.069727466 0.041943889 0.042044356 0.070540503 0.049674902 0.043767668 0.047685944 0.036828939 -0.0023197161 0.079975203 0.10467631 -0.00017702325 0.074954748 0.11054835 0.002974171 0.081464827 0.1025695 0.036788296 0.015757384 -0.022377905 0.036827009 0.028501149 0.0011810715 0.040339626 0.020562148 -0.0054929107 0.029851543 0.013243088 -0.046489958 0.019702379 0.022604933 -0.033004876 0.023428559 0.025783537 -0.021343213 0.040950123 0.0023077747 -0.051716998 0.037728228 0.0093734628 -0.036697675 0.041883685 0.0034910624 -0.041186657 0.036493447 0.040055953 0.016168274 0.031001236 0.032570586 -0.0010048542 0.032202329 0.044433191 0.015326322 0.047038134 -0.0022427216 -0.035827961 0.043311253 0.0082119061 -0.023100032 0.048936334 -0.0004195504 -0.02278178 0.054978769 0.018391721 0.053588111 0.051695134 0.042997148 0.065379024 0.054994784 0.021826712 0.069532529 0.053764649 0.025609853 0.054844107 0.044893872 0.069394492 0.056055926 0.046514824 0.069461234 0.066477507 0.053764649 0.025609853 0.054844107 0.051695134 0.042997148 0.065379024 0.054978769 0.018391721 0.053588111 0.054823015 0.0033455484 0.010678463 0.051663011 0.018675189 0.025238989 0.05490702 0.010523304 0.029039808 0.025097571 0.059669495 0.022485627 0.030229148 0.056256752 0.024044864 0.026784664 0.050943591 0.01646517 0.0037315411 0.084236577 0.038917758 0.0053140963 0.087446585 0.045760043 0.014936535 0.086016685 0.046654712 0.040249228 0.031643633 0.011870285 0.042712077 0.043179207 0.03045366 0.044619277 0.035747871 0.026764698 0.021024022 0.030488819 -0.014523601 0.021855857 0.03897918 -0.0007816453 0.031001236 0.032570586 -0.0010048542 0.052028403 0.031230656 0.049749766 0.044893872 0.069394492 0.056055926 0.053764649 0.025609853 0.054844107 0.036827009 0.028501149 0.0011810715 0.031001236 0.032570586 -0.0010048542 0.036493447 0.040055953 0.016168274 0.012646747 0.019898832 -0.052816633 0.013312358 0.023750987 -0.036010571 0.02184101 0.018278137 -0.044386912 0.038204536 0.069727466 0.041943889 0.033906411 0.077229701 0.048030343 0.042044356 0.070540503 0.049674902 0.03525437 0.079582646 0.078888953 0.040317472 0.075169154 0.079623587 0.039598059 0.076755337 0.075036496 0.053653151 -0.013267053 -0.024644576 0.051469252 -0.0062661255 -0.02359595 0.054823015 0.0033455484 0.010678463 0.0095950635 0.019252196 -0.064456947 0.0039325911 0.022055624 -0.048928976 0.012646747 0.019898832 -0.052816633 0.03521724 0.0072874185 -0.058732584 0.035743441 0.0082789101 -0.048212424 0.040950123 0.0023077747 -0.051716998 0.012608363 0.088532254 0.084734105 0.013240674 0.085342586 0.09294644 0.020887939 0.082446493 0.093716346 0.040950123 0.0023077747 -0.051716998 0.041883685 0.0034910624 -0.041186657 0.047038134 -0.0022427216 -0.035827961 0.02184101 0.018278137 -0.044386912 0.013312358 0.023750987 -0.036010571 0.019702379 0.022604933 -0.033004876 0.047307637 0.035907451 0.034539305 0.047091518 0.04361571 0.042002115 0.052028403 0.031230656 0.049749766 0.035852611 0.055757865 0.02984911 0.038204536 0.069727466 0.041943889 0.043767668 0.047685944 0.036828939 0.048112188 -0.0091383075 -0.058485214 0.040950123 0.0023077747 -0.051716998 0.047038134 -0.0022427216 -0.035827961 0.029851543 0.013243088 -0.046489958 0.023428559 0.025783537 -0.021343213 0.032856524 0.013055819 -0.038649961 0.010615625 0.079887852 0.033724934 0.014936535 0.086016685 0.046654712 0.017676054 0.082197182 0.040498741 0.012573885 0.049197394 0.0065358779 0.015903303 0.057870481 0.016004374 0.024479521 0.043085344 0.006375568 0.015903303 0.057870481 0.016004374 0.025097571 0.059669495 0.022485627 0.026784664 0.050943591 0.01646517 0.0037315411 0.084236577 0.038917758 0.014936535 0.086016685 0.046654712 0.010615625 0.079887852 0.033724934 0.032856524 0.013055819 -0.038649961 0.023428559 0.025783537 -0.021343213 0.037728228 0.0093734628 -0.036697675 0.053764649 0.025609853 0.054844107 0.046514824 0.069461234 0.066477507 0.051695134 0.042997148 0.065379024 0.032202329 0.044433191 0.015326322 0.026784664 0.050943591 0.01646517 0.030229148 0.056256752 0.024044864 0.0053140963 0.087446585 0.045760043 -0.0043789879 0.089768209 0.052237485 0.0044772471 0.089840211 0.05254066 0.036827009 0.028501149 0.0011810715 0.036493447 0.040055953 0.016168274 0.040249228 0.031643633 0.011870285 0.037728228 0.0093734628 -0.036697675 0.029392326 0.025059696 -0.015619265 0.036788296 0.015757384 -0.022377905 0.042712077 0.043179207 0.03045366 0.035852611 0.055757865 0.02984911 0.043767668 0.047685944 0.036828939 0.047091518 0.04361571 0.042002115 0.044893872 0.069394492 0.056055926 0.052028403 0.031230656 0.049749766 0.048112188 -0.0091383075 -0.058485214 0.047038134 -0.0022427216 -0.035827961 0.051353469 -0.016458176 -0.058003828 0.032202329 0.044433191 0.015326322 0.030229148 0.056256752 0.024044864 0.035852611 0.055757865 0.02984911 0.024479521 0.043085344 0.006375568 0.015903303 0.057870481 0.016004374 0.026784664 0.050943591 0.01646517 0.047307637 0.035907451 0.034539305 0.052028403 0.031230656 0.049749766 0.051663011 0.018675189 0.025238989 0.054734234 -0.031333514 -0.047779102 0.053653151 -0.013267053 -0.024644576 0.054823015 0.0033455484 0.010678463 0.050861277 -0.012485017 -0.04320186 0.047038134 -0.0022427216 -0.035827961 0.048936334 -0.0004195504 -0.02278178 0.048936334 -0.0004195504 -0.02278178 0.047510043 0.019357219 0.010538341 0.048964016 0.023751123 0.022913754 0.048964016 0.023751123 0.022913754 0.044619277 0.035747871 0.026764698 0.047307637 0.035907451 0.034539305 0.050861277 -0.012485017 -0.04320186 0.048936334 -0.0004195504 -0.02278178 0.051469252 -0.0062661255 -0.02359595 0.032541413 0.079066865 0.086962536 0.040317472 0.075169154 0.079623587 0.03525437 0.079582646 0.078888953 0.051353469 -0.016458176 -0.058003828 0.047038134 -0.0022427216 -0.035827961 0.050861277 -0.012485017 -0.04320186 0.019007474 0.088738404 0.062231749 0.021209929 0.088242844 0.070740268 0.027183285 0.085445717 0.063811004 0.019007474 0.088738404 0.062231749 0.027183285 0.085445717 0.063811004 0.028870765 0.081535086 0.050363615 0.012646747 0.019898832 -0.052816633 0.02184101 0.018278137 -0.044386912 0.023349099 0.015401475 -0.057178427 0.014527768 0.032721415 -0.01501528 0.021024022 0.030488819 -0.014523601 0.023428559 0.025783537 -0.021343213 0.016958114 0.075458147 0.030601339 0.017676054 0.082197182 0.040498741 0.026198624 0.076514669 0.037751924 0.0068772202 0.025146572 -0.035848755 -1.5692982e-05 0.026554752 -0.033521447 7.2360606e-05 0.029713511 -0.025607569 0.02184101 0.018278137 -0.044386912 0.019702379 0.022604933 -0.033004876 0.029851543 0.013243088 -0.046489958 0.029392326 0.025059696 -0.015619265 0.021024022 0.030488819 -0.014523601 0.031001236 0.032570586 -0.0010048542 0.053196367 -0.018865209 -0.039896514 0.051469252 -0.0062661255 -0.02359595 0.053653151 -0.013267053 -0.024644576 0.0058598765 0.037443493 -0.010425234 -3.7170488e-05 0.044494499 -0.0013444885 0.0098529793 0.044761393 0.00063599495 7.2360606e-05 0.029713511 -0.025607569 0.011418927 0.031025175 -0.019763416 0.013312358 0.023750987 -0.036010571 0.048964016 0.023751123 0.022913754 0.047307637 0.035907451 0.034539305 0.051663011 0.018675189 0.025238989 0.0058598765 0.037443493 -0.010425234 0.0098529793 0.044761393 0.00063599495 0.012573885 0.049197394 0.0065358779 0.023428559 0.025783537 -0.021343213 0.021024022 0.030488819 -0.014523601 0.029392326 0.025059696 -0.015619265 0.050861277 -0.012485017 -0.04320186 0.051469252 -0.0062661255 -0.02359595 0.053196367 -0.018865209 -0.039896514 0.047510043 0.019357219 0.010538341 0.044619277 0.035747871 0.026764698 0.048964016 0.023751123 0.022913754 0.054900844 -0.012266626 -0.01425323 0.054734234 -0.031333514 -0.047779102 0.054823015 0.0033455484 0.010678463 0.051663011 0.018675189 0.025238989 0.052028403 0.031230656 0.049749766 0.05490702 0.010523304 0.029039808 0.032202329 0.044433191 0.015326322 0.035852611 0.055757865 0.02984911 0.042712077 0.043179207 0.03045366 -4.9974401e-06 0.034630246 -0.015906567 -3.7170488e-05 0.044494499 -0.0013444885 0.0058598765 0.037443493 -0.010425234 0.016958114 0.075458147 0.030601339 0.026198624 0.076514669 0.037751924 0.022882866 0.070574626 0.028521691 0.036788296 0.015757384 -0.022377905 0.040339626 0.020562148 -0.0054929107 0.043311253 0.0082119061 -0.023100032 0.051469252 -0.0062661255 -0.02359595 0.048964016 0.023751123 0.022913754 0.051663011 0.018675189 0.025238989 -0.0039070109 0.023815641 -0.041451968 -1.5692982e-05 0.026554752 -0.033521447 0.0068772202 0.025146572 -0.035848755 0.021855857 0.03897918 -0.0007816453 0.012573885 0.049197394 0.0065358779 0.024479521 0.043085344 0.006375568 0.024479521 0.043085344 0.006375568 0.026784664 0.050943591 0.01646517 0.032202329 0.044433191 0.015326322 0.03095944 0.010506252 -0.060652304 0.02184101 0.018278137 -0.044386912 0.029851543 0.013243088 -0.046489958 0.053196367 -0.018865209 -0.039896514 0.053653151 -0.013267053 -0.024644576 0.054734234 -0.031333514 -0.047779102 0.023349099 0.015401475 -0.057178427 0.02184101 0.018278137 -0.044386912 0.03095944 0.010506252 -0.060652304 0.053053912 -0.02193597 -0.057530694 0.050861277 -0.012485017 -0.04320186 0.053196367 -0.018865209 -0.039896514 0.040249228 0.031643633 0.011870285 0.044619277 0.035747871 0.026764698 0.047510043 0.019357219 0.010538341 0.0068772202 0.025146572 -0.035848755 7.2360606e-05 0.029713511 -0.025607569 0.013312358 0.023750987 -0.036010571 0.053053912 -0.02193597 -0.057530694 0.051353469 -0.016458176 -0.058003828 0.050861277 -0.012485017 -0.04320186 0.0096719926 0.078002423 0.105968 0.013965345 0.070718028 0.11226139 0.017889155 0.076044701 0.10529657 0.014966532 0.038109649 -0.0061983764 0.0058598765 0.037443493 -0.010425234 0.012573885 0.049197394 0.0065358779 0.05490702 0.010523304 0.029039808 0.052028403 0.031230656 0.049749766 0.053764649 0.025609853 0.054844107 0.054734234 -0.031333514 -0.047779102 0.053053912 -0.02193597 -0.057530694 0.053196367 -0.018865209 -0.039896514 0.021209929 0.088242844 0.070740268 0.021908548 0.085744791 0.084292971 0.028232545 0.084792353 0.074288614 0.032541413 0.079066865 0.086962536 0.020887939 0.082446493 0.093716346 0.031907246 0.077450879 0.091515645 0.037728228 0.0093734628 -0.036697675 0.036788296 0.015757384 -0.022377905 0.043311253 0.0082119061 -0.023100032 0.055002462 -0.037300285 -0.043222848 0.054734234 -0.031333514 -0.047779102 0.054900844 -0.012266626 -0.01425323 0.036788296 0.015757384 -0.022377905 0.029392326 0.025059696 -0.015619265 0.031001236 0.032570586 -0.0010048542 0.019702379 0.022604933 -0.033004876 0.011418927 0.031025175 -0.019763416 0.014527768 0.032721415 -0.01501528 0.034810726 0.079467587 0.056241866 0.032884255 0.082276218 0.065804042 0.039861478 0.076539814 0.062093679 0.05490702 0.010523304 0.029039808 0.053764649 0.025609853 0.054844107 0.054978769 0.018391721 0.053588111 0.040339626 0.020562148 -0.0054929107 0.036827009 0.028501149 0.0011810715 0.040249228 0.031643633 0.011870285 0.019702379 0.022604933 -0.033004876 0.013312358 0.023750987 -0.036010571 0.011418927 0.031025175 -0.019763416 0.006157605 0.070278339 0.022607975 0.0071152127 0.06262818 0.017316299 -0.00062576792 0.070279613 0.022191953 0.039861478 0.076539814 0.062093679 0.039598059 0.076755337 0.075036496 0.045926604 0.070521146 0.072434954 0.014966532 0.038109649 -0.0061983764 0.012573885 0.049197394 0.0065358779 0.021855857 0.03897918 -0.0007816453 0.047307637 0.035907451 0.034539305 0.043767668 0.047685944 0.036828939 0.047091518 0.04361571 0.042002115 0.051469252 -0.0062661255 -0.02359595 0.048936334 -0.0004195504 -0.02278178 0.048964016 0.023751123 0.022913754 0.036493447 0.040055953 0.016168274 0.032202329 0.044433191 0.015326322 0.042712077 0.043179207 0.03045366 -0.0039070109 0.023815641 -0.041451968 0.0068772202 0.025146572 -0.035848755 0.0039325911 0.022055624 -0.048928976 0.006157605 0.070278339 0.022607975 0.011174661 0.072905235 0.025904136 0.018180054 0.069909535 0.025656559 0.040339626 0.020562148 -0.0054929107 0.044686269 0.017083336 -0.0015214488 0.048936334 -0.0004195504 -0.02278178 0.016958114 0.075458147 0.030601339 0.010615625 0.079887852 0.033724934 0.017676054 0.082197182 0.040498741 0.036788296 0.015757384 -0.022377905 0.031001236 0.032570586 -0.0010048542 0.036827009 0.028501149 0.0011810715 0.042712077 0.043179207 0.03045366 0.043767668 0.047685944 0.036828939 0.047307637 0.035907451 0.034539305 0.0071152127 0.06262818 0.017316299 0.006157605 0.070278339 0.022607975 0.018180054 0.069909535 0.025656559 0.024479521 0.043085344 0.006375568 0.032202329 0.044433191 0.015326322 0.031001236 0.032570586 -0.0010048542 0.048936334 -0.0004195504 -0.02278178 0.044686269 0.017083336 -0.0015214488 0.047510043 0.019357219 0.010538341 0.029851543 0.013243088 -0.046489958 0.032856524 0.013055819 -0.038649961 0.035743441 0.0082789101 -0.048212424 9.4988638e-05 0.057799477 0.012635305 -0.00062576792 0.070279613 0.022191953 0.0071152127 0.06262818 0.017316299 0.014527768 0.032721415 -0.01501528 0.0058598765 0.037443493 -0.010425234 0.014966532 0.038109649 -0.0061983764 0.0071152127 0.06262818 0.017316299 0.018180054 0.069909535 0.025656559 0.015903303 0.057870481 0.016004374 0.044686269 0.017083336 -0.0015214488 0.040249228 0.031643633 0.011870285 0.047510043 0.019357219 0.010538341 0.040339626 0.020562148 -0.0054929107 0.040249228 0.031643633 0.011870285 0.044686269 0.017083336 -0.0015214488 0.018180054 0.069909535 0.025656559 0.016958114 0.075458147 0.030601339 0.022882866 0.070574626 0.028521691 -0.0020119669 0.02088153 -0.057126958 -0.0039070109 0.023815641 -0.041451968 0.0039325911 0.022055624 -0.048928976 0.029605825 0.07054095 0.033188745 0.038204536 0.069727466 0.041943889 0.035852611 0.055757865 0.02984911 0.025097571 0.059669495 0.022485627 0.018180054 0.069909535 0.025656559 0.022882866 0.070574626 0.028521691 0.035743441 0.0082789101 -0.048212424 0.032856524 0.013055819 -0.038649961 0.037728228 0.0093734628 -0.036697675 0.043767668 0.047685944 0.036828939 0.042044356 0.070540503 0.049674902 0.047091518 0.04361571 0.042002115 0.047091518 0.04361571 0.042002115 0.042044356 0.070540503 0.049674902 0.044893872 0.069394492 0.056055926 0.0039325911 0.022055624 -0.048928976 0.0068772202 0.025146572 -0.035848755 0.012646747 0.019898832 -0.052816633 0.03521724 0.0072874185 -0.058732584 0.029851543 0.013243088 -0.046489958 0.035743441 0.0082789101 -0.048212424 0.015903303 0.057870481 0.016004374 0.018180054 0.069909535 0.025656559 0.025097571 0.059669495 0.022485627 0.0037315411 0.084236577 0.038917758 -0.0047876164 0.085326165 0.041078012 0.0053140963 0.087446585 0.045760043 0.03095944 0.010506252 -0.060652304 0.029851543 0.013243088 -0.046489958 0.03521724 0.0072874185 -0.058732584 -4.9974401e-06 0.034630246 -0.015906567 0.0058598765 0.037443493 -0.010425234 0.011418927 0.031025175 -0.019763416 0.022882866 0.070574626 0.028521691 0.029605825 0.07054095 0.033188745 0.030229148 0.056256752 0.024044864 0.021908548 0.085744791 0.084292971 0.020887939 0.082446493 0.093716346 0.032541413 0.079066865 0.086962536 0.044619277 0.035747871 0.026764698 0.042712077 0.043179207 0.03045366 0.047307637 0.035907451 0.034539305 0.041883685 0.0034910624 -0.041186657 0.037728228 0.0093734628 -0.036697675 0.043311253 0.0082119061 -0.023100032 0.011418927 0.031025175 -0.019763416 0.0058598765 0.037443493 -0.010425234 0.014527768 0.032721415 -0.01501528 0.014527768 0.032721415 -0.01501528 0.014966532 0.038109649 -0.0061983764 0.021024022 0.030488819 -0.014523601 0.021024022 0.030488819 -0.014523601 0.014966532 0.038109649 -0.0061983764 0.021855857 0.03897918 -0.0007816453 0.030229148 0.056256752 0.024044864 0.029605825 0.07054095 0.033188745 0.035852611 0.055757865 0.02984911 0.019702379 0.022604933 -0.033004876 0.014527768 0.032721415 -0.01501528 0.023428559 0.025783537 -0.021343213 -0.0020119669 0.02088153 -0.057126958 0.0039325911 0.022055624 -0.048928976 0.0095950635 0.019252196 -0.064456947 -3.7170488e-05 0.044494499 -0.0013444885 9.4988638e-05 0.057799477 0.012635305 0.0098529793 0.044761393 0.00063599495 0.043311253 0.0082119061 -0.023100032 0.040339626 0.020562148 -0.0054929107 0.048936334 -0.0004195504 -0.02278178 0.013343127 0.080755703 0.10106413 0.017889155 0.076044701 0.10529657 0.020718802 0.079908773 0.098351449 0.025097571 0.059669495 0.022485627 0.022882866 0.070574626 0.028521691 0.030229148 0.056256752 0.024044864 0.021855857 0.03897918 -0.0007816453 0.024479521 0.043085344 0.006375568 0.031001236 0.032570586 -0.0010048542 0.0098529793 0.044761393 0.00063599495 9.4988638e-05 0.057799477 0.012635305 0.0071152127 0.06262818 0.017316299 0.051469252 -0.0062661255 -0.02359595 0.051663011 0.018675189 0.025238989 0.054823015 0.0033455484 0.010678463 0.037728228 0.0093734628 -0.036697675 0.023428559 0.025783537 -0.021343213 0.029392326 0.025059696 -0.015619265 0.040950123 0.0023077747 -0.051716998 0.035743441 0.0082789101 -0.048212424 0.037728228 0.0093734628 -0.036697675 7.2360606e-05 0.029713511 -0.025607569 -4.9974401e-06 0.034630246 -0.015906567 0.011418927 0.031025175 -0.019763416 0.040249228 0.031643633 0.011870285 0.036493447 0.040055953 0.016168274 0.042712077 0.043179207 0.03045366 0.0071152127 0.06262818 0.017316299 0.015903303 0.057870481 0.016004374 0.012573885 0.049197394 0.0065358779 0.0098529793 0.044761393 0.00063599495 0.0071152127 0.06262818 0.017316299 0.012573885 0.049197394 0.0065358779 0.041883685 0.0034910624 -0.041186657 0.043311253 0.0082119061 -0.023100032 0.047038134 -0.0022427216 -0.035827961 0.042044356 0.070540503 0.049674902 0.04283502 0.07220979 0.055832151 0.044893872 0.069394492 0.056055926 0.038204536 0.069727466 0.041943889 0.029605825 0.07054095 0.033188745 0.034949962 0.072156765 0.04060854 0.04283502 0.07220979 0.055832151 0.046514824 0.069461234 0.066477507 0.044893872 0.069394492 0.056055926 0.028232545 0.084792353 0.074288614 0.021908548 0.085744791 0.084292971 0.032541413 0.079066865 0.086962536 0.026198624 0.076514669 0.037751924 0.033906411 0.077229701 0.048030343 0.034949962 0.072156765 0.04060854 0.017889155 0.076044701 0.10529657 0.020252982 0.069454722 0.11043917 0.023181634 0.073000707 0.10583901 0.0030945747 0.088300884 0.089489959 0.002974171 0.081464827 0.1025695 0.0090449145 0.08467678 0.096095361 -0.00075025205 0.092150658 0.069858097 0.0096710064 0.091335133 0.070866168 0.0061747716 0.09155634 0.062542059 0.014936535 0.086016685 0.046654712 0.019009298 0.086488284 0.051514748 0.017676054 0.082197182 0.040498741 0.021209929 0.088242844 0.070740268 0.028232545 0.084792353 0.074288614 0.027183285 0.085445717 0.063811004 0.0030945747 0.088300884 0.089489959 0.0090449145 0.08467678 0.096095361 0.013240674 0.085342586 0.09294644 0.013240674 0.085342586 0.09294644 0.013343127 0.080755703 0.10106413 0.020718802 0.079908773 0.098351449 0.011174661 0.072905235 0.025904136 0.016958114 0.075458147 0.030601339 0.018180054 0.069909535 0.025656559 -0.00017702325 0.074954748 0.11054835 0.003814196 0.070736833 0.11426801 0.0096719926 0.078002423 0.105968 0.039861478 0.076539814 0.062093679 0.046514824 0.069461234 0.066477507 0.04283502 0.07220979 0.055832151 0.0030945747 0.088300884 0.089489959 0.013240674 0.085342586 0.09294644 0.012608363 0.088532254 0.084734105 0.0096710064 0.091335133 0.070866168 0.0028805765 0.09071175 0.081371024 0.009672638 0.09056285 0.078310966 0.017676054 0.082197182 0.040498741 0.019009298 0.086488284 0.051514748 0.028870765 0.081535086 0.050363615 0.031907246 0.077450879 0.091515645 0.029984834 0.073791996 0.099589236 0.037235714 0.069526196 0.096422888 0.011774678 0.089184813 0.053956881 0.019007474 0.088738404 0.062231749 0.019009298 0.086488284 0.051514748 -0.00075025205 0.092150658 0.069858097 0.0028805765 0.09071175 0.081371024 0.0096710064 0.091335133 0.070866168 0.034810726 0.079467587 0.056241866 0.04283502 0.07220979 0.055832151 0.042044356 0.070540503 0.049674902 0.0161436 0.088887535 0.079596147 0.012608363 0.088532254 0.084734105 0.021908548 0.085744791 0.084292971 0.037972294 0.074327856 0.087950677 0.041418809 0.069629185 0.089688331 0.040317472 0.075169154 0.079623587 0.0061747716 0.09155634 0.062542059 0.019007474 0.088738404 0.062231749 0.011774678 0.089184813 0.053956881 0.0061747716 0.09155634 0.062542059 0.0096710064 0.091335133 0.070866168 0.019007474 0.088738404 0.062231749 0.0161436 0.088887535 0.079596147 0.021908548 0.085744791 0.084292971 0.021209929 0.088242844 0.070740268 0.011174661 0.072905235 0.025904136 0.010615625 0.079887852 0.033724934 0.016958114 0.075458147 0.030601339 0.026198624 0.076514669 0.037751924 0.028870765 0.081535086 0.050363615 0.033906411 0.077229701 0.048030343 0.031907246 0.077450879 0.091515645 0.037235714 0.069526196 0.096422888 0.037972294 0.074327856 0.087950677 0.027183285 0.085445717 0.063811004 0.028232545 0.084792353 0.074288614 0.032884255 0.082276218 0.065804042 0.028232545 0.084792353 0.074288614 0.032541413 0.079066865 0.086962536 0.03525437 0.079582646 0.078888953 0.039861478 0.076539814 0.062093679 0.045926604 0.070521146 0.072434954 0.046514824 0.069461234 0.066477507 0.037235714 0.069526196 0.096422888 0.041418809 0.069629185 0.089688331 0.037972294 0.074327856 0.087950677 -0.00062576792 0.070279613 0.022191953 -0.0052366634 0.076115765 0.028008312 0.0081966631 0.077858143 0.030492593 -0.00062576792 0.070279613 0.022191953 0.0081966631 0.077858143 0.030492593 0.006157605 0.070278339 0.022607975 0.034810726 0.079467587 0.056241866 0.039861478 0.076539814 0.062093679 0.04283502 0.07220979 0.055832151 0.006157605 0.070278339 0.022607975 0.0081966631 0.077858143 0.030492593 0.011174661 0.072905235 0.025904136 0.0081966631 0.077858143 0.030492593 -0.0052366634 0.076115765 0.028008312 0.0037315411 0.084236577 0.038917758 0.0081966631 0.077858143 0.030492593 0.0037315411 0.084236577 0.038917758 0.010615625 0.079887852 0.033724934 0.013343127 0.080755703 0.10106413 0.0096719926 0.078002423 0.105968 0.017889155 0.076044701 0.10529657 0.019009298 0.086488284 0.051514748 0.019007474 0.088738404 0.062231749 0.028870765 0.081535086 0.050363615 0.034949962 0.072156765 0.04060854 0.033906411 0.077229701 0.048030343 0.038204536 0.069727466 0.041943889 0.0081966631 0.077858143 0.030492593 0.010615625 0.079887852 0.033724934 0.011174661 0.072905235 0.025904136 0.0096719926 0.078002423 0.105968 0.003814196 0.070736833 0.11426801 0.013965345 0.070718028 0.11226139 + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749

+
+
+
+
+ + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + + + + + + + + + + + + + +
diff --git a/external/rlbench/urdfs/panda/meshes/Pandalink2respondable_coll_1.dae b/external/rlbench/urdfs/panda/meshes/Pandalink2respondable_coll_1.dae new file mode 100644 index 0000000000000000000000000000000000000000..e9f7e1a4808732eacf28e2a9d82ebe9b0cfbe16e --- /dev/null +++ b/external/rlbench/urdfs/panda/meshes/Pandalink2respondable_coll_1.dae @@ -0,0 +1,84 @@ + + + + + Assimp + Assimp Exporter + + 2023-09-26T11:24:21 + 2023-09-26T11:24:21 + + Y_UP + + + + + + + + 0 0 0 4.5895327e-41 + + + 0.72999662 0.63006634 0.63415033 4.5893926e-41 + + + 0.72999662 0.63006634 0.63415033 4.5893926e-41 + + + 0.25 0.25 0.25 -3.0261091e+37 + + + + + + + + + + + + + + + + -0.0555324 -0.055939991 0.07177902 -0.054354895 0.0028667813 0.08250612 -0.055344991 -0.0020327705 -0.12376475 -0.0555324 -0.055939991 0.07177902 -0.053460084 0.0032325841 0.090617947 -0.054354895 0.0028667813 0.08250612 -0.032557268 -0.061171703 -0.070779674 -0.048405271 -0.061941762 0.090120129 -0.0555324 -0.055939991 0.07177902 -0.048405271 -0.061941762 0.090120129 -0.049590982 -0.00032961401 0.10337268 -0.0555324 -0.055939991 0.07177902 -0.032557268 -0.061171703 -0.070779674 -0.022835098 -0.066321284 -0.072861798 -0.048405271 -0.061941762 0.090120129 -0.041279346 -0.054193351 -0.067004703 -0.0555324 -0.055939991 0.07177902 -0.049485151 -0.043469995 -0.062452812 0.05113731 -0.017260874 -0.1281625 0.048987649 -0.043033846 -0.060442425 0.045672022 -0.027687453 -0.13136756 0.043121848 -0.065559074 0.094739936 0.036764745 -0.0066555287 0.12149014 0.031234616 -0.068698168 0.10599059 0.017388429 0.068974413 0.083058372 0.024588721 0.048482697 -0.1081029 0.0115122 0.05302301 -0.10674506 0.027528735 0.064966612 0.082897015 0.024588721 0.048482697 -0.1081029 0.017388429 0.068974413 0.083058372 -0.028692478 0.063395485 0.082390174 -0.020973574 0.050448671 -0.1076126 -0.036307085 0.041614819 -0.11035423 -0.015500051 -0.0090458551 0.13225523 -0.029453296 -0.067995146 0.10843556 -0.014436574 -0.07014443 0.11426695 -0.029453296 -0.067995146 0.10843556 -0.015500051 -0.0090458551 0.13225523 -0.028094869 -0.0064773504 0.12700725 -0.005242513 -0.070910528 -0.07316938 -0.029453296 -0.067995146 0.10843556 -0.013154195 -0.069522671 -0.073337629 -0.005242513 -0.070910528 -0.07316938 -0.014436574 -0.07014443 0.11426695 -0.029453296 -0.067995146 0.10843556 0.031234616 -0.068698168 0.10599059 0.012173273 -0.069586717 -0.073593073 0.043121848 -0.065559074 0.094739936 -0.022835098 -0.066321284 -0.072861798 -0.039907698 -0.065275855 0.10036786 -0.048405271 -0.061941762 0.090120129 -0.013154195 -0.069522671 -0.073337629 -0.039907698 -0.065275855 0.10036786 -0.022835098 -0.066321284 -0.072861798 -0.013154195 -0.069522671 -0.073337629 -0.029453296 -0.067995146 0.10843556 -0.039907698 -0.065275855 0.10036786 -0.049590982 -0.00032961401 0.10337268 -0.053460084 0.0032325841 0.090617947 -0.0555324 -0.055939991 0.07177902 -0.032557268 -0.061171703 -0.070779674 -0.0555324 -0.055939991 0.07177902 -0.041279346 -0.054193351 -0.067004703 0.045688532 0.051016912 0.083273768 0.047937483 0.047620874 0.090756863 0.049017649 0.025215564 -0.11516476 0.054050159 -0.057842217 0.069025777 0.048987649 -0.043033846 -0.060442425 0.052643083 -0.034510899 -0.054075133 0.054947268 0.0051283748 -0.12130985 0.054050159 -0.057842217 0.069025777 0.05400867 -0.0075624697 -0.12518683 0.034388874 -0.059265919 -0.069714062 0.054050159 -0.057842217 0.069025777 0.050366867 -0.061985608 0.082529999 0.031234616 -0.068698168 0.10599059 0.001698198 -0.07101009 -0.073369682 0.012173273 -0.069586717 -0.073593073 0.017034061 -0.070465416 0.11286493 0.001698198 -0.07101009 -0.073369682 0.031234616 -0.068698168 0.10599059 0.031234616 -0.068698168 0.10599059 0.0220151 -0.0089512179 0.1304334 0.017034061 -0.070465416 0.11286493 0.0083612166 -0.0097534452 0.13391845 0.017034061 -0.070465416 0.11286493 0.0220151 -0.0089512179 0.1304334 0.0083612166 -0.0097534452 0.13391845 0.0015790483 -0.071032092 0.11589182 0.017034061 -0.070465416 0.11286493 0.051846936 -0.0024238231 0.10057169 0.050366867 -0.061985608 0.082529999 0.054050159 -0.057842217 0.069025777 -0.055344991 -0.0020327705 -0.12376475 -0.054185804 -0.032251962 -0.054273471 -0.0555324 -0.055939991 0.07177902 0.0014729204 0.070290707 0.093645699 0.0056840093 0.071032122 0.084142201 -0.0040751575 0.071010627 0.082533129 0.0056840093 0.071032122 0.084142201 -0.0046424689 0.054110661 -0.10645166 -0.0040751575 0.071010627 0.082533129 0.0056840093 0.071032122 0.084142201 0.0115122 0.05302301 -0.10674506 -0.0046424689 0.054110661 -0.10645166 -0.036020465 0.058499251 0.082290769 -0.028692478 0.063395485 0.082390174 -0.036307085 0.041614819 -0.11035423 -0.044552352 0.049390249 0.091754034 -0.047444399 0.028848661 -0.11428915 -0.053412661 0.015726322 -0.1183212 -0.044552352 0.049390249 0.091754034 -0.042849049 0.05226846 0.083506376 -0.047444399 0.028848661 -0.11428915 -0.036020465 0.058499251 0.082290769 -0.036307085 0.041614819 -0.11035423 -0.042849049 0.05226846 0.083506376 0.012243819 0.067858696 0.099526115 0.0090622008 0.06522949 0.10796937 0.017157327 0.0620372 0.11083604 0.024588721 0.048482697 -0.1081029 0.027528735 0.064966612 0.082897015 0.038557444 0.057906605 0.081795663 -0.005242513 -0.070910528 -0.07316938 0.0015790483 -0.071032092 0.11589182 -0.014436574 -0.07014443 0.11426695 -0.049590982 -0.00032961401 0.10337268 -0.048405271 -0.061941762 0.090120129 -0.043951392 -0.0025412606 0.11272019 -0.054354895 0.0028667813 0.08250612 -0.053460084 0.0032325841 0.090617947 -0.050661582 0.023391105 0.088623293 -0.053460084 0.0032325841 0.090617947 -0.049590982 -0.00032961401 0.10337268 -0.048420217 0.016289908 0.10291168 -0.022835098 -0.066321284 -0.072861798 -0.032557268 -0.061171703 -0.070779674 -0.029681873 -0.043026 -0.13624719 -0.041279346 -0.054193351 -0.067004703 -0.046818037 -0.026700299 -0.13129197 -0.038557038 -0.036439884 -0.13425317 -0.049485151 -0.043469995 -0.062452812 -0.046818037 -0.026700299 -0.13129197 -0.041279346 -0.054193351 -0.067004703 -0.038557038 -0.036439884 -0.13425317 -0.032557268 -0.061171703 -0.070779674 -0.041279346 -0.054193351 -0.067004703 0.047937483 0.047620874 0.090756863 0.052879315 0.021000179 0.088752568 0.054947268 0.0051283748 -0.12130985 0.052879315 0.021000179 0.088752568 0.055532604 0.00048283063 0.085010327 0.054947268 0.0051283748 -0.12130985 0.052643083 -0.034510899 -0.054075133 0.05113731 -0.017260874 -0.1281625 0.05400867 -0.0075624697 -0.12518683 0.045688532 0.051016912 0.083273768 0.038046874 0.039524972 -0.11081205 0.038557444 0.057906605 0.081795663 0.052643083 -0.034510899 -0.054075133 0.048987649 -0.043033846 -0.060442425 0.05113731 -0.017260874 -0.1281625 0.05400867 -0.0075624697 -0.12518683 0.054050159 -0.057842217 0.069025777 0.052643083 -0.034510899 -0.054075133 0.055532604 0.00048283063 0.085010327 0.054050159 -0.057842217 0.069025777 0.054947268 0.0051283748 -0.12130985 0.026108062 -0.064536415 -0.07180284 0.034388874 -0.059265919 -0.069714062 0.050366867 -0.061985608 0.082529999 0.036764745 -0.0066555287 0.12149014 0.045824442 -0.0048546339 0.111398 0.04065609 0.013535674 0.11899914 0.001698198 -0.07101009 -0.073369682 0.017034061 -0.070465416 0.11286493 0.0015790483 -0.071032092 0.11589182 0.001698198 -0.07101009 -0.073369682 0.0015790483 -0.071032092 0.11589182 -0.005242513 -0.070910528 -0.07316938 0.0096130045 0.010490604 0.1363512 0.0220151 -0.0089512179 0.1304334 0.020866845 0.011733172 0.13316691 0.0096130045 0.010490604 0.1363512 0.020866845 0.011733172 0.13316691 0.01461519 0.033651073 0.13707682 0.026293345 0.012021748 0.13054714 0.0220151 -0.0089512179 0.1304334 0.036764745 -0.0066555287 0.12149014 0.036764745 -0.0066555287 0.12149014 0.032384016 0.012300083 0.12655509 0.026293345 0.012021748 0.13054714 0.0220151 -0.0089512179 0.1304334 0.031234616 -0.068698168 0.10599059 0.036764745 -0.0066555287 0.12149014 -0.0027870752 -0.0097083515 0.13443115 -0.014436574 -0.07014443 0.11426695 0.0015790483 -0.071032092 0.11589182 -0.0027870752 -0.0097083515 0.13443115 -0.015500051 -0.0090458551 0.13225523 -0.014436574 -0.07014443 0.11426695 -0.052493617 -0.015576323 -0.12790079 -0.054185804 -0.032251962 -0.054273471 -0.055344991 -0.0020327705 -0.12376475 -0.0555324 -0.055939991 0.07177902 -0.054185804 -0.032251962 -0.054273471 -0.049485151 -0.043469995 -0.062452812 -0.016918248 0.068588734 0.082818575 -0.0046424689 0.054110661 -0.10645166 -0.020973574 0.050448671 -0.1076126 -0.016918248 0.068588734 0.082818575 -0.0040751575 0.071010627 0.082533129 -0.0046424689 0.054110661 -0.10645166 0.016306732 0.06876336 0.090951927 0.0056840093 0.071032122 0.084142201 0.0014729204 0.070290707 0.093645699 -0.027773971 0.063528113 0.09020029 -0.021957502 0.065471627 0.095596433 -0.016918248 0.068588734 0.082818575 -0.028692478 0.063395485 0.082390174 -0.016918248 0.068588734 0.082818575 -0.020973574 0.050448671 -0.1076126 -0.042849049 0.05226846 0.083506376 -0.036307085 0.041614819 -0.11035423 -0.047444399 0.028848661 -0.11428915 -0.053412661 0.015726322 -0.1183212 -0.055344991 -0.0020327705 -0.12376475 -0.054354895 0.0028667813 0.08250612 -0.054354895 0.0028667813 0.08250612 -0.050661582 0.023391105 0.088623293 -0.053412661 0.015726322 -0.1183212 -0.0017571127 0.06843745 0.10136952 0.012243819 0.067858696 0.099526115 0.0014729204 0.070290707 0.093645699 0.012243819 0.067858696 0.099526115 0.016306732 0.06876336 0.090951927 0.0014729204 0.070290707 0.093645699 0.047937483 0.047620874 0.090756863 0.054947268 0.0051283748 -0.12130985 0.049017649 0.025215564 -0.11516476 0.023013076 0.064652517 0.099245794 0.012243819 0.067858696 0.099526115 0.017157327 0.0620372 0.11083604 0.038046874 0.039524972 -0.11081205 0.024588721 0.048482697 -0.1081029 0.038557444 0.057906605 0.081795663 0.011430549 -0.05002144 -0.13828795 0.001698198 -0.07101009 -0.073369682 -0.0015336769 -0.05116963 -0.13867144 -0.044552352 0.049390249 0.091754034 -0.053412661 0.015726322 -0.1183212 -0.050661582 0.023391105 0.088623293 -0.039907698 -0.065275855 0.10036786 -0.043951392 -0.0025412606 0.11272019 -0.048405271 -0.061941762 0.090120129 -0.043951392 -0.0025412606 0.11272019 -0.039907698 -0.065275855 0.10036786 -0.035829283 -0.0038642047 0.12163063 -0.039907698 -0.065275855 0.10036786 -0.029453296 -0.067995146 0.10843556 -0.035829283 -0.0038642047 0.12163063 0.045688532 0.051016912 0.083273768 0.049017649 0.025215564 -0.11516476 0.038046874 0.039524972 -0.11081205 0.054050159 -0.057842217 0.069025777 0.034388874 -0.059265919 -0.069714062 0.041786116 -0.052827269 -0.065684304 0.043121848 -0.065559074 0.094739936 0.045824442 -0.0048546339 0.111398 0.036764745 -0.0066555287 0.12149014 0.0083612166 -0.0097534452 0.13391845 -0.0027870752 -0.0097083515 0.13443115 0.0015790483 -0.071032092 0.11589182 -0.052493617 -0.015576323 -0.12790079 -0.049485151 -0.043469995 -0.062452812 -0.054185804 -0.032251962 -0.054273471 -0.0068719243 0.063147292 0.11246032 -0.00042866799 0.065464437 0.10888251 -0.0017571127 0.06843745 0.10136952 0.0056840093 0.071032122 0.084142201 0.017388429 0.068974413 0.083058372 0.0115122 0.05302301 -0.10674506 -0.0096590556 0.069578119 0.092465848 0.0014729204 0.070290707 0.093645699 -0.0040751575 0.071010627 0.082533129 0.0056840093 0.071032122 0.084142201 0.016306732 0.06876336 0.090951927 0.017388429 0.068974413 0.083058372 -0.011711824 0.057938296 0.11897865 -0.015467531 0.06509044 0.10421446 -0.023985438 0.059797108 0.10827395 -0.016918248 0.068588734 0.082818575 -0.028692478 0.063395485 0.082390174 -0.027773971 0.063528113 0.09020029 -0.044224232 0.046718542 0.10112216 -0.037399732 0.056897409 0.091006845 -0.044552352 0.049390249 0.091754034 -0.044224232 0.046718542 0.10112216 -0.034446463 0.056681711 0.10057704 -0.037399732 0.056897409 0.091006845 0.027604492 0.059641764 0.10652085 0.025641503 0.052977026 0.11867352 0.034200717 0.051773921 0.11234751 0.016306732 0.06876336 0.090951927 0.012243819 0.067858696 0.099526115 0.023013076 0.064652517 0.099245794 0.006463625 0.060901936 0.11643057 0.016468747 0.057379071 0.11833031 0.017157327 0.0620372 0.11083604 -0.0068719243 0.063147292 0.11246032 -0.015467531 0.06509044 0.10421446 -0.011711824 0.057938296 0.11897865 0.023013076 0.064652517 0.099245794 0.017157327 0.0620372 0.11083604 0.027604492 0.059641764 0.10652085 0.001698198 -0.07101009 -0.073369682 -0.005242513 -0.070910528 -0.07316938 -0.0015336769 -0.05116963 -0.13867144 -0.050661582 0.023391105 0.088623293 -0.044224232 0.046718542 0.10112216 -0.044552352 0.049390249 0.091754034 -0.050661582 0.023391105 0.088623293 -0.047236219 0.032055914 0.10019617 -0.044224232 0.046718542 0.10112216 -0.032557268 -0.061171703 -0.070779674 -0.038557038 -0.036439884 -0.13425317 -0.029681873 -0.043026 -0.13624719 -0.046818037 -0.026700299 -0.13129197 -0.049485151 -0.043469995 -0.062452812 -0.052493617 -0.015576323 -0.12790079 0.047916714 0.043668132 0.10067916 0.047937483 0.047620874 0.090756863 0.044538502 0.048591934 0.10050681 0.052879315 0.021000179 0.088752568 0.047937483 0.047620874 0.090756863 0.047916714 0.043668132 0.10067916 0.012173273 -0.069586717 -0.073593073 0.026108062 -0.064536415 -0.07180284 0.043121848 -0.065559074 0.094739936 0.026108062 -0.064536415 -0.07180284 0.050366867 -0.061985608 0.082529999 0.043121848 -0.065559074 0.094739936 -0.052493617 -0.015576323 -0.12790079 0.025321603 -0.045268834 -0.1367998 0.011430549 -0.05002144 -0.13828795 -0.038557038 -0.036439884 -0.13425317 -0.046818037 -0.026700299 -0.13129197 -0.052493617 -0.015576323 -0.12790079 -0.052493617 -0.015576323 -0.12790079 0.0115122 0.05302301 -0.10674506 0.024588721 0.048482697 -0.1081029 -0.036307085 0.041614819 -0.11035423 -0.020973574 0.050448671 -0.1076126 -0.052493617 -0.015576323 -0.12790079 -0.052493617 -0.015576323 -0.12790079 -0.017540107 -0.048687059 -0.13795061 -0.029681873 -0.043026 -0.13624719 -0.052493617 -0.015576323 -0.12790079 -0.053412661 0.015726322 -0.1183212 -0.047444399 0.028848661 -0.11428915 -0.052493617 -0.015576323 -0.12790079 -0.020973574 0.050448671 -0.1076126 -0.0046424689 0.054110661 -0.10645166 -0.052493617 -0.015576323 -0.12790079 -0.0046424689 0.054110661 -0.10645166 0.0115122 0.05302301 -0.10674506 -0.052493617 -0.015576323 -0.12790079 -0.047444399 0.028848661 -0.11428915 -0.036307085 0.041614819 -0.11035423 -0.052493617 -0.015576323 -0.12790079 0.011430549 -0.05002144 -0.13828795 -0.0015336769 -0.05116963 -0.13867144 -0.052493617 -0.015576323 -0.12790079 -0.029681873 -0.043026 -0.13624719 -0.038557038 -0.036439884 -0.13425317 -0.0015336769 -0.05116963 -0.13867144 -0.017540107 -0.048687059 -0.13795061 -0.052493617 -0.015576323 -0.12790079 -0.052493617 -0.015576323 -0.12790079 -0.055344991 -0.0020327705 -0.12376475 -0.053412661 0.015726322 -0.1183212 0.05233755 0.01112677 0.097297311 0.047593508 0.015496523 0.10884603 0.051846936 -0.0024238231 0.10057169 0.045824442 -0.0048546339 0.111398 0.050366867 -0.061985608 0.082529999 0.051846936 -0.0024238231 0.10057169 0.050366867 -0.061985608 0.082529999 0.045824442 -0.0048546339 0.111398 0.043121848 -0.065559074 0.094739936 0.047593508 0.015496523 0.10884603 0.04065609 0.013535674 0.11899914 0.045824442 -0.0048546339 0.111398 0.03910799 0.038404655 0.12054087 0.047593508 0.015496523 0.10884603 0.044192679 0.041330442 0.11175307 0.047593508 0.015496523 0.10884603 0.045824442 -0.0048546339 0.111398 0.051846936 -0.0024238231 0.10057169 0.025321603 -0.045268834 -0.1367998 0.026108062 -0.064536415 -0.07180284 0.012173273 -0.069586717 -0.073593073 0.026293345 0.012021748 0.13054714 0.020866845 0.011733172 0.13316691 0.0220151 -0.0089512179 0.1304334 0.03910799 0.038404655 0.12054087 0.028412528 0.042003646 0.12678154 0.032780074 0.036561884 0.12712704 0.0220151 -0.0089512179 0.1304334 0.0096130045 0.010490604 0.1363512 0.0083612166 -0.0097534452 0.13391845 -0.00085703388 0.012644558 0.13729772 0.0083612166 -0.0097534452 0.13391845 0.0096130045 0.010490604 0.1363512 0.045718931 0.04160485 0.10888004 0.05233755 0.01112677 0.097297311 0.047916714 0.043668132 0.10067916 0.055532604 0.00048283063 0.085010327 0.05233755 0.01112677 0.097297311 0.051846936 -0.0024238231 0.10057169 0.055532604 0.00048283063 0.085010327 0.051846936 -0.0024238231 0.10057169 0.054050159 -0.057842217 0.069025777 0.006463625 0.060901936 0.11643057 -0.00042866799 0.065464437 0.10888251 0.0017442219 0.057158936 0.12198002 0.0014729204 0.070290707 0.093645699 -0.0096590556 0.069578119 0.092465848 -0.0017571127 0.06843745 0.10136952 -0.015467531 0.06509044 0.10421446 -0.0068719243 0.063147292 0.11246032 -0.0017571127 0.06843745 0.10136952 -0.015467531 0.06509044 0.10421446 -0.021957502 0.065471627 0.095596433 -0.023985438 0.059797108 0.10827395 -0.023985438 0.059797108 0.10827395 -0.034446463 0.056681711 0.10057704 -0.03118732 0.053955432 0.11067141 -0.016918248 0.068588734 0.082818575 -0.021957502 0.065471627 0.095596433 -0.0096590556 0.069578119 0.092465848 -0.037399732 0.056897409 0.091006845 -0.036020465 0.058499251 0.082290769 -0.042849049 0.05226846 0.083506376 -0.0017571127 0.06843745 0.10136952 0.0090622008 0.06522949 0.10796937 0.012243819 0.067858696 0.099526115 -0.0017571127 0.06843745 0.10136952 -0.00042866799 0.065464437 0.10888251 0.0090622008 0.06522949 0.10796937 0.032294206 0.059308153 0.10047494 0.027604492 0.059641764 0.10652085 0.034200717 0.051773921 0.11234751 0.03810133 0.053392332 0.10396792 0.032294206 0.059308153 0.10047494 0.034200717 0.051773921 0.11234751 0.0090622008 0.06522949 0.10796937 0.006463625 0.060901936 0.11643057 0.017157327 0.0620372 0.11083604 0.0017442219 0.057158936 0.12198002 -0.0068719243 0.063147292 0.11246032 -0.011711824 0.057938296 0.11897865 -0.00042866799 0.065464437 0.10888251 -0.0068719243 0.063147292 0.11246032 0.0017442219 0.057158936 0.12198002 0.0017442219 0.057158936 0.12198002 0.016468747 0.057379071 0.11833031 0.006463625 0.060901936 0.11643057 0.023013076 0.064652517 0.099245794 0.033363543 0.06133876 0.089368097 0.016306732 0.06876336 0.090951927 -0.005242513 -0.070910528 -0.07316938 -0.017540107 -0.048687059 -0.13795061 -0.0015336769 -0.05116963 -0.13867144 -0.017540107 -0.048687059 -0.13795061 -0.005242513 -0.070910528 -0.07316938 -0.013154195 -0.069522671 -0.073337629 0.001698198 -0.07101009 -0.073369682 0.011430549 -0.05002144 -0.13828795 0.012173273 -0.069586717 -0.073593073 0.041786116 -0.052827269 -0.065684304 0.048987649 -0.043033846 -0.060442425 0.054050159 -0.057842217 0.069025777 0.034388874 -0.059265919 -0.069714062 0.036886189 -0.037395313 -0.13436115 0.041786116 -0.052827269 -0.065684304 -0.049590982 -0.00032961401 0.10337268 -0.042544518 0.026498459 0.11294658 -0.048420217 0.016289908 0.10291168 -0.035829283 -0.0038642047 0.12163063 -0.038851086 0.016424466 0.11887696 -0.043951392 -0.0025412606 0.11272019 -0.053460084 0.0032325841 0.090617947 -0.048420217 0.016289908 0.10291168 -0.047236219 0.032055914 0.10019617 -0.047236219 0.032055914 0.10019617 -0.050661582 0.023391105 0.088623293 -0.053460084 0.0032325841 0.090617947 -0.029681873 -0.043026 -0.13624719 -0.017540107 -0.048687059 -0.13795061 -0.022835098 -0.066321284 -0.072861798 -0.017540107 -0.048687059 -0.13795061 -0.013154195 -0.069522671 -0.073337629 -0.022835098 -0.066321284 -0.072861798 0.045718931 0.04160485 0.10888004 0.047916714 0.043668132 0.10067916 0.044538502 0.048591934 0.10050681 0.047916714 0.043668132 0.10067916 0.05233755 0.01112677 0.097297311 0.052879315 0.021000179 0.088752568 0.05400867 -0.0075624697 -0.12518683 0.036886189 -0.037395313 -0.13436115 0.025321603 -0.045268834 -0.1367998 -0.052493617 -0.015576323 -0.12790079 0.05400867 -0.0075624697 -0.12518683 0.025321603 -0.045268834 -0.1367998 0.05400867 -0.0075624697 -0.12518683 0.045672022 -0.027687453 -0.13136756 0.036886189 -0.037395313 -0.13436115 0.05400867 -0.0075624697 -0.12518683 0.05113731 -0.017260874 -0.1281625 0.045672022 -0.027687453 -0.13136756 0.05400867 -0.0075624697 -0.12518683 0.049017649 0.025215564 -0.11516476 0.054947268 0.0051283748 -0.12130985 0.05400867 -0.0075624697 -0.12518683 0.038046874 0.039524972 -0.11081205 0.049017649 0.025215564 -0.11516476 0.024588721 0.048482697 -0.1081029 0.038046874 0.039524972 -0.11081205 0.05400867 -0.0075624697 -0.12518683 0.05400867 -0.0075624697 -0.12518683 -0.052493617 -0.015576323 -0.12790079 0.024588721 0.048482697 -0.1081029 0.036886189 -0.037395313 -0.13436115 0.034388874 -0.059265919 -0.069714062 0.025321603 -0.045268834 -0.1367998 0.047593508 0.015496523 0.10884603 0.05233755 0.01112677 0.097297311 0.045718931 0.04160485 0.10888004 0.01461519 0.033651073 0.13707682 0.020866845 0.011733172 0.13316691 0.019494029 0.035055667 0.13522029 0.0075103072 0.038067918 0.13658457 0.01461519 0.033651073 0.13707682 0.019494029 0.035055667 0.13522029 0.011326959 0.043724965 0.13264117 0.0075103072 0.038067918 0.13658457 0.019494029 0.035055667 0.13522029 0.028412528 0.042003646 0.12678154 0.019007482 0.046805069 0.1280994 0.019494029 0.035055667 0.13522029 0.028412528 0.042003646 0.12678154 0.019494029 0.035055667 0.13522029 0.026066205 0.03533433 0.13207032 0.03910799 0.038404655 0.12054087 0.044192679 0.041330442 0.11175307 0.04053127 0.046271719 0.11153167 0.033854458 0.044776518 0.12056475 0.03910799 0.038404655 0.12054087 0.04053127 0.046271719 0.11153167 0.025641503 0.052977026 0.11867352 0.019007482 0.046805069 0.1280994 0.028412528 0.042003646 0.12678154 0.028412528 0.042003646 0.12678154 0.033854458 0.044776518 0.12056475 0.025641503 0.052977026 0.11867352 0.028412528 0.042003646 0.12678154 0.03910799 0.038404655 0.12054087 0.033854458 0.044776518 0.12056475 0.03910799 0.038404655 0.12054087 0.04065609 0.013535674 0.11899914 0.047593508 0.015496523 0.10884603 0.0083612166 -0.0097534452 0.13391845 -0.00085703388 0.012644558 0.13729772 -0.0027870752 -0.0097083515 0.13443115 0.055532604 0.00048283063 0.085010327 0.052879315 0.021000179 0.088752568 0.05233755 0.01112677 0.097297311 0.019494029 0.035055667 0.13522029 0.019007482 0.046805069 0.1280994 0.011326959 0.043724965 0.13264117 -0.015068046 0.050937437 0.12549613 -0.0012037972 0.049935322 0.12922569 -0.011711824 0.057938296 0.11897865 0.0075103072 0.038067918 0.13658457 0.004363283 0.033771675 0.13867143 0.01461519 0.033651073 0.13707682 -0.010354906 0.012194569 0.13594602 -0.0027870752 -0.0097083515 0.13443115 -0.00085703388 0.012644558 0.13729772 -0.010354906 0.012194569 0.13594602 -0.015500051 -0.0090458551 0.13225523 -0.0027870752 -0.0097083515 0.13443115 0.004363283 0.033771675 0.13867143 -0.00085703388 0.012644558 0.13729772 0.0096130045 0.010490604 0.1363512 -0.040786095 0.04310355 0.11259037 -0.034927256 0.039977249 0.1218405 -0.03234588 0.047433671 0.11782633 -0.023985438 0.059797108 0.10827395 -0.021957502 0.065471627 0.095596433 -0.034446463 0.056681711 0.10057704 -0.0096590556 0.069578119 0.092465848 -0.0040751575 0.071010627 0.082533129 -0.016918248 0.068588734 0.082818575 -0.028692478 0.063395485 0.082390174 -0.036020465 0.058499251 0.082290769 -0.037399732 0.056897409 0.091006845 -0.037399732 0.056897409 0.091006845 -0.027773971 0.063528113 0.09020029 -0.028692478 0.063395485 0.082390174 0.034200717 0.051773921 0.11234751 0.033854458 0.044776518 0.12056475 0.04053127 0.046271719 0.11153167 0.016468747 0.057379071 0.11833031 0.025641503 0.052977026 0.11867352 0.017157327 0.0620372 0.11083604 0.044538502 0.048591934 0.10050681 0.047937483 0.047620874 0.090756863 0.039363347 0.056013398 0.093847953 0.03810133 0.053392332 0.10396792 0.034200717 0.051773921 0.11234751 0.04053127 0.046271719 0.11153167 0.0090622008 0.06522949 0.10796937 -0.00042866799 0.065464437 0.10888251 0.006463625 0.060901936 0.11643057 0.0075103072 0.038067918 0.13658457 0.011326959 0.043724965 0.13264117 -0.0011813976 0.041726254 0.13500373 -0.0011813976 0.041726254 0.13500373 0.011326959 0.043724965 0.13264117 -0.0012037972 0.049935322 0.12922569 0.013741748 0.051677316 0.12574716 0.0017442219 0.057158936 0.12198002 -0.0012037972 0.049935322 0.12922569 0.0017442219 0.057158936 0.12198002 0.013741748 0.051677316 0.12574716 0.016468747 0.057379071 0.11833031 0.033363543 0.06133876 0.089368097 0.038557444 0.057906605 0.081795663 0.027528735 0.064966612 0.082897015 0.041786116 -0.052827269 -0.065684304 0.036886189 -0.037395313 -0.13436115 0.045672022 -0.027687453 -0.13136756 0.041786116 -0.052827269 -0.065684304 0.045672022 -0.027687453 -0.13136756 0.048987649 -0.043033846 -0.060442425 -0.028094869 -0.0064773504 0.12700725 -0.035829283 -0.0038642047 0.12163063 -0.029453296 -0.067995146 0.10843556 0.033363543 0.06133876 0.089368097 0.039363347 0.056013398 0.093847953 0.038557444 0.057906605 0.081795663 0.034388874 -0.059265919 -0.069714062 0.026108062 -0.064536415 -0.07180284 0.025321603 -0.045268834 -0.1367998 0.032384016 0.012300083 0.12655509 0.026066205 0.03533433 0.13207032 0.026293345 0.012021748 0.13054714 0.020866845 0.011733172 0.13316691 0.026293345 0.012021748 0.13054714 0.026066205 0.03533433 0.13207032 0.020866845 0.011733172 0.13316691 0.026066205 0.03533433 0.13207032 0.019494029 0.035055667 0.13522029 0.032780074 0.036561884 0.12712704 0.026066205 0.03533433 0.13207032 0.032384016 0.012300083 0.12655509 0.032384016 0.012300083 0.12655509 0.036764745 -0.0066555287 0.12149014 0.04065609 0.013535674 0.11899914 0.011326959 0.043724965 0.13264117 0.019007482 0.046805069 0.1280994 0.013741748 0.051677316 0.12574716 -0.015467531 0.06509044 0.10421446 -0.0096590556 0.069578119 0.092465848 -0.021957502 0.065471627 0.095596433 -0.015467531 0.06509044 0.10421446 -0.0017571127 0.06843745 0.10136952 -0.0096590556 0.069578119 0.092465848 -0.010278448 0.041604925 0.13385299 -0.015068046 0.050937437 0.12549613 -0.018705409 0.041290071 0.13139635 -0.010278448 0.041604925 0.13385299 -0.0012037972 0.049935322 0.12922569 -0.015068046 0.050937437 0.12549613 -0.0071402867 0.034125175 0.13807851 -0.0011813976 0.041726254 0.13500373 -0.010278448 0.041604925 0.13385299 -0.010354906 0.012194569 0.13594602 -0.00085703388 0.012644558 0.13729772 -0.0071402867 0.034125175 0.13807851 -0.025892019 0.049126707 0.12130489 -0.022264171 0.055323228 0.11675543 -0.03118732 0.053955432 0.11067141 -0.03118732 0.053955432 0.11067141 -0.03234588 0.047433671 0.11782633 -0.025892019 0.049126707 0.12130489 -0.023985438 0.059797108 0.10827395 -0.03118732 0.053955432 0.11067141 -0.022264171 0.055323228 0.11675543 -0.011711824 0.057938296 0.11897865 -0.023985438 0.059797108 0.10827395 -0.022264171 0.055323228 0.11675543 -0.040786095 0.04310355 0.11259037 -0.03234588 0.047433671 0.11782633 -0.037607975 0.048076045 0.11086718 -0.044552352 0.049390249 0.091754034 -0.037399732 0.056897409 0.091006845 -0.042849049 0.05226846 0.083506376 -0.037399732 0.056897409 0.091006845 -0.034446463 0.056681711 0.10057704 -0.027773971 0.063528113 0.09020029 -0.027773971 0.063528113 0.09020029 -0.034446463 0.056681711 0.10057704 -0.021957502 0.065471627 0.095596433 0.044192679 0.041330442 0.11175307 0.047593508 0.015496523 0.10884603 0.045718931 0.04160485 0.10888004 0.044538502 0.048591934 0.10050681 0.039363347 0.056013398 0.093847953 0.03810133 0.053392332 0.10396792 0.027604492 0.059641764 0.10652085 0.017157327 0.0620372 0.11083604 0.025641503 0.052977026 0.11867352 0.025641503 0.052977026 0.11867352 0.013741748 0.051677316 0.12574716 0.019007482 0.046805069 0.1280994 0.013741748 0.051677316 0.12574716 -0.0012037972 0.049935322 0.12922569 0.011326959 0.043724965 0.13264117 0.027528735 0.064966612 0.082897015 0.016306732 0.06876336 0.090951927 0.033363543 0.06133876 0.089368097 0.027528735 0.064966612 0.082897015 0.017388429 0.068974413 0.083058372 0.016306732 0.06876336 0.090951927 -0.018840015 0.015710033 0.13353062 -0.024426742 0.036211923 0.13137577 -0.028094869 -0.0064773504 0.12700725 -0.038851086 0.016424466 0.11887696 -0.042544518 0.026498459 0.11294658 -0.043951392 -0.0025412606 0.11272019 -0.049590982 -0.00032961401 0.10337268 -0.043951392 -0.0025412606 0.11272019 -0.042544518 0.026498459 0.11294658 0.038557444 0.057906605 0.081795663 0.039363347 0.056013398 0.093847953 0.045688532 0.051016912 0.083273768 0.039363347 0.056013398 0.093847953 0.047937483 0.047620874 0.090756863 0.045688532 0.051016912 0.083273768 0.025321603 -0.045268834 -0.1367998 0.012173273 -0.069586717 -0.073593073 0.011430549 -0.05002144 -0.13828795 0.026066205 0.03533433 0.13207032 0.032780074 0.036561884 0.12712704 0.028412528 0.042003646 0.12678154 0.04065609 0.013535674 0.11899914 0.032780074 0.036561884 0.12712704 0.032384016 0.012300083 0.12655509 0.04065609 0.013535674 0.11899914 0.03910799 0.038404655 0.12054087 0.032780074 0.036561884 0.12712704 -0.0011813976 0.041726254 0.13500373 0.004363283 0.033771675 0.13867143 0.0075103072 0.038067918 0.13658457 0.004363283 0.033771675 0.13867143 0.0096130045 0.010490604 0.1363512 0.01461519 0.033651073 0.13707682 -0.018049419 0.03540593 0.13470443 -0.0071402867 0.034125175 0.13807851 -0.010278448 0.041604925 0.13385299 -0.018049419 0.03540593 0.13470443 -0.010278448 0.041604925 0.13385299 -0.018705409 0.041290071 0.13139635 -0.018049419 0.03540593 0.13470443 -0.024426742 0.036211923 0.13137577 -0.018840015 0.015710033 0.13353062 -0.040786095 0.04310355 0.11259037 -0.042544518 0.026498459 0.11294658 -0.034927256 0.039977249 0.1218405 -0.023104168 0.045434579 0.12653932 -0.018705409 0.041290071 0.13139635 -0.015068046 0.050937437 0.12549613 -0.038851086 0.016424466 0.11887696 -0.034927256 0.039977249 0.1218405 -0.042544518 0.026498459 0.11294658 -0.023104168 0.045434579 0.12653932 -0.03234588 0.047433671 0.11782633 -0.034927256 0.039977249 0.1218405 0.044538502 0.048591934 0.10050681 0.044192679 0.041330442 0.11175307 0.045718931 0.04160485 0.10888004 0.013741748 0.051677316 0.12574716 0.025641503 0.052977026 0.11867352 0.016468747 0.057379071 0.11833031 0.03810133 0.053392332 0.10396792 0.039363347 0.056013398 0.093847953 0.032294206 0.059308153 0.10047494 0.033363543 0.06133876 0.089368097 0.032294206 0.059308153 0.10047494 0.039363347 0.056013398 0.093847953 0.032294206 0.059308153 0.10047494 0.033363543 0.06133876 0.089368097 0.023013076 0.064652517 0.099245794 0.027604492 0.059641764 0.10652085 0.032294206 0.059308153 0.10047494 0.023013076 0.064652517 0.099245794 0.0017442219 0.057158936 0.12198002 -0.011711824 0.057938296 0.11897865 -0.0012037972 0.049935322 0.12922569 -0.048420217 0.016289908 0.10291168 -0.040786095 0.04310355 0.11259037 -0.047236219 0.032055914 0.10019617 -0.042544518 0.026498459 0.11294658 -0.040786095 0.04310355 0.11259037 -0.048420217 0.016289908 0.10291168 0.004363283 0.033771675 0.13867143 -0.0011813976 0.041726254 0.13500373 -0.0071402867 0.034125175 0.13807851 -0.00085703388 0.012644558 0.13729772 0.004363283 0.033771675 0.13867143 -0.0071402867 0.034125175 0.13807851 -0.040786095 0.04310355 0.11259037 -0.044224232 0.046718542 0.10112216 -0.047236219 0.032055914 0.10019617 -0.025892019 0.049126707 0.12130489 -0.03234588 0.047433671 0.11782633 -0.023104168 0.045434579 0.12653932 -0.015068046 0.050937437 0.12549613 -0.011711824 0.057938296 0.11897865 -0.022264171 0.055323228 0.11675543 -0.030097263 0.037881628 0.1269929 -0.034927256 0.039977249 0.1218405 -0.038851086 0.016424466 0.11887696 -0.044224232 0.046718542 0.10112216 -0.040786095 0.04310355 0.11259037 -0.037607975 0.048076045 0.11086718 -0.037607975 0.048076045 0.11086718 -0.03234588 0.047433671 0.11782633 -0.03118732 0.053955432 0.11067141 0.044538502 0.048591934 0.10050681 0.04053127 0.046271719 0.11153167 0.044192679 0.041330442 0.11175307 0.04053127 0.046271719 0.11153167 0.044538502 0.048591934 0.10050681 0.03810133 0.053392332 0.10396792 0.034200717 0.051773921 0.11234751 0.025641503 0.052977026 0.11867352 0.033854458 0.044776518 0.12056475 -0.010278448 0.041604925 0.13385299 -0.0011813976 0.041726254 0.13500373 -0.0012037972 0.049935322 0.12922569 -0.035829283 -0.0038642047 0.12163063 -0.024426742 0.036211923 0.13137577 -0.030097263 0.037881628 0.1269929 -0.035829283 -0.0038642047 0.12163063 -0.028094869 -0.0064773504 0.12700725 -0.024426742 0.036211923 0.13137577 -0.015500051 -0.0090458551 0.13225523 -0.018840015 0.015710033 0.13353062 -0.028094869 -0.0064773504 0.12700725 -0.030097263 0.037881628 0.1269929 -0.023104168 0.045434579 0.12653932 -0.034927256 0.039977249 0.1218405 -0.018049419 0.03540593 0.13470443 -0.018705409 0.041290071 0.13139635 -0.024426742 0.036211923 0.13137577 -0.018840015 0.015710033 0.13353062 -0.015500051 -0.0090458551 0.13225523 -0.010354906 0.012194569 0.13594602 -0.0071402867 0.034125175 0.13807851 -0.018049419 0.03540593 0.13470443 -0.018840015 0.015710033 0.13353062 -0.015068046 0.050937437 0.12549613 -0.025892019 0.049126707 0.12130489 -0.023104168 0.045434579 0.12653932 -0.015068046 0.050937437 0.12549613 -0.022264171 0.055323228 0.11675543 -0.025892019 0.049126707 0.12130489 -0.030097263 0.037881628 0.1269929 -0.038851086 0.016424466 0.11887696 -0.035829283 -0.0038642047 0.12163063 -0.034446463 0.056681711 0.10057704 -0.044224232 0.046718542 0.10112216 -0.037607975 0.048076045 0.11086718 -0.034446463 0.056681711 0.10057704 -0.037607975 0.048076045 0.11086718 -0.03118732 0.053955432 0.11067141 -0.018705409 0.041290071 0.13139635 -0.023104168 0.045434579 0.12653932 -0.024426742 0.036211923 0.13137577 -0.023104168 0.045434579 0.12653932 -0.030097263 0.037881628 0.1269929 -0.024426742 0.036211923 0.13137577 -0.018840015 0.015710033 0.13353062 -0.010354906 0.012194569 0.13594602 -0.0071402867 0.034125175 0.13807851 + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899

+
+
+
+
+ + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + + + + + + + + + + + + + +
diff --git a/external/rlbench/urdfs/panda/meshes/Pandalink2visual_vis_1.dae b/external/rlbench/urdfs/panda/meshes/Pandalink2visual_vis_1.dae new file mode 100644 index 0000000000000000000000000000000000000000..d710d8fdd578c7af65b84b1c91ab2274c3e07f25 --- /dev/null +++ b/external/rlbench/urdfs/panda/meshes/Pandalink2visual_vis_1.dae @@ -0,0 +1,84 @@ + + + + + Assimp + Assimp Exporter + + 2023-09-26T11:24:21 + 2023-09-26T11:24:21 + + Y_UP + + + + + + + + 0 0 0 4.5895327e-41 + + + 0.98000002 0.98000002 1 4.5893926e-41 + + + 0.98000002 0.98000002 1 4.5893926e-41 + + + 0.25 0.25 0.25 3.6295857e-33 + + + + + + + + + + + + + + + + 0.011581494 -0.017922744 -0.074880801 0.01760615 -0.018073155 -0.054558635 0.012271757 -0.019620867 -0.055039164 -0.053571723 0.049785115 -0.12451135 -0.054972168 0.035003744 -0.12451112 -0.054646794 0.043567926 -0.12451122 0.011581494 -0.017922744 -0.074880801 0.022446258 -0.015039234 -0.065417945 0.01760615 -0.018073155 -0.054558635 0.044109222 0.070046417 -0.12451237 0.038704801 0.076277994 -0.056374148 0.046099771 0.067194283 -0.054138523 0.022446258 -0.015039234 -0.065417945 0.022838959 -0.013595589 -0.084058076 0.02959686 -0.010150588 -0.078956954 0.034270808 0.080207564 -0.12451249 0.025874916 0.085739814 -0.12451255 0.028027078 0.08451324 -0.057330947 0.041950449 0.0016506938 -0.12451106 0.03661086 -0.0038360783 -0.12451092 -0.054972168 0.035003744 -0.12451112 0.022446258 -0.015039234 -0.065417945 0.02959686 -0.010150588 -0.078956954 0.029554088 -0.012263684 -0.05268253 0.047249548 0.0090816673 -0.12451129 0.051327635 0.01744354 -0.12451142 0.049432177 0.011719487 -0.057133704 -0.054972168 0.035003744 -0.12451112 -0.053124815 0.02291158 -0.12451084 -0.054409407 0.028945064 -0.12451094 0.011398956 0.090992466 -0.12451255 0.015239746 0.090047389 -0.12451255 -0.054972168 0.035003744 -0.12451112 0.03287835 -0.009255304 -0.058196783 0.042344093 0.0017152483 -0.092463166 0.03757498 -0.0052787331 -0.056303099 -0.054972168 0.035003744 -0.12451112 -0.051090028 0.016785819 -0.12451079 -0.053124815 0.02291158 -0.12451084 0.015239746 0.090047389 -0.12451255 0.025874916 0.085739814 -0.12451255 -0.054972168 0.035003744 -0.12451112 0.034270808 0.080207564 -0.12451249 0.034805603 0.079778567 -0.056661304 0.038704801 0.076277994 -0.056374148 -0.054972168 0.035003744 -0.12451112 -0.048388757 0.011061001 -0.12451065 -0.051090028 0.016785819 -0.12451079 0.029554088 -0.012263684 -0.05268253 0.02959686 -0.010150588 -0.078956954 0.03287835 -0.009255304 -0.058196783 0.025874916 0.085739814 -0.12451255 0.034270808 0.080207564 -0.12451249 -0.054972168 0.035003744 -0.12451112 -0.054972168 0.035003744 -0.12451112 -0.045479555 0.0062773167 -0.12451057 -0.048388757 0.011061001 -0.12451065 0.034805603 0.079778567 -0.056661304 0.034270808 0.080207564 -0.12451249 0.028027078 0.08451324 -0.057330947 -0.054972168 0.035003744 -0.12451112 -0.039899912 -0.00062247878 -0.12451048 -0.045479555 0.0062773167 -0.12451057 0.015239746 0.090047389 -0.12451255 0.011393105 0.090995818 -0.05791628 0.021133879 0.087971434 -0.057675991 0.034837779 -0.0055655418 -0.099674992 0.032166056 -0.0074164919 -0.12451082 0.03661086 -0.0038360783 -0.12451092 0.034270808 0.080207564 -0.12451249 0.038651343 0.07631921 -0.12451245 -0.054972168 0.035003744 -0.12451112 0.051327635 0.01744354 -0.12451142 0.052049965 0.018380556 -0.056624345 0.049432177 0.011719487 -0.057133704 0.038651343 0.07631921 -0.12451245 0.044109222 0.070046417 -0.12451237 -0.054972168 0.035003744 -0.12451112 -0.054972168 0.035003744 -0.12451112 -0.033196591 -0.006642356 -0.12451047 -0.039899912 -0.00062247878 -0.12451048 0.011398956 0.090992466 -0.12451255 0.0032390088 0.092092946 -0.057990246 0.011393105 0.090995818 -0.05791628 0.044109222 0.070046417 -0.12451237 0.047271498 0.065308549 -0.1245123 -0.054972168 0.035003744 -0.12451112 0.028027078 0.08451324 -0.057330947 0.025874916 0.085739814 -0.12451255 0.021133879 0.087971434 -0.057675991 0.042344093 0.0017152483 -0.092463166 0.03287835 -0.009255304 -0.058196783 0.03661086 -0.0038360783 -0.12451092 0.042344093 0.0017152483 -0.092463166 0.046397757 0.00600655 -0.057456184 0.042668052 0.00057644653 -0.05755375 0.042344093 0.0017152483 -0.092463166 0.041950449 0.0016506938 -0.12451106 0.046397757 0.00600655 -0.057456184 0.053975321 0.047815405 -0.047385629 0.054793745 0.041992512 -0.04457153 0.054816153 0.041752227 -0.12451137 -0.054972168 0.035003744 -0.12451112 -0.026755083 -0.010861097 -0.12451037 -0.033196591 -0.006642356 -0.12451047 0.053477135 0.023559801 -0.055631828 0.054850142 0.033010188 -0.12451144 0.054613564 0.030287966 -0.055754777 0.0006743971 -0.018071787 -0.094958313 0.0094867367 -0.017128665 -0.099161766 0.0037215324 -0.018860685 -0.077355936 0.011581494 -0.017922744 -0.074880801 0.0094867367 -0.017128665 -0.099161766 0.016491989 -0.016016807 -0.084348172 0.047271498 0.065308549 -0.1245123 0.050812326 0.05825739 -0.12451219 -0.054972168 0.035003744 -0.12451112 0.016491989 -0.016016807 -0.084348172 0.0094867367 -0.017128665 -0.099161766 0.020877058 -0.013769025 -0.10452543 0.050812326 0.05825739 -0.12451219 0.052378941 0.054056164 -0.12451236 -0.054972168 0.035003744 -0.12451112 -0.054972168 0.035003744 -0.12451112 -0.0099416682 -0.016917216 -0.12451037 -0.026755083 -0.010861097 -0.12451037 0.052378941 0.054056164 -0.12451236 0.053767815 0.048804104 -0.12451173 -0.054972168 0.035003744 -0.12451112 0.03757498 -0.0052787331 -0.056303099 0.042344093 0.0017152483 -0.092463166 0.042668052 0.00057644653 -0.05755375 0.054850142 0.033010188 -0.12451144 0.054995235 0.038180016 -0.11951387 0.055006221 0.036569893 -0.041793402 0.054995235 0.038180016 -0.11951387 0.054816153 0.041752227 -0.12451137 0.054793745 0.041992512 -0.04457153 0.053767815 0.048804104 -0.12451173 0.054816153 0.041752227 -0.12451137 -0.054972168 0.035003744 -0.12451112 0.0094867367 -0.017128665 -0.099161766 0.021041807 -0.013638202 -0.12451069 0.020877058 -0.013769025 -0.10452543 0.053767815 0.048804104 -0.12451173 0.052378941 0.054056164 -0.12451236 0.052548207 0.053459805 -0.049674813 0.054850142 0.033010188 -0.12451144 0.055006221 0.036569893 -0.041793402 0.054613564 0.030287966 -0.055754777 -0.054972168 0.035003744 -0.12451112 -0.00094656635 -0.01781765 -0.12451041 -0.0099416682 -0.016917216 -0.12451037 0.0094867367 -0.017128665 -0.099161766 0.011581494 -0.017922744 -0.074880801 0.0037215324 -0.018860685 -0.077355936 0.054816153 0.041752227 -0.12451137 0.054850142 0.033010188 -0.12451144 -0.054972168 0.035003744 -0.12451112 0.020877058 -0.013769025 -0.10452543 0.022838959 -0.013595589 -0.084058076 0.016491989 -0.016016807 -0.084348172 0.052378941 0.054056164 -0.12451236 0.050812326 0.05825739 -0.12451219 0.04956346 0.061047237 -0.052289136 -0.049895365 0.060344905 -0.12451157 -0.053571723 0.049785115 -0.12451135 -0.051767528 0.055814411 -0.12451147 0.052378941 0.054056164 -0.12451236 0.04956346 0.061047237 -0.052289136 0.052548207 0.053459805 -0.049674813 -0.049895365 0.060344905 -0.12451157 -0.054972168 0.035003744 -0.12451112 -0.053571723 0.049785115 -0.12451135 -0.054972168 0.035003744 -0.12451112 0.010453521 -0.016830117 -0.1245105 -0.00094656635 -0.01781765 -0.12451041 0.026881682 -0.010813842 -0.12451073 0.032166056 -0.0074164919 -0.12451082 0.034837779 -0.0055655418 -0.099674992 0.050812326 0.05825739 -0.12451219 0.047271498 0.065308549 -0.1245123 0.04956346 0.061047237 -0.052289136 0.047271498 0.065308549 -0.1245123 0.046099771 0.067194283 -0.054138523 0.04956346 0.061047237 -0.052289136 -0.040944561 0.073937461 -0.12451188 -0.054972168 0.035003744 -0.12451112 -0.044961598 0.068917848 -0.12451176 -0.044961598 0.068917848 -0.12451176 -0.054972168 0.035003744 -0.12451112 -0.049895365 0.060344905 -0.12451157 0.054850142 0.033010188 -0.12451144 0.051327635 0.01744354 -0.12451142 -0.054972168 0.035003744 -0.12451112 -0.054972168 0.035003744 -0.12451112 0.021041807 -0.013638202 -0.12451069 0.010453521 -0.016830117 -0.1245105 0.053767815 0.048804104 -0.12451173 0.052548207 0.053459805 -0.049674813 0.053975321 0.047815405 -0.047385629 -0.026156286 0.085576117 -0.1245122 -0.054972168 0.035003744 -0.12451112 -0.032767776 0.081380881 -0.12451208 0.034837779 -0.0055655418 -0.099674992 0.03661086 -0.0038360783 -0.12451092 0.03287835 -0.009255304 -0.058196783 -0.032767776 0.081380881 -0.12451208 -0.054972168 0.035003744 -0.12451112 -0.036986787 0.077914283 -0.12451199 -0.036986787 0.077914283 -0.12451199 -0.054972168 0.035003744 -0.12451112 -0.040944561 0.073937461 -0.12451188 0.00024950391 0.092183374 -0.12451238 -0.054972168 0.035003744 -0.12451112 -0.0044082562 0.092041984 -0.12451246 0.047249548 0.0090816673 -0.12451129 0.046397757 0.00600655 -0.057456184 0.041950449 0.0016506938 -0.12451106 0.047249548 0.0090816673 -0.12451129 0.049432177 0.011719487 -0.057133704 0.046397757 0.00600655 -0.057456184 -0.0044082562 0.092041984 -0.12451246 -0.054972168 0.035003744 -0.12451112 -0.010967478 0.091103755 -0.12451246 -0.010967478 0.091103755 -0.12451246 -0.054972168 0.035003744 -0.12451112 -0.016333504 0.089719892 -0.12451234 -0.016333504 0.089719892 -0.12451234 -0.054972168 0.035003744 -0.12451112 -0.021595161 0.087792017 -0.12451227 -0.021595161 0.087792017 -0.12451227 -0.054972168 0.035003744 -0.12451112 -0.026156286 0.085576117 -0.1245122 0.047271498 0.065308549 -0.1245123 0.044109222 0.070046417 -0.12451237 0.046099771 0.067194283 -0.054138523 0.011398956 0.090992466 -0.12451255 -0.054972168 0.035003744 -0.12451112 0.00024950391 0.092183374 -0.12451238 0.051327635 0.01744354 -0.12451142 0.047249548 0.0090816673 -0.12451129 -0.054972168 0.035003744 -0.12451112 -0.054972168 0.035003744 -0.12451112 0.026881682 -0.010813842 -0.12451073 0.021041807 -0.013638202 -0.12451069 0.022838959 -0.013595589 -0.084058076 0.020877058 -0.013769025 -0.10452543 0.02959686 -0.010150588 -0.078956954 0.041950449 0.0016506938 -0.12451106 0.042344093 0.0017152483 -0.092463166 0.03661086 -0.0038360783 -0.12451092 -0.004489522 -0.019044271 -0.074067876 0.0037215324 -0.018860685 -0.077355936 -0.0032224995 -0.021323033 -0.05289666 -0.054972168 0.035003744 -0.12451112 0.032166056 -0.0074164919 -0.12451082 0.026881682 -0.010813842 -0.12451073 0.044109222 0.070046417 -0.12451237 0.038651343 0.07631921 -0.12451245 0.038704801 0.076277994 -0.056374148 0.0037215324 -0.018860685 -0.077355936 0.0038555362 -0.02125578 -0.052998185 -0.0032224995 -0.021323033 -0.05289666 0.047249548 0.0090816673 -0.12451129 0.041950449 0.0016506938 -0.12451106 -0.054972168 0.035003744 -0.12451112 -0.054972168 0.035003744 -0.12451112 0.03661086 -0.0038360783 -0.12451092 0.032166056 -0.0074164919 -0.12451082 0.011581494 -0.017922744 -0.074880801 0.012271757 -0.019620867 -0.055039164 0.0037215324 -0.018860685 -0.077355936 0.020877058 -0.013769025 -0.10452543 0.026881682 -0.010813842 -0.12451073 0.02959686 -0.010150588 -0.078956954 -0.054972168 0.035003744 -0.12451112 -0.05484698 0.041374575 -0.068792693 -0.054646794 0.043567926 -0.12451122 0.034837779 -0.0055655418 -0.099674992 0.02959686 -0.010150588 -0.078956954 0.026881682 -0.010813842 -0.12451073 0.053477135 0.023559801 -0.055631828 0.052049965 0.018380556 -0.056624345 0.051327635 0.01744354 -0.12451142 -0.00094656635 -0.01781765 -0.12451041 -0.005527887 -0.01761125 -0.10229329 -0.0099416682 -0.016917216 -0.12451037 0.0006743971 -0.018071787 -0.094958313 -0.005527887 -0.01761125 -0.10229329 -0.00094656635 -0.01781765 -0.12451041 0.022446258 -0.015039234 -0.065417945 0.016491989 -0.016016807 -0.084348172 0.022838959 -0.013595589 -0.084058076 0.0037215324 -0.018860685 -0.077355936 0.012271757 -0.019620867 -0.055039164 0.0038555362 -0.02125578 -0.052998185 0.038651343 0.07631921 -0.12451245 0.034270808 0.080207564 -0.12451249 0.038704801 0.076277994 -0.056374148 0.011581494 -0.017922744 -0.074880801 0.016491989 -0.016016807 -0.084348172 0.022446258 -0.015039234 -0.065417945 0.011398956 0.090992466 -0.12451255 0.011393105 0.090995818 -0.05791628 0.015239746 0.090047389 -0.12451255 0.02959686 -0.010150588 -0.078956954 0.034837779 -0.0055655418 -0.099674992 0.03287835 -0.009255304 -0.058196783 0.054793745 0.041992512 -0.04457153 0.055006221 0.036569893 -0.041793402 0.054995235 0.038180016 -0.11951387 0.035517983 -0.024691869 -0.0063416297 0.027941443 -0.031167068 -0.0058349967 0.029718235 -0.020528512 -0.02372447 -0.053009875 0.051891707 -0.049080487 -0.051767528 0.055814411 -0.12451147 -0.053571723 0.049785115 -0.12451135 0.031176873 -0.012410412 -0.045449931 0.03757498 -0.0052787331 -0.056303099 0.038947646 -0.0083957249 -0.035121467 0.010982774 -0.070354395 0.024512576 0.00012874059 -0.054879177 0.010893499 0.012118864 -0.063586377 0.020138027 0.044042084 -0.01003884 -0.016087679 0.047643434 0.001187273 -0.029304709 0.050076935 -0.00057073607 -0.0152101 0.010982774 -0.070354395 0.024512576 -0.0042296206 -0.070331439 0.023369877 0.00012874059 -0.054879177 0.010893499 0.029554088 -0.012263684 -0.05268253 0.03287835 -0.009255304 -0.058196783 0.03757498 -0.0052787331 -0.056303099 0.038947646 -0.0083957249 -0.035121467 0.03757498 -0.0052787331 -0.056303099 0.042668052 0.00057644653 -0.05755375 -0.0086269584 -0.017856 -0.08452107 -0.017784091 -0.014951798 -0.10190929 -0.0099416682 -0.016917216 -0.12451037 0.033326544 -0.042710472 0.015754912 0.028632605 -0.037335973 0.0039010274 0.033168267 -0.037012409 0.0087203551 0.0060961279 -0.039583523 -0.0062891501 0.006680002 -0.03315689 -0.01655695 0.017919609 -0.027546041 -0.021929506 -0.0099416682 -0.016917216 -0.12451037 -0.017784091 -0.014951798 -0.10190929 -0.026755083 -0.010861097 -0.12451037 0.006680002 -0.03315689 -0.01655695 1.6957863e-05 -0.032232072 -0.019468999 0.010213758 -0.027741935 -0.026526578 0.017919609 -0.027546041 -0.021929506 0.017832082 -0.021099826 -0.039201085 0.026672663 -0.018643346 -0.033578683 0.00038422749 -0.023945715 -0.041049406 0.012271757 -0.019620867 -0.055039164 0.0099325124 -0.021583131 -0.046330635 -0.017784091 -0.014951798 -0.10190929 -0.025046125 -0.01189736 -0.1012999 -0.026755083 -0.010861097 -0.12451037 0.031029498 -0.07073237 0.03555746 0.034038369 -0.060901746 0.032236263 0.038037647 -0.070532717 0.043396614 0.041167665 -0.048720375 0.033357866 0.039333042 -0.03962655 0.021153476 0.045285624 -0.034919728 0.028372722 0.017919609 -0.027546041 -0.021929506 0.026672663 -0.018643346 -0.033578683 0.032186642 -0.015437664 -0.032124903 0.038037647 -0.070532717 0.043396614 0.034038369 -0.060901746 0.032236263 0.040179722 -0.059165008 0.039424244 0.039333042 -0.03962655 0.021153476 0.044615433 -0.031720322 0.022471508 0.045285624 -0.034919728 0.028372722 0.040050086 -0.028960178 0.0085080247 0.040755644 -0.020257348 -0.0042929575 0.04438607 -0.021554152 0.0063321674 0.050076935 -0.00057073607 -0.0152101 0.052182052 0.0087892311 -0.024154058 0.054833587 -0.0027331267 0.010335148 0.046517275 -0.069716416 0.069814332 0.045668427 -0.06952329 0.060351711 0.052312337 -0.040407747 0.069151953 0.033326544 -0.042710472 0.015754912 0.033168267 -0.037012409 0.0087203551 0.039333042 -0.03962655 0.021153476 0.0060961279 -0.039583523 -0.0062891501 0.017919609 -0.027546041 -0.021929506 0.019094838 -0.038513999 -0.0023967444 -0.026755083 -0.010861097 -0.12451037 -0.032727744 -0.007299894 -0.095474802 -0.033196591 -0.006642356 -0.12451047 0.038037647 -0.070532717 0.043396614 0.040179722 -0.059165008 0.039424244 0.044188526 -0.069392383 0.054649819 0.035517983 -0.024691869 -0.0063416297 0.029718235 -0.020528512 -0.02372447 0.040755644 -0.020257348 -0.0042929575 0.038947646 -0.0083957249 -0.035121467 0.042668052 0.00057644653 -0.05755375 0.044916246 0.0020243949 -0.046474986 0.00038422749 -0.023945715 -0.041049406 0.0038555362 -0.02125578 -0.052998185 0.012271757 -0.019620867 -0.055039164 0.022079874 -0.070031703 0.028570114 0.012118864 -0.063586377 0.020138027 0.019232864 -0.054473653 0.015540203 0.038947646 -0.0083957249 -0.035121467 0.044916246 0.0020243949 -0.046474986 0.043037158 -0.0040768571 -0.033859059 0.00012874059 -0.054879177 0.010893499 0.012226734 -0.054170687 0.012311758 0.012118864 -0.063586377 0.020138027 0.045668427 -0.06952329 0.060351711 0.044188526 -0.069392383 0.054649819 0.050642785 -0.038134955 0.051480334 0.044188526 -0.069392383 0.054649819 0.040179722 -0.059165008 0.039424244 0.044386517 -0.053051725 0.043431588 0.050076935 -0.00057073607 -0.0152101 0.051799364 0.014399576 -0.040290181 0.052182052 0.0087892311 -0.024154058 0.022079874 -0.070031703 0.028570114 0.019232864 -0.054473653 0.015540203 0.021326859 -0.061922956 0.02273926 0.052182052 0.0087892311 -0.024154058 0.054247312 0.016969105 -0.026000896 0.054833587 -0.0027331267 0.010335148 0.044615433 -0.031720322 0.022471508 0.04438607 -0.021554152 0.0063321674 0.048568338 -0.022685705 0.020542981 0.017832082 -0.021099826 -0.039201085 0.0099325124 -0.021583131 -0.046330635 0.022251101 -0.017824015 -0.044835784 0.022079874 -0.070031703 0.028570114 0.026210958 -0.050966535 0.016939757 0.031029498 -0.07073237 0.03555746 0.022079874 -0.070031703 0.028570114 0.021326859 -0.061922956 0.02273926 0.026210958 -0.050966535 0.016939757 0.012226734 -0.054170687 0.012311758 0.019232864 -0.054473653 0.015540203 0.012118864 -0.063586377 0.020138027 0.050076935 -0.00057073607 -0.0152101 0.047643434 0.001187273 -0.029304709 0.051799364 0.014399576 -0.040290181 0.05021156 -0.026690114 0.033592649 0.048568338 -0.022685705 0.020542981 0.054833587 -0.0027331267 0.010335148 0.050642785 -0.038134955 0.051480334 0.05021156 -0.026690114 0.033592649 0.052219525 -0.030071292 0.050050437 0.045668427 -0.06952329 0.060351711 0.052219525 -0.030071292 0.050050437 0.052312337 -0.040407747 0.069151953 0.048117526 -0.03474962 0.0367251 0.045285624 -0.034919728 0.028372722 0.05021156 -0.026690114 0.033592649 0.031029498 -0.07073237 0.03555746 0.026210958 -0.050966535 0.016939757 0.034038369 -0.060901746 0.032236263 1.6957863e-05 -0.032232072 -0.019468999 -8.2277133e-05 -0.027842265 -0.029253034 0.010213758 -0.027741935 -0.026526578 0.052312337 -0.040407747 0.069151953 0.052219525 -0.030071292 0.050050437 0.054991633 -0.019030128 0.056651842 0.00012874059 -0.054879177 0.010893499 0.00012200962 -0.045918226 0.0013196311 0.0091552893 -0.048613321 0.0058020707 0.0099325124 -0.021583131 -0.046330635 0.012271757 -0.019620867 -0.055039164 0.01760615 -0.018073155 -0.054558635 0.039333042 -0.03962655 0.021153476 0.040050086 -0.028960178 0.0085080247 0.044615433 -0.031720322 0.022471508 0.039333042 -0.03962655 0.021153476 0.033168267 -0.037012409 0.0087203551 0.040050086 -0.028960178 0.0085080247 0.043037158 -0.0040768571 -0.033859059 0.044916246 0.0020243949 -0.046474986 0.047643434 0.001187273 -0.029304709 0.019094838 -0.038513999 -0.0023967444 0.017919609 -0.027546041 -0.021929506 0.0237286 -0.027956782 -0.015824173 0.019094838 -0.038513999 -0.0023967444 0.0237286 -0.027956782 -0.015824173 0.027941443 -0.031167068 -0.0058349967 0.021326859 -0.061922956 0.02273926 0.019232864 -0.054473653 0.015540203 0.026210958 -0.050966535 0.016939757 0.028632605 -0.037335973 0.0039010274 0.035517983 -0.024691869 -0.0063416297 0.033168267 -0.037012409 0.0087203551 0.00012874059 -0.054879177 0.010893499 0.0091552893 -0.048613321 0.0058020707 0.012226734 -0.054170687 0.012311758 -0.044520833 0.0046228589 -0.096018456 -0.048388757 0.011061001 -0.12451065 -0.045479555 0.0062773167 -0.12451057 0.042668052 0.00057644653 -0.05755375 0.046397757 0.00600655 -0.057456184 0.044916246 0.0020243949 -0.046474986 0.017832082 -0.021099826 -0.039201085 0.022251101 -0.017824015 -0.044835784 0.026672663 -0.018643346 -0.033578683 0.054247312 0.016969105 -0.026000896 0.054904621 0.0155115 -0.017919647 0.054833587 -0.0027331267 0.010335148 0.044916246 0.0020243949 -0.046474986 0.049432177 0.011719487 -0.057133704 0.047643434 0.001187273 -0.029304709 0.022251101 -0.017824015 -0.044835784 0.0099325124 -0.021583131 -0.046330635 0.01760615 -0.018073155 -0.054558635 0.044916246 0.0020243949 -0.046474986 0.046397757 0.00600655 -0.057456184 0.049432177 0.011719487 -0.057133704 0.052312337 -0.040407747 0.069151953 0.054991633 -0.019030128 0.056651842 0.054998558 -0.021952154 0.070749529 0.006680002 -0.03315689 -0.01655695 0.010213758 -0.027741935 -0.026526578 0.017919609 -0.027546041 -0.021929506 0.04438607 -0.021554152 0.0063321674 0.050076935 -0.00057073607 -0.0152101 0.048568338 -0.022685705 0.020542981 0.029718235 -0.020528512 -0.02372447 0.03940228 -0.013726423 -0.020197915 0.040755644 -0.020257348 -0.0042929575 0.04438607 -0.021554152 0.0063321674 0.040755644 -0.020257348 -0.0042929575 0.044042084 -0.01003884 -0.016087679 0.05021156 -0.026690114 0.033592649 0.054833587 -0.0027331267 0.010335148 0.054845747 -0.0097936057 0.02570273 0.040179722 -0.059165008 0.039424244 0.041167665 -0.048720375 0.033357866 0.044386517 -0.053051725 0.043431588 0.051799364 0.014399576 -0.040290181 0.05357505 0.021538155 -0.041958515 0.052182052 0.0087892311 -0.024154058 0.047643434 0.001187273 -0.029304709 0.049432177 0.011719487 -0.057133704 0.052049965 0.018380556 -0.056624345 0.040179722 -0.059165008 0.039424244 0.034038369 -0.060901746 0.032236263 0.03751228 -0.049822669 0.028288536 0.052182052 0.0087892311 -0.024154058 0.05357505 0.021538155 -0.041958515 0.054247312 0.016969105 -0.026000896 0.040179722 -0.059165008 0.039424244 0.03751228 -0.049822669 0.028288536 0.041167665 -0.048720375 0.033357866 0.028632605 -0.037335973 0.0039010274 0.027941443 -0.031167068 -0.0058349967 0.035517983 -0.024691869 -0.0063416297 0.00012200962 -0.045918226 0.0013196311 1.5599955e-05 -0.041060552 -0.0049596308 0.0091552893 -0.048613321 0.0058020707 0.029718235 -0.020528512 -0.02372447 0.032186642 -0.015437664 -0.032124903 0.03940228 -0.013726423 -0.020197915 0.040755644 -0.020257348 -0.0042929575 0.03940228 -0.013726423 -0.020197915 0.044042084 -0.01003884 -0.016087679 0.047643434 0.001187273 -0.029304709 0.053477135 0.023559801 -0.055631828 0.051799364 0.014399576 -0.040290181 0.045668427 -0.06952329 0.060351711 0.050642785 -0.038134955 0.051480334 0.052219525 -0.030071292 0.050050437 0.047643434 0.001187273 -0.029304709 0.052049965 0.018380556 -0.056624345 0.053477135 0.023559801 -0.055631828 0.054247312 0.016969105 -0.026000896 0.054911043 0.027648922 -0.033182748 0.054904621 0.0155115 -0.017919647 0.044188526 -0.069392383 0.054649819 0.044386517 -0.053051725 0.043431588 0.050642785 -0.038134955 0.051480334 -0.054972168 0.035003744 -0.12451112 -0.054409407 0.028945064 -0.12451094 -0.054988068 0.035787184 -0.080863275 0.054247312 0.016969105 -0.026000896 0.05357505 0.021538155 -0.041958515 0.054911043 0.027648922 -0.033182748 0.051799364 0.014399576 -0.040290181 0.053477135 0.023559801 -0.055631828 0.05357505 0.021538155 -0.041958515 0.0091552893 -0.048613321 0.0058020707 1.5599955e-05 -0.041060552 -0.0049596308 0.0060961279 -0.039583523 -0.0062891501 0.045285624 -0.034919728 0.028372722 0.048568338 -0.022685705 0.020542981 0.05021156 -0.026690114 0.033592649 0.05357505 0.021538155 -0.041958515 0.053477135 0.023559801 -0.055631828 0.054613564 0.030287966 -0.055754777 0.022251101 -0.017824015 -0.044835784 0.029554088 -0.012263684 -0.05268253 0.031176873 -0.012410412 -0.045449931 0.034038369 -0.060901746 0.032236263 0.026210958 -0.050966535 0.016939757 0.033326544 -0.042710472 0.015754912 0.01760615 -0.018073155 -0.054558635 0.029554088 -0.012263684 -0.05268253 0.022251101 -0.017824015 -0.044835784 0.033168267 -0.037012409 0.0087203551 0.035517983 -0.024691869 -0.0063416297 0.040050086 -0.028960178 0.0085080247 0.032186642 -0.015437664 -0.032124903 0.026672663 -0.018643346 -0.033578683 0.031176873 -0.012410412 -0.045449931 0.022251101 -0.017824015 -0.044835784 0.031176873 -0.012410412 -0.045449931 0.026672663 -0.018643346 -0.033578683 0.044615433 -0.031720322 0.022471508 0.048568338 -0.022685705 0.020542981 0.045285624 -0.034919728 0.028372722 0.026210958 -0.050966535 0.016939757 0.019232864 -0.054473653 0.015540203 0.028632605 -0.037335973 0.0039010274 0.034038369 -0.060901746 0.032236263 0.033326544 -0.042710472 0.015754912 0.03751228 -0.049822669 0.028288536 0.019232864 -0.054473653 0.015540203 0.012226734 -0.054170687 0.012311758 0.01904984 -0.041952625 0.0021275517 0.05357505 0.021538155 -0.041958515 0.054613564 0.030287966 -0.055754777 0.054911043 0.027648922 -0.033182748 -8.2277133e-05 -0.027842265 -0.029253034 0.00038422749 -0.023945715 -0.041049406 0.0099325124 -0.021583131 -0.046330635 0.0091552893 -0.048613321 0.0058020707 0.01904984 -0.041952625 0.0021275517 0.012226734 -0.054170687 0.012311758 -0.039899912 -0.00062247878 -0.12451048 -0.032727744 -0.007299894 -0.095474802 -0.036722664 -0.0059642214 -0.057878308 0.01760615 -0.018073155 -0.054558635 0.022446258 -0.015039234 -0.065417945 0.029554088 -0.012263684 -0.05268253 0.019232864 -0.054473653 0.015540203 0.01904984 -0.041952625 0.0021275517 0.028632605 -0.037335973 0.0039010274 0.054911043 0.027648922 -0.033182748 0.054613564 0.030287966 -0.055754777 0.055006221 0.036569893 -0.041793402 0.032186642 -0.015437664 -0.032124903 0.038947646 -0.0083957249 -0.035121467 0.03940228 -0.013726423 -0.020197915 0.03751228 -0.049822669 0.028288536 0.033326544 -0.042710472 0.015754912 0.039333042 -0.03962655 0.021153476 0.032186642 -0.015437664 -0.032124903 0.031176873 -0.012410412 -0.045449931 0.038947646 -0.0083957249 -0.035121467 0.048568338 -0.022685705 0.020542981 0.050076935 -0.00057073607 -0.0152101 0.054833587 -0.0027331267 0.010335148 -8.2277133e-05 -0.027842265 -0.029253034 0.0099325124 -0.021583131 -0.046330635 0.010213758 -0.027741935 -0.026526578 -0.025046125 -0.01189736 -0.1012999 -0.031876761 -0.010433072 -0.054122746 -0.032727744 -0.007299894 -0.095474802 -0.023833934 -0.014535409 -0.063514151 -0.018361425 -0.016098052 -0.073153242 -0.017661691 -0.018064838 -0.054452606 0.052219525 -0.030071292 0.050050437 0.054845747 -0.0097936057 0.02570273 0.054991633 -0.019030128 0.056651842 0.044042084 -0.01003884 -0.016087679 0.03940228 -0.013726423 -0.020197915 0.043037158 -0.0040768571 -0.033859059 0.03751228 -0.049822669 0.028288536 0.039333042 -0.03962655 0.021153476 0.041167665 -0.048720375 0.033357866 0.044615433 -0.031720322 0.022471508 0.040050086 -0.028960178 0.0085080247 0.04438607 -0.021554152 0.0063321674 0.04438607 -0.021554152 0.0063321674 0.044042084 -0.01003884 -0.016087679 0.050076935 -0.00057073607 -0.0152101 -0.025046125 -0.01189736 -0.1012999 -0.023833934 -0.014535409 -0.063514151 -0.031876761 -0.010433072 -0.054122746 1.5599955e-05 -0.041060552 -0.0049596308 1.6957863e-05 -0.032232072 -0.019468999 0.0060961279 -0.039583523 -0.0062891501 0.041167665 -0.048720375 0.033357866 0.045285624 -0.034919728 0.028372722 0.044386517 -0.053051725 0.043431588 0.040050086 -0.028960178 0.0085080247 0.035517983 -0.024691869 -0.0063416297 0.040755644 -0.020257348 -0.0042929575 1.6957863e-05 -0.032232072 -0.019468999 0.006680002 -0.03315689 -0.01655695 0.0060961279 -0.039583523 -0.0062891501 0.010213758 -0.027741935 -0.026526578 0.017832082 -0.021099826 -0.039201085 0.017919609 -0.027546041 -0.021929506 0.0091552893 -0.048613321 0.0058020707 0.019094838 -0.038513999 -0.0023967444 0.01904984 -0.041952625 0.0021275517 0.0091552893 -0.048613321 0.0058020707 0.0060961279 -0.039583523 -0.0062891501 0.019094838 -0.038513999 -0.0023967444 0.044042084 -0.01003884 -0.016087679 0.043037158 -0.0040768571 -0.033859059 0.047643434 0.001187273 -0.029304709 0.01904984 -0.041952625 0.0021275517 0.019094838 -0.038513999 -0.0023967444 0.028632605 -0.037335973 0.0039010274 0.031176873 -0.012410412 -0.045449931 0.029554088 -0.012263684 -0.05268253 0.03757498 -0.0052787331 -0.056303099 0.044386517 -0.053051725 0.043431588 0.045285624 -0.034919728 0.028372722 0.048117526 -0.03474962 0.0367251 0.038947646 -0.0083957249 -0.035121467 0.043037158 -0.0040768571 -0.033859059 0.03940228 -0.013726423 -0.020197915 -0.032767776 0.081380881 -0.12451208 -0.036986787 0.077914283 -0.12451199 -0.037161771 0.077734441 -0.056330673 0.050642785 -0.038134955 0.051480334 0.044386517 -0.053051725 0.043431588 0.05021156 -0.026690114 0.033592649 0.0237286 -0.027956782 -0.015824173 0.017919609 -0.027546041 -0.021929506 0.032186642 -0.015437664 -0.032124903 -0.012754771 -0.019534687 -0.054748308 -0.004489522 -0.019044271 -0.074067876 -0.0032224995 -0.021323033 -0.05289666 0.026210958 -0.050966535 0.016939757 0.028632605 -0.037335973 0.0039010274 0.033326544 -0.042710472 0.015754912 0.052219525 -0.030071292 0.050050437 0.05021156 -0.026690114 0.033592649 0.054845747 -0.0097936057 0.02570273 0.010213758 -0.027741935 -0.026526578 0.0099325124 -0.021583131 -0.046330635 0.017832082 -0.021099826 -0.039201085 0.0010812272 -0.070397437 0.023245985 -0.0042296206 -0.070331439 0.023369877 0.010982774 -0.070354395 0.024512576 0.0237286 -0.027956782 -0.015824173 0.029718235 -0.020528512 -0.02372447 0.027941443 -0.031167068 -0.0058349967 0.0237286 -0.027956782 -0.015824173 0.032186642 -0.015437664 -0.032124903 0.029718235 -0.020528512 -0.02372447 0.012118864 -0.063586377 0.020138027 0.022079874 -0.070031703 0.028570114 0.017540907 -0.070288546 0.026599202 0.012118864 -0.063586377 0.020138027 0.017540907 -0.070288546 0.026599202 0.010982774 -0.070354395 0.024512576 0.044386517 -0.053051725 0.043431588 0.048117526 -0.03474962 0.0367251 0.05021156 -0.026690114 0.033592649 0.019094838 -0.038513999 -0.0023967444 0.027941443 -0.031167068 -0.0058349967 0.028632605 -0.037335973 0.0039010274 0.030192418 -0.069235064 0.10503285 0.036783081 -0.069481686 0.098065592 0.0343991 -0.059155211 0.10423512 -0.045479555 0.0062773167 -0.12451057 -0.039899912 -0.00062247878 -0.12451048 -0.044520833 0.0046228589 -0.096018456 0.030192418 -0.069235064 0.10503285 0.0343991 -0.059155211 0.10423512 0.030446805 -0.058202244 0.1080227 -0.0010506092 -0.041433197 0.12207931 0.0070767039 -0.04309766 0.12129916 0.00097169075 -0.026724445 0.1244927 0.048935693 -0.038891159 0.089395441 0.045816597 -0.025725296 0.099946246 0.043868732 -0.045983914 0.096602231 0.048935693 -0.038891159 0.089395441 0.050722126 -0.024851842 0.090784848 0.045816597 -0.025725296 0.099946246 0.0343991 -0.059155211 0.10423512 0.040910769 -0.045819629 0.10095178 0.03535432 -0.042483609 0.10799588 0.0070767039 -0.04309766 0.12129916 0.010012458 -0.026727786 0.12357783 0.00097169075 -0.026724445 0.1244927 0.046595804 -0.060004946 0.08374355 0.050856031 -0.043423604 0.080108099 0.048935693 -0.038891159 0.089395441 0.039403934 -0.026243011 0.10789824 0.03535432 -0.042483609 0.10799588 0.043028526 -0.026079403 0.10378142 0.013462168 -0.047934793 0.11902189 0.020496381 -0.042989366 0.11754671 0.020234114 -0.026733629 0.12064609 0.041067638 -0.069619305 0.091406122 0.048935693 -0.038891159 0.089395441 0.043868732 -0.045983914 0.096602231 0.043028526 -0.026079403 0.10378142 0.03535432 -0.042483609 0.10799588 0.040910769 -0.045819629 0.10095178 0.0343991 -0.059155211 0.10423512 0.03535432 -0.042483609 0.10799588 0.030446805 -0.058202244 0.1080227 0.046517275 -0.069716416 0.069814332 0.052300125 -0.040153991 0.073291518 0.050856031 -0.043423604 0.080108099 0.013462168 -0.047934793 0.11902189 0.020234114 -0.026733629 0.12064609 0.010012458 -0.026727786 0.12357783 0.036783081 -0.069481686 0.098065592 0.041067638 -0.069619305 0.091406122 0.043868732 -0.045983914 0.096602231 0.040910769 -0.045819629 0.10095178 0.036783081 -0.069481686 0.098065592 0.043868732 -0.045983914 0.096602231 0.020496381 -0.042989366 0.11754671 0.025767434 -0.042824291 0.11494943 0.024642654 -0.026677396 0.11868601 0.043577582 -0.070444129 0.084858671 0.046595804 -0.060004946 0.08374355 0.041067638 -0.069619305 0.091406122 0.036783081 -0.069481686 0.098065592 0.040910769 -0.045819629 0.10095178 0.0343991 -0.059155211 0.10423512 0.025767434 -0.042824291 0.11494943 0.030446805 -0.058202244 0.1080227 0.035850856 -0.026988411 0.11119063 0.0070767039 -0.04309766 0.12129916 0.013462168 -0.047934793 0.11902189 0.010012458 -0.026727786 0.12357783 0.048935693 -0.038891159 0.089395441 0.041067638 -0.069619305 0.091406122 0.046595804 -0.060004946 0.08374355 0.020496381 -0.042989366 0.11754671 0.024642654 -0.026677396 0.11868601 0.020234114 -0.026733629 0.12064609 0.045938246 -0.069586977 0.077115163 0.046517275 -0.069716416 0.069814332 0.050856031 -0.043423604 0.080108099 -0.044520833 0.0046228589 -0.096018456 -0.039899912 -0.00062247878 -0.12451048 -0.039549034 -0.0016286441 -0.085992098 0.040910769 -0.045819629 0.10095178 0.045816597 -0.025725296 0.099946246 0.043028526 -0.026079403 0.10378142 0.048935693 -0.038891159 0.089395441 0.05322393 -0.024514921 0.083326854 0.050722126 -0.024851842 0.090784848 0.030446805 -0.058202244 0.1080227 0.03535432 -0.042483609 0.10799588 0.035850856 -0.026988411 0.11119063 0.052312337 -0.040407747 0.069151953 0.052300125 -0.040153991 0.073291518 0.046517275 -0.069716416 0.069814332 -0.025046125 -0.01189736 -0.1012999 -0.017784091 -0.014951798 -0.10190929 -0.023833934 -0.014535409 -0.063514151 -0.023833934 -0.014535409 -0.063514151 -0.017784091 -0.014951798 -0.10190929 -0.018361425 -0.016098052 -0.073153242 0.048935693 -0.038891159 0.089395441 0.050856031 -0.043423604 0.080108099 0.05322393 -0.024514921 0.083326854 0.05322393 -0.024514921 0.083326854 0.052300125 -0.040153991 0.073291518 0.054445971 -0.023073204 0.077377558 0.0048450623 -0.069318965 0.1158678 0.013686788 -0.069572516 0.11400227 0.0076511051 -0.058653288 0.11799306 0.052300125 -0.040153991 0.073291518 0.054998558 -0.021952154 0.070749529 0.054445971 -0.023073204 0.077377558 0.025767434 -0.042824291 0.11494943 0.031172026 -0.026580896 0.11481915 0.024642654 -0.026677396 0.11868601 0.052300125 -0.040153991 0.073291518 0.052312337 -0.040407747 0.069151953 0.054998558 -0.021952154 0.070749529 0.043577582 -0.070444129 0.084858671 0.045938246 -0.069586977 0.077115163 0.046595804 -0.060004946 0.08374355 0.0048450623 -0.069318965 0.1158678 0.0076511051 -0.058653288 0.11799306 0.0070767039 -0.04309766 0.12129916 0.0048450623 -0.069318965 0.1158678 -0.0010506092 -0.041433197 0.12207931 -0.003698637 -0.069175579 0.11600769 0.0048450623 -0.069318965 0.1158678 0.0070767039 -0.04309766 0.12129916 -0.0010506092 -0.041433197 0.12207931 0.025767434 -0.042824291 0.11494943 0.035850856 -0.026988411 0.11119063 0.031172026 -0.026580896 0.11481915 0.0076511051 -0.058653288 0.11799306 0.013686788 -0.069572516 0.11400227 0.013462168 -0.047934793 0.11902189 0.013686788 -0.069572516 0.11400227 0.01959735 -0.069156453 0.11184654 0.020496381 -0.042989366 0.11754671 0.0076511051 -0.058653288 0.11799306 0.013462168 -0.047934793 0.11902189 0.0070767039 -0.04309766 0.12129916 0.013686788 -0.069572516 0.11400227 0.020496381 -0.042989366 0.11754671 0.013462168 -0.047934793 0.11902189 0.01959735 -0.069156453 0.11184654 0.030192418 -0.069235064 0.10503285 0.025767434 -0.042824291 0.11494943 0.01959735 -0.069156453 0.11184654 0.025767434 -0.042824291 0.11494943 0.020496381 -0.042989366 0.11754671 0.030192418 -0.069235064 0.10503285 0.030446805 -0.058202244 0.1080227 0.025767434 -0.042824291 0.11494943 0.043868732 -0.045983914 0.096602231 0.045816597 -0.025725296 0.099946246 0.040910769 -0.045819629 0.10095178 0.045938246 -0.069586977 0.077115163 0.050856031 -0.043423604 0.080108099 0.046595804 -0.060004946 0.08374355 0.03535432 -0.042483609 0.10799588 0.039403934 -0.026243011 0.10789824 0.035850856 -0.026988411 0.11119063 0.050856031 -0.043423604 0.080108099 0.052300125 -0.040153991 0.073291518 0.05322393 -0.024514921 0.083326854 -0.00078405545 0.028996771 0.010743861 -0.00060938572 0.031169824 0.013030848 0.011048113 0.030579345 0.014064566 0.011048113 0.030579345 0.014064566 -0.001359846 0.027783025 0.006845267 -0.00078405545 0.028996771 0.010743861 0.052956261 0.036685508 0.054613873 0.054130834 0.0094694598 0.055445567 0.051520783 0.024680421 0.048349719 0.047962457 0.028591361 0.0414217 0.048404682 0.036685459 0.043353513 0.052956261 0.036685508 0.054613873 0.047962457 0.028591361 0.0414217 0.052956261 0.036685508 0.054613873 0.051520783 0.024680421 0.048349719 0.051520783 0.024680421 0.048349719 0.048281595 0.023776649 0.039626379 0.047962457 0.028591361 0.0414217 0.042509347 0.027686035 0.032483801 0.048404682 0.036685459 0.043353513 0.047962457 0.028591361 0.0414217 0.048281595 0.023776649 0.039626379 0.042509347 0.027686035 0.032483801 0.047962457 0.028591361 0.0414217 0.039405487 0.036685165 0.031104876 0.048404682 0.036685459 0.043353513 0.042509347 0.027686035 0.032483801 0.014214341 0.027943578 0.011300609 0.011048113 0.030579345 0.014064566 0.024778111 0.027587721 0.016019983 0.014214341 0.027943578 0.011300609 -0.001359846 0.027783025 0.006845267 0.011048113 0.030579345 0.014064566 -0.039899912 -0.00062247878 -0.12451048 -0.033196591 -0.006642356 -0.12451047 -0.032727744 -0.007299894 -0.095474802 0.037065499 0.03238089 0.028385272 0.042509347 0.027686035 0.032483801 0.036727663 0.027739251 0.025898656 0.038299285 0.024945909 0.02397478 0.036727663 0.027739251 0.025898656 0.041542228 0.025258336 0.029153263 0.034826476 0.025454795 0.020192819 0.036727663 0.027739251 0.025898656 0.038299285 0.024945909 0.02397478 0.03356861 0.036685083 0.025901189 0.039405487 0.036685165 0.031104876 0.037065499 0.03238089 0.028385272 0.011048113 0.030579345 0.014064566 -0.00060938572 0.031169824 0.013030848 0.0026669088 0.033692673 0.014256013 -0.001359846 0.027783025 0.006845267 0.014214341 0.027943578 0.011300609 0.025012871 0.02680151 0.008000847 0.023420816 0.032088879 0.019072141 0.03356861 0.036685083 0.025901189 0.037065499 0.03238089 0.028385272 0.054383364 0.036685824 0.061188851 0.054130834 0.0094694598 0.055445567 0.052956261 0.036685508 0.054613873 0.039405487 0.036685165 0.031104876 0.042509347 0.027686035 0.032483801 0.037065499 0.03238089 0.028385272 0.042509347 0.027686035 0.032483801 0.048281595 0.023776649 0.039626379 0.041542228 0.025258336 0.029153263 0.036727663 0.027739251 0.025898656 0.042509347 0.027686035 0.032483801 0.041542228 0.025258336 0.029153263 0.037065499 0.03238089 0.028385272 0.036727663 0.027739251 0.025898656 0.023420816 0.032088879 0.019072141 0.023420816 0.032088879 0.019072141 0.019829195 0.036684889 0.018173538 0.03356861 0.036685083 0.025901189 0.011048113 0.030579345 0.014064566 0.019829195 0.036684889 0.018173538 0.023420816 0.032088879 0.019072141 0.023420816 0.032088879 0.019072141 0.036727663 0.027739251 0.025898656 0.024778111 0.027587721 0.016019983 0.013550727 0.036684882 0.016173366 0.019829195 0.036684889 0.018173538 0.011048113 0.030579345 0.014064566 0.024778111 0.027587721 0.016019983 0.036727663 0.027739251 0.025898656 0.034826476 0.025454795 0.020192819 0.0026669088 0.033692673 0.014256013 0.013550727 0.036684882 0.016173366 0.011048113 0.030579345 0.014064566 0.013550727 0.036684882 0.016173366 0.0026669088 0.033692673 0.014256013 -0.0019209808 0.03668483 0.014514432 0.023420816 0.032088879 0.019072141 0.024778111 0.027587721 0.016019983 0.011048113 0.030579345 0.014064566 0.054068618 -0.0011648295 0.050286032 0.053738736 -0.004558743 0.03950797 0.052127831 0.0088124173 0.042263787 0.048281595 0.023776649 0.039626379 0.051520783 0.024680421 0.048349719 0.051258542 0.013330729 0.041411538 0.051258542 0.013330729 0.041411538 0.052127831 0.0088124173 0.042263787 0.048752621 0.011598061 0.024576137 0.038299285 0.024945909 0.02397478 0.041542228 0.025258336 0.029153263 0.044146921 0.01881801 0.02064874 0.044146921 0.01881801 0.02064874 0.041542228 0.025258336 0.029153263 0.047340259 0.018330134 0.032390516 0.040988427 0.021688769 0.018520463 0.034826476 0.025454795 0.020192819 0.038299285 0.024945909 0.02397478 0.054845747 -0.0097936057 0.02570273 0.054243255 -0.0052162982 0.023894243 0.054958969 -0.015432811 0.043893341 0.039990202 0.022935158 0.0090980241 0.024778111 0.027587721 0.016019983 0.034826476 0.025454795 0.020192819 -0.001359846 0.027783025 0.006845267 0.030485807 0.028745899 -0.0030486754 -0.016976386 0.029155325 -0.00070275035 -0.0086269584 -0.017856 -0.08452107 -0.018361425 -0.016098052 -0.073153242 -0.017784091 -0.014951798 -0.10190929 0.033689748 0.025892235 0.0043788115 0.024778111 0.027587721 0.016019983 0.039990202 0.022935158 0.0090980241 0.045141526 0.017943338 0.015439065 0.039990202 0.022935158 0.0090980241 0.040988427 0.021688769 0.018520463 0.033689748 0.025892235 0.0043788115 0.030485807 0.028745899 -0.0030486754 0.025012871 0.02680151 0.008000847 -0.0086269584 -0.017856 -0.08452107 0.0006743971 -0.018071787 -0.094958313 -0.004489522 -0.019044271 -0.074067876 -0.026755083 -0.010861097 -0.12451037 -0.025046125 -0.01189736 -0.1012999 -0.032727744 -0.007299894 -0.095474802 0.053738736 -0.004558743 0.03950797 0.054958969 -0.015432811 0.043893341 0.052793242 -0.0001961439 0.034489121 0.044841647 0.027743874 -0.010893616 0.030485807 0.028745899 -0.0030486754 0.033689748 0.025892235 0.0043788115 0.044841647 0.027743874 -0.010893616 0.033689748 0.025892235 0.0043788115 0.042289522 0.024957692 -0.0025955071 0.054243255 -0.0052162982 0.023894243 0.051406909 0.0057535558 0.019548846 0.052793242 -0.0001961439 0.034489121 0.034826476 0.025454795 0.020192819 0.040988427 0.021688769 0.018520463 0.039990202 0.022935158 0.0090980241 0.051635791 0.0075891921 0.013205832 0.054845747 -0.0097936057 0.02570273 0.054904621 0.0155115 -0.017919647 0.04811956 0.013297079 0.017855566 0.048752621 0.011598061 0.024576137 0.051406909 0.0057535558 0.019548846 0.054911043 0.027648922 -0.033182748 0.052502345 0.01650304 -0.0074765575 0.054904621 0.0155115 -0.017919647 0.051635791 0.0075891921 0.013205832 0.052502345 0.01650304 -0.0074765575 0.048979934 0.015286203 0.0076392265 0.045141526 0.017943338 0.015439065 0.048752621 0.011598061 0.024576137 0.04811956 0.013297079 0.017855566 0.051520783 0.024680421 0.048349719 0.054130834 0.0094694598 0.055445567 0.051258542 0.013330729 0.041411538 0.054996368 0.031687927 0.068491168 0.054068618 -0.0011648295 0.050286032 0.054130834 0.0094694598 0.055445567 0.05118287 0.021891633 -0.012436234 0.052502345 0.01650304 -0.0074765575 0.054911043 0.027648922 -0.033182748 0.054958969 -0.015432811 0.043893341 0.054068618 -0.0011648295 0.050286032 0.054991633 -0.019030128 0.056651842 0.054068618 -0.0011648295 0.050286032 0.054958969 -0.015432811 0.043893341 0.053738736 -0.004558743 0.03950797 0.041542228 0.025258336 0.029153263 0.048281595 0.023776649 0.039626379 0.047340259 0.018330134 0.032390516 0.05034674 0.026934424 -0.018016333 0.042289522 0.024957692 -0.0025955071 0.04717885 0.021460211 -0.0024115928 0.048752621 0.011598061 0.024576137 0.052127831 0.0088124173 0.042263787 0.053738736 -0.004558743 0.03950797 0.05118287 0.021891633 -0.012436234 0.05034674 0.026934424 -0.018016333 0.04717885 0.021460211 -0.0024115928 0.052793242 -0.0001961439 0.034489121 0.048752621 0.011598061 0.024576137 0.053738736 -0.004558743 0.03950797 0.010996816 0.033294413 -0.007228767 0.0039421776 0.035011411 -0.008669517 0.0096814577 0.030747397 -0.0033780714 0.048752621 0.011598061 0.024576137 0.047340259 0.018330134 0.032390516 0.051258542 0.013330729 0.041411538 0.054845747 -0.0097936057 0.02570273 0.051635791 0.0075891921 0.013205832 0.054243255 -0.0052162982 0.023894243 0.048979934 0.015286203 0.0076392265 0.04811956 0.013297079 0.017855566 0.051635791 0.0075891921 0.013205832 0.048752621 0.011598061 0.024576137 0.052793242 -0.0001961439 0.034489121 0.051406909 0.0057535558 0.019548846 -0.032767776 0.081380881 -0.12451208 -0.030847069 0.08272291 -0.057137322 -0.026156286 0.085576117 -0.1245122 0.047340259 0.018330134 0.032390516 0.048752621 0.011598061 0.024576137 0.044146921 0.01881801 0.02064874 0.038299285 0.024945909 0.02397478 0.044146921 0.01881801 0.02064874 0.040988427 0.021688769 0.018520463 0.055006221 0.036569893 -0.041793402 0.05118287 0.021891633 -0.012436234 0.054911043 0.027648922 -0.033182748 0.052793242 -0.0001961439 0.034489121 0.054958969 -0.015432811 0.043893341 0.054243255 -0.0052162982 0.023894243 0.045468714 0.033873927 -0.019694123 0.044841647 0.027743874 -0.010893616 0.05034674 0.026934424 -0.018016333 0.024778111 0.027587721 0.016019983 0.025012871 0.02680151 0.008000847 0.014214341 0.027943578 0.011300609 0.042058736 0.035659693 -0.018759057 0.045468714 0.033873927 -0.019694123 0.045140717 0.043423209 -0.027903948 -0.0086269584 -0.017856 -0.08452107 -0.0099416682 -0.016917216 -0.12451037 -0.005527887 -0.01761125 -0.10229329 0.045141526 0.017943338 0.015439065 0.040988427 0.021688769 0.018520463 0.044146921 0.01881801 0.02064874 0.042289522 0.024957692 -0.0025955071 0.033689748 0.025892235 0.0043788115 0.039990202 0.022935158 0.0090980241 0.05100359 0.031891435 -0.025141628 0.045468714 0.033873927 -0.019694123 0.05034674 0.026934424 -0.018016333 0.033689748 0.025892235 0.0043788115 0.025012871 0.02680151 0.008000847 0.024778111 0.027587721 0.016019983 0.045140717 0.043423209 -0.027903948 0.045468714 0.033873927 -0.019694123 0.05100359 0.031891435 -0.025141628 0.045141526 0.017943338 0.015439065 0.044146921 0.01881801 0.02064874 0.048752621 0.011598061 0.024576137 0.048979934 0.015286203 0.0076392265 0.04717885 0.021460211 -0.0024115928 0.045141526 0.017943338 0.015439065 0.024807552 0.030845355 -0.0056752162 -0.016976386 0.029155325 -0.00070275035 0.030485807 0.028745899 -0.0030486754 0.055006221 0.036569893 -0.041793402 0.05034674 0.026934424 -0.018016333 0.05118287 0.021891633 -0.012436234 0.04717885 0.021460211 -0.0024115928 0.048979934 0.015286203 0.0076392265 0.05118287 0.021891633 -0.012436234 0.053761795 0.044421464 -0.041093159 0.05100359 0.031891435 -0.025141628 0.05034674 0.026934424 -0.018016333 -0.050422832 0.059180714 -0.051732961 -0.051767528 0.055814411 -0.12451147 -0.053009875 0.051891707 -0.049080487 0.042058736 0.035659693 -0.018759057 0.035163272 0.037637003 -0.017158873 0.039289877 0.030640418 -0.010691217 0.048979934 0.015286203 0.0076392265 0.045141526 0.017943338 0.015439065 0.04811956 0.013297079 0.017855566 0.053761795 0.044421464 -0.041093159 0.05034674 0.026934424 -0.018016333 0.055006221 0.036569893 -0.041793402 0.054243255 -0.0052162982 0.023894243 0.051635791 0.0075891921 0.013205832 0.051406909 0.0057535558 0.019548846 0.010996816 0.033294413 -0.007228767 0.0096814577 0.030747397 -0.0033780714 0.024807552 0.030845355 -0.0056752162 0.039990202 0.022935158 0.0090980241 0.045141526 0.017943338 0.015439065 0.04717885 0.021460211 -0.0024115928 0.045468714 0.033873927 -0.019694123 0.039289877 0.030640418 -0.010691217 0.044841647 0.027743874 -0.010893616 0.04811956 0.013297079 0.017855566 0.051406909 0.0057535558 0.019548846 0.051635791 0.0075891921 0.013205832 0.042058736 0.035659693 -0.018759057 0.039289877 0.030640418 -0.010691217 0.045468714 0.033873927 -0.019694123 0.0039421776 0.035011411 -0.008669517 0.010996816 0.033294413 -0.007228767 0.025069088 0.036652703 -0.01311822 0.054998558 -0.021952154 0.070749529 0.054991633 -0.019030128 0.056651842 0.054996368 0.031687927 0.068491168 0.039990202 0.022935158 0.0090980241 0.04717885 0.021460211 -0.0024115928 0.042289522 0.024957692 -0.0025955071 0.039289877 0.030640418 -0.010691217 0.024807552 0.030845355 -0.0056752162 0.030485807 0.028745899 -0.0030486754 0.047340259 0.018330134 0.032390516 0.048281595 0.023776649 0.039626379 0.051258542 0.013330729 0.041411538 0.039289877 0.030640418 -0.010691217 0.035163272 0.037637003 -0.017158873 0.024807552 0.030845355 -0.0056752162 0.048979934 0.015286203 0.0076392265 0.052502345 0.01650304 -0.0074765575 0.05118287 0.021891633 -0.012436234 0.054904621 0.0155115 -0.017919647 0.052502345 0.01650304 -0.0074765575 0.051635791 0.0075891921 0.013205832 0.044841647 0.027743874 -0.010893616 0.042289522 0.024957692 -0.0025955071 0.05034674 0.026934424 -0.018016333 -0.052334871 0.019355219 -0.058064979 -0.053124815 0.02291158 -0.12451084 -0.051090028 0.016785819 -0.12451079 0.054383364 0.036685824 0.061188851 0.054996368 0.031687927 0.068491168 0.054130834 0.0094694598 0.055445567 0.054068618 -0.0011648295 0.050286032 0.054996368 0.031687927 0.068491168 0.054991633 -0.019030128 0.056651842 0.051258542 0.013330729 0.041411538 0.054130834 0.0094694598 0.055445567 0.052127831 0.0088124173 0.042263787 0.052127831 0.0088124173 0.042263787 0.054130834 0.0094694598 0.055445567 0.054068618 -0.0011648295 0.050286032 0.024807552 0.030845355 -0.0056752162 0.0096814577 0.030747397 -0.0033780714 -0.016976386 0.029155325 -0.00070275035 0.025012871 0.02680151 0.008000847 0.030485807 0.028745899 -0.0030486754 -0.001359846 0.027783025 0.006845267 0.024807552 0.030845355 -0.0056752162 0.025069088 0.036652703 -0.01311822 0.010996816 0.033294413 -0.007228767 0.035163272 0.037637003 -0.017158873 0.025069088 0.036652703 -0.01311822 0.024807552 0.030845355 -0.0056752162 0.039289877 0.030640418 -0.010691217 0.030485807 0.028745899 -0.0030486754 0.044841647 0.027743874 -0.010893616 0.054991633 -0.019030128 0.056651842 0.054845747 -0.0097936057 0.02570273 0.054958969 -0.015432811 0.043893341 0.054845747 -0.0097936057 0.02570273 0.054833587 -0.0027331267 0.010335148 0.054904621 0.0155115 -0.017919647 0.035210289 0.052225444 -0.027211443 0.03219223 0.042696569 -0.020279044 0.040244468 0.045050569 -0.025651725 0.035473108 0.0679259 -0.036535099 0.039358515 0.068336569 -0.040439416 0.029849231 0.076923534 -0.042248011 0.01319322 0.083754458 -0.041343737 0.022104371 0.085928425 -0.051871538 0.015796542 0.086676277 -0.047814611 0.042058736 0.035659693 -0.018759057 0.045140717 0.043423209 -0.027903948 0.040244468 0.045050569 -0.025651725 0.00090210995 0.076343454 -0.031847008 0.011708591 0.072993994 -0.03079702 0.0090172412 0.079736747 -0.03546191 0.047845025 0.055444546 -0.038619708 0.053761795 0.044421464 -0.041093159 0.051853109 0.052222881 -0.043572787 0.042005062 0.063208707 -0.038315922 0.047845025 0.055444546 -0.038619708 0.039358515 0.068336569 -0.040439416 0.015796542 0.086676277 -0.047814611 0.022104371 0.085928425 -0.051871538 0.010046614 0.089234352 -0.049961492 0.053761795 0.044421464 -0.041093159 0.055006221 0.036569893 -0.041793402 0.054793745 0.041992512 -0.04457153 0.011708591 0.072993994 -0.03079702 0.020541169 0.069195397 -0.030520799 0.0090172412 0.079736747 -0.03546191 0.022104371 0.085928425 -0.051871538 0.029849231 0.076923534 -0.042248011 0.03278961 0.079306453 -0.04965717 0.029849231 0.076923534 -0.042248011 0.039140798 0.072543055 -0.045963891 0.03278961 0.079306453 -0.04965717 0.020541169 0.069195397 -0.030520799 0.018095409 0.077752493 -0.03655025 0.0090172412 0.079736747 -0.03546191 0.017521907 0.061414476 -0.02532102 0.027095018 0.060111899 -0.027653627 0.020541169 0.069195397 -0.030520799 0.047845025 0.055444546 -0.038619708 0.051853109 0.052222881 -0.043572787 0.04601936 0.063182019 -0.044035371 0.00090210995 0.076343454 -0.031847008 0.0090172412 0.079736747 -0.03546191 0.0054578069 0.083407067 -0.038592272 0.010046614 0.089234352 -0.049961492 0.022104371 0.085928425 -0.051871538 0.021133879 0.087971434 -0.057675991 0.010046614 0.089234352 -0.049961492 0.011393105 0.090995818 -0.05791628 0.0032390088 0.092092946 -0.057990246 0.035210289 0.052225444 -0.027211443 0.040244468 0.045050569 -0.025651725 0.041230273 0.056255616 -0.03280599 0.029849231 0.076923534 -0.042248011 0.039358515 0.068336569 -0.040439416 0.039140798 0.072543055 -0.045963891 -0.012754771 -0.019534687 -0.054748308 -0.017661691 -0.018064838 -0.054452606 -0.0086269584 -0.017856 -0.08452107 -0.012754771 -0.019534687 -0.054748308 -0.0086269584 -0.017856 -0.08452107 -0.004489522 -0.019044271 -0.074067876 -0.018361425 -0.016098052 -0.073153242 -0.0086269584 -0.017856 -0.08452107 -0.017661691 -0.018064838 -0.054452606 0.027095018 0.060111899 -0.027653627 0.030357514 0.065046541 -0.031661499 0.020541169 0.069195397 -0.030520799 0.027095018 0.060111899 -0.027653627 0.035210289 0.052225444 -0.027211443 0.030357514 0.065046541 -0.031661499 0.010046614 0.089234352 -0.049961492 0.021133879 0.087971434 -0.057675991 0.011393105 0.090995818 -0.05791628 0.053761795 0.044421464 -0.041093159 0.053975321 0.047815405 -0.047385629 0.051853109 0.052222881 -0.043572787 0.053761795 0.044421464 -0.041093159 0.054793745 0.041992512 -0.04457153 0.053975321 0.047815405 -0.047385629 0.01319322 0.083754458 -0.041343737 0.0091497572 0.086403608 -0.04368256 0.0090172412 0.079736747 -0.03546191 0.030639723 0.068585761 -0.034153458 0.018095409 0.077752493 -0.03655025 0.020541169 0.069195397 -0.030520799 0.030639723 0.068585761 -0.034153458 0.035473108 0.0679259 -0.036535099 0.029849231 0.076923534 -0.042248011 0.020541169 0.069195397 -0.030520799 0.030357514 0.065046541 -0.031661499 0.030639723 0.068585761 -0.034153458 0.042005062 0.063208707 -0.038315922 0.045140717 0.043423209 -0.027903948 0.047845025 0.055444546 -0.038619708 0.039358515 0.068336569 -0.040439416 0.035473108 0.0679259 -0.036535099 0.042005062 0.063208707 -0.038315922 0.039358515 0.068336569 -0.040439416 0.047845025 0.055444546 -0.038619708 0.04601936 0.063182019 -0.044035371 0.0054578069 0.083407067 -0.038592272 0.0090172412 0.079736747 -0.03546191 0.0091497572 0.086403608 -0.04368256 0.039358515 0.068336569 -0.040439416 0.042509008 0.070150375 -0.04825817 0.039140798 0.072543055 -0.045963891 0.0054578069 0.083407067 -0.038592272 0.0026781401 0.089290179 -0.047585662 -0.0044244314 0.084795937 -0.040179029 0.042509008 0.070150375 -0.04825817 0.04601936 0.063182019 -0.044035371 0.049219884 0.06030751 -0.048062436 0.039358515 0.068336569 -0.040439416 0.04601936 0.063182019 -0.044035371 0.042509008 0.070150375 -0.04825817 0.0090172412 0.079736747 -0.03546191 0.018095409 0.077752493 -0.03655025 0.01319322 0.083754458 -0.041343737 0.03278961 0.079306453 -0.04965717 0.039140798 0.072543055 -0.045963891 0.038704801 0.076277994 -0.056374148 0.038704801 0.076277994 -0.056374148 0.039140798 0.072543055 -0.045963891 0.042509008 0.070150375 -0.04825817 0.046099771 0.067194283 -0.054138523 0.042509008 0.070150375 -0.04825817 0.049219884 0.06030751 -0.048062436 0.038704801 0.076277994 -0.056374148 0.034805603 0.079778567 -0.056661304 0.03278961 0.079306453 -0.04965717 0.035210289 0.052225444 -0.027211443 0.041230273 0.056255616 -0.03280599 0.030357514 0.065046541 -0.031661499 -0.004489522 -0.019044271 -0.074067876 0.0006743971 -0.018071787 -0.094958313 0.0037215324 -0.018860685 -0.077355936 -0.01004375 0.041458737 -0.01400309 0.0023971286 0.038591858 -0.011596639 0.0066073518 0.04349298 -0.014799496 0.040244468 0.045050569 -0.025651725 0.045140717 0.043423209 -0.027903948 0.041230273 0.056255616 -0.03280599 -0.036986787 0.077914283 -0.12451199 -0.040944561 0.073937461 -0.12451188 -0.037161771 0.077734441 -0.056330673 0.05100359 0.031891435 -0.025141628 0.050008114 0.040170833 -0.030803148 0.045140717 0.043423209 -0.027903948 0.0054578069 0.083407067 -0.038592272 0.0091497572 0.086403608 -0.04368256 0.0026781401 0.089290179 -0.047585662 -0.005527887 -0.01761125 -0.10229329 0.0006743971 -0.018071787 -0.094958313 -0.0086269584 -0.017856 -0.08452107 0.0023971286 0.038591858 -0.011596639 0.0039421776 0.035011411 -0.008669517 0.0066073518 0.04349298 -0.014799496 0.0039421776 0.035011411 -0.008669517 0.016685234 0.043761473 -0.016426297 0.0066073518 0.04349298 -0.014799496 0.051853109 0.052222881 -0.043572787 0.049219884 0.06030751 -0.048062436 0.04601936 0.063182019 -0.044035371 0.022104371 0.085928425 -0.051871538 0.028027078 0.08451324 -0.057330947 0.021133879 0.087971434 -0.057675991 0.053975321 0.047815405 -0.047385629 0.052548207 0.053459805 -0.049674813 0.051853109 0.052222881 -0.043572787 0.0039421776 0.035011411 -0.008669517 0.025069088 0.036652703 -0.01311822 0.016685234 0.043761473 -0.016426297 0.022104371 0.085928425 -0.051871538 0.03278961 0.079306453 -0.04965717 0.028027078 0.08451324 -0.057330947 -0.00028709762 0.050701618 -0.017722659 0.0066073518 0.04349298 -0.014799496 0.0079279738 0.064017825 -0.024890304 0.0026781401 0.089290179 -0.047585662 0.0091497572 0.086403608 -0.04368256 0.010046614 0.089234352 -0.049961492 0.0066073518 0.04349298 -0.014799496 0.016685234 0.043761473 -0.016426297 0.017521907 0.061414476 -0.02532102 0.049219884 0.06030751 -0.048062436 0.051853109 0.052222881 -0.043572787 0.04956346 0.061047237 -0.052289136 0.025069088 0.036652703 -0.01311822 0.03219223 0.042696569 -0.020279044 0.016685234 0.043761473 -0.016426297 0.0026781401 0.089290179 -0.047585662 -0.002580727 0.091268882 -0.053236276 -0.0075832778 0.089702778 -0.049972322 -0.00028709762 0.050701618 -0.017722659 0.0079279738 0.064017825 -0.024890304 -0.002575262 0.068602391 -0.027089732 0.051853109 0.052222881 -0.043572787 0.052548207 0.053459805 -0.049674813 0.04956346 0.061047237 -0.052289136 0.0066073518 0.04349298 -0.014799496 0.017521907 0.061414476 -0.02532102 0.0079279738 0.064017825 -0.024890304 0.030357514 0.065046541 -0.031661499 0.035473108 0.0679259 -0.036535099 0.030639723 0.068585761 -0.034153458 0.030357514 0.065046541 -0.031661499 0.041230273 0.056255616 -0.03280599 0.035473108 0.0679259 -0.036535099 0.0026781401 0.089290179 -0.047585662 0.010046614 0.089234352 -0.049961492 -0.002580727 0.091268882 -0.053236276 0.042509008 0.070150375 -0.04825817 0.046099771 0.067194283 -0.054138523 0.038704801 0.076277994 -0.056374148 0.0091497572 0.086403608 -0.04368256 0.01319322 0.083754458 -0.041343737 0.015796542 0.086676277 -0.047814611 0.03278961 0.079306453 -0.04965717 0.034805603 0.079778567 -0.056661304 0.028027078 0.08451324 -0.057330947 0.049219884 0.06030751 -0.048062436 0.04956346 0.061047237 -0.052289136 0.046099771 0.067194283 -0.054138523 -0.002575262 0.068602391 -0.027089732 0.0079279738 0.064017825 -0.024890304 0.00090210995 0.076343454 -0.031847008 0.041230273 0.056255616 -0.03280599 0.045140717 0.043423209 -0.027903948 0.042005062 0.063208707 -0.038315922 0.025069088 0.036652703 -0.01311822 0.035163272 0.037637003 -0.017158873 0.03219223 0.042696569 -0.020279044 0.0091497572 0.086403608 -0.04368256 0.015796542 0.086676277 -0.047814611 0.010046614 0.089234352 -0.049961492 0.018095409 0.077752493 -0.03655025 0.029849231 0.076923534 -0.042248011 0.01319322 0.083754458 -0.041343737 0.030639723 0.068585761 -0.034153458 0.029849231 0.076923534 -0.042248011 0.018095409 0.077752493 -0.03655025 0.016685234 0.043761473 -0.016426297 0.03219223 0.042696569 -0.020279044 0.035210289 0.052225444 -0.027211443 -0.044070449 0.070052072 -0.054154109 -0.044961598 0.068917848 -0.12451176 -0.047126357 0.065549299 -0.053654488 -0.054623336 0.028639046 -0.041963451 -0.053124815 0.02291158 -0.12451084 -0.052334871 0.019355219 -0.058064979 0.00024950391 0.092183374 -0.12451238 -0.0017498104 0.092159458 -0.057955198 0.0032390088 0.092092946 -0.057990246 0.041230273 0.056255616 -0.03280599 0.042005062 0.063208707 -0.038315922 0.035473108 0.0679259 -0.036535099 0.016685234 0.043761473 -0.016426297 0.027095018 0.060111899 -0.027653627 0.017521907 0.061414476 -0.02532102 -0.002580727 0.091268882 -0.053236276 0.0032390088 0.092092946 -0.057990246 -0.0017498104 0.092159458 -0.057955198 0.016685234 0.043761473 -0.016426297 0.035210289 0.052225444 -0.027211443 0.027095018 0.060111899 -0.027653627 0.050008114 0.040170833 -0.030803148 0.05100359 0.031891435 -0.025141628 0.053761795 0.044421464 -0.041093159 0.045140717 0.043423209 -0.027903948 0.050008114 0.040170833 -0.030803148 0.047845025 0.055444546 -0.038619708 0.035163272 0.037637003 -0.017158873 0.040244468 0.045050569 -0.025651725 0.03219223 0.042696569 -0.020279044 0.00024950391 0.092183374 -0.12451238 -0.0044082562 0.092041984 -0.12451246 -0.0017498104 0.092159458 -0.057955198 0.0079279738 0.064017825 -0.024890304 0.011708591 0.072993994 -0.03079702 0.00090210995 0.076343454 -0.031847008 0.0079279738 0.064017825 -0.024890304 0.017521907 0.061414476 -0.02532102 0.011708591 0.072993994 -0.03079702 0.035163272 0.037637003 -0.017158873 0.042058736 0.035659693 -0.018759057 0.040244468 0.045050569 -0.025651725 -0.002580727 0.091268882 -0.053236276 0.010046614 0.089234352 -0.049961492 0.0032390088 0.092092946 -0.057990246 0.050008114 0.040170833 -0.030803148 0.053761795 0.044421464 -0.041093159 0.047845025 0.055444546 -0.038619708 0.029849231 0.076923534 -0.042248011 0.022104371 0.085928425 -0.051871538 0.01319322 0.083754458 -0.041343737 0.017521907 0.061414476 -0.02532102 0.020541169 0.069195397 -0.030520799 0.011708591 0.072993994 -0.03079702 0.044188526 -0.069392383 0.054649819 0.045668427 -0.06952329 0.060351711 0.045183603 -0.070636578 0.060554393 0.045668427 -0.06952329 0.060351711 0.046517275 -0.069716416 0.069814332 0.045183603 -0.070636578 0.060554393 0.044188526 -0.069392383 0.054649819 0.041044034 -0.070640706 0.048614327 0.038037647 -0.070532717 0.043396614 0.041044034 -0.070640706 0.048614327 0.044188526 -0.069392383 0.054649819 0.045183603 -0.070636578 0.060554393 0.010040418 -0.070708588 0.11436835 0.017509032 -0.07294149 0.10992485 0.013686788 -0.069572516 0.11400227 0.013686788 -0.069572516 0.11400227 0.017509032 -0.07294149 0.10992485 0.01959735 -0.069156453 0.11184654 0.029906278 -0.072415709 0.10249504 0.036783081 -0.069481686 0.098065592 0.030192418 -0.069235064 0.10503285 0.029906278 -0.072415709 0.10249504 0.041067638 -0.069619305 0.091406122 0.036783081 -0.069481686 0.098065592 -0.039549034 -0.0016286441 -0.085992098 -0.039899912 -0.00062247878 -0.12451048 -0.036722664 -0.0059642214 -0.057878308 0.030192418 -0.069235064 0.10503285 0.01959735 -0.069156453 0.11184654 0.017509032 -0.07294149 0.10992485 0.0048450623 -0.069318965 0.1158678 0.010040418 -0.070708588 0.11436835 0.013686788 -0.069572516 0.11400227 0.015239746 0.090047389 -0.12451255 0.021133879 0.087971434 -0.057675991 0.025874916 0.085739814 -0.12451255 -0.021595161 0.087792017 -0.12451227 -0.024073746 0.086520925 -0.056596436 -0.019368714 0.08866334 -0.057739634 -0.0017498104 0.092159458 -0.057955198 -0.0044082562 0.092041984 -0.12451246 -0.0088306777 0.091474846 -0.057968341 0.026881682 -0.010813842 -0.12451073 0.020877058 -0.013769025 -0.10452543 0.021041807 -0.013638202 -0.12451069 -0.044961598 0.068917848 -0.12451176 -0.044070449 0.070052072 -0.054154109 -0.040944561 0.073937461 -0.12451188 0.00024950391 0.092183374 -0.12451238 0.0032390088 0.092092946 -0.057990246 0.011398956 0.090992466 -0.12451255 0.053477135 0.023559801 -0.055631828 0.051327635 0.01744354 -0.12451142 0.054850142 0.033010188 -0.12451144 -0.0044082562 0.092041984 -0.12451246 -0.010967478 0.091103755 -0.12451246 -0.0088306777 0.091474846 -0.057968341 0.054816153 0.041752227 -0.12451137 0.053767815 0.048804104 -0.12451173 0.053975321 0.047815405 -0.047385629 0.054850142 0.033010188 -0.12451144 0.054816153 0.041752227 -0.12451137 0.054995235 0.038180016 -0.11951387 0.0094867367 -0.017128665 -0.099161766 0.0006743971 -0.018071787 -0.094958313 -0.00094656635 -0.01781765 -0.12451041 0.010453521 -0.016830117 -0.1245105 0.0094867367 -0.017128665 -0.099161766 -0.00094656635 -0.01781765 -0.12451041 0.021041807 -0.013638202 -0.12451069 0.0094867367 -0.017128665 -0.099161766 0.010453521 -0.016830117 -0.1245105 0.054696128 0.036686104 0.07538566 0.054383364 0.036685824 0.061188851 0.019829195 0.036684889 0.018173538 -0.054848555 0.036685806 0.065345086 0.019829195 0.036684889 0.018173538 -0.052658521 0.036685608 0.053579766 -0.054998338 0.036685891 0.070595779 0.019829195 0.036684889 0.018173538 -0.054848555 0.036685806 0.065345086 0.054696128 0.036686104 0.07538566 0.019829195 0.036684889 0.018173538 0.054009333 0.036686182 0.080034234 0.054009333 0.036686182 0.080034234 0.019829195 0.036684889 0.018173538 0.052096616 0.03668632 0.08716958 0.052096616 0.03668632 0.08716958 0.019829195 0.036684889 0.018173538 0.05068884 0.036686398 0.090874434 0.05068884 0.036686398 0.090874434 0.019829195 0.036684889 0.018173538 0.046357408 0.036686547 0.099138588 0.046357408 0.036686547 0.099138588 0.019829195 0.036684889 0.018173538 0.043214384 0.036686622 0.10354583 0.043214384 0.036686622 0.10354583 0.019829195 0.036684889 0.018173538 0.034273822 0.036686778 0.11252545 0.034273822 0.036686778 0.11252545 0.019829195 0.036684889 0.018173538 0.028228188 0.036686856 0.11670503 0.028228188 0.036686856 0.11670503 0.019829195 0.036684889 0.018173538 0.024938365 0.03668689 0.11852477 0.024938365 0.03668689 0.11852477 0.019829195 0.036684889 0.018173538 0.01817492 0.036686935 0.12141845 0.01817492 0.036686935 0.12141845 0.019829195 0.036684889 0.018173538 0.0096117733 0.036686961 0.12367043 0.0096117733 0.036686961 0.12367043 0.019829195 0.036684889 0.018173538 0.00030157811 0.036686976 0.12451252 0.00030157811 0.036686976 0.12451252 0.019829195 0.036684889 0.018173538 -0.004920118 0.036686968 0.12428201 -0.004920118 0.036686968 0.12428201 0.019829195 0.036684889 0.018173538 -0.014713841 0.036686935 0.12250609 -0.014713841 0.036686935 0.12250609 0.019829195 0.036684889 0.018173538 -0.022066643 0.036686875 0.11987498 -0.022066643 0.036686875 0.11987498 0.019829195 0.036684889 0.018173538 -0.033943199 0.036686733 0.11279066 -0.033943199 0.036686733 0.11279066 0.019829195 0.036684889 0.018173538 -0.040091529 0.036686625 0.10715726 -0.040091529 0.036686625 0.10715726 0.019829195 0.036684889 0.018173538 -0.0446315 0.036686514 0.10164419 -0.010967478 0.091103755 -0.12451246 -0.016333504 0.089719892 -0.12451234 -0.0088306777 0.091474846 -0.057968341 -0.0446315 0.036686514 0.10164419 0.019829195 0.036684889 0.018173538 -0.048900448 0.036686379 0.094675593 -0.048900448 0.036686379 0.094675593 0.019829195 0.036684889 0.018173538 -0.052750673 0.036686197 0.085072629 -0.052750673 0.036686197 0.085072629 0.019829195 0.036684889 0.018173538 -0.054369267 0.036686059 0.077861875 -0.054369267 0.036686059 0.077861875 0.019829195 0.036684889 0.018173538 -0.054998338 0.036685891 0.070595779 -0.046767194 0.0066003907 -0.05656229 -0.044520833 0.0046228589 -0.096018456 -0.044642236 0.0033430345 -0.058017638 0.019829195 0.036684889 0.018173538 -0.0019209808 0.03668483 0.014514432 -0.017627604 0.036684863 0.017385513 0.048404682 0.036685459 0.043353513 0.039405487 0.036685165 0.031104876 0.019829195 0.036684889 0.018173538 0.019829195 0.036684889 0.018173538 0.039405487 0.036685165 0.031104876 0.03356861 0.036685083 0.025901189 -0.052658521 0.036685608 0.053579766 0.019829195 0.036684889 0.018173538 -0.050184481 0.036685459 0.04695994 -0.036748104 0.036685053 0.028559541 0.019829195 0.036684889 0.018173538 -0.017627604 0.036684863 0.017385513 -0.0088306777 0.091474846 -0.057968341 -0.016333504 0.089719892 -0.12451234 -0.019368714 0.08866334 -0.057739634 -0.040840413 0.036685139 0.032639567 0.019829195 0.036684889 0.018173538 -0.036748104 0.036685053 0.028559541 -0.050184481 0.036685459 0.04695994 0.019829195 0.036684889 0.018173538 -0.040840413 0.036685139 0.032639567 0.052956261 0.036685508 0.054613873 0.048404682 0.036685459 0.043353513 0.019829195 0.036684889 0.018173538 0.054383364 0.036685824 0.061188851 0.052956261 0.036685508 0.054613873 0.019829195 0.036684889 0.018173538 0.019829195 0.036684889 0.018173538 0.013550727 0.036684882 0.016173366 -0.0019209808 0.03668483 0.014514432 -0.017600769 -0.069537453 0.11261461 -0.023122786 -0.06947352 0.10993396 -0.029544311 -0.070906423 0.10452913 -0.023122786 -0.06947352 0.10993396 -0.027858187 -0.069495372 0.10680996 -0.029544311 -0.070906423 0.10452913 -0.029544311 -0.070906423 0.10452913 -0.027858187 -0.069495372 0.10680996 -0.034356177 -0.070200697 0.10052945 0.0048450623 -0.069318965 0.1158678 -0.003698637 -0.069175579 0.11600769 0.010040418 -0.070708588 0.11436835 0.010040418 -0.070708588 0.11436835 -0.003698637 -0.069175579 0.11600769 -0.008802304 -0.069522694 0.11523323 -0.0075832778 0.089702778 -0.049972322 -0.0044244314 0.084795937 -0.040179029 0.0026781401 0.089290179 -0.047585662 -0.036086127 0.069957905 -0.038869146 -0.03369223 0.073985815 -0.041393731 -0.039673846 0.072674587 -0.047195494 -0.016333504 0.089719892 -0.12451234 -0.021595161 0.087792017 -0.12451227 -0.019368714 0.08866334 -0.057739634 -0.052451894 0.03548133 -0.03148349 -0.047920093 0.036235821 -0.024848284 -0.047222678 0.051323701 -0.034798406 -0.025076028 0.03870216 -0.014938791 -0.01004375 0.041458737 -0.01400309 -0.018838705 0.044263009 -0.01719241 -0.032862321 0.061269432 -0.030693598 -0.019071165 0.069366753 -0.030200643 -0.032852408 0.06704089 -0.034223404 -0.014436879 0.087712213 -0.049121831 -0.019368714 0.08866334 -0.057739634 -0.024073746 0.086520925 -0.056596436 -0.03369223 0.073985815 -0.041393731 -0.030879114 0.079346918 -0.047191266 -0.039673846 0.072674587 -0.047195494 -0.049000483 0.055278365 -0.04029518 -0.042076163 0.063288085 -0.03846918 -0.048463706 0.061130702 -0.047022991 -0.052318264 0.047880124 -0.039926633 -0.049000483 0.055278365 -0.04029518 -0.048463706 0.061130702 -0.047022991 -0.012693802 0.05544791 -0.021334052 -0.01004375 0.041458737 -0.01400309 -0.0078693582 0.063974611 -0.024864838 -0.018838705 0.044263009 -0.01719241 -0.01004375 0.041458737 -0.01400309 -0.012693802 0.05544791 -0.021334052 -0.053009875 0.051891707 -0.049080487 -0.052318264 0.047880124 -0.039926633 -0.048463706 0.061130702 -0.047022991 -0.032852408 0.06704089 -0.034223404 -0.019071165 0.069366753 -0.030200643 -0.024595648 0.076079503 -0.037910327 -0.025722921 0.083761588 -0.050702486 -0.014436879 0.087712213 -0.049121831 -0.024073746 0.086520925 -0.056596436 -0.039390199 0.060539614 -0.03410555 -0.034100976 0.042762067 -0.021069922 -0.032862321 0.061269432 -0.030693598 -0.05456952 0.044098519 -0.045641351 -0.052318264 0.047880124 -0.039926633 -0.053009875 0.051891707 -0.049080487 -0.015824735 0.081504345 -0.039670702 -0.0044244314 0.084795937 -0.040179029 -0.010689035 0.08704491 -0.045471027 -0.0078693582 0.063974611 -0.024864838 -0.00028709762 0.050701618 -0.017722659 -0.002575262 0.068602391 -0.027089732 -0.042076163 0.063288085 -0.03846918 -0.036086127 0.069957905 -0.038869146 -0.044141624 0.068390042 -0.048805453 -0.044961598 0.068917848 -0.12451176 -0.049895365 0.060344905 -0.12451157 -0.047126357 0.065549299 -0.053654488 -0.034100976 0.042762067 -0.021069922 -0.025076028 0.03870216 -0.014938791 -0.018838705 0.044263009 -0.01719241 -0.039390199 0.060539614 -0.03410555 -0.032862321 0.061269432 -0.030693598 -0.032852408 0.06704089 -0.034223404 -0.015824735 0.081504345 -0.039670702 -0.010689035 0.08704491 -0.045471027 -0.017914373 0.084070928 -0.044502646 -0.018838705 0.044263009 -0.01719241 -0.012693802 0.05544791 -0.021334052 -0.022450909 0.064119838 -0.028126102 -0.044141624 0.068390042 -0.048805453 -0.036086127 0.069957905 -0.038869146 -0.039673846 0.072674587 -0.047195494 -0.010689035 0.08704491 -0.045471027 -0.0044244314 0.084795937 -0.040179029 -0.0075832778 0.089702778 -0.049972322 -0.048463706 0.061130702 -0.047022991 -0.042076163 0.063288085 -0.03846918 -0.044141624 0.068390042 -0.048805453 -0.034778725 0.037770849 -0.017144917 -0.025076028 0.03870216 -0.014938791 -0.034100976 0.042762067 -0.021069922 -0.047222678 0.051323701 -0.034798406 -0.041846227 0.043257661 -0.025382753 -0.039390199 0.060539614 -0.03410555 -0.0080745388 0.074774764 -0.031388618 -0.0078693582 0.063974611 -0.024864838 -0.002575262 0.068602391 -0.027089732 -0.034100976 0.042762067 -0.021069922 -0.018838705 0.044263009 -0.01719241 -0.033242222 0.04928907 -0.024775254 -0.053009875 0.051891707 -0.049080487 -0.048463706 0.061130702 -0.047022991 -0.050422832 0.059180714 -0.051732961 -0.0080745388 0.074774764 -0.031388618 -0.002575262 0.068602391 -0.027089732 0.00090210995 0.076343454 -0.031847008 -0.036086127 0.069957905 -0.038869146 -0.032852408 0.06704089 -0.034223404 -0.024595648 0.076079503 -0.037910327 -0.039390199 0.060539614 -0.03410555 -0.032852408 0.06704089 -0.034223404 -0.036086127 0.069957905 -0.038869146 -0.014436879 0.087712213 -0.049121831 -0.017914373 0.084070928 -0.044502646 -0.010689035 0.08704491 -0.045471027 -0.030879114 0.079346918 -0.047191266 -0.025722921 0.083761588 -0.050702486 -0.030847069 0.08272291 -0.057137322 -0.037161771 0.077734441 -0.056330673 -0.039673846 0.072674587 -0.047195494 -0.030879114 0.079346918 -0.047191266 -0.030847069 0.08272291 -0.057137322 -0.025722921 0.083761588 -0.050702486 -0.024073746 0.086520925 -0.056596436 -0.014436879 0.087712213 -0.049121831 -0.010689035 0.08704491 -0.045471027 -0.0075832778 0.089702778 -0.049972322 -0.052318264 0.047880124 -0.039926633 -0.052451894 0.03548133 -0.03148349 -0.047222678 0.051323701 -0.034798406 -0.0080745388 0.074774764 -0.031388618 0.00090210995 0.076343454 -0.031847008 -0.007821613 0.078526586 -0.034167789 -0.024595648 0.076079503 -0.037910327 -0.015824735 0.081504345 -0.039670702 -0.017914373 0.084070928 -0.044502646 -0.022450909 0.064119838 -0.028126102 -0.012693802 0.05544791 -0.021334052 -0.0078693582 0.063974611 -0.024864838 -0.042076163 0.063288085 -0.03846918 -0.039390199 0.060539614 -0.03410555 -0.036086127 0.069957905 -0.038869146 -0.019071165 0.069366753 -0.030200643 -0.0078693582 0.063974611 -0.024864838 -0.0080745388 0.074774764 -0.031388618 -0.037161771 0.077734441 -0.056330673 -0.030879114 0.079346918 -0.047191266 -0.030847069 0.08272291 -0.057137322 -0.048463706 0.061130702 -0.047022991 -0.044141624 0.068390042 -0.048805453 -0.047126357 0.065549299 -0.053654488 -0.033242222 0.04928907 -0.024775254 -0.018838705 0.044263009 -0.01719241 -0.022450909 0.064119838 -0.028126102 -0.034778725 0.037770849 -0.017144917 -0.034100976 0.042762067 -0.021069922 -0.041846227 0.043257661 -0.025382753 -0.022450909 0.064119838 -0.028126102 -0.0078693582 0.063974611 -0.024864838 -0.019071165 0.069366753 -0.030200643 -0.007821613 0.078526586 -0.034167789 0.00090210995 0.076343454 -0.031847008 0.0054578069 0.083407067 -0.038592272 -0.042306442 0.035496183 -0.018771911 -0.034778725 0.037770849 -0.017144917 -0.041846227 0.043257661 -0.025382753 -0.050422832 0.059180714 -0.051732961 -0.048463706 0.061130702 -0.047022991 -0.047126357 0.065549299 -0.053654488 -0.044141624 0.068390042 -0.048805453 -0.039673846 0.072674587 -0.047195494 -0.044070449 0.070052072 -0.054154109 -0.047126357 0.065549299 -0.053654488 -0.044141624 0.068390042 -0.048805453 -0.044070449 0.070052072 -0.054154109 -0.007821613 0.078526586 -0.034167789 0.0054578069 0.083407067 -0.038592272 -0.0044244314 0.084795937 -0.040179029 -0.044070449 0.070052072 -0.054154109 -0.039673846 0.072674587 -0.047195494 -0.037161771 0.077734441 -0.056330673 -0.036086127 0.069957905 -0.038869146 -0.024595648 0.076079503 -0.037910327 -0.03369223 0.073985815 -0.041393731 -0.019071165 0.069366753 -0.030200643 -0.0080745388 0.074774764 -0.031388618 -0.007821613 0.078526586 -0.034167789 -0.030879114 0.079346918 -0.047191266 -0.024595648 0.076079503 -0.037910327 -0.017914373 0.084070928 -0.044502646 -0.032862321 0.061269432 -0.030693598 -0.022450909 0.064119838 -0.028126102 -0.019071165 0.069366753 -0.030200643 -0.033242222 0.04928907 -0.024775254 -0.022450909 0.064119838 -0.028126102 -0.032862321 0.061269432 -0.030693598 -0.014436879 0.087712213 -0.049121831 -0.0075832778 0.089702778 -0.049972322 -0.019368714 0.08866334 -0.057739634 -0.049000483 0.055278365 -0.04029518 -0.047222678 0.051323701 -0.034798406 -0.042076163 0.063288085 -0.03846918 -0.015824735 0.081504345 -0.039670702 -0.019071165 0.069366753 -0.030200643 -0.007821613 0.078526586 -0.034167789 -0.0088306777 0.091474846 -0.057968341 -0.002580727 0.091268882 -0.053236276 -0.0017498104 0.092159458 -0.057955198 -0.0088306777 0.091474846 -0.057968341 -0.0075832778 0.089702778 -0.049972322 -0.002580727 0.091268882 -0.053236276 -0.052318264 0.047880124 -0.039926633 -0.047222678 0.051323701 -0.034798406 -0.049000483 0.055278365 -0.04029518 -0.032767776 0.081380881 -0.12451208 -0.037161771 0.077734441 -0.056330673 -0.030847069 0.08272291 -0.057137322 -0.019368714 0.08866334 -0.057739634 -0.0075832778 0.089702778 -0.049972322 -0.0088306777 0.091474846 -0.057968341 -0.039390199 0.060539614 -0.03410555 -0.042076163 0.063288085 -0.03846918 -0.047222678 0.051323701 -0.034798406 -0.021595161 0.087792017 -0.12451227 -0.026156286 0.085576117 -0.1245122 -0.024073746 0.086520925 -0.056596436 -0.052451894 0.03548133 -0.03148349 -0.052318264 0.047880124 -0.039926633 -0.053686619 0.030237755 -0.030105829 -0.024073746 0.086520925 -0.056596436 -0.026156286 0.085576117 -0.1245122 -0.030847069 0.08272291 -0.057137322 -0.05456952 0.044098519 -0.045641351 -0.053686619 0.030237755 -0.030105829 -0.052318264 0.047880124 -0.039926633 -0.055006113 0.037230846 -0.042225901 -0.053686619 0.030237755 -0.030105829 -0.05456952 0.044098519 -0.045641351 -0.015824735 0.081504345 -0.039670702 -0.007821613 0.078526586 -0.034167789 -0.0044244314 0.084795937 -0.040179029 -0.025722921 0.083761588 -0.050702486 -0.030879114 0.079346918 -0.047191266 -0.017914373 0.084070928 -0.044502646 -0.025722921 0.083761588 -0.050702486 -0.017914373 0.084070928 -0.044502646 -0.014436879 0.087712213 -0.049121831 -0.03369223 0.073985815 -0.041393731 -0.024595648 0.076079503 -0.037910327 -0.030879114 0.079346918 -0.047191266 -0.01004375 0.041458737 -0.01400309 -0.011489146 0.035825513 -0.0099719111 0.0023971286 0.038591858 -0.011596639 -0.041846227 0.043257661 -0.025382753 -0.034100976 0.042762067 -0.021069922 -0.039390199 0.060539614 -0.03410555 -0.034100976 0.042762067 -0.021069922 -0.033242222 0.04928907 -0.024775254 -0.032862321 0.061269432 -0.030693598 -0.01004375 0.041458737 -0.01400309 0.0066073518 0.04349298 -0.014799496 -0.00028709762 0.050701618 -0.017722659 -0.024595648 0.076079503 -0.037910327 -0.019071165 0.069366753 -0.030200643 -0.015824735 0.081504345 -0.039670702 -0.0078693582 0.063974611 -0.024864838 -0.01004375 0.041458737 -0.01400309 -0.00028709762 0.050701618 -0.017722659 -0.047222678 0.051323701 -0.034798406 -0.047920093 0.036235821 -0.024848284 -0.041846227 0.043257661 -0.025382753 -0.050859481 0.02147392 -0.010910215 -0.051292829 0.010118905 0.0096258894 -0.046160463 0.018423611 0.0087789251 -0.052268941 0.0097753862 0.04385053 -0.050534591 0.0073277964 0.028217876 -0.053210981 -0.0018118754 0.037212349 -0.042374037 0.022875223 0.026948785 -0.045113083 0.018745212 0.0259961 -0.048454843 0.015788168 0.0329642 -0.054998338 0.036685891 0.070595779 -0.054848555 0.036685806 0.065345086 -0.054560266 0.00288632 0.058405533 -0.054998338 0.036685891 0.070595779 -0.054560266 0.00288632 0.058405533 -0.054980416 -0.018388268 0.054317299 -0.054848555 0.036685806 0.065345086 -0.052268941 0.0097753862 0.04385053 -0.054560266 0.00288632 0.058405533 -0.054535221 -0.007790179 0.052108623 -0.054980416 -0.018388268 0.054317299 -0.054560266 0.00288632 0.058405533 -0.054535221 -0.007790179 0.052108623 -0.052268941 0.0097753862 0.04385053 -0.053402822 0.0002652914 0.044161826 -0.042374037 0.022875223 0.026948785 -0.035214722 0.025115509 0.019313222 -0.043290086 0.019689463 0.019720595 -0.046414033 0.03208603 -0.01858332 -0.050341047 0.028710099 -0.020340167 -0.050859481 0.02147392 -0.010910215 -0.045113083 0.018745212 0.0259961 -0.043290086 0.019689463 0.019720595 -0.048847582 0.012544332 0.015759563 -0.048454843 0.015788168 0.0329642 -0.041813686 0.026833838 0.031020062 -0.042374037 0.022875223 0.026948785 -0.048454843 0.015788168 0.0329642 -0.050534591 0.0073277964 0.028217876 -0.052268941 0.0097753862 0.04385053 -0.042374037 0.022875223 0.026948785 -0.041813686 0.026833838 0.031020062 -0.037282564 0.02640111 0.025122577 -0.016976386 0.029155325 -0.00070275035 -0.017036598 0.027371537 0.0087622032 -0.001359846 0.027783025 0.006845267 -0.050534591 0.0073277964 0.028217876 -0.054893676 -0.007987231 0.023625895 -0.054834988 -0.0084813684 0.022622401 -0.037282564 0.02640111 0.025122577 -0.035214722 0.025115509 0.019313222 -0.042374037 0.022875223 0.026948785 -0.043290086 0.019689463 0.019720595 -0.035214722 0.025115509 0.019313222 -0.046160463 0.018423611 0.0087789251 -0.050534591 0.0073277964 0.028217876 -0.050218027 0.0086381547 0.019777058 -0.054893676 -0.007987231 0.023625895 -0.035214722 0.025115509 0.019313222 -0.039505202 0.02312983 0.0093521588 -0.046160463 0.018423611 0.0087789251 -0.053210981 -0.0018118754 0.037212349 -0.050534591 0.0073277964 0.028217876 -0.054834988 -0.0084813684 0.022622401 -0.042374037 0.022875223 0.026948785 -0.043290086 0.019689463 0.019720595 -0.045113083 0.018745212 0.0259961 -0.050534591 0.0073277964 0.028217876 -0.045113083 0.018745212 0.0259961 -0.050218027 0.0086381547 0.019777058 -0.028680431 0.02621511 0.0098621268 -0.033899721 0.025081675 0.010931251 -0.035214722 0.025115509 0.019313222 -0.017036598 0.027371537 0.0087622032 -0.016976386 0.029155325 -0.00070275035 -0.028680431 0.02621511 0.0098621268 -0.050341047 0.028710099 -0.020340167 -0.053686619 0.030237755 -0.030105829 -0.050859481 0.02147392 -0.010910215 -0.053492349 0.0036842364 0.010288054 -0.054874942 0.013293252 -0.016333878 -0.054893676 -0.007987231 0.023625895 -0.050859481 0.02147392 -0.010910215 -0.053686619 0.030237755 -0.030105829 -0.054234974 0.014736413 -0.012550266 -0.050218027 0.0086381547 0.019777058 -0.048847582 0.012544332 0.015759563 -0.051292829 0.010118905 0.0096258894 -0.051292829 0.010118905 0.0096258894 -0.053492349 0.0036842364 0.010288054 -0.050218027 0.0086381547 0.019777058 -0.053686619 0.030237755 -0.030105829 -0.054874942 0.013293252 -0.016333878 -0.054234974 0.014736413 -0.012550266 -0.050341047 0.028710099 -0.020340167 -0.052451894 0.03548133 -0.03148349 -0.053686619 0.030237755 -0.030105829 -0.01117127 0.031827804 -0.0052659917 0.0039421776 0.035011411 -0.008669517 -0.011489146 0.035825513 -0.0099719111 -0.01117127 0.031827804 -0.0052659917 0.0096814577 0.030747397 -0.0033780714 0.0039421776 0.035011411 -0.008669517 -0.033899721 0.025081675 0.010931251 -0.016976386 0.029155325 -0.00070275035 -0.033667084 0.026417367 0.0020447678 -0.054893676 -0.007987231 0.023625895 -0.050218027 0.0086381547 0.019777058 -0.053492349 0.0036842364 0.010288054 -0.053686619 0.030237755 -0.030105829 -0.055006113 0.037230846 -0.042225901 -0.054874942 0.013293252 -0.016333878 -0.046947684 0.022097705 -0.0034261143 -0.050859481 0.02147392 -0.010910215 -0.046160463 0.018423611 0.0087789251 -0.016976386 0.029155325 -0.00070275035 -0.030476324 0.030340508 -0.0063031367 -0.033667084 0.026417367 0.0020447678 -0.046160463 0.018423611 0.0087789251 -0.041262195 0.02689399 -0.0057888511 -0.046947684 0.022097705 -0.0034261143 -0.01117127 0.031827804 -0.0052659917 -0.011489146 0.035825513 -0.0099719111 -0.030476324 0.030340508 -0.0063031367 -0.046414033 0.03208603 -0.01858332 -0.047920093 0.036235821 -0.024848284 -0.050341047 0.028710099 -0.020340167 -0.054234974 0.014736413 -0.012550266 -0.053492349 0.0036842364 0.010288054 -0.051292829 0.010118905 0.0096258894 -0.011489146 0.035825513 -0.0099719111 -0.033332512 0.033110119 -0.011449436 -0.030476324 0.030340508 -0.0063031367 -0.047920093 0.036235821 -0.024848284 -0.052451894 0.03548133 -0.03148349 -0.050341047 0.028710099 -0.020340167 -0.033332512 0.033110119 -0.011449436 -0.034778725 0.037770849 -0.017144917 -0.042306442 0.035496183 -0.018771911 -0.033332512 0.033110119 -0.011449436 -0.041262195 0.02689399 -0.0057888511 -0.038486715 0.025772218 -0.00038890573 -0.033332512 0.033110119 -0.011449436 -0.042306442 0.035496183 -0.018771911 -0.046414033 0.03208603 -0.01858332 -0.054848555 0.036685806 0.065345086 -0.053138118 0.024231199 0.053881489 -0.052268941 0.0097753862 0.04385053 -0.054998338 0.036685891 0.070595779 -0.054980416 -0.018388268 0.054317299 -0.055001955 -0.021837099 0.070436038 -0.052268941 0.0097753862 0.04385053 -0.054535221 -0.007790179 0.052108623 -0.054560266 0.00288632 0.058405533 -0.052268941 0.0097753862 0.04385053 -0.053210981 -0.0018118754 0.037212349 -0.053402822 0.0002652914 0.044161826 -0.050534591 0.0073277964 0.028217876 -0.048454843 0.015788168 0.0329642 -0.045113083 0.018745212 0.0259961 -0.050218027 0.0086381547 0.019777058 -0.045113083 0.018745212 0.0259961 -0.048847582 0.012544332 0.015759563 -0.042306442 0.035496183 -0.018771911 -0.041846227 0.043257661 -0.025382753 -0.046414033 0.03208603 -0.01858332 -0.053571723 0.049785115 -0.12451135 -0.054646794 0.043567926 -0.12451122 -0.05456952 0.044098519 -0.045641351 -0.054623336 0.028639046 -0.041963451 -0.054873936 0.033205487 -0.067533031 -0.053124815 0.02291158 -0.12451084 -0.033332512 0.033110119 -0.011449436 -0.046414033 0.03208603 -0.01858332 -0.041262195 0.02689399 -0.0057888511 -0.025076028 0.03870216 -0.014938791 -0.034778725 0.037770849 -0.017144917 -0.033332512 0.033110119 -0.011449436 -0.041262195 0.02689399 -0.0057888511 -0.046414033 0.03208603 -0.01858332 -0.046947684 0.022097705 -0.0034261143 -0.046414033 0.03208603 -0.01858332 -0.041846227 0.043257661 -0.025382753 -0.047920093 0.036235821 -0.024848284 -0.033899721 0.025081675 0.010931251 -0.039505202 0.02312983 0.0093521588 -0.035214722 0.025115509 0.019313222 -0.043290086 0.019689463 0.019720595 -0.046160463 0.018423611 0.0087789251 -0.048847582 0.012544332 0.015759563 -0.054234974 0.014736413 -0.012550266 -0.051292829 0.010118905 0.0096258894 -0.050859481 0.02147392 -0.010910215 -0.053492349 0.0036842364 0.010288054 -0.054234974 0.014736413 -0.012550266 -0.054874942 0.013293252 -0.016333878 -0.033899721 0.025081675 0.010931251 -0.033667084 0.026417367 0.0020447678 -0.039505202 0.02312983 0.0093521588 -0.016976386 0.029155325 -0.00070275035 -0.033899721 0.025081675 0.010931251 -0.028680431 0.02621511 0.0098621268 -0.01117127 0.031827804 -0.0052659917 -0.016976386 0.029155325 -0.00070275035 0.0096814577 0.030747397 -0.0033780714 -0.033667084 0.026417367 0.0020447678 -0.038486715 0.025772218 -0.00038890573 -0.039505202 0.02312983 0.0093521588 -0.048847582 0.012544332 0.015759563 -0.046160463 0.018423611 0.0087789251 -0.051292829 0.010118905 0.0096258894 -0.054988068 0.035787184 -0.080863275 -0.054873936 0.033205487 -0.067533031 -0.05484698 0.041374575 -0.068792693 0.0039421776 0.035011411 -0.008669517 0.0023971286 0.038591858 -0.011596639 -0.011489146 0.035825513 -0.0099719111 -0.053402822 0.0002652914 0.044161826 -0.053210981 -0.0018118754 0.037212349 -0.054535221 -0.007790179 0.052108623 -0.030476324 0.030340508 -0.0063031367 -0.016976386 0.029155325 -0.00070275035 -0.01117127 0.031827804 -0.0052659917 -0.039505202 0.02312983 0.0093521588 -0.041262195 0.02689399 -0.0057888511 -0.046160463 0.018423611 0.0087789251 -0.039505202 0.02312983 0.0093521588 -0.038486715 0.025772218 -0.00038890573 -0.041262195 0.02689399 -0.0057888511 -0.053138118 0.024231199 0.053881489 -0.051070776 0.024767103 0.047083791 -0.052268941 0.0097753862 0.04385053 -0.030476324 0.030340508 -0.0063031367 -0.038486715 0.025772218 -0.00038890573 -0.033667084 0.026417367 0.0020447678 -0.038486715 0.025772218 -0.00038890573 -0.030476324 0.030340508 -0.0063031367 -0.033332512 0.033110119 -0.011449436 -0.054646794 0.043567926 -0.12451122 -0.05484698 0.041374575 -0.068792693 -0.05456952 0.044098519 -0.045641351 -0.053210981 -0.0018118754 0.037212349 -0.054834988 -0.0084813684 0.022622401 -0.054980416 -0.018388268 0.054317299 -0.033332512 0.033110119 -0.011449436 -0.011489146 0.035825513 -0.0099719111 -0.01004375 0.041458737 -0.01400309 -0.033332512 0.033110119 -0.011449436 -0.01004375 0.041458737 -0.01400309 -0.025076028 0.03870216 -0.014938791 -0.046947684 0.022097705 -0.0034261143 -0.046414033 0.03208603 -0.01858332 -0.050859481 0.02147392 -0.010910215 -0.049272921 0.024959838 0.042646449 -0.048454843 0.015788168 0.0329642 -0.051070776 0.024767103 0.047083791 -0.054535221 -0.007790179 0.052108623 -0.053210981 -0.0018118754 0.037212349 -0.054980416 -0.018388268 0.054317299 -0.051070776 0.024767103 0.047083791 -0.048454843 0.015788168 0.0329642 -0.052268941 0.0097753862 0.04385053 -0.00060938572 0.031169824 0.013030848 -0.00078405545 0.028996771 0.010743861 -0.019234467 0.032648083 0.017449375 -0.012531 0.028900897 0.012770318 -0.001359846 0.027783025 0.006845267 -0.017036598 0.027371537 0.0087622032 -0.052658521 0.036685608 0.053579766 -0.053138118 0.024231199 0.053881489 -0.054848555 0.036685806 0.065345086 -0.052658521 0.036685608 0.053579766 -0.050184481 0.036685459 0.04695994 -0.053138118 0.024231199 0.053881489 -0.044642236 0.0033430345 -0.058017638 -0.039549034 -0.0016286441 -0.085992098 -0.036722664 -0.0059642214 -0.057878308 -0.050184481 0.036685459 0.04695994 -0.051070776 0.024767103 0.047083791 -0.053138118 0.024231199 0.053881489 -0.04732364 0.031449672 0.040989425 -0.051070776 0.024767103 0.047083791 -0.050184481 0.036685459 0.04695994 -0.04732364 0.031449672 0.040989425 -0.050184481 0.036685459 0.04695994 -0.040840413 0.036685139 0.032639567 -0.051070776 0.024767103 0.047083791 -0.04732364 0.031449672 0.040989425 -0.049272921 0.024959838 0.042646449 -0.04732364 0.031449672 0.040989425 -0.040840413 0.036685139 0.032639567 -0.039923403 0.030229675 0.030622959 -0.04732364 0.031449672 0.040989425 -0.041813686 0.026833838 0.031020062 -0.049272921 0.024959838 0.042646449 -0.041813686 0.026833838 0.031020062 -0.04732364 0.031449672 0.040989425 -0.039923403 0.030229675 0.030622959 -0.017627604 0.036684863 0.017385513 -0.0019209808 0.03668483 0.014514432 -0.00060938572 0.031169824 0.013030848 -0.041813686 0.026833838 0.031020062 -0.039923403 0.030229675 0.030622959 -0.037282564 0.02640111 0.025122577 -0.023426741 0.029110428 0.017364712 -0.017036598 0.027371537 0.0087622032 -0.037282564 0.02640111 0.025122577 -0.012531 0.028900897 0.012770318 -0.017036598 0.027371537 0.0087622032 -0.023426741 0.029110428 0.017364712 -0.00078405545 0.028996771 0.010743861 -0.012531 0.028900897 0.012770318 -0.019234467 0.032648083 0.017449375 -0.039923403 0.030229675 0.030622959 -0.036748104 0.036685053 0.028559541 -0.025181966 0.031706788 0.019835526 -0.00078405545 0.028996771 0.010743861 -0.001359846 0.027783025 0.006845267 -0.012531 0.028900897 0.012770318 -0.048454843 0.015788168 0.0329642 -0.049272921 0.024959838 0.042646449 -0.041813686 0.026833838 0.031020062 -0.039923403 0.030229675 0.030622959 -0.040840413 0.036685139 0.032639567 -0.036748104 0.036685053 0.028559541 -0.025181966 0.031706788 0.019835526 -0.036748104 0.036685053 0.028559541 -0.017627604 0.036684863 0.017385513 -0.017627604 0.036684863 0.017385513 -0.019234467 0.032648083 0.017449375 -0.025181966 0.031706788 0.019835526 -0.023426741 0.029110428 0.017364712 -0.039923403 0.030229675 0.030622959 -0.025181966 0.031706788 0.019835526 -0.023426741 0.029110428 0.017364712 -0.037282564 0.02640111 0.025122577 -0.039923403 0.030229675 0.030622959 -0.023426741 0.029110428 0.017364712 -0.025181966 0.031706788 0.019835526 -0.019234467 0.032648083 0.017449375 -0.037282564 0.02640111 0.025122577 -0.017036598 0.027371537 0.0087622032 -0.035214722 0.025115509 0.019313222 -0.019234467 0.032648083 0.017449375 -0.012531 0.028900897 0.012770318 -0.023426741 0.029110428 0.017364712 -0.017627604 0.036684863 0.017385513 -0.00060938572 0.031169824 0.013030848 -0.019234467 0.032648083 0.017449375 -0.017036598 0.027371537 0.0087622032 -0.028680431 0.02621511 0.0098621268 -0.035214722 0.025115509 0.019313222 0.0026669088 0.033692673 0.014256013 -0.00060938572 0.031169824 0.013030848 -0.0019209808 0.03668483 0.014514432 -0.004920118 0.036686968 0.12428201 -0.015153494 -0.026725877 0.12237122 -0.0054766242 -0.027233487 0.12421157 0.05068884 0.036686398 0.090874434 0.045816597 -0.025725296 0.099946246 0.050722126 -0.024851842 0.090784848 -0.05484698 0.041374575 -0.068792693 -0.054873936 0.033205487 -0.067533031 -0.055006113 0.037230846 -0.042225901 -0.004920118 0.036686968 0.12428201 -0.014713841 0.036686935 0.12250609 -0.015153494 -0.026725877 0.12237122 0.05068884 0.036686398 0.090874434 0.046357408 0.036686547 0.099138588 0.045816597 -0.025725296 0.099946246 -0.014713841 0.036686935 0.12250609 -0.022066643 0.036686875 0.11987498 -0.0192373 -0.027109403 0.12101942 -0.014713841 0.036686935 0.12250609 -0.0192373 -0.027109403 0.12101942 -0.015153494 -0.026725877 0.12237122 0.046357408 0.036686547 0.099138588 0.043214384 0.036686622 0.10354583 0.045816597 -0.025725296 0.099946246 0.043214384 0.036686622 0.10354583 0.043028526 -0.026079403 0.10378142 0.045816597 -0.025725296 0.099946246 -0.022066643 0.036686875 0.11987498 -0.027559461 -0.026635798 0.1171085 -0.0192373 -0.027109403 0.12101942 0.043214384 0.036686622 0.10354583 0.039403934 -0.026243011 0.10789824 0.043028526 -0.026079403 0.10378142 0.043214384 0.036686622 0.10354583 0.034273822 0.036686778 0.11252545 0.039403934 -0.026243011 0.10789824 -0.022066643 0.036686875 0.11987498 -0.033943199 0.036686733 0.11279066 -0.027559461 -0.026635798 0.1171085 -0.033943199 0.036686733 0.11279066 -0.031722564 -0.02657846 0.11443273 -0.027559461 -0.026635798 0.1171085 0.034273822 0.036686778 0.11252545 0.035850856 -0.026988411 0.11119063 0.039403934 -0.026243011 0.10789824 -0.033943199 0.036686733 0.11279066 -0.037096102 -0.026377194 0.11010338 -0.031722564 -0.02657846 0.11443273 0.034273822 0.036686778 0.11252545 0.028228188 0.036686856 0.11670503 0.031172026 -0.026580896 0.11481915 0.034273822 0.036686778 0.11252545 0.031172026 -0.026580896 0.11481915 0.035850856 -0.026988411 0.11119063 -0.033943199 0.036686733 0.11279066 -0.040091529 0.036686625 0.10715726 -0.037096102 -0.026377194 0.11010338 -0.040091529 0.036686625 0.10715726 -0.04264703 -0.026564715 0.10419904 -0.037096102 -0.026377194 0.11010338 0.028228188 0.036686856 0.11670503 0.024642654 -0.026677396 0.11868601 0.031172026 -0.026580896 0.11481915 0.028228188 0.036686856 0.11670503 0.024938365 0.03668689 0.11852477 0.024642654 -0.026677396 0.11868601 -0.040091529 0.036686625 0.10715726 -0.0446315 0.036686514 0.10164419 -0.04264703 -0.026564715 0.10419904 -0.0446315 0.036686514 0.10164419 -0.047230493 -0.025986915 0.097666033 -0.04264703 -0.026564715 0.10419904 0.024938365 0.03668689 0.11852477 0.020234114 -0.026733629 0.12064609 0.024642654 -0.026677396 0.11868601 0.024938365 0.03668689 0.11852477 0.01817492 0.036686935 0.12141845 0.020234114 -0.026733629 0.12064609 -0.0446315 0.036686514 0.10164419 -0.048900448 0.036686379 0.094675593 -0.047230493 -0.025986915 0.097666033 0.01817492 0.036686935 0.12141845 0.010012458 -0.026727786 0.12357783 0.020234114 -0.026733629 0.12064609 -0.048900448 0.036686379 0.094675593 -0.049147103 -0.025738185 0.094153419 -0.047230493 -0.025986915 0.097666033 0.01817492 0.036686935 0.12141845 0.0096117733 0.036686961 0.12367043 0.010012458 -0.026727786 0.12357783 0.054383364 0.036685824 0.061188851 0.054696128 0.036686104 0.07538566 0.054996368 0.031687927 0.068491168 -0.048900448 0.036686379 0.094675593 -0.051721409 -0.024561526 0.088244505 -0.049147103 -0.025738185 0.094153419 0.054996368 0.031687927 0.068491168 0.054696128 0.036686104 0.07538566 0.054998558 -0.021952154 0.070749529 -0.048900448 0.036686379 0.094675593 -0.052750673 0.036686197 0.085072629 -0.051721409 -0.024561526 0.088244505 0.0096117733 0.036686961 0.12367043 0.00097169075 -0.026724445 0.1244927 0.010012458 -0.026727786 0.12357783 -0.052750673 0.036686197 0.085072629 -0.053748041 -0.024128336 0.081123456 -0.051721409 -0.024561526 0.088244505 0.054696128 0.036686104 0.07538566 0.054445971 -0.023073204 0.077377558 0.054998558 -0.021952154 0.070749529 0.0096117733 0.036686961 0.12367043 0.00030157811 0.036686976 0.12451252 0.00097169075 -0.026724445 0.1244927 0.054696128 0.036686104 0.07538566 0.054009333 0.036686182 0.080034234 0.054445971 -0.023073204 0.077377558 0.054009333 0.036686182 0.080034234 0.05322393 -0.024514921 0.083326854 0.054445971 -0.023073204 0.077377558 -0.052750673 0.036686197 0.085072629 -0.054369267 0.036686059 0.077861875 -0.053748041 -0.024128336 0.081123456 0.054009333 0.036686182 0.080034234 0.052096616 0.03668632 0.08716958 0.05322393 -0.024514921 0.083326854 0.052096616 0.03668632 0.08716958 0.050722126 -0.024851842 0.090784848 0.05322393 -0.024514921 0.083326854 -0.054369267 0.036686059 0.077861875 -0.055001955 -0.021837099 0.070436038 -0.053748041 -0.024128336 0.081123456 0.00030157811 0.036686976 0.12451252 -0.004920118 0.036686968 0.12428201 0.00097169075 -0.026724445 0.1244927 -0.004920118 0.036686968 0.12428201 -0.0054766242 -0.027233487 0.12421157 0.00097169075 -0.026724445 0.1244927 -0.054369267 0.036686059 0.077861875 -0.054998338 0.036685891 0.070595779 -0.055001955 -0.021837099 0.070436038 0.052096616 0.03668632 0.08716958 0.05068884 0.036686398 0.090874434 0.050722126 -0.024851842 0.090784848 -0.053701967 -0.026127288 0.056007288 -0.054980416 -0.018388268 0.054317299 -0.054834988 -0.0084813684 0.022622401 -0.054834988 -0.0084813684 0.022622401 -0.054893676 -0.007987231 0.023625895 -0.054874942 0.013293252 -0.016333878 -0.054834988 -0.0084813684 0.022622401 -0.054874942 0.013293252 -0.016333878 -0.054830555 0.0030466863 -0.00031368432 -0.055006113 0.037230846 -0.042225901 -0.05456952 0.044098519 -0.045641351 -0.05484698 0.041374575 -0.068792693 -0.05456952 0.044098519 -0.045641351 -0.053009875 0.051891707 -0.049080487 -0.053571723 0.049785115 -0.12451135 -0.04264703 -0.026564715 0.10419904 -0.03688537 -0.048525859 0.10483686 -0.037096102 -0.026377194 0.11010338 -0.043411709 -0.053115442 0.094617084 -0.039603453 -0.048708003 0.10168323 -0.047230493 -0.025986915 0.097666033 -0.047835592 -0.043708954 0.089822218 -0.043411709 -0.053115442 0.094617084 -0.047230493 -0.025986915 0.097666033 -0.050323468 -0.041224744 0.084019527 -0.049008843 -0.052400678 0.080713376 -0.047835592 -0.043708954 0.089822218 -0.015153494 -0.026725877 0.12237122 -0.0066463561 -0.042142089 0.12152727 -0.0054766242 -0.027233487 0.12421157 -0.041422833 -0.0696842 0.090679549 -0.034356177 -0.070200697 0.10052945 -0.043411709 -0.053115442 0.094617084 -0.047230493 -0.025986915 0.097666033 -0.039603453 -0.048708003 0.10168323 -0.04264703 -0.026564715 0.10419904 -0.039603453 -0.048708003 0.10168323 -0.034356177 -0.070200697 0.10052945 -0.03688537 -0.048525859 0.10483686 -0.0192373 -0.027109403 0.12101942 -0.019467561 -0.045556512 0.11744274 -0.013535652 -0.053666249 0.11778168 -0.027559461 -0.026635798 0.1171085 -0.019467561 -0.045556512 0.11744274 -0.0192373 -0.027109403 0.12101942 -0.026297498 -0.042998817 0.11459206 -0.019467561 -0.045556512 0.11744274 -0.027559461 -0.026635798 0.1171085 -0.0192373 -0.027109403 0.12101942 -0.013535652 -0.053666249 0.11778168 -0.015153494 -0.026725877 0.12237122 -0.047835592 -0.043708954 0.089822218 -0.047230493 -0.025986915 0.097666033 -0.049147103 -0.025738185 0.094153419 -0.053252559 -0.034024209 0.073763959 -0.049290031 -0.056524519 0.072576255 -0.049008843 -0.052400678 0.080713376 -0.047126357 0.065549299 -0.053654488 -0.049895365 0.060344905 -0.12451157 -0.050422832 0.059180714 -0.051732961 -0.031700533 -0.042755276 0.11099441 -0.026297498 -0.042998817 0.11459206 -0.027559461 -0.026635798 0.1171085 -0.037161771 0.077734441 -0.056330673 -0.040944561 0.073937461 -0.12451188 -0.044070449 0.070052072 -0.054154109 -0.051718131 -0.042398833 0.065078221 -0.049290031 -0.056524519 0.072576255 -0.053252559 -0.034024209 0.073763959 -0.051721409 -0.024561526 0.088244505 -0.047835592 -0.043708954 0.089822218 -0.049147103 -0.025738185 0.094153419 -0.051718131 -0.042398833 0.065078221 -0.053252559 -0.034024209 0.073763959 -0.055001955 -0.021837099 0.070436038 -0.049008843 -0.052400678 0.080713376 -0.050323468 -0.041224744 0.084019527 -0.053748041 -0.024128336 0.081123456 -0.050323468 -0.041224744 0.084019527 -0.047835592 -0.043708954 0.089822218 -0.051721409 -0.024561526 0.088244505 -0.03688537 -0.048525859 0.10483686 -0.032359879 -0.053518813 0.10771818 -0.031700533 -0.042755276 0.11099441 -0.046501316 -0.069757082 0.069979809 -0.049290031 -0.056524519 0.072576255 -0.051718131 -0.042398833 0.065078221 -0.04383589 -0.069669597 0.085107364 -0.041422833 -0.0696842 0.090679549 -0.047835592 -0.043708954 0.089822218 -0.054988068 0.035787184 -0.080863275 -0.054409407 0.028945064 -0.12451094 -0.054873936 0.033205487 -0.067533031 -0.053748041 -0.024128336 0.081123456 -0.050323468 -0.041224744 0.084019527 -0.051721409 -0.024561526 0.088244505 -0.043411709 -0.053115442 0.094617084 -0.034356177 -0.070200697 0.10052945 -0.039603453 -0.048708003 0.10168323 -0.053252559 -0.034024209 0.073763959 -0.049008843 -0.052400678 0.080713376 -0.053748041 -0.024128336 0.081123456 -0.041422833 -0.0696842 0.090679549 -0.043411709 -0.053115442 0.094617084 -0.047835592 -0.043708954 0.089822218 -0.017600769 -0.069537453 0.11261461 -0.008802304 -0.069522694 0.11523323 -0.013535652 -0.053666249 0.11778168 -0.054409407 0.028945064 -0.12451094 -0.053124815 0.02291158 -0.12451084 -0.054873936 0.033205487 -0.067533031 -0.0066463561 -0.042142089 0.12152727 -0.003698637 -0.069175579 0.11600769 -0.0010506092 -0.041433197 0.12207931 -0.049261525 0.011399437 -0.057621777 -0.048388757 0.011061001 -0.12451065 -0.046767194 0.0066003907 -0.05656229 -0.044520833 0.0046228589 -0.096018456 -0.039549034 -0.0016286441 -0.085992098 -0.044642236 0.0033430345 -0.058017638 -0.055001955 -0.021837099 0.070436038 -0.053252559 -0.034024209 0.073763959 -0.053748041 -0.024128336 0.081123456 -0.008802304 -0.069522694 0.11523323 -0.003698637 -0.069175579 0.11600769 -0.0066463561 -0.042142089 0.12152727 -0.04264703 -0.026564715 0.10419904 -0.039603453 -0.048708003 0.10168323 -0.03688537 -0.048525859 0.10483686 -0.054972168 0.035003744 -0.12451112 -0.054988068 0.035787184 -0.080863275 -0.05484698 0.041374575 -0.068792693 -0.031722564 -0.02657846 0.11443273 -0.031700533 -0.042755276 0.11099441 -0.027559461 -0.026635798 0.1171085 -0.017600769 -0.069537453 0.11261461 -0.013535652 -0.053666249 0.11778168 -0.019467561 -0.045556512 0.11744274 -0.04383589 -0.069669597 0.085107364 -0.047835592 -0.043708954 0.089822218 -0.049008843 -0.052400678 0.080713376 -0.023122786 -0.06947352 0.10993396 -0.017600769 -0.069537453 0.11261461 -0.019467561 -0.045556512 0.11744274 -0.013535652 -0.053666249 0.11778168 -0.008802304 -0.069522694 0.11523323 -0.0066463561 -0.042142089 0.12152727 -0.026297498 -0.042998817 0.11459206 -0.023122786 -0.06947352 0.10993396 -0.019467561 -0.045556512 0.11744274 -0.046501316 -0.069757082 0.069979809 -0.04383589 -0.069669597 0.085107364 -0.049008843 -0.052400678 0.080713376 -0.037096102 -0.026377194 0.11010338 -0.031700533 -0.042755276 0.11099441 -0.031722564 -0.02657846 0.11443273 -0.03688537 -0.048525859 0.10483686 -0.031700533 -0.042755276 0.11099441 -0.037096102 -0.026377194 0.11010338 -0.0054766242 -0.027233487 0.12421157 -0.0010506092 -0.041433197 0.12207931 0.00097169075 -0.026724445 0.1244927 -0.049290031 -0.056524519 0.072576255 -0.046501316 -0.069757082 0.069979809 -0.049008843 -0.052400678 0.080713376 -0.0066463561 -0.042142089 0.12152727 -0.0010506092 -0.041433197 0.12207931 -0.0054766242 -0.027233487 0.12421157 -0.027858187 -0.069495372 0.10680996 -0.023122786 -0.06947352 0.10993396 -0.031700533 -0.042755276 0.11099441 -0.031700533 -0.042755276 0.11099441 -0.023122786 -0.06947352 0.10993396 -0.026297498 -0.042998817 0.11459206 -0.034356177 -0.070200697 0.10052945 -0.027858187 -0.069495372 0.10680996 -0.032359879 -0.053518813 0.10771818 -0.013535652 -0.053666249 0.11778168 -0.0066463561 -0.042142089 0.12152727 -0.015153494 -0.026725877 0.12237122 -0.03688537 -0.048525859 0.10483686 -0.034356177 -0.070200697 0.10052945 -0.032359879 -0.053518813 0.10771818 -0.032359879 -0.053518813 0.10771818 -0.027858187 -0.069495372 0.10680996 -0.031700533 -0.042755276 0.11099441 0.040187839 -0.073987931 0.084976032 0.030141873 -0.082282878 0.083121568 0.036350809 -0.078703202 0.080355592 0.026036968 -0.081261173 0.046732493 0.021225639 -0.084902823 0.050136641 0.018397467 -0.082571931 0.042552195 0.01696986 -0.08975143 0.07106711 0.012276681 -0.089958429 0.08027368 0.010626174 -0.090878502 0.076368771 0.024677044 -0.086253211 0.060988087 0.01696986 -0.08975143 0.07106711 0.018396834 -0.088329136 0.058837723 0.012089045 -0.085337617 0.044333544 0.0052324808 -0.088828735 0.050300259 -0.0014804943 -0.086280845 0.043488603 0.019816976 -0.079061829 0.1013035 0.0044883089 -0.080623798 0.10466148 0.014424159 -0.08497218 0.094173074 0.029997731 -0.082475275 0.056276564 0.024677044 -0.086253211 0.060988087 0.021225639 -0.084902823 0.050136641 0.038242944 -0.077679887 0.06108705 0.040248457 -0.076646686 0.071823694 0.034417283 -0.081316769 0.067098573 -0.046767194 0.0066003907 -0.05656229 -0.048388757 0.011061001 -0.12451065 -0.044520833 0.0046228589 -0.096018456 0.013493776 -0.090604886 0.066270798 0.010626174 -0.090878502 0.076368771 0.0029795573 -0.092024036 0.065472394 0.040187839 -0.073987931 0.084976032 0.043577582 -0.070444129 0.084858671 0.041067638 -0.069619305 0.091406122 0.029997731 -0.082475275 0.056276564 0.034417283 -0.081316769 0.067098573 0.028597463 -0.084896795 0.066560805 0.014424159 -0.08497218 0.094173074 0.0044883089 -0.080623798 0.10466148 0.0061851419 -0.084338613 0.098568961 0.012089045 -0.085337617 0.044333544 0.010621972 -0.089761794 0.056180924 0.0052324808 -0.088828735 0.050300259 0.018396834 -0.088329136 0.058837723 0.01696986 -0.08975143 0.07106711 0.013493776 -0.090604886 0.066270798 0.018396834 -0.088329136 0.058837723 0.013493776 -0.090604886 0.066270798 0.010621972 -0.089761794 0.056180924 0.0082063563 -0.078392051 0.032065339 0.016467027 -0.081276901 0.039110579 0.0052332152 -0.083028749 0.038017359 0.02122259 -0.074278332 0.10662552 0.011892531 -0.077407114 0.10712125 0.019816976 -0.079061829 0.1013035 0.019816976 -0.079061829 0.1013035 0.011892531 -0.077407114 0.10712125 0.0044883089 -0.080623798 0.10466148 0.030192418 -0.069235064 0.10503285 0.017509032 -0.07294149 0.10992485 0.02122259 -0.074278332 0.10662552 0.005836179 -0.089086309 0.087743446 -0.0022450713 -0.085990146 0.096012846 0.00063964963 -0.089527026 0.087281287 0.005836179 -0.089086309 0.087743446 0.0061851419 -0.084338613 0.098568961 -0.0022450713 -0.085990146 0.096012846 0.02122259 -0.074278332 0.10662552 0.017509032 -0.07294149 0.10992485 0.011892531 -0.077407114 0.10712125 0.040248457 -0.076646686 0.071823694 0.046517275 -0.069716416 0.069814332 0.045938246 -0.069586977 0.077115163 0.029997731 -0.082475275 0.056276564 0.028597463 -0.084896795 0.066560805 0.024677044 -0.086253211 0.060988087 0.025357906 -0.085325196 0.081209838 0.02399206 -0.081854492 0.093156874 0.017685641 -0.087242328 0.085636221 0.028597463 -0.084896795 0.066560805 0.031736251 -0.082765505 0.075697482 0.01696986 -0.08975143 0.07106711 0.02468127 -0.074920982 0.035320655 0.022079874 -0.070031703 0.028570114 0.031029498 -0.07073237 0.03555746 0.038037647 -0.070532717 0.043396614 0.041044034 -0.070640706 0.048614327 0.031029498 -0.07073237 0.03555746 0.041044034 -0.070640706 0.048614327 0.045183603 -0.070636578 0.060554393 0.037512731 -0.076727718 0.054930769 -0.050422832 0.059180714 -0.051732961 -0.049895365 0.060344905 -0.12451157 -0.051767528 0.055814411 -0.12451147 0.022079874 -0.070031703 0.028570114 0.02468127 -0.074920982 0.035320655 0.019817514 -0.074349873 0.031664912 0.016467027 -0.081276901 0.039110579 0.018397467 -0.082571931 0.042552195 0.012089045 -0.085337617 0.044333544 0.041044034 -0.070640706 0.048614327 0.037512731 -0.076727718 0.054930769 0.032456372 -0.078274421 0.048852738 0.016467027 -0.081276901 0.039110579 0.012089045 -0.085337617 0.044333544 0.0052332152 -0.083028749 0.038017359 0.041044034 -0.070640706 0.048614327 0.032456372 -0.078274421 0.048852738 0.031029498 -0.07073237 0.03555746 0.02399206 -0.081854492 0.093156874 0.034417156 -0.074217044 0.095015764 0.019816976 -0.079061829 0.1013035 0.031029498 -0.07073237 0.03555746 0.026036968 -0.081261173 0.046732493 0.02468127 -0.074920982 0.035320655 0.018397467 -0.082571931 0.042552195 0.021225639 -0.084902823 0.050136641 0.012089045 -0.085337617 0.044333544 0.021225639 -0.084902823 0.050136641 0.024677044 -0.086253211 0.060988087 0.018396834 -0.088329136 0.058837723 0.034417156 -0.074217044 0.095015764 0.041067638 -0.069619305 0.091406122 0.029906278 -0.072415709 0.10249504 0.0082063563 -0.078392051 0.032065339 0.0052332152 -0.083028749 0.038017359 -0.0013187998 -0.079992622 0.033214938 -0.052334871 0.019355219 -0.058064979 -0.051090028 0.016785819 -0.12451079 -0.049261525 0.011399437 -0.057621777 0.0082063563 -0.078392051 0.032065339 -0.0013187998 -0.079992622 0.033214938 0.0043752487 -0.074707739 0.027353311 -0.049261525 0.011399437 -0.057621777 -0.051090028 0.016785819 -0.12451079 -0.048388757 0.011061001 -0.12451065 0.010621972 -0.089761794 0.056180924 0.0052322326 -0.091217034 0.059825484 0.0052324808 -0.088828735 0.050300259 0.022079874 -0.070031703 0.028570114 0.019817514 -0.074349873 0.031664912 0.017540907 -0.070288546 0.026599202 0.045183603 -0.070636578 0.060554393 0.038242944 -0.077679887 0.06108705 0.037512731 -0.076727718 0.054930769 0.031029498 -0.07073237 0.03555746 0.032456372 -0.078274421 0.048852738 0.026036968 -0.081261173 0.046732493 0.031736251 -0.082765505 0.075697482 0.030141873 -0.082282878 0.083121568 0.025357906 -0.085325196 0.081209838 0.031736251 -0.082765505 0.075697482 0.025357906 -0.085325196 0.081209838 0.01696986 -0.08975143 0.07106711 0.040248457 -0.076646686 0.071823694 0.042466406 -0.073922582 0.076986551 0.036350809 -0.078703202 0.080355592 0.017509032 -0.07294149 0.10992485 0.010040418 -0.070708588 0.11436835 0.011892531 -0.077407114 0.10712125 0.034417156 -0.074217044 0.095015764 0.029906278 -0.072415709 0.10249504 0.019816976 -0.079061829 0.1013035 0.0029795573 -0.092024036 0.065472394 0.010626174 -0.090878502 0.076368771 0.0027956974 -0.091596484 0.077725671 0.010626174 -0.090878502 0.076368771 0.012276681 -0.089958429 0.08027368 0.005836179 -0.089086309 0.087743446 0.040187839 -0.073987931 0.084976032 0.034417156 -0.074217044 0.095015764 0.030141873 -0.082282878 0.083121568 -0.031876761 -0.010433072 -0.054122746 -0.023833934 -0.014535409 -0.063514151 -0.024069929 -0.01612132 -0.04886419 0.011892531 -0.077407114 0.10712125 0.010040418 -0.070708588 0.11436835 0.0044883089 -0.080623798 0.10466148 0.021225639 -0.084902823 0.050136641 0.018396834 -0.088329136 0.058837723 0.012089045 -0.085337617 0.044333544 0.0029795573 -0.092024036 0.065472394 0.0027956974 -0.091596484 0.077725671 -0.0012742938 -0.092183381 0.067483224 0.040187839 -0.073987931 0.084976032 0.041067638 -0.069619305 0.091406122 0.034417156 -0.074217044 0.095015764 0.042466406 -0.073922582 0.076986551 0.043577582 -0.070444129 0.084858671 0.040187839 -0.073987931 0.084976032 -0.032727744 -0.007299894 -0.095474802 -0.031876761 -0.010433072 -0.054122746 -0.036722664 -0.0059642214 -0.057878308 0.042466406 -0.073922582 0.076986551 0.045938246 -0.069586977 0.077115163 0.043577582 -0.070444129 0.084858671 0.02468127 -0.074920982 0.035320655 0.016467027 -0.081276901 0.039110579 0.019817514 -0.074349873 0.031664912 0.040248457 -0.076646686 0.071823694 0.031736251 -0.082765505 0.075697482 0.034417283 -0.081316769 0.067098573 0.010626174 -0.090878502 0.076368771 0.005836179 -0.089086309 0.087743446 0.0027956974 -0.091596484 0.077725671 0.02399206 -0.081854492 0.093156874 0.014424159 -0.08497218 0.094173074 0.017685641 -0.087242328 0.085636221 0.0044883089 -0.080623798 0.10466148 0.010040418 -0.070708588 0.11436835 -0.0014898935 -0.075213768 0.11130761 0.045183603 -0.070636578 0.060554393 0.040248457 -0.076646686 0.071823694 0.038242944 -0.077679887 0.06108705 0.0052324808 -0.088828735 0.050300259 0.0052322326 -0.091217034 0.059825484 -0.0021773849 -0.090503626 0.055360712 0.042466406 -0.073922582 0.076986551 0.040187839 -0.073987931 0.084976032 0.036350809 -0.078703202 0.080355592 -0.037050176 -0.0072578574 -0.046578791 -0.045131195 -0.0042540394 -0.02567628 -0.044980027 0.00096511649 -0.041554403 0.045183603 -0.070636578 0.060554393 0.046517275 -0.069716416 0.069814332 0.040248457 -0.076646686 0.071823694 0.02468127 -0.074920982 0.035320655 0.026036968 -0.081261173 0.046732493 0.016467027 -0.081276901 0.039110579 0.017540907 -0.070288546 0.026599202 0.0082063563 -0.078392051 0.032065339 0.010982774 -0.070354395 0.024512576 0.01696986 -0.08975143 0.07106711 0.025357906 -0.085325196 0.081209838 0.012276681 -0.089958429 0.08027368 0.017540907 -0.070288546 0.026599202 0.019817514 -0.074349873 0.031664912 0.0082063563 -0.078392051 0.032065339 0.040248457 -0.076646686 0.071823694 0.036350809 -0.078703202 0.080355592 0.031736251 -0.082765505 0.075697482 0.037512731 -0.076727718 0.054930769 0.029997731 -0.082475275 0.056276564 0.032456372 -0.078274421 0.048852738 0.034417283 -0.081316769 0.067098573 0.031736251 -0.082765505 0.075697482 0.028597463 -0.084896795 0.066560805 0.010621972 -0.089761794 0.056180924 0.013493776 -0.090604886 0.066270798 0.0052322326 -0.091217034 0.059825484 0.017685641 -0.087242328 0.085636221 0.005836179 -0.089086309 0.087743446 0.012276681 -0.089958429 0.08027368 0.02399206 -0.081854492 0.093156874 0.019816976 -0.079061829 0.1013035 0.014424159 -0.08497218 0.094173074 0.017685641 -0.087242328 0.085636221 0.014424159 -0.08497218 0.094173074 0.005836179 -0.089086309 0.087743446 0.019817514 -0.074349873 0.031664912 0.016467027 -0.081276901 0.039110579 0.0082063563 -0.078392051 0.032065339 0.010982774 -0.070354395 0.024512576 0.0082063563 -0.078392051 0.032065339 0.0043752487 -0.074707739 0.027353311 0.016467027 -0.081276901 0.039110579 0.026036968 -0.081261173 0.046732493 0.018397467 -0.082571931 0.042552195 0.037512731 -0.076727718 0.054930769 0.038242944 -0.077679887 0.06108705 0.029997731 -0.082475275 0.056276564 0.030141873 -0.082282878 0.083121568 0.034417156 -0.074217044 0.095015764 0.02399206 -0.081854492 0.093156874 0.013493776 -0.090604886 0.066270798 0.0029795573 -0.092024036 0.065472394 0.0052322326 -0.091217034 0.059825484 0.032456372 -0.078274421 0.048852738 0.029997731 -0.082475275 0.056276564 0.026036968 -0.081261173 0.046732493 -0.054834988 -0.0084813684 0.022622401 -0.052669115 -0.024651593 0.043671478 -0.053701967 -0.026127288 0.056007288 0.010982774 -0.070354395 0.024512576 0.0043752487 -0.074707739 0.027353311 0.0010812272 -0.070397437 0.023245985 0.018396834 -0.088329136 0.058837723 0.010621972 -0.089761794 0.056180924 0.012089045 -0.085337617 0.044333544 0.019816976 -0.079061829 0.1013035 0.029906278 -0.072415709 0.10249504 0.02122259 -0.074278332 0.10662552 0.030141873 -0.082282878 0.083121568 0.02399206 -0.081854492 0.093156874 0.025357906 -0.085325196 0.081209838 0.0052332152 -0.083028749 0.038017359 0.012089045 -0.085337617 0.044333544 -0.0014804943 -0.086280845 0.043488603 0.038242944 -0.077679887 0.06108705 0.034417283 -0.081316769 0.067098573 0.029997731 -0.082475275 0.056276564 0.0052332152 -0.083028749 0.038017359 -0.0014804943 -0.086280845 0.043488603 -0.0013187998 -0.079992622 0.033214938 0.040248457 -0.076646686 0.071823694 0.045938246 -0.069586977 0.077115163 0.042466406 -0.073922582 0.076986551 0.029906278 -0.072415709 0.10249504 0.030192418 -0.069235064 0.10503285 0.02122259 -0.074278332 0.10662552 0.005836179 -0.089086309 0.087743446 -0.007662103 -0.089797482 0.084553599 0.0027956974 -0.091596484 0.077725671 0.031736251 -0.082765505 0.075697482 0.036350809 -0.078703202 0.080355592 0.030141873 -0.082282878 0.083121568 -0.028016862 -0.053958826 0.021136694 -0.021489922 -0.057596713 0.019500066 -0.031346656 -0.056058206 0.025923813 0.01696986 -0.08975143 0.07106711 0.010626174 -0.090878502 0.076368771 0.013493776 -0.090604886 0.066270798 0.025357906 -0.085325196 0.081209838 0.017685641 -0.087242328 0.085636221 0.012276681 -0.089958429 0.08027368 0.026036968 -0.081261173 0.046732493 0.029997731 -0.082475275 0.056276564 0.021225639 -0.084902823 0.050136641 0.005836179 -0.089086309 0.087743446 0.00063964963 -0.089527026 0.087281287 -0.007662103 -0.089797482 0.084553599 0.005836179 -0.089086309 0.087743446 0.014424159 -0.08497218 0.094173074 0.0061851419 -0.084338613 0.098568961 0.0052322326 -0.091217034 0.059825484 0.0029795573 -0.092024036 0.065472394 -0.0012742938 -0.092183381 0.067483224 0.024677044 -0.086253211 0.060988087 0.028597463 -0.084896795 0.066560805 0.01696986 -0.08975143 0.07106711 -0.041340861 -0.075093053 0.076684892 -0.04383589 -0.069669597 0.085107364 -0.046501316 -0.069757082 0.069979809 -0.024673754 -0.075641863 0.10273948 -0.029544311 -0.070906423 0.10452913 -0.027537748 -0.077795863 0.09712138 -0.039634962 -0.052595384 0.033834949 -0.039216779 -0.069991536 0.044644456 -0.043392256 -0.069658108 0.052668456 -0.022842854 -0.08770331 0.068554193 -0.031912211 -0.083007053 0.070876181 -0.02477432 -0.086218826 0.061038807 -0.020515731 -0.083364725 0.045757346 -0.018393802 -0.086076416 0.050474316 -0.026203744 -0.083319403 0.05211392 -0.027537748 -0.077795863 0.09712138 -0.029544311 -0.070906423 0.10452913 -0.034356177 -0.070200697 0.10052945 -0.047976367 -0.060236778 0.061861221 -0.046501316 -0.069757082 0.069979809 -0.051718131 -0.042398833 0.065078221 -0.027537748 -0.077795863 0.09712138 -0.034356177 -0.070200697 0.10052945 -0.03248914 -0.077134341 0.092437491 -0.023385683 -0.084274136 0.088039249 -0.031906698 -0.079826437 0.087213486 -0.033167459 -0.081621744 0.077158108 -0.016441848 -0.075919963 0.10715816 -0.017600769 -0.069537453 0.11261461 -0.029544311 -0.070906423 0.10452913 -0.037486333 -0.076217778 0.085561633 -0.03248914 -0.077134341 0.092437491 -0.041422833 -0.0696842 0.090679549 -0.020515731 -0.083364725 0.045757346 -0.026203744 -0.083319403 0.05211392 -0.027368397 -0.079463445 0.044606231 -0.046179049 -0.010261765 -0.00936219 -0.048143543 -0.03238596 0.0338258 -0.051504686 -0.023097532 0.033656847 -0.02477432 -0.086218826 0.061038807 -0.031912211 -0.083007053 0.070876181 -0.033168018 -0.081743218 0.062651709 -0.012616128 -0.084176958 0.096723035 -0.0096739335 -0.075596988 0.10977893 -0.020514475 -0.081732571 0.096458368 -0.04827797 -0.043971188 0.047260132 -0.0447799 -0.070633985 0.058754593 -0.047976367 -0.060236778 0.061861221 -0.007662103 -0.089797482 0.084553599 -0.016962845 -0.087908782 0.084010266 -0.019457994 -0.088328086 0.078109942 -0.0022450713 -0.085990146 0.096012846 0.0061851419 -0.084338613 0.098568961 0.0044883089 -0.080623798 0.10466148 -0.037976082 -0.076899923 0.056835815 -0.0447799 -0.070633985 0.058754593 -0.037974775 -0.073166698 0.047574852 -0.0012742938 -0.092183381 0.067483224 0.0027956974 -0.091596484 0.077725671 -0.007597765 -0.09154316 0.07441625 -0.032097876 -0.081554197 0.05783907 -0.038123488 -0.078066505 0.062871017 -0.037976082 -0.076899923 0.056835815 -0.007662103 -0.089797482 0.084553599 -0.0096764239 -0.086897232 0.092237964 -0.016962845 -0.087908782 0.084010266 -0.0014898935 -0.075213768 0.11130761 0.010040418 -0.070708588 0.11436835 -0.008802304 -0.069522694 0.11523323 -0.041340861 -0.075093053 0.076684892 -0.037486333 -0.076217778 0.085561633 -0.04383589 -0.069669597 0.085107364 -0.0012742938 -0.092183381 0.067483224 -0.007597765 -0.09154316 0.07441625 -0.0088297492 -0.091425665 0.065181978 -0.029494947 -0.033536308 -0.00047623712 -0.03105928 -0.042601392 0.012955911 -0.035705663 -0.03265994 0.0064445119 -0.032097876 -0.081554197 0.05783907 -0.033168018 -0.081743218 0.062651709 -0.038123488 -0.078066505 0.062871017 -0.018393802 -0.086076416 0.050474316 -0.014975099 -0.08949466 0.059645187 -0.02477432 -0.086218826 0.061038807 -0.0022450713 -0.085990146 0.096012846 0.0044883089 -0.080623798 0.10466148 -0.0030942261 -0.081302613 0.10386925 -0.034549583 -0.069930159 0.038397443 -0.027368397 -0.079463445 0.044606231 -0.037974775 -0.073166698 0.047574852 -0.037486333 -0.076217778 0.085561633 -0.041422833 -0.0696842 0.090679549 -0.04383589 -0.069669597 0.085107364 -0.042411275 -0.074568532 0.066906869 -0.046501316 -0.069757082 0.069979809 -0.0447799 -0.070633985 0.058754593 -0.019457994 -0.088328086 0.078109942 -0.028024785 -0.08473634 0.076965131 -0.022842854 -0.08770331 0.068554193 0.0010812272 -0.070397437 0.023245985 0.0043752487 -0.074707739 0.027353311 -0.0042296206 -0.070331439 0.023369877 -0.0022450713 -0.085990146 0.096012846 -0.012616128 -0.084176958 0.096723035 -0.0096764239 -0.086897232 0.092237964 -0.048143543 -0.03238596 0.0338258 -0.04827797 -0.043971188 0.047260132 -0.050229248 -0.033997763 0.044328004 0.0043752487 -0.074707739 0.027353311 -0.008197763 -0.076932803 0.030347854 -0.0042296206 -0.070331439 0.023369877 -0.0096739335 -0.075596988 0.10977893 -0.016441848 -0.075919963 0.10715816 -0.020514475 -0.081732571 0.096458368 -0.050246108 0.0062019802 -0.028935745 -0.046179049 -0.010261765 -0.00936219 -0.052231908 0.0099099074 -0.026078327 -0.034356177 -0.070200697 0.10052945 -0.041422833 -0.0696842 0.090679549 -0.03248914 -0.077134341 0.092437491 -0.008197763 -0.076932803 0.030347854 0.0043752487 -0.074707739 0.027353311 -0.0013187998 -0.079992622 0.033214938 -0.0042296206 -0.070331439 0.023369877 -0.008197763 -0.076932803 0.030347854 -0.014700336 -0.070382893 0.025626726 -0.0022450713 -0.085990146 0.096012846 -0.0030942261 -0.081302613 0.10386925 -0.012616128 -0.084176958 0.096723035 -0.018393802 -0.086076416 0.050474316 -0.02477432 -0.086218826 0.061038807 -0.026203744 -0.083319403 0.05211392 -0.0088297492 -0.091425665 0.065181978 -0.015266814 -0.09020751 0.067038953 -0.014975099 -0.08949466 0.059645187 -0.035705663 -0.03265994 0.0064445119 -0.03105928 -0.042601392 0.012955911 -0.034285922 -0.042783521 0.017037632 -0.037974775 -0.073166698 0.047574852 -0.039216779 -0.069991536 0.044644456 -0.034549583 -0.069930159 0.038397443 -0.027368397 -0.079463445 0.044606231 -0.026203744 -0.083319403 0.05211392 -0.034401551 -0.077191442 0.049668338 -0.023385683 -0.084274136 0.088039249 -0.020514475 -0.081732571 0.096458368 -0.027537748 -0.077795863 0.09712138 -0.008197763 -0.076932803 0.030347854 -0.019295121 -0.073542096 0.030518569 -0.014700336 -0.070382893 0.025626726 -0.027368397 -0.079463445 0.044606231 -0.034401551 -0.077191442 0.049668338 -0.037974775 -0.073166698 0.047574852 -0.022842854 -0.08770331 0.068554193 -0.028024785 -0.08473634 0.076965131 -0.031912211 -0.083007053 0.070876181 -0.0096764239 -0.086897232 0.092237964 -0.012616128 -0.084176958 0.096723035 -0.016962845 -0.087908782 0.084010266 -0.008197763 -0.076932803 0.030347854 -0.0013187998 -0.079992622 0.033214938 -0.013345241 -0.081356667 0.037748542 -0.016962845 -0.087908782 0.084010266 -0.023385683 -0.084274136 0.088039249 -0.019457994 -0.088328086 0.078109942 -0.008197763 -0.076932803 0.030347854 -0.013345241 -0.081356667 0.037748542 -0.019295121 -0.073542096 0.030518569 0.0027956974 -0.091596484 0.077725671 -0.007662103 -0.089797482 0.084553599 -0.007597765 -0.09154316 0.07441625 -0.042411275 -0.074568532 0.066906869 -0.041340861 -0.075093053 0.076684892 -0.046501316 -0.069757082 0.069979809 -0.0088297492 -0.091425665 0.065181978 -0.007597765 -0.09154316 0.07441625 -0.015266814 -0.09020751 0.067038953 -0.023385683 -0.084274136 0.088039249 -0.027537748 -0.077795863 0.09712138 -0.031906698 -0.079826437 0.087213486 -0.0014898935 -0.075213768 0.11130761 -0.008802304 -0.069522694 0.11523323 -0.0096739335 -0.075596988 0.10977893 -0.0013187998 -0.079992622 0.033214938 -0.0014804943 -0.086280845 0.043488603 -0.013345241 -0.081356667 0.037748542 -0.037458718 -0.078863204 0.074061148 -0.041340861 -0.075093053 0.076684892 -0.042411275 -0.074568532 0.066906869 -0.026203744 -0.083319403 0.05211392 -0.032097876 -0.081554197 0.05783907 -0.034401551 -0.077191442 0.049668338 -0.031906698 -0.079826437 0.087213486 -0.027537748 -0.077795863 0.09712138 -0.03248914 -0.077134341 0.092437491 -0.037050176 -0.0072578574 -0.046578791 -0.039320935 -0.010068237 -0.029215233 -0.045131195 -0.0042540394 -0.02567628 -0.012754771 -0.019534687 -0.054748308 0.00038422749 -0.023945715 -0.041049406 -0.014913066 -0.020501774 -0.045517486 -0.026203744 -0.083319403 0.05211392 -0.02477432 -0.086218826 0.061038807 -0.032097876 -0.081554197 0.05783907 -0.0014804943 -0.086280845 0.043488603 -0.0096776392 -0.087271288 0.047661211 -0.013345241 -0.081356667 0.037748542 -0.037976082 -0.076899923 0.056835815 -0.038123488 -0.078066505 0.062871017 -0.0447799 -0.070633985 0.058754593 -0.037458718 -0.078863204 0.074061148 -0.033167459 -0.081621744 0.077158108 -0.041340861 -0.075093053 0.076684892 -0.031906698 -0.079826437 0.087213486 -0.037486333 -0.076217778 0.085561633 -0.033167459 -0.081621744 0.077158108 -0.014975099 -0.08949466 0.059645187 -0.022842854 -0.08770331 0.068554193 -0.02477432 -0.086218826 0.061038807 -0.019521588 -0.027588066 -0.020504946 -0.0087950127 -0.03698625 -0.0094680255 -0.014534415 -0.040074617 -0.002729744 -0.0014804943 -0.086280845 0.043488603 0.0052324808 -0.088828735 0.050300259 -0.0096776392 -0.087271288 0.047661211 -0.019457994 -0.088328086 0.078109942 -0.023385683 -0.084274136 0.088039249 -0.028024785 -0.08473634 0.076965131 -0.013345241 -0.081356667 0.037748542 -0.023218364 -0.074696049 0.034048196 -0.019295121 -0.073542096 0.030518569 -0.014975099 -0.08949466 0.059645187 -0.015266814 -0.09020751 0.067038953 -0.022842854 -0.08770331 0.068554193 -0.019295121 -0.073542096 0.030518569 -0.023218364 -0.074696049 0.034048196 -0.027049053 -0.069950007 0.031654917 -0.012616128 -0.084176958 0.096723035 -0.023385683 -0.084274136 0.088039249 -0.016962845 -0.087908782 0.084010266 -0.028024785 -0.08473634 0.076965131 -0.033167459 -0.081621744 0.077158108 -0.031912211 -0.083007053 0.070876181 -0.036722664 -0.0059642214 -0.057878308 -0.031876761 -0.010433072 -0.054122746 -0.030840712 -0.013824855 -0.040551011 0.0052324808 -0.088828735 0.050300259 -0.0021773849 -0.090503626 0.055360712 -0.0096776392 -0.087271288 0.047661211 -0.033168018 -0.081743218 0.062651709 -0.031912211 -0.083007053 0.070876181 -0.037458718 -0.078863204 0.074061148 -0.020514475 -0.081732571 0.096458368 -0.024673754 -0.075641863 0.10273948 -0.027537748 -0.077795863 0.09712138 -0.020514475 -0.081732571 0.096458368 -0.016441848 -0.075919963 0.10715816 -0.024673754 -0.075641863 0.10273948 -0.033168018 -0.081743218 0.062651709 -0.037458718 -0.078863204 0.074061148 -0.038123488 -0.078066505 0.062871017 -0.033167459 -0.081621744 0.077158108 -0.037486333 -0.076217778 0.085561633 -0.041340861 -0.075093053 0.076684892 -0.0030942261 -0.081302613 0.10386925 0.0044883089 -0.080623798 0.10466148 -0.0014898935 -0.075213768 0.11130761 -0.0096739335 -0.075596988 0.10977893 -0.017600769 -0.069537453 0.11261461 -0.016441848 -0.075919963 0.10715816 -0.0096776392 -0.087271288 0.047661211 -0.020515731 -0.083364725 0.045757346 -0.013345241 -0.081356667 0.037748542 -0.007597765 -0.09154316 0.07441625 -0.019457994 -0.088328086 0.078109942 -0.015266814 -0.09020751 0.067038953 -0.0096739335 -0.075596988 0.10977893 -0.008802304 -0.069522694 0.11523323 -0.017600769 -0.069537453 0.11261461 -0.013345241 -0.081356667 0.037748542 -0.027368397 -0.079463445 0.044606231 -0.023218364 -0.074696049 0.034048196 -0.0030942261 -0.081302613 0.10386925 -0.0096739335 -0.075596988 0.10977893 -0.012616128 -0.084176958 0.096723035 -0.0030942261 -0.081302613 0.10386925 -0.0014898935 -0.075213768 0.11130761 -0.0096739335 -0.075596988 0.10977893 0.00063964963 -0.089527026 0.087281287 -0.0096764239 -0.086897232 0.092237964 -0.007662103 -0.089797482 0.084553599 -0.0021773849 -0.090503626 0.055360712 0.0052322326 -0.091217034 0.059825484 -0.0012742938 -0.092183381 0.067483224 -0.0096776392 -0.087271288 0.047661211 -0.018393802 -0.086076416 0.050474316 -0.020515731 -0.083364725 0.045757346 -0.007597765 -0.09154316 0.07441625 -0.007662103 -0.089797482 0.084553599 -0.019457994 -0.088328086 0.078109942 -0.013345241 -0.081356667 0.037748542 -0.020515731 -0.083364725 0.045757346 -0.027368397 -0.079463445 0.044606231 -0.031912211 -0.083007053 0.070876181 -0.033167459 -0.081621744 0.077158108 -0.037458718 -0.078863204 0.074061148 -0.019457994 -0.088328086 0.078109942 -0.022842854 -0.08770331 0.068554193 -0.015266814 -0.09020751 0.067038953 -0.0096776392 -0.087271288 0.047661211 -0.0021773849 -0.090503626 0.055360712 -0.014975099 -0.08949466 0.059645187 -0.021118026 -0.041096549 0.0023777212 -0.02333222 -0.047008399 0.010795036 -0.029494947 -0.033536308 -0.00047623712 -0.0096776392 -0.087271288 0.047661211 -0.014975099 -0.08949466 0.059645187 -0.018393802 -0.086076416 0.050474316 -0.0021773849 -0.090503626 0.055360712 -0.0012742938 -0.092183381 0.067483224 -0.014975099 -0.08949466 0.059645187 -0.034401551 -0.077191442 0.049668338 -0.037976082 -0.076899923 0.056835815 -0.037974775 -0.073166698 0.047574852 -0.053701967 -0.026127288 0.056007288 -0.051718131 -0.042398833 0.065078221 -0.054980416 -0.018388268 0.054317299 -0.023218364 -0.074696049 0.034048196 -0.027368397 -0.079463445 0.044606231 -0.034549583 -0.069930159 0.038397443 -0.028024785 -0.08473634 0.076965131 -0.023385683 -0.084274136 0.088039249 -0.033167459 -0.081621744 0.077158108 -0.032097876 -0.081554197 0.05783907 -0.02477432 -0.086218826 0.061038807 -0.033168018 -0.081743218 0.062651709 0.00063964963 -0.089527026 0.087281287 -0.0022450713 -0.085990146 0.096012846 -0.0096764239 -0.086897232 0.092237964 -0.038123488 -0.078066505 0.062871017 -0.042411275 -0.074568532 0.066906869 -0.0447799 -0.070633985 0.058754593 -0.038123488 -0.078066505 0.062871017 -0.037458718 -0.078863204 0.074061148 -0.042411275 -0.074568532 0.066906869 -0.048143543 -0.03238596 0.0338258 -0.044323824 -0.037147503 0.028577616 -0.04827797 -0.043971188 0.047260132 -0.012616128 -0.084176958 0.096723035 -0.020514475 -0.081732571 0.096458368 -0.023385683 -0.084274136 0.088039249 -0.0012742938 -0.092183381 0.067483224 -0.0088297492 -0.091425665 0.065181978 -0.014975099 -0.08949466 0.059645187 -0.016441848 -0.075919963 0.10715816 -0.029544311 -0.070906423 0.10452913 -0.024673754 -0.075641863 0.10273948 -0.034401551 -0.077191442 0.049668338 -0.032097876 -0.081554197 0.05783907 -0.037976082 -0.076899923 0.056835815 -0.031906698 -0.079826437 0.087213486 -0.03248914 -0.077134341 0.092437491 -0.037486333 -0.076217778 0.085561633 -0.037974775 -0.073166698 0.047574852 -0.0447799 -0.070633985 0.058754593 -0.043392256 -0.069658108 0.052668456 -0.043392256 -0.069658108 0.052668456 -0.039216779 -0.069991536 0.044644456 -0.037974775 -0.073166698 0.047574852 -0.017489476 -0.066191144 0.023901617 -0.014700336 -0.070382893 0.025626726 -0.019295121 -0.073542096 0.030518569 -0.027049053 -0.069950007 0.031654917 -0.023218364 -0.074696049 0.034048196 -0.034549583 -0.069930159 0.038397443 -0.027049053 -0.069950007 0.031654917 -0.017489476 -0.066191144 0.023901617 -0.019295121 -0.073542096 0.030518569 -0.031346656 -0.056058206 0.025923813 -0.039216779 -0.069991536 0.044644456 -0.039634962 -0.052595384 0.033834949 -0.035705663 -0.03265994 0.0064445119 -0.034285922 -0.042783521 0.017037632 -0.040235538 -0.038768355 0.021799797 -0.0079164999 -0.058541268 0.015099026 -0.013225875 -0.056793187 0.015000978 -0.021118026 -0.041096549 0.0023777212 -0.035360958 -0.050543096 0.025986439 -0.031346656 -0.056058206 0.025923813 -0.039634962 -0.052595384 0.033834949 -0.054980416 -0.018388268 0.054317299 -0.051718131 -0.042398833 0.065078221 -0.055001955 -0.021837099 0.070436038 0.00012200962 -0.045918226 0.0013196311 -0.0082040736 -0.050502121 0.0075776642 -0.0067792446 -0.046432398 0.002767185 -0.0090216761 -0.029785106 -0.022473596 -0.0087950127 -0.03698625 -0.0094680255 -0.019521588 -0.027588066 -0.020504946 -0.043035891 -0.029098764 0.015000591 -0.040235538 -0.038768355 0.021799797 -0.044323824 -0.037147503 0.028577616 -0.023745798 -0.032860991 -0.0072872508 -0.021118026 -0.041096549 0.0023777212 -0.029494947 -0.033536308 -0.00047623712 -0.036722664 -0.0059642214 -0.057878308 -0.030840712 -0.013824855 -0.040551011 -0.037050176 -0.0072578574 -0.046578791 -0.02333222 -0.047008399 0.010795036 -0.013225875 -0.056793187 0.015000978 -0.021489922 -0.057596713 0.019500066 -0.050229248 -0.033997763 0.044328004 -0.053701967 -0.026127288 0.056007288 -0.052669115 -0.024651593 0.043671478 -0.052231908 0.0099099074 -0.026078327 -0.051504686 -0.023097532 0.033656847 -0.054830555 0.0030466863 -0.00031368432 -0.0082040736 -0.050502121 0.0075776642 -0.0079164999 -0.058541268 0.015099026 -0.021118026 -0.041096549 0.0023777212 -0.014534415 -0.040074617 -0.002729744 -0.021118026 -0.041096549 0.0023777212 -0.023745798 -0.032860991 -0.0072872508 -0.050246108 0.0062019802 -0.028935745 -0.045131195 -0.0042540394 -0.02567628 -0.046179049 -0.010261765 -0.00936219 -0.022096127 -0.020823682 -0.034289226 -0.019521588 -0.027588066 -0.020504946 -0.030840712 -0.013824855 -0.040551011 -0.030840712 -0.013824855 -0.040551011 -0.019521588 -0.027588066 -0.020504946 -0.026718359 -0.023987543 -0.020372825 -0.04414314 -0.021844443 0.0062342267 -0.048143543 -0.03238596 0.0338258 -0.046179049 -0.010261765 -0.00936219 -0.019521588 -0.027588066 -0.020504946 -0.014534415 -0.040074617 -0.002729744 -0.023745798 -0.032860991 -0.0072872508 -8.2277133e-05 -0.027842265 -0.029253034 1.6957863e-05 -0.032232072 -0.019468999 -0.01203787 -0.025288127 -0.031700492 -0.054834988 -0.0084813684 0.022622401 -0.051504686 -0.023097532 0.033656847 -0.052669115 -0.024651593 0.043671478 1.6957863e-05 -0.032232072 -0.019468999 -0.0090216761 -0.029785106 -0.022473596 -0.01203787 -0.025288127 -0.031700492 -0.044980027 0.00096511649 -0.041554403 -0.045131195 -0.0042540394 -0.02567628 -0.050246108 0.0062019802 -0.028935745 -0.014913066 -0.020501774 -0.045517486 -0.01203787 -0.025288127 -0.031700492 -0.024069929 -0.01612132 -0.04886419 -0.024069929 -0.01612132 -0.04886419 -0.01203787 -0.025288127 -0.031700492 -0.018485608 -0.022180533 -0.034846827 -0.028016862 -0.053958826 0.021136694 -0.031346656 -0.056058206 0.025923813 -0.035360958 -0.050543096 0.025986439 -0.053701967 -0.026127288 0.056007288 -0.047976367 -0.060236778 0.061861221 -0.051718131 -0.042398833 0.065078221 -0.037050176 -0.0072578574 -0.046578791 -0.044980027 0.00096511649 -0.041554403 -0.044642236 0.0033430345 -0.058017638 -0.039634962 -0.052595384 0.033834949 -0.043392256 -0.069658108 0.052668456 -0.044157159 -0.049047004 0.039782621 0.00012874059 -0.054879177 0.010893499 -0.0082040736 -0.050502121 0.0075776642 0.00012200962 -0.045918226 0.0013196311 -0.036722664 -0.0059642214 -0.057878308 -0.037050176 -0.0072578574 -0.046578791 -0.044642236 0.0033430345 -0.058017638 -0.054830555 0.0030466863 -0.00031368432 -0.051504686 -0.023097532 0.033656847 -0.054834988 -0.0084813684 0.022622401 -0.02333222 -0.047008399 0.010795036 -0.021489922 -0.057596713 0.019500066 -0.028016862 -0.053958826 0.021136694 -0.04898994 0.008777977 -0.0447887 -0.044980027 0.00096511649 -0.041554403 -0.050246108 0.0062019802 -0.028935745 -0.035705663 -0.03265994 0.0064445119 -0.040235538 -0.038768355 0.021799797 -0.043035891 -0.029098764 0.015000591 -0.012754771 -0.019534687 -0.054748308 -0.014913066 -0.020501774 -0.045517486 -0.017661691 -0.018064838 -0.054452606 -0.021118026 -0.041096549 0.0023777212 -0.013225875 -0.056793187 0.015000978 -0.02333222 -0.047008399 0.010795036 -0.02333222 -0.047008399 0.010795036 -0.028016862 -0.053958826 0.021136694 -0.03105928 -0.042601392 0.012955911 -0.017661691 -0.018064838 -0.054452606 -0.014913066 -0.020501774 -0.045517486 -0.024069929 -0.01612132 -0.04886419 -0.048143543 -0.03238596 0.0338258 -0.050229248 -0.033997763 0.044328004 -0.051504686 -0.023097532 0.033656847 -0.030840712 -0.013824855 -0.040551011 -0.026718359 -0.023987543 -0.020372825 -0.035194796 -0.019178281 -0.017328851 1.5599955e-05 -0.041060552 -0.0049596308 0.00012200962 -0.045918226 0.0013196311 -0.0067792446 -0.046432398 0.002767185 -0.051504686 -0.023097532 0.033656847 -0.050229248 -0.033997763 0.044328004 -0.052669115 -0.024651593 0.043671478 -0.041930143 -0.014938674 -0.011594919 -0.04414314 -0.021844443 0.0062342267 -0.046179049 -0.010261765 -0.00936219 -0.040235538 -0.038768355 0.021799797 -0.039634962 -0.052595384 0.033834949 -0.044157159 -0.049047004 0.039782621 -0.043035891 -0.029098764 0.015000591 -0.044323824 -0.037147503 0.028577616 -0.048143543 -0.03238596 0.0338258 -0.04827797 -0.043971188 0.047260132 -0.047976367 -0.060236778 0.061861221 -0.053701967 -0.026127288 0.056007288 -0.052231908 0.0099099074 -0.026078327 -0.054830555 0.0030466863 -0.00031368432 -0.054874942 0.013293252 -0.016333878 -0.049261525 0.011399437 -0.057621777 -0.044980027 0.00096511649 -0.041554403 -0.04898994 0.008777977 -0.0447887 -0.028016862 -0.053958826 0.021136694 -0.035360958 -0.050543096 0.025986439 -0.034285922 -0.042783521 0.017037632 -0.030840712 -0.013824855 -0.040551011 -0.035194796 -0.019178281 -0.017328851 -0.039320935 -0.010068237 -0.029215233 -0.044642236 0.0033430345 -0.058017638 -0.044980027 0.00096511649 -0.041554403 -0.046767194 0.0066003907 -0.05656229 -0.050246108 0.0062019802 -0.028935745 -0.052231908 0.0099099074 -0.026078327 -0.052709538 0.017082071 -0.039312031 -0.052709538 0.017082071 -0.039312031 -0.052231908 0.0099099074 -0.026078327 -0.054874942 0.013293252 -0.016333878 -0.046767194 0.0066003907 -0.05656229 -0.044980027 0.00096511649 -0.041554403 -0.049261525 0.011399437 -0.057621777 -0.029494947 -0.033536308 -0.00047623712 -0.02333222 -0.047008399 0.010795036 -0.03105928 -0.042601392 0.012955911 -0.041930143 -0.014938674 -0.011594919 -0.043035891 -0.029098764 0.015000591 -0.04414314 -0.021844443 0.0062342267 -0.035194796 -0.019178281 -0.017328851 -0.023745798 -0.032860991 -0.0072872508 -0.029494947 -0.033536308 -0.00047623712 -0.034285922 -0.042783521 0.017037632 -0.035360958 -0.050543096 0.025986439 -0.039634962 -0.052595384 0.033834949 1.5599955e-05 -0.041060552 -0.0049596308 -0.0067792446 -0.046432398 0.002767185 -0.0087950127 -0.03698625 -0.0094680255 -0.04898994 0.008777977 -0.0447887 -0.050246108 0.0062019802 -0.028935745 -0.052709538 0.017082071 -0.039312031 -0.019521588 -0.027588066 -0.020504946 -0.023745798 -0.032860991 -0.0072872508 -0.026718359 -0.023987543 -0.020372825 -0.040235538 -0.038768355 0.021799797 -0.044157159 -0.049047004 0.039782621 -0.044323824 -0.037147503 0.028577616 -0.052709538 0.017082071 -0.039312031 -0.054874942 0.013293252 -0.016333878 -0.054623336 0.028639046 -0.041963451 -0.049261525 0.011399437 -0.057621777 -0.04898994 0.008777977 -0.0447887 -0.052334871 0.019355219 -0.058064979 -0.0067792446 -0.046432398 0.002767185 -0.0082040736 -0.050502121 0.0075776642 -0.014534415 -0.040074617 -0.002729744 -0.050229248 -0.033997763 0.044328004 -0.04827797 -0.043971188 0.047260132 -0.053701967 -0.026127288 0.056007288 -0.024069929 -0.01612132 -0.04886419 -0.018485608 -0.022180533 -0.034846827 -0.022096127 -0.020823682 -0.034289226 -0.052334871 0.019355219 -0.058064979 -0.04898994 0.008777977 -0.0447887 -0.052709538 0.017082071 -0.039312031 -0.044323824 -0.037147503 0.028577616 -0.044157159 -0.049047004 0.039782621 -0.04827797 -0.043971188 0.047260132 -0.0087950127 -0.03698625 -0.0094680255 -0.0067792446 -0.046432398 0.002767185 -0.014534415 -0.040074617 -0.002729744 -0.029494947 -0.033536308 -0.00047623712 -0.035705663 -0.03265994 0.0064445119 -0.041930143 -0.014938674 -0.011594919 -0.026718359 -0.023987543 -0.020372825 -0.023745798 -0.032860991 -0.0072872508 -0.035194796 -0.019178281 -0.017328851 -0.03105928 -0.042601392 0.012955911 -0.028016862 -0.053958826 0.021136694 -0.034285922 -0.042783521 0.017037632 -0.023833934 -0.014535409 -0.063514151 -0.017661691 -0.018064838 -0.054452606 -0.024069929 -0.01612132 -0.04886419 -0.014534415 -0.040074617 -0.002729744 -0.0082040736 -0.050502121 0.0075776642 -0.021118026 -0.041096549 0.0023777212 -0.039320935 -0.010068237 -0.029215233 -0.035194796 -0.019178281 -0.017328851 -0.041930143 -0.014938674 -0.011594919 -0.054623336 0.028639046 -0.041963451 -0.052334871 0.019355219 -0.058064979 -0.052709538 0.017082071 -0.039312031 -0.04414314 -0.021844443 0.0062342267 -0.043035891 -0.029098764 0.015000591 -0.048143543 -0.03238596 0.0338258 -0.01203787 -0.025288127 -0.031700492 -0.0090216761 -0.029785106 -0.022473596 -0.018485608 -0.022180533 -0.034846827 -0.040235538 -0.038768355 0.021799797 -0.034285922 -0.042783521 0.017037632 -0.039634962 -0.052595384 0.033834949 -0.055006113 0.037230846 -0.042225901 -0.054623336 0.028639046 -0.041963451 -0.054874942 0.013293252 -0.016333878 -0.047976367 -0.060236778 0.061861221 -0.0447799 -0.070633985 0.058754593 -0.046501316 -0.069757082 0.069979809 -0.045131195 -0.0042540394 -0.02567628 -0.041930143 -0.014938674 -0.011594919 -0.046179049 -0.010261765 -0.00936219 -0.017489476 -0.066191144 0.023901617 -0.027049053 -0.069950007 0.031654917 -0.021489922 -0.057596713 0.019500066 -0.0042296206 -0.070331439 0.023369877 -0.014700336 -0.070382893 0.025626726 -0.0079164999 -0.058541268 0.015099026 -0.031876761 -0.010433072 -0.054122746 -0.024069929 -0.01612132 -0.04886419 -0.022096127 -0.020823682 -0.034289226 -0.054873936 0.033205487 -0.067533031 -0.054623336 0.028639046 -0.041963451 -0.055006113 0.037230846 -0.042225901 -0.0090216761 -0.029785106 -0.022473596 1.6957863e-05 -0.032232072 -0.019468999 -0.0087950127 -0.03698625 -0.0094680255 -0.04827797 -0.043971188 0.047260132 -0.043392256 -0.069658108 0.052668456 -0.0447799 -0.070633985 0.058754593 -0.021489922 -0.057596713 0.019500066 -0.027049053 -0.069950007 0.031654917 -0.034549583 -0.069930159 0.038397443 0.00012874059 -0.054879177 0.010893499 -0.0042296206 -0.070331439 0.023369877 -0.0079164999 -0.058541268 0.015099026 -0.044157159 -0.049047004 0.039782621 -0.043392256 -0.069658108 0.052668456 -0.04827797 -0.043971188 0.047260132 -0.039320935 -0.010068237 -0.029215233 -0.041930143 -0.014938674 -0.011594919 -0.045131195 -0.0042540394 -0.02567628 -0.052231908 0.0099099074 -0.026078327 -0.046179049 -0.010261765 -0.00936219 -0.051504686 -0.023097532 0.033656847 -0.037050176 -0.0072578574 -0.046578791 -0.030840712 -0.013824855 -0.040551011 -0.039320935 -0.010068237 -0.029215233 -0.031876761 -0.010433072 -0.054122746 -0.022096127 -0.020823682 -0.034289226 -0.030840712 -0.013824855 -0.040551011 -0.041930143 -0.014938674 -0.011594919 -0.035705663 -0.03265994 0.0064445119 -0.043035891 -0.029098764 0.015000591 -0.018485608 -0.022180533 -0.034846827 -0.0090216761 -0.029785106 -0.022473596 -0.022096127 -0.020823682 -0.034289226 -0.022096127 -0.020823682 -0.034289226 -0.0090216761 -0.029785106 -0.022473596 -0.019521588 -0.027588066 -0.020504946 -0.035194796 -0.019178281 -0.017328851 -0.029494947 -0.033536308 -0.00047623712 -0.041930143 -0.014938674 -0.011594919 1.6957863e-05 -0.032232072 -0.019468999 1.5599955e-05 -0.041060552 -0.0049596308 -0.0087950127 -0.03698625 -0.0094680255 -0.014913066 -0.020501774 -0.045517486 -8.2277133e-05 -0.027842265 -0.029253034 -0.01203787 -0.025288127 -0.031700492 -0.031346656 -0.056058206 0.025923813 -0.034549583 -0.069930159 0.038397443 -0.039216779 -0.069991536 0.044644456 -0.013225875 -0.056793187 0.015000978 -0.017489476 -0.066191144 0.023901617 -0.021489922 -0.057596713 0.019500066 -0.0079164999 -0.058541268 0.015099026 -0.014700336 -0.070382893 0.025626726 -0.013225875 -0.056793187 0.015000978 -0.0082040736 -0.050502121 0.0075776642 0.00012874059 -0.054879177 0.010893499 -0.0079164999 -0.058541268 0.015099026 0.0038555362 -0.02125578 -0.052998185 0.00038422749 -0.023945715 -0.041049406 -0.0032224995 -0.021323033 -0.05289666 -0.013225875 -0.056793187 0.015000978 -0.014700336 -0.070382893 0.025626726 -0.017489476 -0.066191144 0.023901617 -0.021489922 -0.057596713 0.019500066 -0.034549583 -0.069930159 0.038397443 -0.031346656 -0.056058206 0.025923813 0.00038422749 -0.023945715 -0.041049406 -8.2277133e-05 -0.027842265 -0.029253034 -0.014913066 -0.020501774 -0.045517486 -0.0032224995 -0.021323033 -0.05289666 0.00038422749 -0.023945715 -0.041049406 -0.012754771 -0.019534687 -0.054748308 + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809

+
+
+
+
+ + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + + + + + + + + + + + + + +
diff --git a/external/rlbench/urdfs/panda/meshes/Pandalink3respondable_coll_1.dae b/external/rlbench/urdfs/panda/meshes/Pandalink3respondable_coll_1.dae new file mode 100644 index 0000000000000000000000000000000000000000..e9730a2ed7b4f3f0e2522bb7899f27b38e0eb09d --- /dev/null +++ b/external/rlbench/urdfs/panda/meshes/Pandalink3respondable_coll_1.dae @@ -0,0 +1,84 @@ + + + + + Assimp + Assimp Exporter + + 2023-09-26T11:24:21 + 2023-09-26T11:24:21 + + Y_UP + + + + + + + + 0 0 0 4.5895327e-41 + + + 0.98646796 0.82638085 0.61917406 4.5893926e-41 + + + 0.98646796 0.82638085 0.61917406 4.5893926e-41 + + + 0.25 0.25 0.25 3.6295857e-33 + + + + + + + + + + + + + + + + 0.038926642 0.05816279 -0.069528393 0.019696357 0.065647796 -0.057361525 0.04887199 0.06585592 0.057056375 -0.035748802 0.059584014 0.090356141 -0.047113858 0.051418588 0.087910458 -0.033188533 0.052659217 0.10421387 -0.0539704 0.012360931 -0.080398925 -0.059372701 0.034379542 0.053271808 -0.050126307 0.032728605 -0.064251259 -0.050126307 0.032728605 -0.064251259 -0.059372701 0.034379542 0.053271808 -0.053881913 0.047975227 0.068267748 -0.0087241232 0.061581466 0.091502242 -0.027580088 0.05621364 0.10070276 -0.0050577479 0.054952305 0.10224626 0.062257323 0.0043917047 0.10355408 0.061190806 -0.0060274876 0.101438 0.062070269 -0.026471285 -0.037122507 0.058870178 -0.037335083 -0.040509239 0.062070269 -0.026471285 -0.037122507 0.057415303 -0.0240686 0.092214659 0.062070269 -0.026471285 -0.037122507 0.05943707 -0.016116692 0.097491555 0.057415303 -0.0240686 0.092214659 -0.041706298 0.060336601 0.073215373 -0.047113858 0.051418588 0.087910458 -0.035748802 0.059584014 0.090356141 0.047911424 -0.041962031 0.066830538 0.02636948 -0.063978694 -0.041804411 0.036061671 -0.06039368 -0.042346552 0.036061671 -0.06039368 -0.042346552 0.041753672 -0.057070553 -0.045988631 0.047911424 -0.041962031 0.066830538 0.047190905 -0.052965 -0.043538224 0.047911424 -0.041962031 0.066830538 0.041753672 -0.057070553 -0.045988631 -0.034815732 -0.014186551 -0.10872684 -0.020563832 -0.035239667 -0.08912342 -0.031277604 -0.025153201 -0.092991993 -0.034815732 -0.014186551 -0.10872684 -0.041987076 -0.014882057 -0.088281266 -0.047481928 -0.0038704216 -0.096171305 -0.0087241232 0.061581466 0.091502242 0.056418862 0.056926399 0.080064386 0.053126797 0.062567189 0.069544233 -0.0025554583 -0.0071498812 0.11837728 -0.00058320852 0.0023088933 0.12099331 -0.021648323 0.0035705345 0.12360472 -0.00072092679 0.013676614 0.12223063 -0.00058320852 0.0023088933 0.12099331 0.062257323 0.0043917047 0.10355408 -0.027580088 0.05621364 0.10070276 -0.035748802 0.059584014 0.090356141 -0.033188533 0.052659217 0.10421387 -0.032983951 0.052143615 -0.052930858 -0.050126307 0.032728605 -0.064251259 -0.041706298 0.060336601 0.073215373 -0.062685557 0.017580966 0.071055204 -0.060935453 0.027518375 0.070005156 -0.059372701 0.034379542 0.053271808 -0.032983951 0.052143615 -0.052930858 -0.041706298 0.060336601 0.073215373 -0.011416488 0.062889799 -0.050314076 0.056227207 0.010834118 -0.089214012 0.050011441 0.015868776 -0.10880337 0.053165086 0.025831815 -0.10129531 -0.0087241232 0.061581466 0.091502242 -0.010609689 0.06451042 0.083083935 -0.035748802 0.059584014 0.090356141 0.05943707 -0.016116692 0.097491555 0.062070269 -0.026471285 -0.037122507 0.061190806 -0.0060274876 0.101438 0.062257323 0.0043917047 0.10355408 0.062070269 -0.026471285 -0.037122507 0.062748961 0.015179106 0.10362092 0.062569119 0.025348894 0.101799 0.061736513 0.034591049 0.098573074 -0.00025344497 0.027994066 0.12001016 -0.0050577479 0.054952305 0.10224626 -0.0023518421 0.043595053 0.11284889 0.059766471 0.046679985 0.091097936 -0.028778527 0.018902417 0.12375622 -0.029282782 0.031952381 0.12056341 -0.038287949 0.015883906 0.11836464 -0.014262328 0.065855876 0.073466629 0.04887199 0.06585592 0.057056375 0.0036531091 0.06585592 -0.052342955 0.0036531091 0.06585592 -0.052342955 0.04887199 0.06585592 0.057056375 0.019696357 0.065647796 -0.057361525 -0.010609689 0.06451042 0.083083935 -0.032813374 0.062771037 0.078799345 -0.035748802 0.059584014 0.090356141 -0.032813374 0.062771037 0.078799345 -0.041706298 0.060336601 0.073215373 -0.035748802 0.059584014 0.090356141 0.061736513 0.034591049 0.098573074 0.062569119 0.025348894 0.101799 0.060814992 0.0015438026 -0.063149326 -0.043372482 -0.032197975 0.072294541 -0.010219441 -0.059599973 -0.04181679 -0.00035157916 -0.06377995 -0.038161568 -0.043372482 -0.032197975 0.072294541 -0.055634793 -0.019390555 0.070082903 -0.016256167 -0.055036698 -0.040509503 -0.021648323 0.0035705345 0.12360472 -0.029819403 -0.0085560391 0.11900775 -0.0025554583 -0.0071498812 0.11837728 -0.028778527 0.018902417 0.12375622 -0.038287949 0.015883906 0.11836464 -0.028945809 0.0063024494 0.12368314 -0.028945809 0.0063024494 0.12368314 -0.021648323 0.0035705345 0.12360472 -0.020598972 0.018122498 0.12418941 -0.028945809 0.0063024494 0.12368314 -0.020598972 0.018122498 0.12418941 -0.028778527 0.018902417 0.12375622 -0.024612358 0.047867842 0.11095716 -0.0050577479 0.054952305 0.10224626 -0.027580088 0.05621364 0.10070276 -0.024612358 0.047867842 0.11095716 -0.0023518421 0.043595053 0.11284889 -0.0050577479 0.054952305 0.10224626 -0.053881913 0.047975227 0.068267748 -0.058191229 0.032738708 0.07965906 -0.047113858 0.051418588 0.087910458 0.038926642 0.05816279 -0.069528393 0.04887199 0.06585592 0.057056375 0.049347572 0.047310557 -0.081895195 0.056418862 0.056926399 0.080064386 0.053171407 0.036105849 -0.092577249 0.049347572 0.047310557 -0.081895195 0.056418862 0.056926399 0.080064386 0.049347572 0.047310557 -0.081895195 0.053126797 0.062567189 0.069544233 -0.0087241232 0.061581466 0.091502242 0.053126797 0.062567189 0.069544233 -0.010609689 0.06451042 0.083083935 -0.027580088 0.05621364 0.10070276 -0.0087241232 0.061581466 0.091502242 -0.035748802 0.059584014 0.090356141 0.062257323 0.0043917047 0.10355408 -0.00058320852 0.0023088933 0.12099331 0.061190806 -0.0060274876 0.101438 0.062748961 0.015179106 0.10362092 -0.00025344497 0.027994066 0.12001016 -0.00072092679 0.013676614 0.12223063 0.062070269 -0.026471285 -0.037122507 0.062569119 0.025348894 0.101799 0.062748961 0.015179106 0.10362092 -0.011416488 0.062889799 -0.050314076 -0.041706298 0.060336601 0.073215373 -0.032813374 0.062771037 0.078799345 -0.032813374 0.062771037 0.078799345 0.0036531091 0.06585592 -0.052342955 -0.011416488 0.062889799 -0.050314076 -0.014262328 0.065855876 0.073466629 0.0036531091 0.06585592 -0.052342955 -0.032813374 0.062771037 0.078799345 -0.053881913 0.047975227 0.068267748 -0.047113858 0.051418588 0.087910458 -0.041706298 0.060336601 0.073215373 0.056227207 0.010834118 -0.089214012 0.053824991 0.0010197926 -0.09275537 0.050011441 0.015868776 -0.10880337 0.047346175 -0.0013247323 -0.10497668 0.040428393 0.0016919135 -0.11796054 0.050011441 0.015868776 -0.10880337 0.059676625 -0.019879101 -0.060058694 0.060814992 0.0015438026 -0.063149326 0.062168911 -0.016106583 -0.047049191 0.059766471 0.046679985 0.091097936 0.061736513 0.034591049 0.098573074 0.060814992 0.0015438026 -0.063149326 0.057589028 -0.0062743151 -0.077565283 0.059824731 -0.0015394822 -0.069817871 0.059676625 -0.019879101 -0.060058694 -0.038455177 -0.032112598 0.088896625 -0.043372482 -0.032197975 0.072294541 -0.00035157916 -0.06377995 -0.038161568 -0.055634793 -0.019390555 0.070082903 -0.043372482 -0.032197975 0.072294541 -0.051607583 -0.022322204 0.082584411 -0.062748961 0.0082151415 0.064758815 -0.0539704 0.012360931 -0.080398925 -0.058903411 -0.012555397 0.05952736 -0.0539704 0.012360931 -0.080398925 -0.047481928 -0.0038704216 -0.096171305 -0.058903411 -0.012555397 0.05952736 -0.0083003072 -0.052318737 -0.066774309 -0.0015383464 -0.048151679 -0.080153145 0.0044783624 -0.062365782 -0.054678407 -0.0025554583 -0.0071498812 0.11837728 0.061190806 -0.0060274876 0.101438 -0.00058320852 0.0023088933 0.12099331 -0.041544773 0.042923059 0.10533187 -0.033188533 0.052659217 0.10421387 -0.047113858 0.051418588 0.087910458 -0.054861952 0.031346593 0.091204695 -0.050609719 0.02544475 0.10158903 -0.041544773 0.042923059 0.10533187 -0.038287949 0.015883906 0.11836464 -0.029282782 0.031952381 0.12056341 -0.039119221 0.03185438 0.11383195 -0.00025344497 0.027994066 0.12001016 -0.020598972 0.018122498 0.12418941 -0.00072092679 0.013676614 0.12223063 -0.020598972 0.018122498 0.12418941 -0.02151211 0.031052433 0.12144175 -0.028778527 0.018902417 0.12375622 -0.027580088 0.05621364 0.10070276 -0.033188533 0.052659217 0.10421387 -0.024612358 0.047867842 0.11095716 -0.029339278 0.040582694 0.11628597 -0.024612358 0.047867842 0.11095716 -0.033188533 0.052659217 0.10421387 -0.033188533 0.052659217 0.10421387 -0.041544773 0.042923059 0.10533187 -0.029339278 0.040582694 0.11628597 -0.029339278 0.040582694 0.11628597 -0.0023518421 0.043595053 0.11284889 -0.024612358 0.047867842 0.11095716 -0.062685557 0.017580966 0.071055204 -0.059995141 0.016332738 0.08557184 -0.060241912 0.025700439 0.079645641 -0.059372701 0.034379542 0.053271808 -0.060935453 0.027518375 0.070005156 -0.053881913 0.047975227 0.068267748 -0.060935453 0.027518375 0.070005156 -0.058191229 0.032738708 0.07965906 -0.053881913 0.047975227 0.068267748 -0.041706298 0.060336601 0.073215373 -0.050126307 0.032728605 -0.064251259 -0.053881913 0.047975227 0.068267748 -0.014262328 0.065855876 0.073466629 -0.032813374 0.062771037 0.078799345 -0.010609689 0.06451042 0.083083935 0.04887199 0.06585592 0.057056375 -0.014262328 0.065855876 0.073466629 -0.010609689 0.06451042 0.083083935 0.062168911 -0.016106583 -0.047049191 0.062569119 0.025348894 0.101799 0.062070269 -0.026471285 -0.037122507 -0.0050577479 0.054952305 0.10224626 0.056418862 0.056926399 0.080064386 -0.0087241232 0.061581466 0.091502242 -0.059995141 0.016332738 0.08557184 -0.053230286 0.013698387 0.10040951 -0.056392383 0.022333641 0.092926055 -0.056392383 0.022333641 0.092926055 -0.053230286 0.013698387 0.10040951 -0.050609719 0.02544475 0.10158903 -0.050609719 0.02544475 0.10158903 -0.054861952 0.031346593 0.091204695 -0.056392383 0.022333641 0.092926055 -0.059995141 0.016332738 0.08557184 -0.058067944 0.0040122694 0.089405179 -0.053230286 0.013698387 0.10040951 -0.033185448 -0.019602355 0.11043221 -0.029819403 -0.0085560391 0.11900775 -0.045060977 -0.01711945 0.10197034 -0.029819403 -0.0085560391 0.11900775 -0.0044145361 -0.017581495 0.11296824 -0.0025554583 -0.0071498812 0.11837728 -0.029819403 -0.0085560391 0.11900775 -0.033185448 -0.019602355 0.11043221 -0.025887448 -0.02013978 0.11160075 0.054770838 -0.031754609 0.085183427 0.058870178 -0.037335083 -0.040509239 0.057415303 -0.0240686 0.092214659 0.052780397 -0.047109026 -0.041932032 0.058870178 -0.037335083 -0.040509239 0.051051497 -0.038636878 0.074963026 0.051051497 -0.038636878 0.074963026 0.058870178 -0.037335083 -0.040509239 0.054770838 -0.031754609 0.085183427 0.008095487 -0.029304661 -0.10942175 0.0064916336 -0.017319188 -0.12386929 0.017217536 -0.013951408 -0.12418935 0.053824991 0.0010197926 -0.09275537 0.054572582 -0.016002238 -0.078916788 0.047346175 -0.0013247323 -0.10497668 0.016492071 -0.063413769 -0.054969404 0.011540008 -0.057479948 -0.066487782 0.021538464 -0.053807013 -0.071214192 0.021538464 -0.053807013 -0.071214192 0.027495835 -0.061862182 -0.054720107 0.016492071 -0.063413769 -0.054969404 0.053824991 0.0010197926 -0.09275537 0.047346175 -0.0013247323 -0.10497668 0.050011441 0.015868776 -0.10880337 0.060215667 -0.031881198 -0.044808608 0.062070269 -0.026471285 -0.037122507 0.058870178 -0.037335083 -0.040509239 0.062168911 -0.016106583 -0.047049191 0.060215667 -0.031881198 -0.044808608 0.059676625 -0.019879101 -0.060058694 0.062070269 -0.026471285 -0.037122507 0.060215667 -0.031881198 -0.044808608 0.062168911 -0.016106583 -0.047049191 0.059824731 -0.0015394822 -0.069817871 0.060814992 0.0015438026 -0.063149326 0.059676625 -0.019879101 -0.060058694 0.041969225 -0.015167614 -0.10188922 0.049413145 -0.017838253 -0.08806701 0.04577155 -0.029033111 -0.082775421 0.054572582 -0.016002238 -0.078916788 0.059676625 -0.019879101 -0.060058694 0.05485357 -0.029772479 -0.064956523 -0.038455177 -0.032112598 0.088896625 -0.051607583 -0.022322204 0.082584411 -0.043372482 -0.032197975 0.072294541 -0.045060977 -0.01711945 0.10197034 -0.038455177 -0.032112598 0.088896625 -0.034776371 -0.027591892 0.10089898 -0.045060977 -0.01711945 0.10197034 -0.051607583 -0.022322204 0.082584411 -0.038455177 -0.032112598 0.088896625 -0.033185448 -0.019602355 0.11043221 -0.045060977 -0.01711945 0.10197034 -0.034776371 -0.027591892 0.10089898 -0.061031159 -5.1831368e-05 0.075060084 -0.058903411 -0.012555397 0.05952736 -0.055634793 -0.019390555 0.070082903 -0.0539704 0.012360931 -0.080398925 -0.062748961 0.0082151415 0.064758815 -0.062685557 0.017580966 0.071055204 -0.059372701 0.034379542 0.053271808 -0.0539704 0.012360931 -0.080398925 -0.062685557 0.017580966 0.071055204 -0.031277604 -0.025153201 -0.092991993 -0.041987076 -0.014882057 -0.088281266 -0.034815732 -0.014186551 -0.10872684 -0.031277604 -0.025153201 -0.092991993 -0.022800818 -0.042394556 -0.068427905 -0.034905832 -0.028300161 -0.074475139 -0.0044145361 -0.017581495 0.11296824 -0.025887448 -0.02013978 0.11160075 -0.0079924623 -0.028991124 0.10220065 -0.0044145361 -0.017581495 0.11296824 -0.0079924623 -0.028991124 0.10220065 0.054770838 -0.031754609 0.085183427 -0.0044145361 -0.017581495 0.11296824 0.054770838 -0.031754609 0.085183427 0.057415303 -0.0240686 0.092214659 -0.015767382 -0.037453759 0.085238457 0.0098319203 -0.065496989 -0.038569741 0.047911424 -0.041962031 0.066830538 -0.01243437 -0.038418591 -0.090857625 -0.021015428 -0.01864445 -0.11665218 -0.0096498784 -0.032190654 -0.10290008 -0.021015428 -0.01864445 -0.11665218 -0.01243437 -0.038418591 -0.090857625 -0.020563832 -0.035239667 -0.08912342 -0.029819403 -0.0085560391 0.11900775 -0.021648323 0.0035705345 0.12360472 -0.028945809 0.0063024494 0.12368314 -0.028945809 0.0063024494 0.12368314 -0.040212311 -0.0023650401 0.11451443 -0.029819403 -0.0085560391 0.11900775 -0.00072092679 0.013676614 0.12223063 -0.021648323 0.0035705345 0.12360472 -0.00058320852 0.0023088933 0.12099331 -0.00072092679 0.013676614 0.12223063 -0.020598972 0.018122498 0.12418941 -0.021648323 0.0035705345 0.12360472 -0.029282782 0.031952381 0.12056341 -0.029339278 0.040582694 0.11628597 -0.039119221 0.03185438 0.11383195 -0.029339278 0.040582694 0.11628597 -0.041544773 0.042923059 0.10533187 -0.039119221 0.03185438 0.11383195 -0.041544773 0.042923059 0.10533187 -0.050609719 0.02544475 0.10158903 -0.039119221 0.03185438 0.11383195 -0.02151211 0.031052433 0.12144175 -0.029339278 0.040582694 0.11628597 -0.029282782 0.031952381 0.12056341 -0.028778527 0.018902417 0.12375622 -0.02151211 0.031052433 0.12144175 -0.029282782 0.031952381 0.12056341 -0.060241912 0.025700439 0.079645641 -0.060935453 0.027518375 0.070005156 -0.062685557 0.017580966 0.071055204 0.053165086 0.025831815 -0.10129531 0.05740298 0.019684011 -0.081128672 0.056227207 0.010834118 -0.089214012 0.04887199 0.06585592 0.057056375 0.053126797 0.062567189 0.069544233 0.049347572 0.047310557 -0.081895195 -0.010609689 0.06451042 0.083083935 0.053126797 0.062567189 0.069544233 0.04887199 0.06585592 0.057056375 0.059766471 0.046679985 0.091097936 0.05740298 0.019684011 -0.081128672 0.053171407 0.036105849 -0.092577249 -0.0025554583 -0.0071498812 0.11837728 -0.0044145361 -0.017581495 0.11296824 0.05943707 -0.016116692 0.097491555 0.05943707 -0.016116692 0.097491555 0.061190806 -0.0060274876 0.101438 -0.0025554583 -0.0071498812 0.11837728 0.062748961 0.015179106 0.10362092 -0.00072092679 0.013676614 0.12223063 0.062257323 0.0043917047 0.10355408 0.062748961 0.015179106 0.10362092 0.062569119 0.025348894 0.101799 -0.00025344497 0.027994066 0.12001016 -0.0023518421 0.043595053 0.11284889 -0.00025344497 0.027994066 0.12001016 0.061736513 0.034591049 0.098573074 0.059766471 0.046679985 0.091097936 0.056418862 0.056926399 0.080064386 -0.0050577479 0.054952305 0.10224626 -0.050609719 0.02544475 0.10158903 -0.053230286 0.013698387 0.10040951 -0.038287949 0.015883906 0.11836464 -0.038287949 0.015883906 0.11836464 -0.039119221 0.03185438 0.11383195 -0.050609719 0.02544475 0.10158903 -0.00035157916 -0.06377995 -0.038161568 -0.015767382 -0.037453759 0.085238457 -0.038455177 -0.032112598 0.088896625 0.024036005 -0.030727476 -0.10203575 0.018478671 -0.040309552 -0.092275776 0.008095487 -0.029304661 -0.10942175 0.029474881 -0.0074702934 -0.1223566 0.040428393 0.0016919135 -0.11796054 0.041969225 -0.015167614 -0.10188922 0.054572582 -0.016002238 -0.078916788 0.053824991 0.0010197926 -0.09275537 0.057589028 -0.0062743151 -0.077565283 0.041969225 -0.015167614 -0.10188922 0.040428393 0.0016919135 -0.11796054 0.047346175 -0.0013247323 -0.10497668 0.035845015 -0.02813659 -0.095805734 0.041969225 -0.015167614 -0.10188922 0.04577155 -0.029033111 -0.082775421 0.029474881 -0.0074702934 -0.1223566 0.024036005 -0.030727476 -0.10203575 0.017217536 -0.013951408 -0.12418935 -0.0053699599 -0.019250218 -0.12192299 -0.0096498784 -0.032190654 -0.10290008 -0.021015428 -0.01864445 -0.11665218 -0.0053699599 -0.019250218 -0.12192299 0.0064916336 -0.017319188 -0.12386929 0.008095487 -0.029304661 -0.10942175 -0.0023191252 -0.033304244 -0.10362803 -0.0015383464 -0.048151679 -0.080153145 -0.0096498784 -0.032190654 -0.10290008 0.030147869 -0.050068006 -0.072593734 0.027495835 -0.061862182 -0.054720107 0.021538464 -0.053807013 -0.071214192 -0.0034967598 -0.062030356 -0.047209036 0.008245131 -0.065247081 -0.047460344 -0.00035157916 -0.06377995 -0.038161568 -0.0034967598 -0.062030356 -0.047209036 -0.00035157916 -0.06377995 -0.038161568 -0.010219441 -0.059599973 -0.04181679 0.04577155 -0.029033111 -0.082775421 0.05485357 -0.029772479 -0.064956523 0.052839015 -0.042116247 -0.054734077 0.04577155 -0.029033111 -0.082775421 0.049413145 -0.017838253 -0.08806701 0.05485357 -0.029772479 -0.064956523 0.052839015 -0.042116247 -0.054734077 0.05485357 -0.029772479 -0.064956523 0.056300152 -0.040964324 -0.04677669 0.05485357 -0.029772479 -0.064956523 0.059676625 -0.019879101 -0.060058694 0.060215667 -0.031881198 -0.044808608 0.056300152 -0.040964324 -0.04677669 0.05485357 -0.029772479 -0.064956523 0.060215667 -0.031881198 -0.044808608 0.054572582 -0.016002238 -0.078916788 0.057589028 -0.0062743151 -0.077565283 0.059676625 -0.019879101 -0.060058694 -0.058903411 -0.012555397 0.05952736 -0.061031159 -5.1831368e-05 0.075060084 -0.062748961 0.0082151415 0.064758815 -0.0083003072 -0.052318737 -0.066774309 -0.01243437 -0.038418591 -0.090857625 -0.0015383464 -0.048151679 -0.080153145 -0.0083003072 -0.052318737 -0.066774309 -0.020563832 -0.035239667 -0.08912342 -0.01243437 -0.038418591 -0.090857625 -0.0034967598 -0.062030356 -0.047209036 -0.013824911 -0.05119532 -0.061916787 -0.0083003072 -0.052318737 -0.066774309 -0.010219441 -0.059599973 -0.04181679 -0.022800818 -0.042394556 -0.068427905 -0.013824911 -0.05119532 -0.061916787 -0.010219441 -0.059599973 -0.04181679 -0.013824911 -0.05119532 -0.061916787 -0.0034967598 -0.062030356 -0.047209036 -0.043372482 -0.032197975 0.072294541 -0.016256167 -0.055036698 -0.040509503 -0.010219441 -0.059599973 -0.04181679 -0.022800818 -0.042394556 -0.068427905 -0.020563832 -0.035239667 -0.08912342 -0.013824911 -0.05119532 -0.061916787 -0.020563832 -0.035239667 -0.08912342 -0.0083003072 -0.052318737 -0.066774309 -0.013824911 -0.05119532 -0.061916787 -0.034815732 -0.014186551 -0.10872684 -0.021015428 -0.01864445 -0.11665218 -0.020563832 -0.035239667 -0.08912342 -0.055634793 -0.019390555 0.070082903 -0.034905832 -0.028300161 -0.074475139 -0.027384751 -0.041008033 -0.056298722 -0.041987076 -0.014882057 -0.088281266 -0.031277604 -0.025153201 -0.092991993 -0.034905832 -0.028300161 -0.074475139 -0.020563832 -0.035239667 -0.08912342 -0.022800818 -0.042394556 -0.068427905 -0.031277604 -0.025153201 -0.092991993 -0.022800818 -0.042394556 -0.068427905 -0.027384751 -0.041008033 -0.056298722 -0.034905832 -0.028300161 -0.074475139 -0.027384751 -0.041008033 -0.056298722 -0.022800818 -0.042394556 -0.068427905 -0.016256167 -0.055036698 -0.040509503 0.015719831 -0.065856077 -0.042827401 0.0098319203 -0.065496989 -0.038569741 0.008245131 -0.065247081 -0.047460344 -0.00035157916 -0.06377995 -0.038161568 0.008245131 -0.065247081 -0.047460344 0.0098319203 -0.065496989 -0.038569741 0.0098319203 -0.065496989 -0.038569741 -0.015767382 -0.037453759 0.085238457 -0.00035157916 -0.06377995 -0.038161568 0.060215667 -0.031881198 -0.044808608 0.058870178 -0.037335083 -0.040509239 0.056300152 -0.040964324 -0.04677669 0.052839015 -0.042116247 -0.054734077 0.056300152 -0.040964324 -0.04677669 0.048016619 -0.050538957 -0.051507235 -0.029819403 -0.0085560391 0.11900775 -0.025887448 -0.02013978 0.11160075 -0.0044145361 -0.017581495 0.11296824 -0.029339278 0.040582694 0.11628597 -0.02151211 0.031052433 0.12144175 -0.0023518421 0.043595053 0.11284889 -0.056392383 0.022333641 0.092926055 -0.054861952 0.031346593 0.091204695 -0.060241912 0.025700439 0.079645641 -0.056392383 0.022333641 0.092926055 -0.060241912 0.025700439 0.079645641 -0.059995141 0.016332738 0.08557184 -0.062748961 0.0082151415 0.064758815 -0.061248239 0.0072261207 0.080439314 -0.062685557 0.017580966 0.071055204 -0.060241912 0.025700439 0.079645641 -0.054861952 0.031346593 0.091204695 -0.058191229 0.032738708 0.07965906 -0.047113858 0.051418588 0.087910458 -0.058191229 0.032738708 0.07965906 -0.054861952 0.031346593 0.091204695 -0.054861952 0.031346593 0.091204695 -0.041544773 0.042923059 0.10533187 -0.047113858 0.051418588 0.087910458 0.05740298 0.019684011 -0.081128672 0.053165086 0.025831815 -0.10129531 0.053171407 0.036105849 -0.092577249 0.053171407 0.036105849 -0.092577249 0.056418862 0.056926399 0.080064386 0.059766471 0.046679985 0.091097936 -0.0023518421 0.043595053 0.11284889 0.061736513 0.034591049 0.098573074 0.059766471 0.046679985 0.091097936 -0.038287949 0.015883906 0.11836464 -0.052864131 0.0062756408 0.10009786 -0.040212311 -0.0023650401 0.11451443 -0.038287949 0.015883906 0.11836464 -0.053230286 0.013698387 0.10040951 -0.052864131 0.0062756408 0.10009786 -0.038287949 0.015883906 0.11836464 -0.040212311 -0.0023650401 0.11451443 -0.028945809 0.0063024494 0.12368314 -0.040212311 -0.0023650401 0.11451443 -0.052864131 0.0062756408 0.10009786 -0.045060977 -0.01711945 0.10197034 -0.045060977 -0.01711945 0.10197034 -0.029819403 -0.0085560391 0.11900775 -0.040212311 -0.0023650401 0.11451443 -0.045060977 -0.01711945 0.10197034 -0.052864131 0.0062756408 0.10009786 -0.054433104 -0.0010111848 0.09494812 -0.034776371 -0.027591892 0.10089898 -0.01175174 -0.0343684 0.09361773 -0.0079924623 -0.028991124 0.10220065 -0.034776371 -0.027591892 0.10089898 -0.0079924623 -0.028991124 0.10220065 -0.025887448 -0.02013978 0.11160075 -0.01175174 -0.0343684 0.09361773 0.051051497 -0.038636878 0.074963026 -0.0079924623 -0.028991124 0.10220065 -0.033185448 -0.019602355 0.11043221 -0.034776371 -0.027591892 0.10089898 -0.025887448 -0.02013978 0.11160075 0.051051497 -0.038636878 0.074963026 0.047911424 -0.041962031 0.066830538 0.047190905 -0.052965 -0.043538224 0.017217536 -0.013951408 -0.12418935 0.024036005 -0.030727476 -0.10203575 0.008095487 -0.029304661 -0.10942175 0.049413145 -0.017838253 -0.08806701 0.041969225 -0.015167614 -0.10188922 0.047346175 -0.0013247323 -0.10497668 0.049413145 -0.017838253 -0.08806701 0.054572582 -0.016002238 -0.078916788 0.05485357 -0.029772479 -0.064956523 0.035845015 -0.02813659 -0.095805734 0.029474881 -0.0074702934 -0.1223566 0.041969225 -0.015167614 -0.10188922 -0.0023191252 -0.033304244 -0.10362803 0.0092415921 -0.04455464 -0.088070311 -0.0015383464 -0.048151679 -0.080153145 0.008095487 -0.029304661 -0.10942175 -0.0023191252 -0.033304244 -0.10362803 -0.0053699599 -0.019250218 -0.12192299 -0.01243437 -0.038418591 -0.090857625 -0.0096498784 -0.032190654 -0.10290008 -0.0015383464 -0.048151679 -0.080153145 0.024036005 -0.030727476 -0.10203575 0.034095746 -0.040246844 -0.08286196 0.030147869 -0.050068006 -0.072593734 0.024036005 -0.030727476 -0.10203575 0.030147869 -0.050068006 -0.072593734 0.018478671 -0.040309552 -0.092275776 0.021538464 -0.053807013 -0.071214192 0.011540008 -0.057479948 -0.066487782 0.0092415921 -0.04455464 -0.088070311 0.030147869 -0.050068006 -0.072593734 0.021538464 -0.053807013 -0.071214192 0.018478671 -0.040309552 -0.092275776 0.057589028 -0.0062743151 -0.077565283 0.053824991 0.0010197926 -0.09275537 0.056227207 0.010834118 -0.089214012 0.056227207 0.010834118 -0.089214012 0.059824731 -0.0015394822 -0.069817871 0.057589028 -0.0062743151 -0.077565283 0.04577155 -0.029033111 -0.082775421 0.052839015 -0.042116247 -0.054734077 0.044937652 -0.040937413 -0.070018813 -0.047481928 -0.0038704216 -0.096171305 -0.041987076 -0.014882057 -0.088281266 -0.058903411 -0.012555397 0.05952736 -0.034905832 -0.028300161 -0.074475139 -0.055634793 -0.019390555 0.070082903 -0.058903411 -0.012555397 0.05952736 -0.022800818 -0.042394556 -0.068427905 -0.010219441 -0.059599973 -0.04181679 -0.016256167 -0.055036698 -0.040509503 -0.0044145361 -0.017581495 0.11296824 0.057415303 -0.0240686 0.092214659 0.05943707 -0.016116692 0.097491555 0.056300152 -0.040964324 -0.04677669 0.058870178 -0.037335083 -0.040509239 0.052780397 -0.047109026 -0.041932032 0.048016619 -0.050538957 -0.051507235 0.052780397 -0.047109026 -0.041932032 0.047190905 -0.052965 -0.043538224 0.056300152 -0.040964324 -0.04677669 0.052780397 -0.047109026 -0.041932032 0.048016619 -0.050538957 -0.051507235 0.039673228 -0.055133037 -0.056630243 0.044937652 -0.040937413 -0.070018813 0.048016619 -0.050538957 -0.051507235 -0.02151211 0.031052433 0.12144175 -0.00025344497 0.027994066 0.12001016 -0.0023518421 0.043595053 0.11284889 -0.061248239 0.0072261207 0.080439314 -0.059995141 0.016332738 0.08557184 -0.062685557 0.017580966 0.071055204 -0.060241912 0.025700439 0.079645641 -0.058191229 0.032738708 0.07965906 -0.060935453 0.027518375 0.070005156 -0.057663996 -0.0046174945 0.084541984 -0.061031159 -5.1831368e-05 0.075060084 -0.055634793 -0.019390555 0.070082903 -0.057663996 -0.0046174945 0.084541984 -0.055634793 -0.019390555 0.070082903 -0.051607583 -0.022322204 0.082584411 -0.058067944 0.0040122694 0.089405179 -0.059995141 0.016332738 0.08557184 -0.061248239 0.0072261207 0.080439314 -0.052864131 0.0062756408 0.10009786 -0.058067944 0.0040122694 0.089405179 -0.054433104 -0.0010111848 0.09494812 -0.061031159 -5.1831368e-05 0.075060084 -0.057663996 -0.0046174945 0.084541984 -0.061248239 0.0072261207 0.080439314 -0.061248239 0.0072261207 0.080439314 -0.057663996 -0.0046174945 0.084541984 -0.058067944 0.0040122694 0.089405179 -0.01175174 -0.0343684 0.09361773 0.047911424 -0.041962031 0.066830538 0.051051497 -0.038636878 0.074963026 0.047911424 -0.041962031 0.066830538 -0.01175174 -0.0343684 0.09361773 -0.015767382 -0.037453759 0.085238457 -0.034776371 -0.027591892 0.10089898 -0.038455177 -0.032112598 0.088896625 -0.015767382 -0.037453759 0.085238457 -0.015767382 -0.037453759 0.085238457 -0.01175174 -0.0343684 0.09361773 -0.034776371 -0.027591892 0.10089898 0.054770838 -0.031754609 0.085183427 -0.0079924623 -0.028991124 0.10220065 0.051051497 -0.038636878 0.074963026 0.047346175 -0.0013247323 -0.10497668 0.054572582 -0.016002238 -0.078916788 0.049413145 -0.017838253 -0.08806701 0.044937652 -0.040937413 -0.070018813 0.034095746 -0.040246844 -0.08286196 0.035845015 -0.02813659 -0.095805734 0.044937652 -0.040937413 -0.070018813 0.035845015 -0.02813659 -0.095805734 0.04577155 -0.029033111 -0.082775421 0.0044783624 -0.062365782 -0.054678407 -0.0015383464 -0.048151679 -0.080153145 0.011540008 -0.057479948 -0.066487782 0.021538464 -0.053807013 -0.071214192 0.0092415921 -0.04455464 -0.088070311 0.018478671 -0.040309552 -0.092275776 0.039673228 -0.055133037 -0.056630243 0.033195324 -0.061118174 -0.050180636 0.027495835 -0.061862182 -0.054720107 0.02636948 -0.063978694 -0.041804411 0.047911424 -0.041962031 0.066830538 0.015719831 -0.065856077 -0.042827401 0.008245131 -0.065247081 -0.047460344 0.021782547 -0.06491255 -0.04692623 0.015719831 -0.065856077 -0.042827401 0.008245131 -0.065247081 -0.047460344 0.016492071 -0.063413769 -0.054969404 0.021782547 -0.06491255 -0.04692623 0.008245131 -0.065247081 -0.047460344 0.0044783624 -0.062365782 -0.054678407 0.016492071 -0.063413769 -0.054969404 0.0044783624 -0.062365782 -0.054678407 0.008245131 -0.065247081 -0.047460344 -0.0034967598 -0.062030356 -0.047209036 -0.016256167 -0.055036698 -0.040509503 -0.055634793 -0.019390555 0.070082903 -0.027384751 -0.041008033 -0.056298722 -0.058903411 -0.012555397 0.05952736 -0.041987076 -0.014882057 -0.088281266 -0.034905832 -0.028300161 -0.074475139 0.0098319203 -0.065496989 -0.038569741 0.015719831 -0.065856077 -0.042827401 0.047911424 -0.041962031 0.066830538 0.033195324 -0.061118174 -0.050180636 0.039673228 -0.055133037 -0.056630243 0.041753672 -0.057070553 -0.045988631 0.033195324 -0.061118174 -0.050180636 0.041753672 -0.057070553 -0.045988631 0.036061671 -0.06039368 -0.042346552 0.034095746 -0.040246844 -0.08286196 0.044937652 -0.040937413 -0.070018813 0.039673228 -0.055133037 -0.056630243 0.062569119 0.025348894 0.101799 0.062168911 -0.016106583 -0.047049191 0.060814992 0.0015438026 -0.063149326 -0.062748961 0.0082151415 0.064758815 -0.061031159 -5.1831368e-05 0.075060084 -0.061248239 0.0072261207 0.080439314 -0.053230286 0.013698387 0.10040951 -0.058067944 0.0040122694 0.089405179 -0.052864131 0.0062756408 0.10009786 0.035845015 -0.02813659 -0.095805734 0.024036005 -0.030727476 -0.10203575 0.029474881 -0.0074702934 -0.1223566 0.035845015 -0.02813659 -0.095805734 0.034095746 -0.040246844 -0.08286196 0.024036005 -0.030727476 -0.10203575 -0.0023191252 -0.033304244 -0.10362803 0.008095487 -0.029304661 -0.10942175 0.0092415921 -0.04455464 -0.088070311 -0.0096498784 -0.032190654 -0.10290008 -0.0053699599 -0.019250218 -0.12192299 -0.0023191252 -0.033304244 -0.10362803 0.0092415921 -0.04455464 -0.088070311 0.008095487 -0.029304661 -0.10942175 0.018478671 -0.040309552 -0.092275776 0.016492071 -0.063413769 -0.054969404 0.0044783624 -0.062365782 -0.054678407 0.011540008 -0.057479948 -0.066487782 0.0092415921 -0.04455464 -0.088070311 0.011540008 -0.057479948 -0.066487782 -0.0015383464 -0.048151679 -0.080153145 0.039673228 -0.055133037 -0.056630243 0.027495835 -0.061862182 -0.054720107 0.030147869 -0.050068006 -0.072593734 0.015719831 -0.065856077 -0.042827401 0.021782547 -0.06491255 -0.04692623 0.02636948 -0.063978694 -0.041804411 0.021782547 -0.06491255 -0.04692623 0.027495835 -0.061862182 -0.054720107 0.033195324 -0.061118174 -0.050180636 0.02636948 -0.063978694 -0.041804411 0.033195324 -0.061118174 -0.050180636 0.036061671 -0.06039368 -0.042346552 -0.0034967598 -0.062030356 -0.047209036 -0.0083003072 -0.052318737 -0.066774309 0.0044783624 -0.062365782 -0.054678407 0.060814992 0.0015438026 -0.063149326 0.05740298 0.019684011 -0.081128672 0.059766471 0.046679985 0.091097936 0.05740298 0.019684011 -0.081128672 0.059824731 -0.0015394822 -0.069817871 0.056227207 0.010834118 -0.089214012 0.048016619 -0.050538957 -0.051507235 0.044937652 -0.040937413 -0.070018813 0.052839015 -0.042116247 -0.054734077 -0.045060977 -0.01711945 0.10197034 -0.057663996 -0.0046174945 0.084541984 -0.051607583 -0.022322204 0.082584411 -0.057663996 -0.0046174945 0.084541984 -0.045060977 -0.01711945 0.10197034 -0.054433104 -0.0010111848 0.09494812 0.048016619 -0.050538957 -0.051507235 0.047190905 -0.052965 -0.043538224 0.041753672 -0.057070553 -0.045988631 0.030147869 -0.050068006 -0.072593734 0.034095746 -0.040246844 -0.08286196 0.039673228 -0.055133037 -0.056630243 0.05740298 0.019684011 -0.081128672 0.060814992 0.0015438026 -0.063149326 0.059824731 -0.0015394822 -0.069817871 0.039673228 -0.055133037 -0.056630243 0.048016619 -0.050538957 -0.051507235 0.041753672 -0.057070553 -0.045988631 0.021782547 -0.06491255 -0.04692623 0.016492071 -0.063413769 -0.054969404 0.027495835 -0.061862182 -0.054720107 0.033195324 -0.061118174 -0.050180636 0.02636948 -0.063978694 -0.041804411 0.021782547 -0.06491255 -0.04692623 -0.054433104 -0.0010111848 0.09494812 -0.058067944 0.0040122694 0.089405179 -0.057663996 -0.0046174945 0.084541984 -0.020598972 0.018122498 0.12418941 -0.00025344497 0.027994066 0.12001016 -0.02151211 0.031052433 0.12144175 0.047190905 -0.052965 -0.043538224 0.052780397 -0.047109026 -0.041932032 0.051051497 -0.038636878 0.074963026 -0.0539704 0.012360931 -0.080398925 0.019696357 0.065647796 -0.057361525 0.038926642 0.05816279 -0.069528393 -0.0539704 0.012360931 -0.080398925 -0.011416488 0.062889799 -0.050314076 0.0036531091 0.06585592 -0.052342955 -0.0539704 0.012360931 -0.080398925 0.0036531091 0.06585592 -0.052342955 0.019696357 0.065647796 -0.057361525 -0.0539704 0.012360931 -0.080398925 -0.032983951 0.052143615 -0.052930858 -0.011416488 0.062889799 -0.050314076 -0.0539704 0.012360931 -0.080398925 0.038926642 0.05816279 -0.069528393 0.049347572 0.047310557 -0.081895195 -0.0539704 0.012360931 -0.080398925 0.053171407 0.036105849 -0.092577249 0.053165086 0.025831815 -0.10129531 -0.0539704 0.012360931 -0.080398925 -0.050126307 0.032728605 -0.064251259 -0.032983951 0.052143615 -0.052930858 -0.0539704 0.012360931 -0.080398925 -0.021015428 -0.01864445 -0.11665218 -0.034815732 -0.014186551 -0.10872684 0.029474881 -0.0074702934 -0.1223566 0.017217536 -0.013951408 -0.12418935 -0.0539704 0.012360931 -0.080398925 0.050011441 0.015868776 -0.10880337 0.040428393 0.0016919135 -0.11796054 -0.0539704 0.012360931 -0.080398925 0.017217536 -0.013951408 -0.12418935 0.0064916336 -0.017319188 -0.12386929 -0.0539704 0.012360931 -0.080398925 -0.0539704 0.012360931 -0.080398925 -0.034815732 -0.014186551 -0.10872684 -0.047481928 -0.0038704216 -0.096171305 -0.0539704 0.012360931 -0.080398925 0.053165086 0.025831815 -0.10129531 0.050011441 0.015868776 -0.10880337 -0.0539704 0.012360931 -0.080398925 0.049347572 0.047310557 -0.081895195 0.053171407 0.036105849 -0.092577249 0.0064916336 -0.017319188 -0.12386929 -0.0053699599 -0.019250218 -0.12192299 -0.0539704 0.012360931 -0.080398925 -0.0053699599 -0.019250218 -0.12192299 -0.021015428 -0.01864445 -0.11665218 -0.0539704 0.012360931 -0.080398925 0.040428393 0.0016919135 -0.11796054 0.029474881 -0.0074702934 -0.1223566 -0.0539704 0.012360931 -0.080398925 + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899

+
+
+
+
+ + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + + + + + + + + + + + + + +
diff --git a/external/rlbench/urdfs/panda/meshes/Pandalink3visual_vis_1.dae b/external/rlbench/urdfs/panda/meshes/Pandalink3visual_vis_1.dae new file mode 100644 index 0000000000000000000000000000000000000000..6af11dbbda07368110036a8313eeeffd3eb01723 --- /dev/null +++ b/external/rlbench/urdfs/panda/meshes/Pandalink3visual_vis_1.dae @@ -0,0 +1,84 @@ + + + + + Assimp + Assimp Exporter + + 2023-09-26T11:24:21 + 2023-09-26T11:24:21 + + Y_UP + + + + + + + + 0 0 0 4.5895327e-41 + + + 0.98000002 0.98000002 0.98000002 4.5893926e-41 + + + 0.98000002 0.98000002 0.98000002 4.5893926e-41 + + + 0.25 0.25 0.25 -3.0261091e+37 + + + + + + + + + + + + + + + + 0.038715277 -0.040388547 -0.0075052744 0.041494589 -0.037203837 -0.0085484413 0.043893818 -0.035627682 -0.0014868421 0.045685094 -0.025211027 0.00096956664 0.041494589 -0.037203837 -0.0085484413 0.04504329 -0.018026909 -0.0026222148 0.045685094 -0.025211027 0.00096956664 0.043893818 -0.035627682 -0.0014868421 0.041494589 -0.037203837 -0.0085484413 0.016566729 -0.029933253 0.097708844 2.9392575e-05 -0.031592876 0.095459886 0.014112819 -0.03478314 0.091459662 -0.033359516 -0.029599588 0.089690194 -0.0098588401 -0.034015745 0.089618891 -0.029611539 -0.025059279 0.10011394 0.04648383 -0.034817953 0.0064419378 0.043893818 -0.035627682 -0.0014868421 0.045685094 -0.025211027 0.00096956664 0.046727743 -0.033067148 0.0070459768 0.04648383 -0.034817953 0.0064419378 0.045685094 -0.025211027 0.00096956664 0.046727743 -0.033067148 0.0070459768 0.045685094 -0.025211027 0.00096956664 0.02952705 -0.034267057 0.015472559 0.045685094 -0.025211027 0.00096956664 0.04504329 -0.018026909 -0.0026222148 0.02762747 -0.021254906 0.0055444418 0.045685094 -0.025211027 0.00096956664 0.02762747 -0.021254906 0.0055444418 0.02952705 -0.034267057 0.015472559 0.038715277 -0.040388547 -0.0075052744 0.03407063 -0.037495263 0.001007842 0.023686189 -0.040296223 -0.0010632349 0.04648383 -0.034817953 0.0064419378 0.039741665 -0.036161993 0.0099999597 0.035202384 -0.03640984 0.0043662731 0.03407063 -0.037495263 0.001007842 0.035202384 -0.03640984 0.0043662731 0.026391109 -0.036284838 0.0062149814 0.03407063 -0.037495263 0.001007842 0.026391109 -0.036284838 0.0062149814 0.023686189 -0.040296223 -0.0010632349 0.035202384 -0.03640984 0.0043662731 0.039741665 -0.036161993 0.0099999597 0.029117998 -0.035973627 0.014705223 0.035202384 -0.03640984 0.0043662731 0.029117998 -0.035973627 0.014705223 0.026391109 -0.036284838 0.0062149814 0.03407063 -0.037495263 0.001007842 0.043893818 -0.035627682 -0.0014868421 0.035202384 -0.03640984 0.0043662731 0.038715277 -0.040388547 -0.0075052744 0.043893818 -0.035627682 -0.0014868421 0.03407063 -0.037495263 0.001007842 0.043893818 -0.035627682 -0.0014868421 0.04648383 -0.034817953 0.0064419378 0.035202384 -0.03640984 0.0043662731 0.02952705 -0.034267057 0.015472559 0.029117998 -0.035973627 0.014705223 0.046727743 -0.033067148 0.0070459768 0.046727743 -0.033067148 0.0070459768 0.039741665 -0.036161993 0.0099999597 0.04648383 -0.034817953 0.0064419378 0.039741665 -0.036161993 0.0099999597 0.046727743 -0.033067148 0.0070459768 0.029117998 -0.035973627 0.014705223 0.041494589 -0.037203837 -0.0085484413 0.038715277 -0.040388547 -0.0075052744 0.023686189 -0.040296223 -0.0010632349 0.036679767 0.041970454 -0.038140297 0.024427986 0.040541157 -0.023314834 0.02227422 0.045542005 -0.031610984 0.031510953 0.044437613 -0.034470886 0.022405054 0.045911118 -0.031311415 0.024427986 0.040541157 -0.023314834 -0.0040192851 -0.023028085 0.10521941 -0.028621238 -0.023415983 0.10262639 2.9392575e-05 -0.031592876 0.095459886 0.041903358 0.032763861 -0.00060658494 0.042716939 0.03323191 -0.0020146489 0.032263841 0.034745939 0.0030982068 0.041903358 0.032763861 -0.00060658494 0.049227107 0.028423635 -0.0042020679 0.049118165 0.029552214 -0.0048696925 0.041903358 0.032763861 -0.00060658494 0.049118165 0.029552214 -0.0048696925 0.042716939 0.03323191 -0.0020146489 0.037232123 0.04261063 -0.037671261 0.039572224 0.039064113 -0.037823133 0.036679767 0.041970454 -0.038140297 0.035305426 0.035730302 -0.018793501 0.041595582 0.036352508 -0.030629296 0.032506786 0.04023229 -0.027751081 0.041595582 0.036352508 -0.030629296 0.039572224 0.039064113 -0.037823133 0.037232123 0.04261063 -0.037671261 0.044721399 0.031878009 -0.019316962 0.035305426 0.035730302 -0.018793501 0.04120208 0.032740247 -0.010585801 -0.0074696527 -0.03922594 0.074188761 -0.0089032575 -0.039472252 0.069289736 0.002347016 -0.042147506 0.061803423 0.042716939 0.03323191 -0.0020146489 0.049118165 0.029552214 -0.0048696925 0.04120208 0.032740247 -0.010585801 0.041595582 0.036352508 -0.030629296 0.037232123 0.04261063 -0.037671261 0.032506786 0.04023229 -0.027751081 0.054458488 -0.029198108 0.092873409 0.032095492 -0.028949086 0.097253166 0.054604199 -0.029215749 0.092826426 0.044721399 0.031878009 -0.019316962 0.041595582 0.036352508 -0.030629296 0.035305426 0.035730302 -0.018793501 0.032506786 0.04023229 -0.027751081 0.031510953 0.044437613 -0.034470886 0.024427986 0.040541157 -0.023314834 0.042716939 0.03323191 -0.0020146489 0.029460842 0.034152761 -0.0055424366 0.032263841 0.034745939 0.0030982068 0.029460842 0.034152761 -0.0055424366 0.042716939 0.03323191 -0.0020146489 0.04120208 0.032740247 -0.010585801 0.04120208 0.032740247 -0.010585801 0.035305426 0.035730302 -0.018793501 0.029460842 0.034152761 -0.0055424366 0.035305426 0.035730302 -0.018793501 0.024427986 0.040541157 -0.023314834 0.027319923 0.035436273 -0.012664818 0.035305426 0.035730302 -0.018793501 0.027319923 0.035436273 -0.012664818 0.029460842 0.034152761 -0.0055424366 0.035305426 0.035730302 -0.018793501 0.032506786 0.04023229 -0.027751081 0.024427986 0.040541157 -0.023314834 -0.0098588401 -0.034015745 0.089618891 -0.011621264 -0.035808485 0.084622607 0.011546841 -0.038536347 0.084538877 0.04120208 0.032740247 -0.010585801 0.049118165 0.029552214 -0.0048696925 0.044721399 0.031878009 -0.019316962 0.037232123 0.04261063 -0.037671261 0.031510953 0.044437613 -0.034470886 0.032506786 0.04023229 -0.027751081 0.011546841 -0.038536347 0.084538877 0.0078212498 -0.041825578 0.073814288 0.016571568 -0.041983984 0.076675959 0.041595582 0.036352508 -0.030629296 0.044721399 0.031878009 -0.019316962 0.039572224 0.039064113 -0.037823133 0.054604199 -0.029215749 0.092826426 0.032095492 -0.028949086 0.097253166 0.052817527 -0.033828225 0.08860895 0.044721399 0.031878009 -0.019316962 0.049118165 0.029552214 -0.0048696925 0.039572224 0.039064113 -0.037823133 0.049118165 0.029552214 -0.0048696925 0.047099378 0.016878881 -0.0073483922 0.039572224 0.039064113 -0.037823133 0.049118165 0.029552214 -0.0048696925 0.049227107 0.028423635 -0.0042020679 0.047099378 0.016878881 -0.0073483922 0.039572224 0.039064113 -0.037823133 0.047099378 0.016878881 -0.0073483922 0.045428362 0.0019314329 -0.0079227882 0.047099378 0.016878881 -0.0073483922 0.045862019 0.0069675348 -0.0081709446 0.045428362 0.0019314329 -0.0079227882 0.04315237 0.02623646 -0.0034790332 0.049227107 0.028423635 -0.0042020679 0.041903358 0.032763861 -0.00060658494 0.047099378 0.016878881 -0.0073483922 0.049227107 0.028423635 -0.0042020679 0.04315237 0.02623646 -0.0034790332 0.032263841 0.034745939 0.0030982068 0.04315237 0.02623646 -0.0034790332 0.041903358 0.032763861 -0.00060658494 0.04315237 0.02623646 -0.0034790332 0.032263841 0.034745939 0.0030982068 0.029028645 0.017122984 -0.0017205656 0.047099378 0.016878881 -0.0073483922 0.04315237 0.02623646 -0.0034790332 0.029028645 0.017122984 -0.0017205656 0.045428362 0.0019314329 -0.0079227882 0.045862019 0.0069675348 -0.0081709446 0.029028645 0.017122984 -0.0017205656 -0.0074696527 -0.03922594 0.074188761 -0.028747641 -0.033639926 0.077931724 -0.0089032575 -0.039472252 0.069289736 0.045862019 0.0069675348 -0.0081709446 0.047099378 0.016878881 -0.0073483922 0.029028645 0.017122984 -0.0017205656 0.031510953 0.044437613 -0.034470886 0.036679767 0.041970454 -0.038140297 0.022405054 0.045911118 -0.031311415 0.037134252 -0.03508234 0.089752674 0.026692735 -0.039769318 0.083102509 0.047895785 -0.04280968 0.07585787 0.021616949 -0.02213861 0.1043629 0.016566729 -0.029933253 0.097708844 0.032095492 -0.028949086 0.097253166 0.036679767 0.041970454 -0.038140297 0.02227422 0.045542005 -0.031610984 0.022405054 0.045911118 -0.031311415 0.037232123 0.04261063 -0.037671261 0.036679767 0.041970454 -0.038140297 0.031510953 0.044437613 -0.034470886 0.024030667 -0.042801451 -0.0040096524 0.025945736 -0.029999429 0.0029123323 0.022707297 -0.042572837 -0.0034477329 0.028218774 0.0010384625 -0.0021372328 0.028247677 0.0095742298 -0.0018814319 0.027327195 -0.0051071458 -0.00031212921 0.028186698 -0.014935703 0.0020749357 0.028218774 0.0010384625 -0.0021372328 0.027327195 -0.0051071458 -0.00031212921 0.027707772 -0.020238604 0.0054866653 0.028186698 -0.014935703 0.0020749357 0.027327195 -0.0051071458 -0.00031212921 -0.010908912 0.032830305 -0.018302672 -0.013025938 0.028960548 -0.013665634 -0.0032369795 0.033424996 -0.0096102981 0.0059954054 0.035475332 0.0044415989 -0.00052066369 0.033967193 0.0029794045 -0.0047110398 0.036563262 0.014222856 -0.00052066369 0.033967193 0.0029794045 -0.008722282 0.031426281 0.0072407387 -0.0099808378 0.034287468 0.015081506 0.030824784 0.034424968 -0.0013303914 0.010759719 0.038855694 0.012924314 0.032827802 0.036421571 0.004362253 -0.034597326 0.0017970785 -0.030296341 -0.034792218 -0.0089980615 -0.029730527 -0.027803082 0.00078706013 -0.015623489 0.01005335 0.036026902 -0.0092878416 -0.0011720243 0.033340495 -0.00088629825 0.011692887 0.035239868 -0.0038257523 -0.0040192851 -0.023028085 0.10521941 0.016566729 -0.029933253 0.097708844 0.021616949 -0.02213861 0.1043629 0.00077858369 0.041880868 0.020840598 0.010771791 0.047462046 0.023316581 0.032827802 0.036421571 0.004362253 0.01005335 0.036026902 -0.0092878416 0.0061639845 0.036432516 -0.01188382 -0.0011720243 0.033340495 -0.00088629825 -0.017555829 0.022406507 -0.0076095588 -0.020560827 0.016325573 -0.0045423014 -0.017424362 0.021683685 0.00010136916 -0.0083309729 0.063192964 -0.049519271 -0.0087521235 0.050698459 -0.03752692 0.00039502562 0.047833864 -0.031634156 -0.033002123 0.011628129 -0.030566635 -0.042154003 0.021916265 -0.050642584 -0.034597326 0.0017970785 -0.030296341 0.010759719 0.038855694 0.012924314 -0.0047110398 0.036563262 0.014222856 0.00077858369 0.041880868 0.020840598 0.020967279 0.051209427 -0.037445206 0.016397271 0.04699526 -0.03034954 0.024645463 0.040038105 -0.022477424 -0.0098588401 -0.034015745 0.089618891 -0.033359516 -0.029599588 0.089690194 -0.011621264 -0.035808485 0.084622607 0.037134252 -0.03508234 0.089752674 0.014112819 -0.03478314 0.091459662 0.026692735 -0.039769318 0.083102509 -0.013308895 0.026528722 -0.0025099933 -0.017424362 0.021683685 0.00010136916 -0.016667457 0.023466259 0.0055739284 0.016397271 0.04699526 -0.03034954 0.00039502562 0.047833864 -0.031634156 0.0091000944 0.045854878 -0.028032994 0.00039502562 0.047833864 -0.031634156 -0.0087521235 0.050698459 -0.03752692 -0.0043089353 0.042020306 -0.026379703 0.00039502562 0.047833864 -0.031634156 -0.0043089353 0.042020306 -0.026379703 -0.0037612647 0.037357051 -0.019544065 -0.00052066369 0.033967193 0.0029794045 -0.0099808378 0.034287468 0.015081506 -0.0047110398 0.036563262 0.014222856 0.00077858369 0.041880868 0.020840598 -0.0047110398 0.036563262 0.014222856 -0.013433967 0.040504232 0.026019635 -0.013308895 0.026528722 -0.0025099933 -0.016667457 0.023466259 0.0055739284 -0.0082251262 0.030222854 -0.0020042672 0.00039502562 0.047833864 -0.031634156 -0.0037612647 0.037357051 -0.019544065 0.0091000944 0.045854878 -0.028032994 -0.0087521235 0.050698459 -0.03752692 -0.016573891 0.043191087 -0.034726039 -0.0043089353 0.042020306 -0.026379703 0.016397271 0.04699526 -0.03034954 0.0091000944 0.045854878 -0.028032994 0.024645463 0.040038105 -0.022477424 0.011546841 -0.038536347 0.084538877 -0.011621264 -0.035808485 0.084622607 0.0078212498 -0.041825578 0.073814288 0.011692887 0.035239868 -0.0038257523 -0.0011720243 0.033340495 -0.00088629825 -0.00052066369 0.033967193 0.0029794045 -0.008722282 0.031426281 0.0072407387 -0.0082251262 0.030222854 -0.0020042672 -0.014854413 0.027796652 0.011097987 -0.023913914 0.044451721 -0.041040711 -0.020389179 0.032362215 -0.027937412 -0.016573891 0.043191087 -0.034726039 -0.018408777 0.024489472 -0.015689941 -0.022356164 0.023738516 -0.021689977 -0.017555829 0.022406507 -0.0076095588 -0.008722282 0.031426281 0.0072407387 -0.014854413 0.027796652 0.011097987 -0.0099808378 0.034287468 0.015081506 -0.0043089353 0.042020306 -0.026379703 -0.016573891 0.043191087 -0.034726039 -0.010908912 0.032830305 -0.018302672 0.0091000944 0.045854878 -0.028032994 -0.0037612647 0.037357051 -0.019544065 0.010205322 0.039653532 -0.018500082 0.041046534 -0.047866825 0.055849697 0.018400149 -0.045120329 0.058642764 0.037214987 -0.046818733 0.043477837 0.011692887 0.035239868 -0.0038257523 -0.00052066369 0.033967193 0.0029794045 0.0059954054 0.035475332 0.0044415989 -0.023639705 0.012659508 -0.012009782 -0.027803082 0.00078706013 -0.015623489 -0.022789897 0.0073545226 0.00095161406 -0.0082251262 0.030222854 -0.0020042672 -0.016667457 0.023466259 0.0055739284 -0.014854413 0.027796652 0.011097987 0.024645463 0.040038105 -0.022477424 0.0091000944 0.045854878 -0.028032994 0.010205322 0.039653532 -0.018500082 0.00057842059 -0.015938533 0.11053456 -0.025749231 -0.016944008 0.10976469 -0.0040192851 -0.023028085 0.10521941 0.039250731 -0.043638211 0.074579962 0.021938881 -0.044362463 0.069538444 0.044864185 -0.046075854 0.06731537 -0.0043089353 0.042020306 -0.026379703 -0.010908912 0.032830305 -0.018302672 -0.0037612647 0.037357051 -0.019544065 0.024645463 0.040038105 -0.022477424 0.010205322 0.039653532 -0.018500082 0.026819207 0.036052 -0.014393072 -0.023639705 0.012659508 -0.012009782 -0.022789897 0.0073545226 0.00095161406 -0.020560827 0.016325573 -0.0045423014 -0.027803082 0.00078706013 -0.015623489 -0.034792218 -0.0089980615 -0.029730527 -0.026581466 -0.0043749455 -0.010936975 -0.030589473 0.019713778 -0.030947961 -0.027803082 0.00078706013 -0.015623489 -0.026403386 0.011347536 -0.017915059 -0.030589473 0.019713778 -0.030947961 -0.033002123 0.011628129 -0.030566635 -0.027803082 0.00078706013 -0.015623489 -0.0047110398 0.036563262 0.014222856 -0.0099808378 0.034287468 0.015081506 -0.013433967 0.040504232 0.026019635 0.020738009 0.034926966 -0.00161417 0.0059954054 0.035475332 0.0044415989 0.030824784 0.034424968 -0.0013303914 -0.018408777 0.024489472 -0.015689941 -0.017555829 0.022406507 -0.0076095588 -0.013025938 0.028960548 -0.013665634 0.016571568 -0.041983984 0.076675959 0.021938881 -0.044362463 0.069538444 0.039250731 -0.043638211 0.074579962 -0.020560827 0.016325573 -0.0045423014 -0.02027153 0.018612292 0.010464875 -0.017424362 0.021683685 0.00010136916 0.0061639845 0.036432516 -0.01188382 -0.0082251262 0.030222854 -0.0020042672 -0.0011720243 0.033340495 -0.00088629825 0.0061639845 0.036432516 -0.01188382 -0.0032369795 0.033424996 -0.0096102981 -0.0082251262 0.030222854 -0.0020042672 -0.013025938 0.028960548 -0.013665634 -0.0082251262 0.030222854 -0.0020042672 -0.0032369795 0.033424996 -0.0096102981 -0.017424362 0.021683685 0.00010136916 -0.02027153 0.018612292 0.010464875 -0.016667457 0.023466259 0.0055739284 -0.027803082 0.00078706013 -0.015623489 -0.026581466 -0.0043749455 -0.010936975 -0.022789897 0.0073545226 0.00095161406 0.014112819 -0.03478314 0.091459662 0.011546841 -0.038536347 0.084538877 0.026692735 -0.039769318 0.083102509 0.030824784 0.034424968 -0.0013303914 0.0059954054 0.035475332 0.0044415989 0.010759719 0.038855694 0.012924314 -0.016573891 0.043191087 -0.034726039 -0.020389179 0.032362215 -0.027937412 -0.010908912 0.032830305 -0.018302672 0.026819207 0.036052 -0.014393072 0.010205322 0.039653532 -0.018500082 0.01005335 0.036026902 -0.0092878416 0.016571568 -0.041983984 0.076675959 0.0078212498 -0.041825578 0.073814288 0.021938881 -0.044362463 0.069538444 0.034805141 0.040180314 0.0094387475 0.032827802 0.036421571 0.004362253 0.010771791 0.047462046 0.023316581 0.028294632 0.034587573 -0.0093400944 0.026819207 0.036052 -0.014393072 0.011692887 0.035239868 -0.0038257523 -0.014854413 0.027796652 0.011097987 -0.014935302 0.035030335 0.021573935 -0.0099808378 0.034287468 0.015081506 -0.036520585 -0.031097217 0.080159269 -0.0384202 -0.030890424 0.074341863 -0.028747641 -0.033639926 0.077931724 -0.0082251262 0.030222854 -0.0020042672 -0.013025938 0.028960548 -0.013665634 -0.013308895 0.026528722 -0.0025099933 -0.016667457 0.023466259 0.0055739284 -0.02027153 0.018612292 0.010464875 -0.014854413 0.027796652 0.011097987 2.9392575e-05 -0.031592876 0.095459886 -0.0098588401 -0.034015745 0.089618891 0.014112819 -0.03478314 0.091459662 -0.0099808378 0.034287468 0.015081506 -0.014935302 0.035030335 0.021573935 -0.013433967 0.040504232 0.026019635 0.010771791 0.047462046 0.023316581 0.00077858369 0.041880868 0.020840598 -0.0055208611 0.048500955 0.030465502 -0.022356164 0.023738516 -0.021689977 -0.026403386 0.011347536 -0.017915059 -0.023639705 0.012659508 -0.012009782 -0.022356164 0.023738516 -0.021689977 -0.023639705 0.012659508 -0.012009782 -0.017555829 0.022406507 -0.0076095588 -0.020389179 0.032362215 -0.027937412 -0.025900716 0.027539814 -0.030048337 -0.022356164 0.023738516 -0.021689977 -0.033002123 0.011628129 -0.030566635 -0.034597326 0.0017970785 -0.030296341 -0.027803082 0.00078706013 -0.015623489 0.010205322 0.039653532 -0.018500082 -0.0037612647 0.037357051 -0.019544065 -0.0032369795 0.033424996 -0.0096102981 0.010205322 0.039653532 -0.018500082 -0.0032369795 0.033424996 -0.0096102981 0.0061639845 0.036432516 -0.01188382 -0.020389179 0.032362215 -0.027937412 -0.022356164 0.023738516 -0.021689977 -0.018408777 0.024489472 -0.015689941 0.010205322 0.039653532 -0.018500082 0.0061639845 0.036432516 -0.01188382 0.01005335 0.036026902 -0.0092878416 -0.0011720243 0.033340495 -0.00088629825 -0.008722282 0.031426281 0.0072407387 -0.00052066369 0.033967193 0.0029794045 -0.010908912 0.032830305 -0.018302672 -0.020389179 0.032362215 -0.027937412 -0.013025938 0.028960548 -0.013665634 0.026819207 0.036052 -0.014393072 0.01005335 0.036026902 -0.0092878416 0.011692887 0.035239868 -0.0038257523 0.032827802 0.036421571 0.004362253 0.010759719 0.038855694 0.012924314 0.00077858369 0.041880868 0.020840598 -0.025900716 0.027539814 -0.030048337 -0.030589473 0.019713778 -0.030947961 -0.022356164 0.023738516 -0.021689977 -0.028621238 -0.023415983 0.10262639 -0.029611539 -0.025059279 0.10011394 2.9392575e-05 -0.031592876 0.095459886 0.028294632 0.034587573 -0.0093400944 0.011692887 0.035239868 -0.0038257523 0.0059954054 0.035475332 0.0044415989 0.028294632 0.034587573 -0.0093400944 0.020738009 0.034926966 -0.00161417 0.030824784 0.034424968 -0.0013303914 -0.013025938 0.028960548 -0.013665634 -0.017555829 0.022406507 -0.0076095588 -0.017424362 0.021683685 0.00010136916 -0.013025938 0.028960548 -0.013665634 -0.017424362 0.021683685 0.00010136916 -0.013308895 0.026528722 -0.0025099933 -0.020389179 0.032362215 -0.027937412 -0.018408777 0.024489472 -0.015689941 -0.013025938 0.028960548 -0.013665634 0.028294632 0.034587573 -0.0093400944 0.0059954054 0.035475332 0.0044415989 0.020738009 0.034926966 -0.00161417 -0.017555829 0.022406507 -0.0076095588 -0.023639705 0.012659508 -0.012009782 -0.020560827 0.016325573 -0.0045423014 -0.026403386 0.011347536 -0.017915059 -0.027803082 0.00078706013 -0.015623489 -0.023639705 0.012659508 -0.012009782 0.020967279 0.051209427 -0.037445206 0.017696185 0.062374189 -0.049482886 0.012245509 0.065930106 -0.051843513 -0.0037612647 0.037357051 -0.019544065 -0.010908912 0.032830305 -0.018302672 -0.0032369795 0.033424996 -0.0096102981 0.0059954054 0.035475332 0.0044415989 -0.0047110398 0.036563262 0.014222856 0.010759719 0.038855694 0.012924314 -0.0011720243 0.033340495 -0.00088629825 -0.0082251262 0.030222854 -0.0020042672 -0.008722282 0.031426281 0.0072407387 0.00060735765 0.065117188 -0.049873408 0.016397271 0.04699526 -0.03034954 0.012245509 0.065930106 -0.051843513 0.00060735765 0.065117188 -0.049873408 0.00039502562 0.047833864 -0.031634156 0.016397271 0.04699526 -0.03034954 -0.022356164 0.023738516 -0.021689977 -0.030589473 0.019713778 -0.030947961 -0.026403386 0.011347536 -0.017915059 0.021938881 -0.044362463 0.069538444 0.041046534 -0.047866825 0.055849697 0.044864185 -0.046075854 0.06731537 0.012245509 0.065930106 -0.051843513 0.016397271 0.04699526 -0.03034954 0.020967279 0.051209427 -0.037445206 0.038442437 -0.055848166 -0.028643986 0.027563289 -0.058509145 -0.024497762 0.032603215 -0.05995588 -0.031828929 0.031955868 -0.053332485 -0.01872527 0.02982582 -0.05039167 -0.013806654 0.024451111 -0.051733632 -0.013138294 0.0098729851 -0.060003392 -0.022664791 0.0067263464 -0.063752264 -0.031522945 0.016765814 -0.064312562 -0.033416275 -0.0039663836 -0.037805151 -0.0017356701 -0.0079423515 -0.044264603 -0.0081908023 0.0015711831 -0.050131634 -0.010438025 0.014112819 -0.03478314 0.091459662 -0.0098588401 -0.034015745 0.089618891 0.011546841 -0.038536347 0.084538877 -0.0079423515 -0.044264603 -0.0081908023 -0.013440633 -0.047113027 -0.013976376 -0.007288455 -0.053296212 -0.017612219 0.0015711831 -0.050131634 -0.010438025 0.0032462212 -0.057480045 -0.019440709 0.0085406927 -0.05529049 -0.015387535 -0.0079423515 -0.044264603 -0.0081908023 -0.013330216 -0.040130574 -0.0076368712 -0.013440633 -0.047113027 -0.013976376 -0.028747641 -0.033639926 0.077931724 -0.0384202 -0.030890424 0.074341863 -0.0089032575 -0.039472252 0.069289736 0.024451111 -0.051733632 -0.013138294 0.027563289 -0.058509145 -0.024497762 0.031955868 -0.053332485 -0.01872527 0.024030667 -0.042801451 -0.0040096524 0.022707297 -0.042572837 -0.0034477329 0.024451111 -0.051733632 -0.013138294 0.018003311 -0.056097072 -0.017015837 0.0098729851 -0.060003392 -0.022664791 0.024463769 -0.061294813 -0.028592248 0.018003311 -0.056097072 -0.017015837 0.0049510803 -0.046429109 -0.0062647294 0.0085406927 -0.05529049 -0.015387535 0.027563289 -0.058509145 -0.024497762 0.024463769 -0.061294813 -0.028592248 0.032603215 -0.05995588 -0.031828929 0.024451111 -0.051733632 -0.013138294 0.022707297 -0.042572837 -0.0034477329 0.018003311 -0.056097072 -0.017015837 0.0032462212 -0.057480045 -0.019440709 -0.0016045119 -0.061516449 -0.029226741 0.0067263464 -0.063752264 -0.031522945 0.0085406927 -0.05529049 -0.015387535 0.0032462212 -0.057480045 -0.019440709 0.0098729851 -0.060003392 -0.022664791 0.0032462212 -0.057480045 -0.019440709 -0.007288455 -0.053296212 -0.017612219 -0.0016045119 -0.061516449 -0.029226741 0.050033476 -0.045853913 -0.0263153 0.046822209 -0.042708464 -0.018202631 0.040905699 -0.049567383 -0.020556975 0.018003311 -0.056097072 -0.017015837 0.0085406927 -0.05529049 -0.015387535 0.0098729851 -0.060003392 -0.022664791 0.047895785 -0.04280968 0.07585787 0.039250731 -0.043638211 0.074579962 0.044864185 -0.046075854 0.06731537 0.050033476 -0.045853913 -0.0263153 0.040905699 -0.049567383 -0.020556975 0.046085551 -0.051407855 -0.029994577 0.024463769 -0.061294813 -0.028592248 0.016765814 -0.064312562 -0.033416275 0.017377464 -0.065846115 -0.041033138 2.9392575e-05 -0.031592876 0.095459886 -0.029611539 -0.025059279 0.10011394 -0.0098588401 -0.034015745 0.089618891 0.0049510803 -0.046429109 -0.0062647294 0.01267007 -0.047058009 -0.0063757719 -0.0039663836 -0.037805151 -0.0017356701 0.024451111 -0.051733632 -0.013138294 0.018003311 -0.056097072 -0.017015837 0.027563289 -0.058509145 -0.024497762 -0.0079423515 -0.044264603 -0.0081908023 -0.0039663836 -0.037805151 -0.0017356701 -0.013330216 -0.040130574 -0.0076368712 0.022707297 -0.042572837 -0.0034477329 0.01267007 -0.047058009 -0.0063757719 0.018003311 -0.056097072 -0.017015837 0.040905699 -0.049567383 -0.020556975 0.038442437 -0.055848166 -0.028643986 0.046085551 -0.051407855 -0.029994577 0.0032462212 -0.057480045 -0.019440709 0.0015711831 -0.050131634 -0.010438025 -0.007288455 -0.053296212 -0.017612219 0.0049510803 -0.046429109 -0.0062647294 0.0015711831 -0.050131634 -0.010438025 0.0085406927 -0.05529049 -0.015387535 0.024463769 -0.061294813 -0.028592248 0.0098729851 -0.060003392 -0.022664791 0.016765814 -0.064312562 -0.033416275 0.032095492 -0.028949086 0.097253166 0.037134252 -0.03508234 0.089752674 0.052817527 -0.033828225 0.08860895 0.038510121 -0.046653956 -0.014968055 0.033816148 -0.042855922 -0.0084380182 0.02982582 -0.05039167 -0.013806654 0.040905699 -0.049567383 -0.020556975 0.038510121 -0.046653956 -0.014968055 0.031955868 -0.053332485 -0.01872527 0.0098729851 -0.060003392 -0.022664791 0.0032462212 -0.057480045 -0.019440709 0.0067263464 -0.063752264 -0.031522945 0.018003311 -0.056097072 -0.017015837 0.024463769 -0.061294813 -0.028592248 0.027563289 -0.058509145 -0.024497762 -0.0079423515 -0.044264603 -0.0081908023 -0.007288455 -0.053296212 -0.017612219 0.0015711831 -0.050131634 -0.010438025 0.0049510803 -0.046429109 -0.0062647294 -0.0039663836 -0.037805151 -0.0017356701 0.0015711831 -0.050131634 -0.010438025 0.038510121 -0.046653956 -0.014968055 0.02982582 -0.05039167 -0.013806654 0.031955868 -0.053332485 -0.01872527 0.040905699 -0.049567383 -0.020556975 0.031955868 -0.053332485 -0.01872527 0.038442437 -0.055848166 -0.028643986 0.032603215 -0.05995588 -0.031828929 0.024463769 -0.061294813 -0.028592248 0.031305999 -0.062741101 -0.041011896 0.031955868 -0.053332485 -0.01872527 0.027563289 -0.058509145 -0.024497762 0.038442437 -0.055848166 -0.028643986 0.02982582 -0.05039167 -0.013806654 0.024030667 -0.042801451 -0.0040096524 0.024451111 -0.051733632 -0.013138294 0.01267007 -0.047058009 -0.0063757719 0.0049510803 -0.046429109 -0.0062647294 0.018003311 -0.056097072 -0.017015837 0.018898115 -0.024779258 -0.11121827 0.021398604 -0.038566872 -0.093385443 0.013527988 -0.030846782 -0.10555727 0.018898115 -0.024779258 -0.11121827 0.013527988 -0.030846782 -0.10555727 0.015923267 -0.014031857 -0.12405071 -0.011621264 -0.035808485 0.084622607 -0.0074696527 -0.03922594 0.074188761 0.0078212498 -0.041825578 0.073814288 0.047895785 -0.04280968 0.07585787 0.026692735 -0.039769318 0.083102509 0.039250731 -0.043638211 0.074579962 0.0078212498 -0.041825578 0.073814288 -0.0074696527 -0.03922594 0.074188761 0.021938881 -0.044362463 0.069538444 0.030662624 -0.052416343 -0.069142893 0.026749715 -0.060723115 -0.058269661 0.025316549 -0.048633065 -0.077829048 0.025316549 -0.048633065 -0.077829048 0.016923167 -0.041957598 -0.090271324 0.021398604 -0.038566872 -0.093385443 -0.034774661 -0.024084888 -0.07791771 -0.030550122 -0.03454202 -0.062445808 -0.035832684 -0.026376115 -0.062752739 0.032095492 -0.028949086 0.097253166 0.016566729 -0.029933253 0.097708844 0.037134252 -0.03508234 0.089752674 0.028707275 -0.036156025 -0.092679396 0.025316549 -0.048633065 -0.077829048 0.021398604 -0.038566872 -0.093385443 -0.021361262 -0.050547812 -0.040528558 -0.023131622 -0.046858586 -0.049333412 -0.015859818 -0.055793978 -0.043035567 0.026717616 -0.029765313 -0.10165136 0.021398604 -0.038566872 -0.093385443 0.018898115 -0.024779258 -0.11121827 -0.041032325 -0.0044015097 -0.10226383 -0.040255632 -0.010862671 -0.091148205 -0.046472844 0.0022715311 -0.09504988 0.028707275 -0.036156025 -0.092679396 0.021398604 -0.038566872 -0.093385443 0.026717616 -0.029765313 -0.10165136 -0.022978086 -0.043486472 -0.061873753 -0.023131622 -0.046858586 -0.049333412 -0.027658621 -0.034345388 -0.073641181 -0.027658621 -0.034345388 -0.073641181 -0.023131622 -0.046858586 -0.049333412 -0.030550122 -0.03454202 -0.062445808 -0.022978086 -0.043486472 -0.061873753 -0.015859818 -0.055793978 -0.043035567 -0.023131622 -0.046858586 -0.049333412 -0.036080364 -0.01507747 -0.09487471 -0.034774661 -0.024084888 -0.07791771 -0.040255632 -0.010862671 -0.091148205 -0.027658621 -0.034345388 -0.073641181 -0.030550122 -0.03454202 -0.062445808 -0.034774661 -0.024084888 -0.07791771 -0.036080364 -0.01507747 -0.09487471 -0.040255632 -0.010862671 -0.091148205 -0.041032325 -0.0044015097 -0.10226383 0.026692735 -0.039769318 0.083102509 0.016571568 -0.041983984 0.076675959 0.039250731 -0.043638211 0.074579962 0.016566729 -0.029933253 0.097708844 0.014112819 -0.03478314 0.091459662 0.037134252 -0.03508234 0.089752674 0.021938881 -0.044362463 0.069538444 0.018400149 -0.045120329 0.058642764 0.041046534 -0.047866825 0.055849697 0.028707275 -0.036156025 -0.092679396 0.030662624 -0.052416343 -0.069142893 0.025316549 -0.048633065 -0.077829048 -0.027658621 -0.034345388 -0.073641181 -0.034774661 -0.024084888 -0.07791771 -0.036080364 -0.01507747 -0.09487471 0.029735401 -0.020772494 -0.10972913 0.026717616 -0.029765313 -0.10165136 0.018898115 -0.024779258 -0.11121827 -0.028772796 -0.027319327 -0.08686997 -0.027658621 -0.034345388 -0.073641181 -0.036080364 -0.01507747 -0.09487471 -0.036520585 -0.031097217 0.080159269 -0.028747641 -0.033639926 0.077931724 -0.033359516 -0.029599588 0.089690194 -0.033359516 -0.029599588 0.089690194 -0.028747641 -0.033639926 0.077931724 -0.011621264 -0.035808485 0.084622607 0.035946213 -0.057644252 -0.056703582 0.030662624 -0.052416343 -0.069142893 0.040482879 -0.049183253 -0.064979106 0.026692735 -0.039769318 0.083102509 0.011546841 -0.038536347 0.084538877 0.016571568 -0.041983984 0.076675959 0.026898429 -0.009788652 -0.12280611 0.018898115 -0.024779258 -0.11121827 0.015923267 -0.014031857 -0.12405071 -0.033944584 -0.0097548617 -0.10868368 -0.036080364 -0.01507747 -0.09487471 -0.041032325 -0.0044015097 -0.10226383 -0.033944584 -0.0097548617 -0.10868368 -0.028772796 -0.027319327 -0.08686997 -0.036080364 -0.01507747 -0.09487471 -0.020144992 -0.042167373 -0.071684428 -0.015859818 -0.055793978 -0.043035567 -0.022978086 -0.043486472 -0.061873753 0.035279632 -0.032428324 -0.092208482 0.028707275 -0.036156025 -0.092679396 0.026717616 -0.029765313 -0.10165136 0.029735401 -0.020772494 -0.10972913 0.018898115 -0.024779258 -0.11121827 0.026898429 -0.009788652 -0.12280611 0.036772244 -0.041444991 -0.079542436 0.030662624 -0.052416343 -0.069142893 0.028707275 -0.036156025 -0.092679396 0.052817527 -0.033828225 0.08860895 0.037134252 -0.03508234 0.089752674 0.047895785 -0.04280968 0.07585787 0.029735401 -0.020772494 -0.10972913 0.035279632 -0.032428324 -0.092208482 0.026717616 -0.029765313 -0.10165136 -0.025749231 -0.016944008 0.10976469 -0.028621238 -0.023415983 0.10262639 -0.0040192851 -0.023028085 0.10521941 -0.020144992 -0.042167373 -0.071684428 -0.022978086 -0.043486472 -0.061873753 -0.027658621 -0.034345388 -0.073641181 0.021938881 -0.044362463 0.069538444 -0.0074696527 -0.03922594 0.074188761 0.018400149 -0.045120329 0.058642764 0.040482879 -0.049183253 -0.064979106 0.030662624 -0.052416343 -0.069142893 0.036772244 -0.041444991 -0.079542436 -0.020144992 -0.042167373 -0.071684428 -0.027658621 -0.034345388 -0.073641181 -0.028772796 -0.027319327 -0.08686997 0.035279632 -0.032428324 -0.092208482 0.036772244 -0.041444991 -0.079542436 0.028707275 -0.036156025 -0.092679396 0.043695502 -0.052380893 -0.056086011 0.035946213 -0.057644252 -0.056703582 0.040482879 -0.049183253 -0.064979106 -0.012432395 -0.053195342 -0.059054505 -0.015859818 -0.055793978 -0.043035567 -0.020144992 -0.042167373 -0.071684428 -0.027699938 -0.022438603 -0.097832091 -0.028772796 -0.027319327 -0.08686997 -0.033944584 -0.0097548617 -0.10868368 0.044807035 -0.041145232 -0.070581563 0.040482879 -0.049183253 -0.064979106 0.036772244 -0.041444991 -0.079542436 -0.021765733 -0.032604162 -0.088455953 -0.020144992 -0.042167373 -0.071684428 -0.028772796 -0.027319327 -0.08686997 -0.021765733 -0.032604162 -0.088455953 -0.028772796 -0.027319327 -0.08686997 -0.027699938 -0.022438603 -0.097832091 0.040762458 -0.01928111 -0.10112353 0.029735401 -0.020772494 -0.10972913 0.026898429 -0.009788652 -0.12280611 0.040762458 -0.01928111 -0.10112353 0.035279632 -0.032428324 -0.092208482 0.029735401 -0.020772494 -0.10972913 0.044807035 -0.041145232 -0.070581563 0.036772244 -0.041444991 -0.079542436 0.035279632 -0.032428324 -0.092208482 0.036778536 -0.0039635259 -0.11989646 0.040762458 -0.01928111 -0.10112353 0.026898429 -0.009788652 -0.12280611 -0.012432395 -0.053195342 -0.059054505 -0.020144992 -0.042167373 -0.071684428 -0.021765733 -0.032604162 -0.088455953 -0.011621264 -0.035808485 0.084622607 -0.028747641 -0.033639926 0.077931724 -0.0074696527 -0.03922594 0.074188761 0.043695502 -0.052380893 -0.056086011 0.040482879 -0.049183253 -0.064979106 0.044807035 -0.041145232 -0.070581563 -0.031708207 -0.019419186 -0.024201177 -0.027169958 -0.024165632 -0.015235565 -0.034792218 -0.0089980615 -0.029730527 -0.0040192851 -0.023028085 0.10521941 2.9392575e-05 -0.031592876 0.095459886 0.016566729 -0.029933253 0.097708844 -0.0074696527 -0.03922594 0.074188761 0.002347016 -0.042147506 0.061803423 0.018400149 -0.045120329 0.058642764 -0.04111236 6.2230233e-06 -0.044774529 -0.034792218 -0.0089980615 -0.029730527 -0.041781187 0.012739832 -0.047142051 -0.024643851 -0.01400918 -0.11463431 -0.027699938 -0.022438603 -0.097832091 -0.033944584 -0.0097548617 -0.10868368 0.044331748 -0.027152842 -0.088280141 0.044807035 -0.041145232 -0.070581563 0.035279632 -0.032428324 -0.092208482 -0.019859288 -0.02743146 -0.09947966 -0.027699938 -0.022438603 -0.097832091 -0.024643851 -0.01400918 -0.11463431 -0.04111236 6.2230233e-06 -0.044774529 -0.041781187 0.012739832 -0.047142051 -0.045247201 0.014557324 -0.056269422 -0.019859288 -0.02743146 -0.09947966 -0.021765733 -0.032604162 -0.088455953 -0.027699938 -0.022438603 -0.097832091 -0.031708207 -0.019419186 -0.024201177 -0.034792218 -0.0089980615 -0.029730527 -0.04111236 6.2230233e-06 -0.044774529 -0.027169958 -0.024165632 -0.015235565 -0.031708207 -0.019419186 -0.024201177 -0.02784469 -0.031208208 -0.019306764 -0.0083238734 -0.051746011 -0.067575388 -0.012432395 -0.053195342 -0.059054505 -0.021765733 -0.032604162 -0.088455953 0.044331748 -0.027152842 -0.088280141 0.035279632 -0.032428324 -0.092208482 0.040762458 -0.01928111 -0.10112353 -0.0083238734 -0.051746011 -0.067575388 -0.003234003 -0.062266603 -0.048992146 -0.012432395 -0.053195342 -0.059054505 -0.037417606 -0.015090159 -0.038676303 -0.031708207 -0.019419186 -0.024201177 -0.04111236 6.2230233e-06 -0.044774529 -0.041786887 -0.0060075903 -0.049130581 -0.04111236 6.2230233e-06 -0.044774529 -0.045247201 0.014557324 -0.056269422 0.051079091 -0.046322417 -0.052435853 0.043695502 -0.052380893 -0.056086011 0.044807035 -0.041145232 -0.070581563 -0.012291626 -0.03764493 -0.089863487 -0.0083238734 -0.051746011 -0.067575388 -0.021765733 -0.032604162 -0.088455953 -0.012291626 -0.03764493 -0.089863487 -0.021765733 -0.032604162 -0.088455953 -0.019859288 -0.02743146 -0.09947966 -0.050564356 0.023427349 -0.075223476 -0.045247201 0.014557324 -0.056269422 -0.048897672 0.029729297 -0.069985218 -0.02784469 -0.031208208 -0.019306764 -0.031708207 -0.019419186 -0.024201177 -0.037417606 -0.015090159 -0.038676303 -0.041786887 -0.0060075903 -0.049130581 -0.037417606 -0.015090159 -0.038676303 -0.04111236 6.2230233e-06 -0.044774529 0.041162688 -0.00053895864 -0.11785585 0.040762458 -0.01928111 -0.10112353 0.036778536 -0.0039635259 -0.11989646 -0.00040027141 -0.062008251 -0.053144585 -0.003234003 -0.062266603 -0.048992146 -0.0083238734 -0.051746011 -0.067575388 0.051079091 -0.046322417 -0.052435853 0.044807035 -0.041145232 -0.070581563 0.049755346 -0.028592469 -0.078296065 0.04613464 -0.011859216 -0.10134382 0.044331748 -0.027152842 -0.088280141 0.040762458 -0.01928111 -0.10112353 -0.048383739 0.011313172 -0.068561897 -0.045247201 0.014557324 -0.056269422 -0.050564356 0.023427349 -0.075223476 0.049755346 -0.028592469 -0.078296065 0.044807035 -0.041145232 -0.070581563 0.044331748 -0.027152842 -0.088280141 -0.041786887 -0.0060075903 -0.049130581 -0.045247201 0.014557324 -0.056269422 -0.048383739 0.011313172 -0.068561897 0.04613464 -0.011859216 -0.10134382 0.040762458 -0.01928111 -0.10112353 0.041162688 -0.00053895864 -0.11785585 -0.0061138836 -0.040481973 -0.089440949 -0.0083238734 -0.051746011 -0.067575388 -0.012291626 -0.03764493 -0.089863487 -0.0093201995 -0.032109052 -0.10049385 -0.012291626 -0.03764493 -0.089863487 -0.019859288 -0.02743146 -0.09947966 0.0057438617 -0.063126169 -0.054698221 -0.00040027141 -0.062008251 -0.053144585 -0.0083238734 -0.051746011 -0.067575388 0.049755346 -0.028592469 -0.078296065 0.044331748 -0.027152842 -0.088280141 0.04613464 -0.011859216 -0.10134382 0.00034797363 -0.051125277 -0.074949533 -0.0083238734 -0.051746011 -0.067575388 -0.0061138836 -0.040481973 -0.089440949 -0.0061138836 -0.040481973 -0.089440949 -0.012291626 -0.03764493 -0.089863487 -0.0093201995 -0.032109052 -0.10049385 0.052619997 -0.029355818 -0.071848765 0.051079091 -0.046322417 -0.052435853 0.049755346 -0.028592469 -0.078296065 0.0057438617 -0.063126169 -0.054698221 -0.0083238734 -0.051746011 -0.067575388 0.00034797363 -0.051125277 -0.074949533 -0.037401251 -0.020051032 -0.043554757 -0.02784469 -0.031208208 -0.019306764 -0.037417606 -0.015090159 -0.038676303 -0.037401251 -0.020051032 -0.043554757 -0.037417606 -0.015090159 -0.038676303 -0.041786887 -0.0060075903 -0.049130581 -0.0093201995 -0.032109052 -0.10049385 -0.019859288 -0.02743146 -0.09947966 -0.024643851 -0.01400918 -0.11463431 0.054911781 -0.042805459 -0.047953375 0.051079091 -0.046322417 -0.052435853 0.052619997 -0.029355818 -0.071848765 -0.012155573 -0.016722387 -0.11994711 -0.0093201995 -0.032109052 -0.10049385 -0.024643851 -0.01400918 -0.11463431 -0.03352531 -0.028009722 -0.036420356 -0.02784469 -0.031208208 -0.019306764 -0.037401251 -0.020051032 -0.043554757 0.053073537 -0.020914691 -0.080278344 0.052619997 -0.029355818 -0.071848765 0.049755346 -0.028592469 -0.078296065 0.04878575 -0.0035568473 -0.1043377 0.04613464 -0.011859216 -0.10134382 0.041162688 -0.00053895864 -0.11785585 -0.045535732 -0.0023686932 -0.066041932 -0.041786887 -0.0060075903 -0.049130581 -0.048383739 0.011313172 -0.068561897 0.053073537 -0.020914691 -0.080278344 0.049755346 -0.028592469 -0.078296065 0.04613464 -0.011859216 -0.10134382 0.04878575 -0.0035568473 -0.1043377 0.053073537 -0.020914691 -0.080278344 0.04613464 -0.011859216 -0.10134382 -0.02784469 -0.031208208 -0.019306764 -0.03352531 -0.028009722 -0.036420356 -0.026758634 -0.041564848 -0.028917866 0.00034797363 -0.051125277 -0.074949533 -0.0061138836 -0.040481973 -0.089440949 -0.001806228 -0.039061632 -0.093561098 -0.049961958 0.010293987 -0.087082855 -0.048383739 0.011313172 -0.068561897 -0.050564356 0.023427349 -0.075223476 -0.037401251 -0.020051032 -0.043554757 -0.041786887 -0.0060075903 -0.049130581 -0.045535732 -0.0023686932 -0.066041932 0.057254333 -0.026074795 -0.063902497 0.054911781 -0.042805459 -0.047953375 0.052619997 -0.029355818 -0.071848765 -0.001806228 -0.039061632 -0.093561098 -0.0061138836 -0.040481973 -0.089440949 -0.0093201995 -0.032109052 -0.10049385 0.048563801 0.0071342224 -0.11272288 0.04878575 -0.0035568473 -0.1043377 0.041162688 -0.00053895864 -0.11785585 0.0057438617 -0.063126169 -0.054698221 0.00034797363 -0.051125277 -0.074949533 0.011854869 -0.062179528 -0.058514297 -0.045535732 -0.0023686932 -0.066041932 -0.048383739 0.011313172 -0.068561897 -0.049961958 0.010293987 -0.087082855 0.055253081 0.047852188 0.087995298 0.060919765 0.043111097 0.090702362 0.059040964 0.050827045 0.082440779 -0.037205484 -0.023613101 -0.051434804 -0.037401251 -0.020051032 -0.043554757 -0.045535732 -0.0023686932 -0.066041932 0.057694148 -0.038352896 -0.045493983 0.054911781 -0.042805459 -0.047953375 0.057254333 -0.026074795 -0.063902497 0.054199219 -0.0055523789 -0.09198451 0.053073537 -0.020914691 -0.080278344 0.04878575 -0.0035568473 -0.1043377 0.042993717 0.024754314 0.10770231 0.018015373 0.025528645 0.11364003 0.025519749 0.017771892 0.1137909 -0.037205484 -0.023613101 -0.051434804 -0.045535732 -0.0023686932 -0.066041932 -0.042148788 -0.012678336 -0.063219555 -0.037205484 -0.023613101 -0.051434804 -0.03352531 -0.028009722 -0.036420356 -0.037401251 -0.020051032 -0.043554757 -0.0072554681 -0.017069569 -0.12139269 -0.0093201995 -0.032109052 -0.10049385 -0.012155573 -0.016722387 -0.11994711 0.0072627645 -0.04964184 -0.079466678 0.00034797363 -0.051125277 -0.074949533 -0.001806228 -0.039061632 -0.093561098 0.057254333 -0.026074795 -0.063902497 0.052619997 -0.029355818 -0.071848765 0.053073537 -0.020914691 -0.080278344 0.0031594841 -0.036717948 -0.098179944 -0.001806228 -0.039061632 -0.093561098 -0.0093201995 -0.032109052 -0.10049385 -0.019185893 0.032720067 0.1167513 -0.018613845 0.025409535 0.11929377 0.0033094112 0.030024877 0.11485231 0.0072627645 -0.04964184 -0.079466678 -0.001806228 -0.039061632 -0.093561098 0.0031594841 -0.036717948 -0.098179944 0.011854869 -0.062179528 -0.058514297 0.00034797363 -0.051125277 -0.074949533 0.0072627645 -0.04964184 -0.079466678 -0.047649361 0.0024059913 -0.081729919 -0.045535732 -0.0023686932 -0.066041932 -0.049961958 0.010293987 -0.087082855 -0.032022726 -0.034130748 -0.046535417 -0.026758634 -0.041564848 -0.028917866 -0.03352531 -0.028009722 -0.036420356 -0.0072554681 -0.017069569 -0.12139269 0.0031594841 -0.036717948 -0.098179944 -0.0093201995 -0.032109052 -0.10049385 0.054199219 -0.0055523789 -0.09198451 0.04878575 -0.0035568473 -0.1043377 0.048563801 0.0071342224 -0.11272288 -0.032022726 -0.034130748 -0.046535417 -0.03352531 -0.028009722 -0.036420356 -0.037205484 -0.023613101 -0.051434804 0.057676233 -0.0024044581 -0.08495488 0.057254333 -0.026074795 -0.063902497 0.053073537 -0.020914691 -0.080278344 0.057676233 -0.0024044581 -0.08495488 0.053073537 -0.020914691 -0.080278344 0.054199219 -0.0055523789 -0.09198451 0.0041126632 -0.02881352 -0.10882243 0.0031594841 -0.036717948 -0.098179944 -0.0072554681 -0.017069569 -0.12139269 -0.047649361 0.0024059913 -0.081729919 -0.042148788 -0.012678336 -0.063219555 -0.045535732 -0.0023686932 -0.066041932 -0.024592459 -0.046346437 -0.033565398 -0.026758634 -0.041564848 -0.028917866 -0.032022726 -0.034130748 -0.046535417 0.060830846 -0.023246756 -0.052232023 0.057694148 -0.038352896 -0.045493983 0.057254333 -0.026074795 -0.063902497 0.059776649 -0.01826239 -0.063517794 0.057254333 -0.026074795 -0.063902497 0.057676233 -0.0024044581 -0.08495488 -0.040905848 -0.015754178 -0.069059521 -0.042148788 -0.012678336 -0.063219555 -0.047649361 0.0024059913 -0.081729919 0.0041126632 -0.02881352 -0.10882243 -0.0072554681 -0.017069569 -0.12139269 -0.0014753103 -0.017023416 -0.12269045 -0.040905848 -0.015754178 -0.069059521 -0.037205484 -0.023613101 -0.051434804 -0.042148788 -0.012678336 -0.063219555 0.012599019 -0.049182955 -0.080434628 0.011854869 -0.062179528 -0.058514297 0.0072627645 -0.04964184 -0.079466678 0.060527362 -0.031723011 -0.041189253 0.057694148 -0.038352896 -0.045493983 0.060830846 -0.023246756 -0.052232023 0.012599019 -0.049182955 -0.080434628 0.0072627645 -0.04964184 -0.079466678 0.0031594841 -0.036717948 -0.098179944 0.0538681 0.015606526 -0.10639113 0.057676233 -0.0024044581 -0.08495488 0.054199219 -0.0055523789 -0.09198451 0.0538681 0.015606526 -0.10639113 0.054199219 -0.0055523789 -0.09198451 0.048563801 0.0071342224 -0.11272288 0.060830846 -0.023246756 -0.052232023 0.057254333 -0.026074795 -0.063902497 0.059776649 -0.01826239 -0.063517794 -0.032022726 -0.034130748 -0.046535417 -0.037205484 -0.023613101 -0.051434804 -0.035832684 -0.026376115 -0.062752739 -0.035832684 -0.026376115 -0.062752739 -0.037205484 -0.023613101 -0.051434804 -0.040905848 -0.015754178 -0.069059521 -0.046472844 0.0022715311 -0.09504988 -0.047649361 0.0024059913 -0.081729919 -0.049961958 0.010293987 -0.087082855 0.013527988 -0.030846782 -0.10555727 0.012599019 -0.049182955 -0.080434628 0.0031594841 -0.036717948 -0.098179944 -0.024592459 -0.046346437 -0.033565398 -0.032022726 -0.034130748 -0.046535417 -0.030174538 -0.037212033 -0.050201327 0.020801652 -0.057389006 -0.066117093 0.016283827 -0.063910328 -0.054979309 0.011854869 -0.062179528 -0.058514297 -0.040905848 -0.015754178 -0.069059521 -0.047649361 0.0024059913 -0.081729919 -0.046472844 0.0022715311 -0.09504988 0.020801652 -0.057389006 -0.066117093 0.011854869 -0.062179528 -0.058514297 0.012599019 -0.049182955 -0.080434628 0.013527988 -0.030846782 -0.10555727 0.0031594841 -0.036717948 -0.098179944 0.0041126632 -0.02881352 -0.10882243 0.060618751 -0.0032327122 -0.072540879 0.059776649 -0.01826239 -0.063517794 0.057676233 -0.0024044581 -0.08495488 -0.030174538 -0.037212033 -0.050201327 -0.032022726 -0.034130748 -0.046535417 -0.035832684 -0.026376115 -0.062752739 -0.041818909 -0.011253657 -0.082518384 -0.040905848 -0.015754178 -0.069059521 -0.046472844 0.0022715311 -0.09504988 0.061758108 -0.012611912 -0.057957381 0.060830846 -0.023246756 -0.052232023 0.059776649 -0.01826239 -0.063517794 0.020801652 -0.057389006 -0.066117093 0.012599019 -0.049182955 -0.080434628 0.016923167 -0.041957598 -0.090271324 0.016283827 -0.063910328 -0.054979309 0.020801652 -0.057389006 -0.066117093 0.026749715 -0.060723115 -0.058269661 0.059748888 0.0081571154 -0.082635462 0.057676233 -0.0024044581 -0.08495488 0.0538681 0.015606526 -0.10639113 -0.030550122 -0.03454202 -0.062445808 -0.030174538 -0.037212033 -0.050201327 -0.035832684 -0.026376115 -0.062752739 0.042993717 0.024754314 0.10770231 0.046171132 0.018253334 0.10847765 0.062465627 0.015753035 0.10388485 0.056546606 0.023167098 -0.10026465 0.059748888 0.0081571154 -0.082635462 0.0538681 0.015606526 -0.10639113 0.013527988 -0.030846782 -0.10555727 0.0041126632 -0.02881352 -0.10882243 -0.0014753103 -0.017023416 -0.12269045 0.059748888 0.0081571154 -0.082635462 0.060618751 -0.0032327122 -0.072540879 0.057676233 -0.0024044581 -0.08495488 -0.035832684 -0.026376115 -0.062752739 -0.040905848 -0.015754178 -0.069059521 -0.041818909 -0.011253657 -0.082518384 0.016923167 -0.041957598 -0.090271324 0.012599019 -0.049182955 -0.080434628 0.013527988 -0.030846782 -0.10555727 0.054216299 0.05976082 0.064546853 0.030651933 0.061530139 0.070718169 0.046350859 0.059066817 0.071890086 -0.021361262 -0.050547812 -0.040528558 -0.024592459 -0.046346437 -0.033565398 -0.030174538 -0.037212033 -0.050201327 0.026749715 -0.060723115 -0.058269661 0.020801652 -0.057389006 -0.066117093 0.025316549 -0.048633065 -0.077829048 0.025316549 -0.048633065 -0.077829048 0.020801652 -0.057389006 -0.066117093 0.016923167 -0.041957598 -0.090271324 0.021973392 0.062923305 0.065806255 0.0045906627 0.06190696 0.075769573 0.025048554 0.060743801 0.07578858 0.021973392 0.062923305 0.065806255 0.025048554 0.060743801 0.07578858 0.030651933 0.061530139 0.070718169 0.015923267 -0.014031857 -0.12405071 0.013527988 -0.030846782 -0.10555727 -0.0014753103 -0.017023416 -0.12269045 0.021398604 -0.038566872 -0.093385443 0.016923167 -0.041957598 -0.090271324 0.013527988 -0.030846782 -0.10555727 -0.023131622 -0.046858586 -0.049333412 -0.030174538 -0.037212033 -0.050201327 -0.030550122 -0.03454202 -0.062445808 -0.023131622 -0.046858586 -0.049333412 -0.021361262 -0.050547812 -0.040528558 -0.030174538 -0.037212033 -0.050201327 -0.040255632 -0.010862671 -0.091148205 -0.041818909 -0.011253657 -0.082518384 -0.046472844 0.0022715311 -0.09504988 -0.034774661 -0.024084888 -0.07791771 -0.035832684 -0.026376115 -0.062752739 -0.041818909 -0.011253657 -0.082518384 -0.034774661 -0.024084888 -0.07791771 -0.041818909 -0.011253657 -0.082518384 -0.040255632 -0.010862671 -0.091148205 -0.019189123 -0.042726677 -0.014683682 -0.017583352 -0.051740661 -0.025236072 -0.013440633 -0.047113027 -0.013976376 0.017377464 -0.065846115 -0.041033138 0.025176264 -0.064558953 -0.040760901 0.024463769 -0.061294813 -0.028592248 0.023196466 -0.064961828 -0.047461309 0.035081793 -0.061141115 -0.046804853 0.025176264 -0.064558953 -0.040760901 0.0033094112 0.030024877 0.11485231 0.0017807785 0.020009547 0.11786857 0.018015373 0.025528645 0.11364003 -0.021361262 -0.050547812 -0.040528558 -0.013184039 -0.058014087 -0.035932682 -0.018634418 -0.053218767 -0.032508165 -0.017583352 -0.051740661 -0.025236072 -0.018634418 -0.053218767 -0.032508165 -0.013474566 -0.0548448 -0.025375111 -0.021361262 -0.050547812 -0.040528558 -0.015859818 -0.055793978 -0.043035567 -0.013184039 -0.058014087 -0.035932682 0.025176264 -0.064558953 -0.040760901 0.035081793 -0.061141115 -0.046804853 0.031305999 -0.062741101 -0.041011896 0.035946213 -0.057644252 -0.056703582 0.035081793 -0.061141115 -0.046804853 0.03041048 -0.061823718 -0.052816026 0.025176264 -0.064558953 -0.040760901 0.031305999 -0.062741101 -0.041011896 0.024463769 -0.061294813 -0.028592248 -0.017583352 -0.051740661 -0.025236072 -0.013474566 -0.0548448 -0.025375111 -0.013440633 -0.047113027 -0.013976376 -0.013440633 -0.047113027 -0.013976376 -0.013474566 -0.0548448 -0.025375111 -0.007288455 -0.053296212 -0.017612219 0.043695502 -0.052380893 -0.056086011 0.045484319 -0.053919118 -0.049203988 0.035946213 -0.057644252 -0.056703582 -0.018634418 -0.053218767 -0.032508165 -0.013184039 -0.058014087 -0.035932682 -0.013474566 -0.0548448 -0.025375111 -0.013184039 -0.058014087 -0.035932682 -0.011233876 -0.058126222 -0.030531937 -0.013474566 -0.0548448 -0.025375111 0.035946213 -0.057644252 -0.056703582 0.045484319 -0.053919118 -0.049203988 0.035081793 -0.061141115 -0.046804853 -0.015859818 -0.055793978 -0.043035567 -0.012432395 -0.053195342 -0.059054505 -0.0084088696 -0.060409755 -0.046140615 -0.013474566 -0.0548448 -0.025375111 -0.011233876 -0.058126222 -0.030531937 -0.0016045119 -0.061516449 -0.029226741 -0.015859818 -0.055793978 -0.043035567 -0.0084088696 -0.060409755 -0.046140615 -0.013184039 -0.058014087 -0.035932682 -0.013474566 -0.0548448 -0.025375111 -0.0016045119 -0.061516449 -0.029226741 -0.007288455 -0.053296212 -0.017612219 0.018015373 0.025528645 0.11364003 0.0017807785 0.020009547 0.11786857 0.025519749 0.017771892 0.1137909 0.042993717 0.024754314 0.10770231 0.025519749 0.017771892 0.1137909 0.046171132 0.018253334 0.10847765 0.030651933 0.061530139 0.070718169 0.025048554 0.060743801 0.07578858 0.046350859 0.059066817 0.071890086 0.035081793 -0.061141115 -0.046804853 0.039931674 -0.058561441 -0.040061489 0.031305999 -0.062741101 -0.041011896 0.035081793 -0.061141115 -0.046804853 0.045484319 -0.053919118 -0.049203988 0.039931674 -0.058561441 -0.040061489 -0.013184039 -0.058014087 -0.035932682 -0.0028105762 -0.06341207 -0.040054649 -0.011233876 -0.058126222 -0.030531937 -0.012432395 -0.053195342 -0.059054505 -0.003234003 -0.062266603 -0.048992146 -0.0084088696 -0.060409755 -0.046140615 0.043695502 -0.052380893 -0.056086011 0.051625125 -0.04820789 -0.046565551 0.045484319 -0.053919118 -0.049203988 0.031305999 -0.062741101 -0.041011896 0.039931674 -0.058561441 -0.040061489 0.032603215 -0.05995588 -0.031828929 -0.013184039 -0.058014087 -0.035932682 -0.0084088696 -0.060409755 -0.046140615 -0.0028105762 -0.06341207 -0.040054649 0.054216299 0.05976082 0.064546853 0.046350859 0.059066817 0.071890086 0.055944774 0.057660442 0.070622936 0.043695502 -0.052380893 -0.056086011 0.051079091 -0.046322417 -0.052435853 0.051625125 -0.04820789 -0.046565551 0.045484319 -0.053919118 -0.049203988 0.049021292 -0.051679846 -0.04060873 0.039931674 -0.058561441 -0.040061489 0.051079091 -0.046322417 -0.052435853 0.054911781 -0.042805459 -0.047953375 0.051625125 -0.04820789 -0.046565551 0.051625125 -0.04820789 -0.046565551 0.049021292 -0.051679846 -0.04060873 0.045484319 -0.053919118 -0.049203988 -0.011233876 -0.058126222 -0.030531937 -0.0028105762 -0.06341207 -0.040054649 -0.0016045119 -0.061516449 -0.029226741 -0.0084088696 -0.060409755 -0.046140615 -0.003234003 -0.062266603 -0.048992146 -0.0028105762 -0.06341207 -0.040054649 -0.0028105762 -0.06341207 -0.040054649 0.0028231277 -0.064310543 -0.03536192 -0.0016045119 -0.061516449 -0.029226741 -0.00040027141 -0.062008251 -0.053144585 0.0053960206 -0.064927742 -0.04852283 -0.003234003 -0.062266603 -0.048992146 -0.018613845 0.025409535 0.11929377 0.0017807785 0.020009547 0.11786857 0.0033094112 0.030024877 0.11485231 0.054911781 -0.042805459 -0.047953375 0.057694148 -0.038352896 -0.045493983 0.056196246 -0.042552091 -0.040393151 0.054911781 -0.042805459 -0.047953375 0.056196246 -0.042552091 -0.040393151 0.051625125 -0.04820789 -0.046565551 0.032603215 -0.05995588 -0.031828929 0.039931674 -0.058561441 -0.040061489 0.038442437 -0.055848166 -0.028643986 -0.00040027141 -0.062008251 -0.053144585 0.0057438617 -0.063126169 -0.054698221 0.0053960206 -0.064927742 -0.04852283 0.051625125 -0.04820789 -0.046565551 0.056196246 -0.042552091 -0.040393151 0.049021292 -0.051679846 -0.04060873 -0.027169958 -0.024165632 -0.015235565 -0.02548399 -0.035773586 -0.017538708 -0.022776142 -0.03087309 -0.010444896 0.034805141 0.040180314 0.0094387475 0.010771791 0.047462046 0.023316581 0.03846043 0.049392965 0.018140296 0.049021292 -0.051679846 -0.04060873 0.050134022 -0.049510963 -0.034348357 0.039931674 -0.058561441 -0.040061489 -0.02784469 -0.031208208 -0.019306764 -0.02548399 -0.035773586 -0.017538708 -0.027169958 -0.024165632 -0.015235565 0.049021292 -0.051679846 -0.04060873 0.056196246 -0.042552091 -0.040393151 0.055388752 -0.042853281 -0.033675931 -0.0016045119 -0.061516449 -0.029226741 0.0028231277 -0.064310543 -0.03536192 0.0067263464 -0.063752264 -0.031522945 -0.003234003 -0.062266603 -0.048992146 0.0053960206 -0.064927742 -0.04852283 -0.0028105762 -0.06341207 -0.040054649 0.039931674 -0.058561441 -0.040061489 0.050134022 -0.049510963 -0.034348357 0.046085551 -0.051407855 -0.029994577 0.039931674 -0.058561441 -0.040061489 0.046085551 -0.051407855 -0.029994577 0.038442437 -0.055848166 -0.028643986 0.049021292 -0.051679846 -0.04060873 0.055388752 -0.042853281 -0.033675931 0.050134022 -0.049510963 -0.034348357 0.0053960206 -0.064927742 -0.04852283 0.009679893 -0.065929957 -0.045194712 -0.0028105762 -0.06341207 -0.040054649 -0.013330216 -0.040130574 -0.0076368712 -0.017076017 -0.02813684 -0.0021526616 -0.022776142 -0.03087309 -0.010444896 0.057694148 -0.038352896 -0.045493983 0.060527362 -0.031723011 -0.041189253 0.056196246 -0.042552091 -0.040393151 0.0057438617 -0.063126169 -0.054698221 0.011854869 -0.062179528 -0.058514297 0.0053960206 -0.064927742 -0.04852283 -0.022776142 -0.03087309 -0.010444896 -0.02548399 -0.035773586 -0.017538708 -0.013330216 -0.040130574 -0.0076368712 0.011854869 -0.062179528 -0.058514297 0.016283827 -0.063910328 -0.054979309 0.0053960206 -0.064927742 -0.04852283 -0.0028105762 -0.06341207 -0.040054649 0.009679893 -0.065929957 -0.045194712 0.0028231277 -0.064310543 -0.03536192 -0.02548399 -0.035773586 -0.017538708 -0.019189123 -0.042726677 -0.014683682 -0.013330216 -0.040130574 -0.0076368712 -0.02784469 -0.031208208 -0.019306764 -0.024159249 -0.043608293 -0.023872316 -0.02548399 -0.035773586 -0.017538708 0.0053960206 -0.064927742 -0.04852283 0.017967504 -0.065331638 -0.049683724 0.009679893 -0.065929957 -0.045194712 -0.02784469 -0.031208208 -0.019306764 -0.026758634 -0.041564848 -0.028917866 -0.024159249 -0.043608293 -0.023872316 0.056196246 -0.042552091 -0.040393151 0.056473061 -0.0393897 -0.029652178 0.055388752 -0.042853281 -0.033675931 0.050134022 -0.049510963 -0.034348357 0.050033476 -0.045853913 -0.0263153 0.046085551 -0.051407855 -0.029994577 0.0053960206 -0.064927742 -0.04852283 0.016283827 -0.063910328 -0.054979309 0.017967504 -0.065331638 -0.049683724 0.0028231277 -0.064310543 -0.03536192 0.016765814 -0.064312562 -0.033416275 0.0067263464 -0.063752264 -0.031522945 -0.02548399 -0.035773586 -0.017538708 -0.024159249 -0.043608293 -0.023872316 -0.019189123 -0.042726677 -0.014683682 0.009679893 -0.065929957 -0.045194712 0.017967504 -0.065331638 -0.049683724 0.017377464 -0.065846115 -0.041033138 0.055388752 -0.042853281 -0.033675931 0.050033476 -0.045853913 -0.0263153 0.050134022 -0.049510963 -0.034348357 0.009679893 -0.065929957 -0.045194712 0.017377464 -0.065846115 -0.041033138 0.0028231277 -0.064310543 -0.03536192 0.055388752 -0.042853281 -0.033675931 0.056473061 -0.0393897 -0.029652178 0.050033476 -0.045853913 -0.0263153 0.016283827 -0.063910328 -0.054979309 0.026749715 -0.060723115 -0.058269661 0.022519903 -0.063697167 -0.053651717 0.016283827 -0.063910328 -0.054979309 0.022519903 -0.063697167 -0.053651717 0.017967504 -0.065331638 -0.049683724 -0.026758634 -0.041564848 -0.028917866 -0.024592459 -0.046346437 -0.033565398 -0.024159249 -0.043608293 -0.023872316 0.0028231277 -0.064310543 -0.03536192 0.017377464 -0.065846115 -0.041033138 0.016765814 -0.064312562 -0.033416275 -0.013330216 -0.040130574 -0.0076368712 -0.019189123 -0.042726677 -0.014683682 -0.013440633 -0.047113027 -0.013976376 0.026749715 -0.060723115 -0.058269661 0.03041048 -0.061823718 -0.052816026 0.022519903 -0.063697167 -0.053651717 0.017967504 -0.065331638 -0.049683724 0.022519903 -0.063697167 -0.053651717 0.023196466 -0.064961828 -0.047461309 -0.024592459 -0.046346437 -0.033565398 -0.017583352 -0.051740661 -0.025236072 -0.024159249 -0.043608293 -0.023872316 0.062465627 0.015753035 0.10388485 0.046171132 0.018253334 0.10847765 0.061931897 0.0071800952 0.1048088 0.017967504 -0.065331638 -0.049683724 0.023196466 -0.064961828 -0.047461309 0.017377464 -0.065846115 -0.041033138 0.026749715 -0.060723115 -0.058269661 0.035946213 -0.057644252 -0.056703582 0.03041048 -0.061823718 -0.052816026 -0.024592459 -0.046346437 -0.033565398 -0.018634418 -0.053218767 -0.032508165 -0.017583352 -0.051740661 -0.025236072 0.023196466 -0.064961828 -0.047461309 0.025176264 -0.064558953 -0.040760901 0.017377464 -0.065846115 -0.041033138 0.026749715 -0.060723115 -0.058269661 0.030662624 -0.052416343 -0.069142893 0.035946213 -0.057644252 -0.056703582 -0.024159249 -0.043608293 -0.023872316 -0.017583352 -0.051740661 -0.025236072 -0.019189123 -0.042726677 -0.014683682 0.022519903 -0.063697167 -0.053651717 0.03041048 -0.061823718 -0.052816026 0.023196466 -0.064961828 -0.047461309 0.00077858369 0.041880868 0.020840598 -0.031443372 0.045741756 0.039705765 -0.0055208611 0.048500955 0.030465502 0.0045906627 0.06190696 0.075769573 0.0024498 0.060085099 0.082846738 0.025048554 0.060743801 0.07578858 -0.024592459 -0.046346437 -0.033565398 -0.021361262 -0.050547812 -0.040528558 -0.018634418 -0.053218767 -0.032508165 0.03041048 -0.061823718 -0.052816026 0.035081793 -0.061141115 -0.046804853 0.023196466 -0.064961828 -0.047461309 0.048097618 -0.014894889 -0.0050460626 0.028186698 -0.014935703 0.0020749357 0.043502104 -0.018416382 -0.0018559281 0.040744361 0.0051712398 -0.0064116544 0.028218774 0.0010384625 -0.0021372328 0.049980197 -0.0078826882 -0.0078862021 -0.02636655 0.059162404 0.084408157 -0.024662754 0.057498988 0.090343677 0.0045906627 0.06190696 0.075769573 0.049980197 -0.0078826882 -0.0078862021 0.028186698 -0.014935703 0.0020749357 0.048097618 -0.014894889 -0.0050460626 0.028218774 0.0010384625 -0.0021372328 0.028186698 -0.014935703 0.0020749357 0.049980197 -0.0078826882 -0.0078862021 0.028247677 0.0095742298 -0.0018814319 0.028218774 0.0010384625 -0.0021372328 0.040744361 0.0051712398 -0.0064116544 0.028186698 -0.014935703 0.0020749357 0.027707772 -0.020238604 0.0054866653 0.043502104 -0.018416382 -0.0018559281 0.041162688 -0.00053895864 -0.11785585 0.017814478 0.065625489 -0.053405222 0.048563801 0.0071342224 -0.11272288 0.048563801 0.0071342224 -0.11272288 0.017814478 0.065625489 -0.053405222 0.0538681 0.015606526 -0.10639113 -0.012155573 -0.016722387 -0.11994711 0.017814478 0.065625489 -0.053405222 -0.0072554681 -0.017069569 -0.12139269 -0.0072554681 -0.017069569 -0.12139269 0.017814478 0.065625489 -0.053405222 -0.0014753103 -0.017023416 -0.12269045 -0.0014753103 -0.017023416 -0.12269045 0.017814478 0.065625489 -0.053405222 0.015923267 -0.014031857 -0.12405071 0.015923267 -0.014031857 -0.12405071 0.017814478 0.065625489 -0.053405222 0.026898429 -0.009788652 -0.12280611 0.026898429 -0.009788652 -0.12280611 0.017814478 0.065625489 -0.053405222 0.036778536 -0.0039635259 -0.11989646 0.036778536 -0.0039635259 -0.11989646 0.017814478 0.065625489 -0.053405222 0.041162688 -0.00053895864 -0.11785585 0.00060735765 0.065117188 -0.049873408 0.012245509 0.065930106 -0.051843513 0.017814478 0.065625489 -0.053405222 -0.041032325 -0.0044015097 -0.10226383 0.017814478 0.065625489 -0.053405222 -0.033944584 -0.0097548617 -0.10868368 -0.033944584 -0.0097548617 -0.10868368 0.017814478 0.065625489 -0.053405222 -0.024643851 -0.01400918 -0.11463431 -0.024643851 -0.01400918 -0.11463431 0.017814478 0.065625489 -0.053405222 -0.012155573 -0.016722387 -0.11994711 -0.049961958 0.010293987 -0.087082855 0.017814478 0.065625489 -0.053405222 -0.046472844 0.0022715311 -0.09504988 -0.046472844 0.0022715311 -0.09504988 0.017814478 0.065625489 -0.053405222 -0.041032325 -0.0044015097 -0.10226383 -0.048897672 0.029729297 -0.069985218 0.017814478 0.065625489 -0.053405222 -0.050564356 0.023427349 -0.075223476 0.010771791 0.047462046 0.023316581 0.02353026 0.052578446 0.025807207 0.03846043 0.049392965 0.018140296 -0.050564356 0.023427349 -0.075223476 0.017814478 0.065625489 -0.053405222 -0.049961958 0.010293987 -0.087082855 -0.03540891 0.048765209 -0.05612326 0.017814478 0.065625489 -0.053405222 -0.045067243 0.037531979 -0.063910291 0.0045906627 0.06190696 0.075769573 -0.024662754 0.057498988 0.090343677 0.0024498 0.060085099 0.082846738 -0.045067243 0.037531979 -0.063910291 0.017814478 0.065625489 -0.053405222 -0.048897672 0.029729297 -0.069985218 0.045415461 0.055026993 -0.069255203 0.050339684 0.050116789 -0.074777767 0.017814478 0.065625489 -0.053405222 0.017814478 0.065625489 -0.053405222 0.050339684 0.050116789 -0.074777767 0.055743665 0.040618267 -0.084505752 0.038191069 0.059803929 -0.063319854 0.045415461 0.055026993 -0.069255203 0.017814478 0.065625489 -0.053405222 0.017814478 0.065625489 -0.053405222 0.055743665 0.040618267 -0.084505752 0.056881987 0.036413576 -0.088521615 0.028525239 0.063628539 -0.05766812 0.038191069 0.059803929 -0.063319854 0.017814478 0.065625489 -0.053405222 0.017814478 0.065625489 -0.053405222 0.056881987 0.036413576 -0.088521615 0.057285719 0.027636906 -0.096447289 -0.018711595 0.059432335 -0.050470866 0.017814478 0.065625489 -0.053405222 -0.023062443 0.057297342 -0.051369138 -0.023062443 0.057297342 -0.051369138 0.017814478 0.065625489 -0.053405222 -0.03540891 0.048765209 -0.05612326 0.017814478 0.065625489 -0.053405222 0.057285719 0.027636906 -0.096447289 0.056546606 0.023167098 -0.10026465 -0.0083309729 0.063192964 -0.049519271 0.017814478 0.065625489 -0.053405222 -0.018711595 0.059432335 -0.050470866 0.017814478 0.065625489 -0.053405222 0.056546606 0.023167098 -0.10026465 0.0538681 0.015606526 -0.10639113 0.00060735765 0.065117188 -0.049873408 0.017814478 0.065625489 -0.053405222 -0.0083309729 0.063192964 -0.049519271 0.038191069 0.059803929 -0.063319854 0.044020012 0.050458986 -0.059128277 0.045415461 0.055026993 -0.069255203 0.046350859 0.059066817 0.071890086 0.025048554 0.060743801 0.07578858 0.040799603 0.05711202 0.079394996 0.061949518 -0.0047777817 -0.06218845 0.061758108 -0.012611912 -0.057957381 0.060618751 -0.0032327122 -0.072540879 0.042546116 0.046870075 -0.05167162 0.044020012 0.050458986 -0.059128277 0.038191069 0.059803929 -0.063319854 0.046350859 0.059066817 0.071890086 0.040799603 0.05711202 0.079394996 0.055944774 0.057660442 0.070622936 0.061949518 -0.0047777817 -0.06218845 0.060618751 -0.0032327122 -0.072540879 0.059748888 0.0081571154 -0.082635462 0.039843328 0.037859067 -0.037135564 0.043627586 0.028045125 -0.030789929 0.042546116 0.046870075 -0.05167162 0.057285719 0.027636906 -0.096447289 0.059748888 0.0081571154 -0.082635462 0.056546606 0.023167098 -0.10026465 0.039656118 0.02507226 -0.023444211 0.046962909 0.013099153 -0.0199998 0.043627586 0.028045125 -0.030789929 0.039656118 0.02507226 -0.023444211 0.040744361 0.0051712398 -0.0064116544 0.046962909 0.013099153 -0.0199998 0.062465888 -0.013397856 -0.045702245 0.061715361 -0.026688905 -0.036866434 0.061758108 -0.012611912 -0.057957381 0.062465888 -0.013397856 -0.045702245 0.061758108 -0.012611912 -0.057957381 0.061949518 -0.0047777817 -0.06218845 0.059694611 0.021360788 -0.0808575 0.061949518 -0.0047777817 -0.06218845 0.059748888 0.0081571154 -0.082635462 0.039843328 0.037859067 -0.037135564 0.042546116 0.046870075 -0.05167162 0.038191069 0.059803929 -0.063319854 0.061657764 -0.024462892 -0.031296823 0.061715361 -0.026688905 -0.036866434 0.062465888 -0.013397856 -0.045702245 0.06228492 -0.0012378381 -0.056987219 0.062465888 -0.013397856 -0.045702245 0.061949518 -0.0047777817 -0.06218845 0.039843328 0.037859067 -0.037135564 0.039656118 0.02507226 -0.023444211 0.043627586 0.028045125 -0.030789929 0.06228492 -0.0012378381 -0.056987219 0.061949518 -0.0047777817 -0.06218845 0.059694611 0.021360788 -0.0808575 0.059694611 0.021360788 -0.0808575 0.059748888 0.0081571154 -0.082635462 0.057285719 0.027636906 -0.096447289 0.031756483 0.055098735 -0.049543004 0.039843328 0.037859067 -0.037135564 0.038191069 0.059803929 -0.063319854 0.061605804 -0.018712517 -0.029720198 0.061657764 -0.024462892 -0.031296823 0.062465888 -0.013397856 -0.045702245 0.031756483 0.055098735 -0.049543004 0.038191069 0.059803929 -0.063319854 0.028525239 0.063628539 -0.05766812 0.030019633 0.039104123 -0.030090954 0.039843328 0.037859067 -0.037135564 0.031756483 0.055098735 -0.049543004 0.030019633 0.039104123 -0.030090954 0.039656118 0.02507226 -0.023444211 0.039843328 0.037859067 -0.037135564 0.03242689 0.017640335 -0.011174187 0.040744361 0.0051712398 -0.0064116544 0.039656118 0.02507226 -0.023444211 0.061624005 0.00015719028 -0.045777649 0.062465888 -0.013397856 -0.045702245 0.06228492 -0.0012378381 -0.056987219 0.029952461 0.0296208 -0.020656966 0.039656118 0.02507226 -0.023444211 0.030019633 0.039104123 -0.030090954 0.060634084 0.016577626 -0.067154013 0.06228492 -0.0012378381 -0.056987219 0.059694611 0.021360788 -0.0808575 0.029952461 0.0296208 -0.020656966 0.03242689 0.017640335 -0.011174187 0.039656118 0.02507226 -0.023444211 0.061624005 0.00015719028 -0.045777649 0.06228492 -0.0012378381 -0.056987219 0.060634084 0.016577626 -0.067154013 0.061624005 0.00015719028 -0.045777649 0.061605804 -0.018712517 -0.029720198 0.062465888 -0.013397856 -0.045702245 0.040744361 0.0051712398 -0.0064116544 0.03242689 0.017640335 -0.011174187 0.028247677 0.0095742298 -0.0018814319 0.020967279 0.051209427 -0.037445206 0.030019633 0.039104123 -0.030090954 0.031756483 0.055098735 -0.049543004 0.020967279 0.051209427 -0.037445206 0.031756483 0.055098735 -0.049543004 0.028525239 0.063628539 -0.05766812 0.056881987 0.036413576 -0.088521615 0.059694611 0.021360788 -0.0808575 0.057285719 0.027636906 -0.096447289 0.017814478 0.065625489 -0.053405222 0.020967279 0.051209427 -0.037445206 0.028525239 0.063628539 -0.05766812 0.05946368 0.022717372 -0.067474894 0.060634084 0.016577626 -0.067154013 0.059694611 0.021360788 -0.0808575 0.05946368 0.022717372 -0.067474894 0.059694611 0.021360788 -0.0808575 0.056881987 0.036413576 -0.088521615 0.060301706 -0.0082999915 -0.029624961 0.061605804 -0.018712517 -0.029720198 0.061624005 0.00015719028 -0.045777649 0.05976557 0.0054203011 -0.040920381 0.060634084 0.016577626 -0.067154013 0.05946368 0.022717372 -0.067474894 0.046171132 0.018253334 0.10847765 0.025519749 0.017771892 0.1137909 0.045692813 0.0084736571 0.10957539 0.059046034 -0.011255986 -0.022469865 0.061605804 -0.018712517 -0.029720198 0.060301706 -0.0082999915 -0.029624961 0.024236184 0.034857932 -0.02218999 0.03242689 0.017640335 -0.011174187 0.029952461 0.0296208 -0.020656966 0.05976557 0.0054203011 -0.040920381 0.061624005 0.00015719028 -0.045777649 0.060634084 0.016577626 -0.067154013 0.024236184 0.034857932 -0.02218999 0.029952461 0.0296208 -0.020656966 0.030019633 0.039104123 -0.030090954 0.0017807785 0.020009547 0.11786857 0.0036243505 0.011046994 0.11827661 0.025519749 0.017771892 0.1137909 0.024236184 0.034857932 -0.02218999 0.030019633 0.039104123 -0.030090954 0.020967279 0.051209427 -0.037445206 0.05976557 0.0054203011 -0.040920381 0.060301706 -0.0082999915 -0.029624961 0.061624005 0.00015719028 -0.045777649 0.028247677 0.0095742298 -0.0018814319 0.03242689 0.017640335 -0.011174187 0.024236184 0.034857932 -0.02218999 0.05946368 0.022717372 -0.067474894 0.056881987 0.036413576 -0.088521615 0.055743665 0.040618267 -0.084505752 0.010771791 0.047462046 0.023316581 -0.0055208611 0.048500955 0.030465502 0.02353026 0.052578446 0.025807207 0.020967279 0.051209427 -0.037445206 0.017814478 0.065625489 -0.053405222 0.017696185 0.062374189 -0.049482886 0.05630194 0.036298346 -0.074562617 0.05946368 0.022717372 -0.067474894 0.055743665 0.040618267 -0.084505752 0.012245509 0.065930106 -0.051843513 0.017696185 0.062374189 -0.049482886 0.017814478 0.065625489 -0.053405222 0.00039502562 0.047833864 -0.031634156 0.00060735765 0.065117188 -0.049873408 -0.0083309729 0.063192964 -0.049519271 0.05976557 0.0054203011 -0.040920381 0.05946368 0.022717372 -0.067474894 0.057242848 0.023835599 -0.054846767 -0.0087521235 0.050698459 -0.03752692 -0.0083309729 0.063192964 -0.049519271 -0.018711595 0.059432335 -0.050470866 -0.0087521235 0.050698459 -0.03752692 -0.018711595 0.059432335 -0.050470866 -0.016573891 0.043191087 -0.034726039 0.059046034 -0.011255986 -0.022469865 0.060301706 -0.0082999915 -0.029624961 0.05976557 0.0054203011 -0.040920381 -0.023062443 0.057297342 -0.051369138 -0.016573891 0.043191087 -0.034726039 -0.018711595 0.059432335 -0.050470866 0.046171132 0.018253334 0.10847765 0.045692813 0.0084736571 0.10957539 0.061931897 0.0071800952 0.1048088 -0.023913914 0.044451721 -0.041040711 -0.016573891 0.043191087 -0.034726039 -0.023062443 0.057297342 -0.051369138 0.057242848 0.023835599 -0.054846767 0.05946368 0.022717372 -0.067474894 0.05630194 0.036298346 -0.074562617 -0.029713282 0.04614941 -0.047666278 -0.023913914 0.044451721 -0.041040711 -0.023062443 0.057297342 -0.051369138 0.0024498 0.060085099 0.082846738 0.020171201 0.057868168 0.084764414 0.025048554 0.060743801 0.07578858 -0.025900716 0.027539814 -0.030048337 -0.020389179 0.032362215 -0.027937412 -0.023913914 0.044451721 -0.041040711 -0.025900716 0.027539814 -0.030048337 -0.023913914 0.044451721 -0.041040711 -0.029713282 0.04614941 -0.047666278 -0.03540891 0.048765209 -0.05612326 -0.029713282 0.04614941 -0.047666278 -0.023062443 0.057297342 -0.051369138 0.05741157 0.012895252 -0.04069626 0.05976557 0.0054203011 -0.040920381 0.057242848 0.023835599 -0.054846767 -0.035369236 0.037535973 -0.047945622 -0.025900716 0.027539814 -0.030048337 -0.029713282 0.04614941 -0.047666278 0.050339684 0.050116789 -0.074777767 0.05630194 0.036298346 -0.074562617 0.055743665 0.040618267 -0.084505752 -0.03540891 0.048765209 -0.05612326 -0.035369236 0.037535973 -0.047945622 -0.029713282 0.04614941 -0.047666278 -0.025900716 0.027539814 -0.030048337 -0.035369236 0.037535973 -0.047945622 -0.030589473 0.019713778 -0.030947961 -0.018613845 0.025409535 0.11929377 -0.018735468 0.019936169 0.12040487 0.0017807785 0.020009547 0.11786857 0.055178821 0.0056420118 -0.026934147 0.05976557 0.0054203011 -0.040920381 0.05741157 0.012895252 -0.04069626 0.059046034 -0.011255986 -0.022469865 0.05976557 0.0054203011 -0.040920381 0.055178821 0.0056420118 -0.026934147 -0.040799726 0.045847792 0.045086585 -0.037540358 0.051949628 0.051417597 -0.031443372 0.045741756 0.039705765 0.052936383 0.001422081 -0.018451635 0.059046034 -0.011255986 -0.022469865 0.055178821 0.0056420118 -0.026934147 0.057242848 0.023835599 -0.054846767 0.05630194 0.036298346 -0.074562617 0.050339684 0.050116789 -0.074777767 0.055257764 0.026777511 -0.051795691 0.05741157 0.012895252 -0.04069626 0.057242848 0.023835599 -0.054846767 -0.038588181 0.03180398 -0.049022019 -0.030589473 0.019713778 -0.030947961 -0.035369236 0.037535973 -0.047945622 -0.038588181 0.03180398 -0.049022019 -0.035369236 0.037535973 -0.047945622 -0.03540891 0.048765209 -0.05612326 -0.038588181 0.03180398 -0.049022019 -0.03540891 0.048765209 -0.05612326 -0.045067243 0.037531979 -0.063910291 0.055257764 0.026777511 -0.051795691 0.057242848 0.023835599 -0.054846767 0.050339684 0.050116789 -0.074777767 -0.038588181 0.03180398 -0.049022019 -0.033002123 0.011628129 -0.030566635 -0.030589473 0.019713778 -0.030947961 -0.042154003 0.021916265 -0.050642584 -0.033002123 0.011628129 -0.030566635 -0.038588181 0.03180398 -0.049022019 0.025048554 0.060743801 0.07578858 0.020171201 0.057868168 0.084764414 0.040799603 0.05711202 0.079394996 0.052192643 0.020694494 -0.036322419 0.055178821 0.0056420118 -0.026934147 0.05741157 0.012895252 -0.04069626 -0.042154003 0.021916265 -0.050642584 -0.038588181 0.03180398 -0.049022019 -0.045067243 0.037531979 -0.063910291 0.052192643 0.020694494 -0.036322419 0.05741157 0.012895252 -0.04069626 0.055257764 0.026777511 -0.051795691 -0.041781187 0.012739832 -0.047142051 -0.034597326 0.0017970785 -0.030296341 -0.042154003 0.021916265 -0.050642584 0.048813503 0.034483545 -0.046215702 0.052192643 0.020694494 -0.036322419 0.055257764 0.026777511 -0.051795691 -0.048897672 0.029729297 -0.069985218 -0.042154003 0.021916265 -0.050642584 -0.045067243 0.037531979 -0.063910291 -0.031443372 0.045741756 0.039705765 -0.0085826004 0.053577483 0.038516056 -0.0055208611 0.048500955 0.030465502 0.045415461 0.055026993 -0.069255203 0.055257764 0.026777511 -0.051795691 0.050339684 0.050116789 -0.074777767 -0.045247201 0.014557324 -0.056269422 -0.041781187 0.012739832 -0.047142051 -0.042154003 0.021916265 -0.050642584 -0.034792218 -0.0089980615 -0.029730527 -0.034597326 0.0017970785 -0.030296341 -0.041781187 0.012739832 -0.047142051 -0.045247201 0.014557324 -0.056269422 -0.042154003 0.021916265 -0.050642584 -0.048897672 0.029729297 -0.069985218 0.048813503 0.034483545 -0.046215702 0.055257764 0.026777511 -0.051795691 0.045415461 0.055026993 -0.069255203 0.052192643 0.020694494 -0.036322419 0.052936383 0.001422081 -0.018451635 0.055178821 0.0056420118 -0.026934147 0.051090945 -0.0020353398 -0.012387129 0.052936383 0.001422081 -0.018451635 0.052192643 0.020694494 -0.036322419 0.044020012 0.050458986 -0.059128277 0.048813503 0.034483545 -0.046215702 0.045415461 0.055026993 -0.069255203 0.046962909 0.013099153 -0.0199998 0.051090945 -0.0020353398 -0.012387129 0.052192643 0.020694494 -0.036322419 0.061758108 -0.012611912 -0.057957381 0.059776649 -0.01826239 -0.063517794 0.060618751 -0.0032327122 -0.072540879 0.061715361 -0.026688905 -0.036866434 0.060527362 -0.031723011 -0.041189253 0.060830846 -0.023246756 -0.052232023 0.043627586 0.028045125 -0.030789929 0.046962909 0.013099153 -0.0199998 0.052192643 0.020694494 -0.036322419 0.043627586 0.028045125 -0.030789929 0.052192643 0.020694494 -0.036322419 0.048813503 0.034483545 -0.046215702 0.042546116 0.046870075 -0.05167162 0.048813503 0.034483545 -0.046215702 0.044020012 0.050458986 -0.059128277 0.040744361 0.0051712398 -0.0064116544 0.051090945 -0.0020353398 -0.012387129 0.046962909 0.013099153 -0.0199998 0.061715361 -0.026688905 -0.036866434 0.060830846 -0.023246756 -0.052232023 0.061758108 -0.012611912 -0.057957381 0.043627586 0.028045125 -0.030789929 0.048813503 0.034483545 -0.046215702 0.042546116 0.046870075 -0.05167162 0.061657764 -0.024462892 -0.031296823 0.060320225 -0.02144216 -0.024135437 0.059033193 -0.027775835 -0.023383649 0.052936383 0.001422081 -0.018451635 0.051090945 -0.0020353398 -0.012387129 0.057142999 -0.013643946 -0.016828673 0.052290954 -0.032417506 -0.015232249 0.056199621 -0.025066899 -0.016453868 0.048600819 -0.028710494 -0.0093080383 0.057142999 -0.013643946 -0.016828673 0.049980197 -0.0078826882 -0.0078862021 0.052865583 -0.014388799 -0.010109585 0.059248868 -0.033920195 -0.030311599 0.059033193 -0.027775835 -0.023383649 0.056061633 -0.034388173 -0.022289388 0.057142999 -0.013643946 -0.016828673 0.051090945 -0.0020353398 -0.012387129 0.049980197 -0.0078826882 -0.0078862021 0.056697823 -0.020458737 -0.015933633 0.051992364 -0.0216587 -0.0098467795 0.056199621 -0.025066899 -0.016453868 0.061605804 -0.018712517 -0.029720198 0.059046034 -0.011255986 -0.022469865 0.060320225 -0.02144216 -0.024135437 0.056199621 -0.025066899 -0.016453868 0.051992364 -0.0216587 -0.0098467795 0.048600819 -0.028710494 -0.0093080383 0.056697823 -0.020458737 -0.015933633 0.052865583 -0.014388799 -0.010109585 0.048097618 -0.014894889 -0.0050460626 0.056697823 -0.020458737 -0.015933633 0.048097618 -0.014894889 -0.0050460626 0.051992364 -0.0216587 -0.0098467795 0.059033193 -0.027775835 -0.023383649 0.060320225 -0.02144216 -0.024135437 0.056199621 -0.025066899 -0.016453868 0.059046034 -0.011255986 -0.022469865 0.057142999 -0.013643946 -0.016828673 0.060320225 -0.02144216 -0.024135437 0.051090945 -0.0020353398 -0.012387129 0.040744361 0.0051712398 -0.0064116544 0.049980197 -0.0078826882 -0.0078862021 0.060038671 -0.033765577 -0.035039987 0.056196246 -0.042552091 -0.040393151 0.060527362 -0.031723011 -0.041189253 0.048600819 -0.028710494 -0.0093080383 0.051992364 -0.0216587 -0.0098467795 0.043502104 -0.018416382 -0.0018559281 0.060527362 -0.031723011 -0.041189253 0.061715361 -0.026688905 -0.036866434 0.060038671 -0.033765577 -0.035039987 0.059033193 -0.027775835 -0.023383649 0.056199621 -0.025066899 -0.016453868 0.056061633 -0.034388173 -0.022289388 0.052865583 -0.014388799 -0.010109585 0.049980197 -0.0078826882 -0.0078862021 0.048097618 -0.014894889 -0.0050460626 0.056196246 -0.042552091 -0.040393151 0.060038671 -0.033765577 -0.035039987 0.056473061 -0.0393897 -0.029652178 0.060320225 -0.02144216 -0.024135437 0.057142999 -0.013643946 -0.016828673 0.056697823 -0.020458737 -0.015933633 0.02353026 0.052578446 0.025807207 -0.0055208611 0.048500955 0.030465502 0.012582217 0.055315506 0.033248998 0.056061633 -0.034388173 -0.022289388 0.056199621 -0.025066899 -0.016453868 0.052290954 -0.032417506 -0.015232249 0.061715361 -0.026688905 -0.036866434 0.061657764 -0.024462892 -0.031296823 0.060038671 -0.033765577 -0.035039987 0.060320225 -0.02144216 -0.024135437 0.056697823 -0.020458737 -0.015933633 0.056199621 -0.025066899 -0.016453868 0.056473061 -0.0393897 -0.029652178 0.060038671 -0.033765577 -0.035039987 0.059248868 -0.033920195 -0.030311599 0.051992364 -0.0216587 -0.0098467795 0.048097618 -0.014894889 -0.0050460626 0.043502104 -0.018416382 -0.0018559281 0.0017807785 0.020009547 0.11786857 -0.018735468 0.019936169 0.12040487 0.0036243505 0.011046994 0.11827661 0.0024498 0.060085099 0.082846738 -0.024662754 0.057498988 0.090343677 -0.0057359813 0.055834603 0.093524531 0.025519749 0.017771892 0.1137909 0.021826835 0.007993618 0.11510076 0.045692813 0.0084736571 0.10957539 0.03846043 0.049392965 0.018140296 0.02353026 0.052578446 0.025807207 0.040219631 0.052865986 0.022617858 0.060038671 -0.033765577 -0.035039987 0.061657764 -0.024462892 -0.031296823 0.059248868 -0.033920195 -0.030311599 0.056473061 -0.0393897 -0.029652178 0.056061633 -0.034388173 -0.022289388 0.050033476 -0.045853913 -0.0263153 0.061657764 -0.024462892 -0.031296823 0.059033193 -0.027775835 -0.023383649 0.059248868 -0.033920195 -0.030311599 0.059248868 -0.033920195 -0.030311599 0.056061633 -0.034388173 -0.022289388 0.056473061 -0.0393897 -0.029652178 0.059046034 -0.011255986 -0.022469865 0.052936383 0.001422081 -0.018451635 0.057142999 -0.013643946 -0.016828673 0.061605804 -0.018712517 -0.029720198 0.060320225 -0.02144216 -0.024135437 0.061657764 -0.024462892 -0.031296823 0.057142999 -0.013643946 -0.016828673 0.052865583 -0.014388799 -0.010109585 0.056697823 -0.020458737 -0.015933633 0.043502104 -0.018416382 -0.0018559281 0.042567998 -0.025454728 -0.0033102923 0.048600819 -0.028710494 -0.0093080383 0.033816148 -0.042855922 -0.0084380182 0.024030667 -0.042801451 -0.0040096524 0.02982582 -0.05039167 -0.013806654 0.0024498 0.060085099 0.082846738 -0.0057359813 0.055834603 0.093524531 0.020171201 0.057868168 0.084764414 0.042567998 -0.025454728 -0.0033102923 0.043502104 -0.018416382 -0.0018559281 0.027707772 -0.020238604 0.0054866653 0.04760173 -0.036632605 -0.013439364 0.036693137 -0.038095508 -0.0064127347 0.038510121 -0.046653956 -0.014968055 0.04760173 -0.036632605 -0.013439364 0.038510121 -0.046653956 -0.014968055 0.046822209 -0.042708464 -0.018202631 0.042567998 -0.025454728 -0.0033102923 0.027707772 -0.020238604 0.0054866653 0.034777425 -0.026905667 0.00041438144 0.034777425 -0.026905667 0.00041438144 0.025945736 -0.029999429 0.0029123323 0.036693137 -0.038095508 -0.0064127347 0.048600819 -0.028710494 -0.0093080383 0.04760173 -0.036632605 -0.013439364 0.052290954 -0.032417506 -0.015232249 0.046822209 -0.042708464 -0.018202631 0.038510121 -0.046653956 -0.014968055 0.040905699 -0.049567383 -0.020556975 -0.0055208611 0.048500955 0.030465502 -0.0085826004 0.053577483 0.038516056 0.012582217 0.055315506 0.033248998 0.04760173 -0.036632605 -0.013439364 0.056061633 -0.034388173 -0.022289388 0.052290954 -0.032417506 -0.015232249 0.04760173 -0.036632605 -0.013439364 0.046822209 -0.042708464 -0.018202631 0.056061633 -0.034388173 -0.022289388 0.027707772 -0.020238604 0.0054866653 0.025945736 -0.029999429 0.0029123323 0.034777425 -0.026905667 0.00041438144 0.056061633 -0.034388173 -0.022289388 0.046822209 -0.042708464 -0.018202631 0.050033476 -0.045853913 -0.0263153 0.042567998 -0.025454728 -0.0033102923 0.034777425 -0.026905667 0.00041438144 0.048600819 -0.028710494 -0.0093080383 0.036693137 -0.038095508 -0.0064127347 0.025945736 -0.029999429 0.0029123323 0.024030667 -0.042801451 -0.0040096524 0.036693137 -0.038095508 -0.0064127347 0.033816148 -0.042855922 -0.0084380182 0.038510121 -0.046653956 -0.014968055 0.036693137 -0.038095508 -0.0064127347 0.024030667 -0.042801451 -0.0040096524 0.033816148 -0.042855922 -0.0084380182 0.025519749 0.017771892 0.1137909 0.0036243505 0.011046994 0.11827661 0.021826835 0.007993618 0.11510076 0.048600819 -0.028710494 -0.0093080383 0.036693137 -0.038095508 -0.0064127347 0.04760173 -0.036632605 -0.013439364 0.048600819 -0.028710494 -0.0093080383 0.034777425 -0.026905667 0.00041438144 0.036693137 -0.038095508 -0.0064127347 -0.027473072 0.0022563429 0.013008843 -0.02399949 0.0038059228 0.0067067351 -0.025184097 -0.008232424 0.0081026498 -0.02027153 0.018612292 0.010464875 -0.024573287 0.0093719596 0.011496568 -0.020890303 0.024320889 0.017477471 -0.024573287 0.0093719596 0.011496568 -0.02399949 0.0038059228 0.0067067351 -0.027473072 0.0022563429 0.013008843 -0.01060287 -0.034760438 0.033193845 0.0070467195 -0.04032312 0.039023679 -0.0040177158 -0.038884725 0.04274343 -0.025184097 -0.008232424 0.0081026498 -0.021925157 -0.017800257 0.0056694089 -0.026921645 -0.017127171 0.014856366 -0.026921645 -0.017127171 0.014856366 -0.021925157 -0.017800257 0.0056694089 -0.024181016 -0.02132917 0.014986264 -0.042342592 -0.02311953 0.039940163 -0.024181016 -0.02132917 0.014986264 -0.033977907 -0.025627084 0.032349277 -0.014935302 0.035030335 0.021573935 -0.02027153 0.018612292 0.010464875 -0.020890303 0.024320889 0.017477471 -0.0040177158 -0.038884725 0.04274343 0.0070467195 -0.04032312 0.039023679 0.037214987 -0.046818733 0.043477837 -0.056299757 -0.0065671443 0.04737277 -0.049450159 -0.01632441 0.042475749 -0.052974138 -0.017912501 0.055088293 -0.020173289 -0.021907981 0.0083773918 -0.016910482 -0.025534008 0.010634173 -0.0215702 -0.025591817 0.018606832 -0.044342835 -0.018355781 0.036136325 -0.024181016 -0.02132917 0.014986264 -0.042342592 -0.02311953 0.039940163 0.061931897 0.0071800952 0.1048088 0.047087528 0.0043831542 0.10907291 0.061149281 -0.0001629514 0.10458016 -0.049494833 0.024709573 0.037189685 -0.033700872 0.0033244579 0.019954698 -0.048387505 0.0096244784 0.032738682 -0.0215702 -0.025591817 0.018606832 -0.016910482 -0.025534008 0.010634173 -0.013916925 -0.027732231 0.01467876 -0.024662754 0.057498988 0.090343677 -0.02251054 0.053873837 0.098036274 -0.0057359813 0.055834603 0.093524531 -0.030435292 0.0098300353 0.01878746 -0.024573287 0.0093719596 0.011496568 -0.027473072 0.0022563429 0.013008843 -0.057375375 -0.010229253 0.056025814 -0.056299757 -0.0065671443 0.04737277 -0.052974138 -0.017912501 0.055088293 -0.049339715 0.0020498224 0.033352047 -0.030324649 -0.0041270722 0.015655845 -0.04996679 -0.0038629116 0.034986604 -0.030324649 -0.0041270722 0.015655845 -0.027473072 0.0022563429 0.013008843 -0.025184097 -0.008232424 0.0081026498 -0.024181016 -0.02132917 0.014986264 -0.020173289 -0.021907981 0.0083773918 -0.0215702 -0.025591817 0.018606832 0.061931897 0.0071800952 0.1048088 0.045692813 0.0084736571 0.10957539 0.047087528 0.0043831542 0.10907291 -0.013916925 -0.027732231 0.01467876 0.0058431281 -0.032072201 0.014029957 -0.0052789478 -0.030733062 0.018999416 -0.029699344 -0.03174416 0.044295758 -0.030012717 -0.030015314 0.037942056 -0.020755069 -0.031836119 0.033019848 -0.030435292 0.0098300353 0.01878746 -0.020890303 0.024320889 0.017477471 -0.024573287 0.0093719596 0.011496568 -0.061639395 0.0021257428 0.060985018 -0.056299757 -0.0065671443 0.04737277 -0.057375375 -0.010229253 0.056025814 -0.024155993 0.032577366 0.025847713 -0.014935302 0.035030335 0.021573935 -0.020890303 0.024320889 0.017477471 -0.05223842 0.015030851 0.037155692 -0.049494833 0.024709573 0.037189685 -0.048387505 0.0096244784 0.032738682 -0.013391788 -0.038370591 0.061925311 0.002347016 -0.042147506 0.061803423 -0.0089032575 -0.039472252 0.069289736 -0.019880963 0.038053181 0.027375747 -0.014935302 0.035030335 0.021573935 -0.024155993 0.032577366 0.025847713 -0.013433967 0.040504232 0.026019635 -0.014935302 0.035030335 0.021573935 -0.019880963 0.038053181 0.027375747 -0.031443372 0.045741756 0.039705765 -0.037540358 0.051949628 0.051417597 -0.0085826004 0.053577483 0.038516056 -0.018952902 -0.035258714 0.0438153 -0.01060287 -0.034760438 0.033193845 -0.0040177158 -0.038884725 0.04274343 0.021766568 -0.037170418 0.023496618 0.029072883 -0.03601427 0.014582849 0.034706686 -0.04419614 0.034789849 -0.062404156 0.0095601054 0.061476082 -0.060600724 0.0079685282 0.05193051 -0.061639395 0.0021257428 0.060985018 -0.029699344 -0.03174416 0.044295758 -0.020755069 -0.031836119 0.033019848 -0.018952902 -0.035258714 0.0438153 -0.030324649 -0.0041270722 0.015655845 -0.025184097 -0.008232424 0.0081026498 -0.026921645 -0.017127171 0.014856366 -0.049241766 -0.012127486 0.037964303 -0.040810335 -0.016225116 0.029642718 -0.044342835 -0.018355781 0.036136325 -0.0040177158 -0.038884725 0.04274343 0.037214987 -0.046818733 0.043477837 0.015371175 -0.044126417 0.050912391 -0.018952902 -0.035258714 0.0438153 -0.0040177158 -0.038884725 0.04274343 -0.0013806707 -0.040639151 0.051048227 0.020171201 0.057868168 0.084764414 0.025010385 0.054103669 0.090215452 0.040799603 0.05711202 0.079394996 -0.04996679 -0.0038629116 0.034986604 -0.040810335 -0.016225116 0.029642718 -0.049241766 -0.012127486 0.037964303 -0.030435292 0.0098300353 0.01878746 -0.027473072 0.0022563429 0.013008843 -0.030324649 -0.0041270722 0.015655845 -0.033977907 -0.025627084 0.032349277 -0.030012717 -0.030015314 0.037942056 -0.03577736 -0.028757527 0.043137323 -0.057375375 -0.010229253 0.056025814 -0.052974138 -0.017912501 0.055088293 -0.056218285 -0.015440303 0.066277198 -0.024155993 0.032577366 0.025847713 -0.020890303 0.024320889 0.017477471 -0.035972912 0.015482715 0.025065612 -0.042236049 -0.027085118 0.052329335 -0.03742918 -0.030231105 0.057495698 -0.04357551 -0.028479652 0.072912745 0.045692813 0.0084736571 0.10957539 0.021826835 0.007993618 0.11510076 0.047087528 0.0043831542 0.10907291 -0.035972912 0.015482715 0.025065612 -0.020890303 0.024320889 0.017477471 -0.030435292 0.0098300353 0.01878746 0.015371175 -0.044126417 0.050912391 0.037214987 -0.046818733 0.043477837 0.018400149 -0.045120329 0.058642764 -0.061639395 0.0021257428 0.060985018 -0.057375375 -0.010229253 0.056025814 -0.060056079 -0.0059997686 0.064793088 -0.042342592 -0.02311953 0.039940163 -0.033977907 -0.025627084 0.032349277 -0.03577736 -0.028757527 0.043137323 -0.055850312 0.0093443505 0.041008811 -0.048387505 0.0096244784 0.032738682 -0.049339715 0.0020498224 0.033352047 0.02353026 0.052578446 0.025807207 0.012582217 0.055315506 0.033248998 0.018932397 0.056916073 0.034297518 -0.030012717 -0.030015314 0.037942056 -0.029699344 -0.03174416 0.044295758 -0.03577736 -0.028757527 0.043137323 -0.020755069 -0.031836119 0.033019848 -0.013916925 -0.027732231 0.01467876 -0.0052789478 -0.030733062 0.018999416 -0.0052789478 -0.030733062 0.018999416 0.021766568 -0.037170418 0.023496618 0.034706686 -0.04419614 0.034789849 -0.0013806707 -0.040639151 0.051048227 -0.0040177158 -0.038884725 0.04274343 0.015371175 -0.044126417 0.050912391 -0.0384202 -0.030890424 0.074341863 -0.03742918 -0.030231105 0.057495698 -0.023884293 -0.034795381 0.052376576 -0.023884293 -0.034795381 0.052376576 -0.013391788 -0.038370591 0.061925311 -0.0384202 -0.030890424 0.074341863 -0.0215702 -0.025591817 0.018606832 -0.013916925 -0.027732231 0.01467876 -0.020755069 -0.031836119 0.033019848 -0.033700872 0.0033244579 0.019954698 -0.030435292 0.0098300353 0.01878746 -0.030324649 -0.0041270722 0.015655845 -0.049075387 -0.02303414 0.057906684 -0.042236049 -0.027085118 0.052329335 -0.04357551 -0.028479652 0.072912745 -0.05223842 0.015030851 0.037155692 -0.048387505 0.0096244784 0.032738682 -0.055850312 0.0093443505 0.041008811 -0.05307246 -0.020169696 0.072196826 -0.052974138 -0.017912501 0.055088293 -0.049075387 -0.02303414 0.057906684 -0.060056079 -0.0059997686 0.064793088 -0.057375375 -0.010229253 0.056025814 -0.056218285 -0.015440303 0.066277198 -0.055850312 0.0093443505 0.041008811 -0.049339715 0.0020498224 0.033352047 -0.04996679 -0.0038629116 0.034986604 -0.032702006 0.02421575 0.026402645 -0.024155993 0.032577366 0.025847713 -0.035972912 0.015482715 0.025065612 -0.033700872 0.0033244579 0.019954698 -0.030324649 -0.0041270722 0.015655845 -0.049339715 0.0020498224 0.033352047 -0.020755069 -0.031836119 0.033019848 -0.0052789478 -0.030733062 0.018999416 -0.01060287 -0.034760438 0.033193845 -0.056218285 -0.015440303 0.066277198 -0.052974138 -0.017912501 0.055088293 -0.05307246 -0.020169696 0.072196826 0.02353026 0.052578446 0.025807207 0.018932397 0.056916073 0.034297518 0.040219631 0.052865986 0.022617858 -0.049241766 -0.012127486 0.037964303 -0.044342835 -0.018355781 0.036136325 -0.049450159 -0.01632441 0.042475749 -0.0384202 -0.030890424 0.074341863 -0.013391788 -0.038370591 0.061925311 -0.0089032575 -0.039472252 0.069289736 -0.055850312 0.0093443505 0.041008811 -0.049494833 0.024709573 0.037189685 -0.05223842 0.015030851 0.037155692 -0.054978404 -0.0010795818 0.041266084 -0.04996679 -0.0038629116 0.034986604 -0.049241766 -0.012127486 0.037964303 -0.049450159 -0.01632441 0.042475749 -0.044342835 -0.018355781 0.036136325 -0.042342592 -0.02311953 0.039940163 0.055944774 0.057660442 0.070622936 0.040799603 0.05711202 0.079394996 0.059040964 0.050827045 0.082440779 -0.023884293 -0.034795381 0.052376576 -0.018952902 -0.035258714 0.0438153 -0.0013806707 -0.040639151 0.051048227 -0.055850312 0.0093443505 0.041008811 -0.04996679 -0.0038629116 0.034986604 -0.054978404 -0.0010795818 0.041266084 -0.034792218 -0.0089980615 -0.029730527 -0.027169958 -0.024165632 -0.015235565 -0.024364578 -0.022813696 -0.0098189982 -0.026581466 -0.0043749455 -0.010936975 -0.034792218 -0.0089980615 -0.029730527 -0.024364578 -0.022813696 -0.0098189982 -0.023801271 -0.012846782 -0.0047672973 -0.026581466 -0.0043749455 -0.010936975 -0.024364578 -0.022813696 -0.0098189982 -0.056184642 0.024216322 0.044887833 -0.049494833 0.024709573 0.037189685 -0.055850312 0.0093443505 0.041008811 -0.022789897 0.0073545226 0.00095161406 -0.026581466 -0.0043749455 -0.010936975 -0.023801271 -0.012846782 -0.0047672973 -0.029699344 -0.03174416 0.044295758 -0.018952902 -0.035258714 0.0438153 -0.023884293 -0.034795381 0.052376576 -0.022776142 -0.03087309 -0.010444896 -0.024364578 -0.022813696 -0.0098189982 -0.027169958 -0.024165632 -0.015235565 0.01267007 -0.047058009 -0.0063757719 0.022707297 -0.042572837 -0.0034477329 0.014954806 -0.038502142 0.0018121351 -0.0057359813 0.055834603 0.093524531 0.0025227384 0.054012798 0.095400549 0.020171201 0.057868168 0.084764414 -0.024364578 -0.022813696 -0.0098189982 -0.022776142 -0.03087309 -0.010444896 -0.017076017 -0.02813684 -0.0021526616 -0.033977907 -0.025627084 0.032349277 -0.024181016 -0.02132917 0.014986264 -0.0215702 -0.025591817 0.018606832 -0.03742918 -0.030231105 0.057495698 -0.0384202 -0.030890424 0.074341863 -0.04357551 -0.028479652 0.072912745 0.014954806 -0.038502142 0.0018121351 0.022707297 -0.042572837 -0.0034477329 0.02545171 -0.037297744 0.0035783742 -0.040810335 -0.016225116 0.029642718 -0.026921645 -0.017127171 0.014856366 -0.024181016 -0.02132917 0.014986264 -0.035972912 0.015482715 0.025065612 -0.030435292 0.0098300353 0.01878746 -0.033700872 0.0033244579 0.019954698 -0.0050260001 -0.032469872 0.0039028053 -0.0039663836 -0.037805151 -0.0017356701 0.01267007 -0.047058009 -0.0063757719 -0.013330216 -0.040130574 -0.0076368712 -0.0039663836 -0.037805151 -0.0017356701 -0.012804187 -0.031882506 -0.0013244756 -0.012804187 -0.031882506 -0.0013244756 -0.017076017 -0.02813684 -0.0021526616 -0.013330216 -0.040130574 -0.0076368712 -0.023801271 -0.012846782 -0.0047672973 -0.024364578 -0.022813696 -0.0098189982 -0.020732969 -0.021658117 -0.0020153066 -0.019540455 0.0099242032 0.12079417 0.0036243505 0.011046994 0.11827661 -0.018735468 0.019936169 0.12040487 -0.022546474 0.0095324693 0.0060257954 -0.022789897 0.0073545226 0.00095161406 -0.023801271 -0.012846782 -0.0047672973 0.0070467195 -0.04032312 0.039023679 -0.0052789478 -0.030733062 0.018999416 0.034706686 -0.04419614 0.034789849 -0.023127925 -0.011851504 0.0018830281 -0.023801271 -0.012846782 -0.0047672973 -0.020732969 -0.021658117 -0.0020153066 -0.0050260001 -0.032469872 0.0039028053 0.01267007 -0.047058009 -0.0063757719 0.014954806 -0.038502142 0.0018121351 0.020171201 0.057868168 0.084764414 0.0025227384 0.054012798 0.095400549 0.025010385 0.054103669 0.090215452 -0.042236049 -0.027085118 0.052329335 -0.042342592 -0.02311953 0.039940163 -0.03577736 -0.028757527 0.043137323 -0.020732969 -0.021658117 -0.0020153066 -0.024364578 -0.022813696 -0.0098189982 -0.017076017 -0.02813684 -0.0021526616 -0.020560827 0.016325573 -0.0045423014 -0.022789897 0.0073545226 0.00095161406 -0.02027153 0.018612292 0.010464875 0.0060428218 -0.032775871 0.0091336314 0.014954806 -0.038502142 0.0018121351 0.02545171 -0.037297744 0.0035783742 -0.049344931 -0.023957366 0.076000996 -0.05307246 -0.020169696 0.072196826 -0.049075387 -0.02303414 0.057906684 -0.04996679 -0.0038629116 0.034986604 -0.030324649 -0.0041270722 0.015655845 -0.026921645 -0.017127171 0.014856366 -0.05987462 0.020038623 0.051422507 -0.056184642 0.024216322 0.044887833 -0.055850312 0.0093443505 0.041008811 -0.04386732 0.034287605 0.037515961 -0.024155993 0.032577366 0.025847713 -0.032702006 0.02421575 0.026402645 -0.049344931 -0.023957366 0.076000996 -0.049075387 -0.02303414 0.057906684 -0.04357551 -0.028479652 0.072912745 -0.012804187 -0.031882506 -0.0013244756 -0.0039663836 -0.037805151 -0.0017356701 -0.012773355 -0.029218551 0.0025061681 -0.033700872 0.0033244579 0.019954698 -0.049339715 0.0020498224 0.033352047 -0.048387505 0.0096244784 0.032738682 -0.02399949 0.0038059228 0.0067067351 -0.022546474 0.0095324693 0.0060257954 -0.023801271 -0.012846782 -0.0047672973 0.0060428218 -0.032775871 0.0091336314 0.02545171 -0.037297744 0.0035783742 0.027442543 -0.035651319 0.0093406811 -0.017076017 -0.02813684 -0.0021526616 -0.012804187 -0.031882506 -0.0013244756 -0.012773355 -0.029218551 0.0025061681 -0.05987462 0.020038623 0.051422507 -0.055850312 0.0093443505 0.041008811 -0.058928009 0.011588151 0.046778359 -0.012773355 -0.029218551 0.0025061681 -0.0039663836 -0.037805151 -0.0017356701 -0.0050260001 -0.032469872 0.0039028053 -0.020732969 -0.021658117 -0.0020153066 -0.017076017 -0.02813684 -0.0021526616 -0.017208101 -0.025630552 0.0013358629 -0.02027153 0.018612292 0.010464875 -0.022789897 0.0073545226 0.00095161406 -0.022546474 0.0095324693 0.0060257954 -0.019880963 0.038053181 0.027375747 -0.024155993 0.032577366 0.025847713 -0.04386732 0.034287605 0.037515961 -0.02399949 0.0038059228 0.0067067351 -0.023801271 -0.012846782 -0.0047672973 -0.023127925 -0.011851504 0.0018830281 -0.017208101 -0.025630552 0.0013358629 -0.017076017 -0.02813684 -0.0021526616 -0.012773355 -0.029218551 0.0025061681 -0.056299757 -0.0065671443 0.04737277 -0.054978404 -0.0010795818 0.041266084 -0.049241766 -0.012127486 0.037964303 -0.03742918 -0.030231105 0.057495698 -0.03577736 -0.028757527 0.043137323 -0.029699344 -0.03174416 0.044295758 0.018400149 -0.045120329 0.058642764 -0.0013806707 -0.040639151 0.051048227 0.015371175 -0.044126417 0.050912391 -0.021925157 -0.017800257 0.0056694089 -0.023127925 -0.011851504 0.0018830281 -0.020732969 -0.021658117 -0.0020153066 -0.0050260001 -0.032469872 0.0039028053 0.014954806 -0.038502142 0.0018121351 0.0060428218 -0.032775871 0.0091336314 -0.01060287 -0.034760438 0.033193845 -0.0052789478 -0.030733062 0.018999416 0.0070467195 -0.04032312 0.039023679 0.0060428218 -0.032775871 0.0091336314 0.027442543 -0.035651319 0.0093406811 0.0058431281 -0.032072201 0.014029957 -0.012441993 -0.027872371 0.010415561 -0.017208101 -0.025630552 0.0013358629 -0.012773355 -0.029218551 0.0025061681 -0.021925157 -0.017800257 0.0056694089 -0.020732969 -0.021658117 -0.0020153066 -0.017208101 -0.025630552 0.0013358629 0.0070467195 -0.04032312 0.039023679 0.034706686 -0.04419614 0.034789849 0.037214987 -0.046818733 0.043477837 -0.016910482 -0.025534008 0.010634173 -0.017208101 -0.025630552 0.0013358629 -0.012441993 -0.027872371 0.010415561 -0.058928009 0.011588151 0.046778359 -0.055850312 0.0093443505 0.041008811 -0.054978404 -0.0010795818 0.041266084 -0.052974138 -0.017912501 0.055088293 -0.049450159 -0.01632441 0.042475749 -0.042342592 -0.02311953 0.039940163 0.002347016 -0.042147506 0.061803423 -0.0013806707 -0.040639151 0.051048227 0.018400149 -0.045120329 0.058642764 -0.03742918 -0.030231105 0.057495698 -0.029699344 -0.03174416 0.044295758 -0.023884293 -0.034795381 0.052376576 -0.056299757 -0.0065671443 0.04737277 -0.049241766 -0.012127486 0.037964303 -0.049450159 -0.01632441 0.042475749 0.0058431281 -0.032072201 0.014029957 0.027442543 -0.035651319 0.0093406811 0.029072883 -0.03601427 0.014582849 0.025010385 0.054103669 0.090215452 0.036620203 0.049723189 0.092623673 0.040799603 0.05711202 0.079394996 -0.012773355 -0.029218551 0.0025061681 -0.0050260001 -0.032469872 0.0039028053 -0.012441993 -0.027872371 0.010415561 -0.0085826004 0.053577483 0.038516056 -0.0024258643 0.058206018 0.044627454 0.012582217 0.055315506 0.033248998 -0.021925157 -0.017800257 0.0056694089 -0.017208101 -0.025630552 0.0013358629 -0.020173289 -0.021907981 0.0083773918 0.021826835 0.007993618 0.11510076 0.016734583 0.0044755926 0.11576866 0.047087528 0.0043831542 0.10907291 -0.049075387 -0.02303414 0.057906684 -0.042342592 -0.02311953 0.039940163 -0.042236049 -0.027085118 0.052329335 -0.024573287 0.0093719596 0.011496568 -0.02027153 0.018612292 0.010464875 -0.022546474 0.0095324693 0.0060257954 -0.058928009 0.011588151 0.046778359 -0.054978404 -0.0010795818 0.041266084 -0.060600724 0.0079685282 0.05193051 0.021826835 0.007993618 0.11510076 0.0036243505 0.011046994 0.11827661 0.016734583 0.0044755926 0.11576866 -0.025184097 -0.008232424 0.0081026498 -0.023127925 -0.011851504 0.0018830281 -0.021925157 -0.017800257 0.0056694089 -0.013916925 -0.027732231 0.01467876 0.0060428218 -0.032775871 0.0091336314 0.0058431281 -0.032072201 0.014029957 -0.013916925 -0.027732231 0.01467876 -0.0050260001 -0.032469872 0.0039028053 0.0060428218 -0.032775871 0.0091336314 -0.060600724 0.0079685282 0.05193051 -0.05987462 0.020038623 0.051422507 -0.058928009 0.011588151 0.046778359 -0.020173289 -0.021907981 0.0083773918 -0.017208101 -0.025630552 0.0013358629 -0.016910482 -0.025534008 0.010634173 -0.052974138 -0.017912501 0.055088293 -0.042342592 -0.02311953 0.039940163 -0.049075387 -0.02303414 0.057906684 -0.0052789478 -0.030733062 0.018999416 0.0058431281 -0.032072201 0.014029957 0.029072883 -0.03601427 0.014582849 -0.012441993 -0.027872371 0.010415561 -0.0050260001 -0.032469872 0.0039028053 -0.013916925 -0.027732231 0.01467876 0.021766568 -0.037170418 0.023496618 -0.0052789478 -0.030733062 0.018999416 0.029072883 -0.03601427 0.014582849 -0.02399949 0.0038059228 0.0067067351 -0.023127925 -0.011851504 0.0018830281 -0.025184097 -0.008232424 0.0081026498 -0.049494833 0.024709573 0.037189685 -0.035972912 0.015482715 0.025065612 -0.033700872 0.0033244579 0.019954698 -0.024573287 0.0093719596 0.011496568 -0.022546474 0.0095324693 0.0060257954 -0.02399949 0.0038059228 0.0067067351 -0.023884293 -0.034795381 0.052376576 -0.0013806707 -0.040639151 0.051048227 -0.013391788 -0.038370591 0.061925311 -0.033977907 -0.025627084 0.032349277 -0.0215702 -0.025591817 0.018606832 -0.030012717 -0.030015314 0.037942056 -0.060600724 0.0079685282 0.05193051 -0.054978404 -0.0010795818 0.041266084 -0.056299757 -0.0065671443 0.04737277 -0.024181016 -0.02132917 0.014986264 -0.021925157 -0.017800257 0.0056694089 -0.020173289 -0.021907981 0.0083773918 -0.014935302 0.035030335 0.021573935 -0.014854413 0.027796652 0.011097987 -0.02027153 0.018612292 0.010464875 -0.04996679 -0.0038629116 0.034986604 -0.026921645 -0.017127171 0.014856366 -0.040810335 -0.016225116 0.029642718 -0.013916925 -0.027732231 0.01467876 -0.016910482 -0.025534008 0.010634173 -0.012441993 -0.027872371 0.010415561 -0.060600724 0.0079685282 0.05193051 -0.056299757 -0.0065671443 0.04737277 -0.061639395 0.0021257428 0.060985018 -0.042236049 -0.027085118 0.052329335 -0.03577736 -0.028757527 0.043137323 -0.03742918 -0.030231105 0.057495698 -0.044342835 -0.018355781 0.036136325 -0.040810335 -0.016225116 0.029642718 -0.024181016 -0.02132917 0.014986264 -0.030012717 -0.030015314 0.037942056 -0.0215702 -0.025591817 0.018606832 -0.020755069 -0.031836119 0.033019848 -0.032702006 0.02421575 0.026402645 -0.035972912 0.015482715 0.025065612 -0.049494833 0.024709573 0.037189685 -0.020755069 -0.031836119 0.033019848 -0.01060287 -0.034760438 0.033193845 -0.018952902 -0.035258714 0.0438153 -0.013391788 -0.038370591 0.061925311 -0.0013806707 -0.040639151 0.051048227 0.002347016 -0.042147506 0.061803423 -0.0057359813 0.055834603 0.093524531 -0.0084113264 0.053190287 0.098141462 0.0025227384 0.054012798 0.095400549 -0.0085826004 0.053577483 0.038516056 -0.037540358 0.051949628 0.051417597 -0.029734364 0.05551951 0.053331912 0.028294632 0.034587573 -0.0093400944 0.024236184 0.034857932 -0.02218999 0.026819207 0.036052 -0.014393072 0.034805141 0.040180314 0.0094387475 0.034706686 -0.04419614 0.034789849 0.027327195 -0.0051071458 -0.00031212921 0.027327195 -0.0051071458 -0.00031212921 0.034706686 -0.04419614 0.034789849 0.027707772 -0.020238604 0.0054866653 0.027707772 -0.020238604 0.0054866653 0.034706686 -0.04419614 0.034789849 0.029072883 -0.03601427 0.014582849 0.047087528 0.0043831542 0.10907291 0.047749616 -0.0053371233 0.10732019 0.061149281 -0.0001629514 0.10458016 0.026819207 0.036052 -0.014393072 0.024236184 0.034857932 -0.02218999 0.024645463 0.040038105 -0.022477424 0.02545171 -0.037297744 0.0035783742 0.022707297 -0.042572837 -0.0034477329 0.025945736 -0.029999429 0.0029123323 0.027442543 -0.035651319 0.0093406811 0.02545171 -0.037297744 0.0035783742 0.025945736 -0.029999429 0.0029123323 0.024645463 0.040038105 -0.022477424 0.024236184 0.034857932 -0.02218999 0.020967279 0.051209427 -0.037445206 0.034805141 0.040180314 0.0094387475 0.027327195 -0.0051071458 -0.00031212921 0.028247677 0.0095742298 -0.0018814319 0.027707772 -0.020238604 0.0054866653 0.029072883 -0.03601427 0.014582849 0.027442543 -0.035651319 0.0093406811 0.040799603 0.05711202 0.079394996 0.036620203 0.049723189 0.092623673 0.059040964 0.050827045 0.082440779 0.027707772 -0.020238604 0.0054866653 0.027442543 -0.035651319 0.0093406811 0.025945736 -0.029999429 0.0029123323 0.034805141 0.040180314 0.0094387475 0.028247677 0.0095742298 -0.0018814319 0.032827802 0.036421571 0.004362253 0.048829254 0.061513677 0.047068998 0.054604199 -0.029215749 0.092826426 0.044186581 0.058487639 0.033383161 0.050178904 0.061652273 0.051270921 0.054604199 -0.029215749 0.092826426 0.048829254 0.061513677 0.047068998 -0.0085826004 0.053577483 0.038516056 -0.029734364 0.05551951 0.053331912 -0.0024258643 0.058206018 0.044627454 0.054216299 0.05976082 0.064546853 0.054604199 -0.029215749 0.092826426 0.050178904 0.061652273 0.051270921 0.0036243505 0.011046994 0.11827661 -0.019540455 0.0099242032 0.12079417 -0.0029876225 0.002821842 0.11831517 0.012582217 0.055315506 0.033248998 -0.0024258643 0.058206018 0.044627454 0.018932397 0.056916073 0.034297518 0.055944774 0.057660442 0.070622936 0.054604199 -0.029215749 0.092826426 0.054216299 0.05976082 0.064546853 0.059040964 0.050827045 0.082440779 0.054604199 -0.029215749 0.092826426 0.055944774 0.057660442 0.070622936 0.060919765 0.043111097 0.090702362 0.054604199 -0.029215749 0.092826426 0.059040964 0.050827045 0.082440779 0.062106889 0.03391926 0.097227633 0.054604199 -0.029215749 0.092826426 0.060919765 0.043111097 0.090702362 0.062449712 0.028526865 0.09995003 0.054604199 -0.029215749 0.092826426 0.062106889 0.03391926 0.097227633 0.062465627 0.015753035 0.10388485 0.054604199 -0.029215749 0.092826426 0.062449712 0.028526865 0.09995003 -0.0057359813 0.055834603 0.093524531 -0.02251054 0.053873837 0.098036274 -0.0084113264 0.053190287 0.098141462 0.061931897 0.0071800952 0.1048088 0.054604199 -0.029215749 0.092826426 0.062465627 0.015753035 0.10388485 0.061149281 -0.0001629514 0.10458016 0.054604199 -0.029215749 0.092826426 0.061931897 0.0071800952 0.1048088 0.058886711 -0.013650385 0.10156441 0.054604199 -0.029215749 0.092826426 0.061149281 -0.0001629514 0.10458016 0.032827802 0.036421571 0.004362253 0.028247677 0.0095742298 -0.0018814319 0.030824784 0.034424968 -0.0013303914 0.056289073 -0.024012256 0.096544214 0.054604199 -0.029215749 0.092826426 0.058886711 -0.013650385 0.10156441 0.054604985 -0.029213311 0.092828505 0.054604199 -0.029215749 0.092826426 0.056289073 -0.024012256 0.096544214 0.028294632 0.034587573 -0.0093400944 0.028247677 0.0095742298 -0.0018814319 0.024236184 0.034857932 -0.02218999 0.044864185 -0.046075854 0.06731537 0.041046534 -0.047866825 0.055849697 0.047895785 -0.04280968 0.07585787 0.030824784 0.034424968 -0.0013303914 0.028247677 0.0095742298 -0.0018814319 0.028294632 0.034587573 -0.0093400944 0.047895785 -0.04280968 0.07585787 0.041046534 -0.047866825 0.055849697 0.052817527 -0.033828225 0.08860895 0.040219631 0.052865986 0.022617858 0.018932397 0.056916073 0.034297518 0.044186581 0.058487639 0.033383161 0.052817527 -0.033828225 0.08860895 0.041046534 -0.047866825 0.055849697 0.037214987 -0.046818733 0.043477837 0.052817527 -0.033828225 0.08860895 0.037214987 -0.046818733 0.043477837 0.054604199 -0.029215749 0.092826426 0.054604199 -0.029215749 0.092826426 0.037214987 -0.046818733 0.043477837 0.034706686 -0.04419614 0.034789849 0.03846043 0.049392965 0.018140296 0.034706686 -0.04419614 0.034789849 0.034805141 0.040180314 0.0094387475 0.040219631 0.052865986 0.022617858 0.034706686 -0.04419614 0.034789849 0.03846043 0.049392965 0.018140296 0.044186581 0.058487639 0.033383161 0.034706686 -0.04419614 0.034789849 0.040219631 0.052865986 0.022617858 0.054604199 -0.029215749 0.092826426 0.034706686 -0.04419614 0.034789849 0.044186581 0.058487639 0.033383161 -0.029611539 -0.025059279 0.10011394 -0.028621238 -0.023415983 0.10262639 -0.035448078 -0.017242191 0.10652078 -0.038790498 -0.023119818 0.097795054 -0.035448078 -0.017242191 0.10652078 -0.040918253 -0.015064788 0.10465411 -0.045822334 -0.01967733 0.094631732 -0.047397967 -0.016165527 0.096449338 -0.050761491 -0.018404303 0.087443702 -0.038790498 -0.023119818 0.097795054 -0.040918253 -0.015064788 0.10465411 -0.045822334 -0.01967733 0.094631732 -0.04232008 -0.028188543 0.081981398 -0.046331618 -0.024503611 0.084922642 -0.049344931 -0.023957366 0.076000996 -0.028621238 -0.023415983 0.10262639 -0.025749231 -0.016944008 0.10976469 -0.035448078 -0.017242191 0.10652078 -0.045822334 -0.01967733 0.094631732 -0.040918253 -0.015064788 0.10465411 -0.047397967 -0.016165527 0.096449338 -0.05307246 -0.020169696 0.072196826 -0.050761491 -0.018404303 0.087443702 -0.057215225 -0.011913868 0.076862939 -0.049344931 -0.023957366 0.076000996 -0.050761491 -0.018404303 0.087443702 -0.05307246 -0.020169696 0.072196826 -0.036520585 -0.031097217 0.080159269 -0.033359516 -0.029599588 0.089690194 -0.04232008 -0.028188543 0.081981398 -0.047397967 -0.016165527 0.096449338 -0.053130236 -0.012577258 0.089592196 -0.050761491 -0.018404303 0.087443702 -0.04232008 -0.028188543 0.081981398 -0.040861666 -0.025248418 0.092287473 -0.046331618 -0.024503611 0.084922642 -0.04232008 -0.028188543 0.081981398 -0.033359516 -0.029599588 0.089690194 -0.040861666 -0.025248418 0.092287473 -0.025749231 -0.016944008 0.10976469 -0.024551284 -0.011704753 0.11369697 -0.035448078 -0.017242191 0.10652078 -0.035448078 -0.017242191 0.10652078 -0.037636667 -0.0086796349 0.11118375 -0.040918253 -0.015064788 0.10465411 -0.046331618 -0.024503611 0.084922642 -0.050761491 -0.018404303 0.087443702 -0.049344931 -0.023957366 0.076000996 -0.040918253 -0.015064788 0.10465411 -0.04544168 -0.0091829626 0.1043546 -0.047397967 -0.016165527 0.096449338 -0.035448078 -0.017242191 0.10652078 -0.024551284 -0.011704753 0.11369697 -0.030160688 -0.0065925228 0.11546504 -0.033359516 -0.029599588 0.089690194 -0.038790498 -0.023119818 0.097795054 -0.040861666 -0.025248418 0.092287473 -0.033359516 -0.029599588 0.089690194 -0.029611539 -0.025059279 0.10011394 -0.038790498 -0.023119818 0.097795054 -0.040861666 -0.025248418 0.092287473 -0.045822334 -0.01967733 0.094631732 -0.046331618 -0.024503611 0.084922642 -0.046331618 -0.024503611 0.084922642 -0.045822334 -0.01967733 0.094631732 -0.050761491 -0.018404303 0.087443702 -0.040918253 -0.015064788 0.10465411 -0.037636667 -0.0086796349 0.11118375 -0.04544168 -0.0091829626 0.1043546 -0.0384202 -0.030890424 0.074341863 -0.04232008 -0.028188543 0.081981398 -0.04357551 -0.028479652 0.072912745 -0.0384202 -0.030890424 0.074341863 -0.036520585 -0.031097217 0.080159269 -0.04232008 -0.028188543 0.081981398 -0.038790498 -0.023119818 0.097795054 -0.029611539 -0.025059279 0.10011394 -0.035448078 -0.017242191 0.10652078 -0.04357551 -0.028479652 0.072912745 -0.04232008 -0.028188543 0.081981398 -0.049344931 -0.023957366 0.076000996 -0.056218285 -0.015440303 0.066277198 -0.05307246 -0.020169696 0.072196826 -0.057215225 -0.011913868 0.076862939 -0.040861666 -0.025248418 0.092287473 -0.038790498 -0.023119818 0.097795054 -0.045822334 -0.01967733 0.094631732 0.0036243505 0.011046994 0.11827661 -0.0029876225 0.002821842 0.11831517 0.016734583 0.0044755926 0.11576866 -0.046500035 0.020077424 0.10780187 -0.043157279 0.011243954 0.11199717 -0.039923195 0.022937354 0.11332909 -0.056967352 0.035473742 0.076968342 -0.056837901 0.02945831 0.086432524 -0.054473426 0.036670078 0.084700935 -0.046500035 0.020077424 0.10780187 -0.045086674 0.030503821 0.10568258 -0.049915977 0.034258042 0.096945249 -0.056967352 0.035473742 0.076968342 -0.054473426 0.036670078 0.084700935 -0.050081696 0.046036467 0.080569312 -0.051240686 0.0083949165 0.10284061 -0.043157279 0.011243954 0.11199717 -0.046500035 0.020077424 0.10780187 -0.055998866 0.005445417 0.09462633 -0.051240686 0.0083949165 0.10284061 -0.054043554 0.017032886 0.09827511 -0.048951991 0.042531207 0.090079501 -0.049915977 0.034258042 0.096945249 -0.042584531 0.043156531 0.099457979 -0.058553576 0.016484011 0.089137152 -0.054587085 0.024598943 0.094878495 -0.056837901 0.02945831 0.086432524 -0.050081696 0.046036467 0.080569312 -0.054473426 0.036670078 0.084700935 -0.048951991 0.042531207 0.090079501 -0.057949014 0.033596694 0.05954944 -0.057845574 0.035137545 0.070171282 -0.054846268 0.039308473 0.057325829 -0.048951991 0.042531207 0.090079501 -0.042584531 0.043156531 0.099457979 -0.043096345 0.04962568 0.090232037 -0.054846268 0.039308473 0.057325829 -0.057845574 0.035137545 0.070171282 -0.050259292 0.047550078 0.063468441 -0.057845574 0.035137545 0.070171282 -0.057949014 0.033596694 0.05954944 -0.061434045 0.023840025 0.065427773 -0.051240686 0.0083949165 0.10284061 -0.046206333 0.0013683994 0.10774519 -0.043157279 0.011243954 0.11199717 -0.057845574 0.035137545 0.070171282 -0.051979877 0.045233082 0.073908173 -0.050259292 0.047550078 0.063468441 0.059040964 0.050827045 0.082440779 0.036620203 0.049723189 0.092623673 0.055253081 0.047852188 0.087995298 -0.057845574 0.035137545 0.070171282 -0.061434045 0.023840025 0.065427773 -0.056967352 0.035473742 0.076968342 -0.050259292 0.047550078 0.063468441 -0.051979877 0.045233082 0.073908173 -0.050120175 0.048191525 0.069508597 -0.056967352 0.035473742 0.076968342 -0.061434045 0.023840025 0.065427773 -0.061453845 0.019819815 0.076806627 -0.057845574 0.035137545 0.070171282 -0.056967352 0.035473742 0.076968342 -0.051979877 0.045233082 0.073908173 -0.045086674 0.030503821 0.10568258 -0.040543925 0.03517149 0.10778456 -0.042584531 0.043156531 0.099457979 -0.054043554 0.017032886 0.09827511 -0.046500035 0.020077424 0.10780187 -0.054587085 0.024598943 0.094878495 -0.056967352 0.035473742 0.076968342 -0.061453845 0.019819815 0.076806627 -0.056837901 0.02945831 0.086432524 -0.054587085 0.024598943 0.094878495 -0.046500035 0.020077424 0.10780187 -0.049915977 0.034258042 0.096945249 -0.056837901 0.02945831 0.086432524 -0.049915977 0.034258042 0.096945249 -0.054473426 0.036670078 0.084700935 -0.054043554 0.017032886 0.09827511 -0.051240686 0.0083949165 0.10284061 -0.046500035 0.020077424 0.10780187 -0.049915977 0.034258042 0.096945249 -0.045086674 0.030503821 0.10568258 -0.042584531 0.043156531 0.099457979 0.047087528 0.0043831542 0.10907291 0.016734583 0.0044755926 0.11576866 0.047749616 -0.0053371233 0.10732019 -0.046500035 0.020077424 0.10780187 -0.039923195 0.022937354 0.11332909 -0.045086674 0.030503821 0.10568258 -0.051979877 0.045233082 0.073908173 -0.050081696 0.046036467 0.080569312 -0.050120175 0.048191525 0.069508597 -0.054473426 0.036670078 0.084700935 -0.049915977 0.034258042 0.096945249 -0.048951991 0.042531207 0.090079501 -0.058553576 0.016484011 0.089137152 -0.054043554 0.017032886 0.09827511 -0.054587085 0.024598943 0.094878495 0.025010385 0.054103669 0.090215452 0.0025227384 0.054012798 0.095400549 0.016923789 0.049239837 0.098677143 -0.051979877 0.045233082 0.073908173 -0.056967352 0.035473742 0.076968342 -0.050081696 0.046036467 0.080569312 -0.054587085 0.024598943 0.094878495 -0.049915977 0.034258042 0.096945249 -0.056837901 0.02945831 0.086432524 -0.056837901 0.02945831 0.086432524 -0.061453845 0.019819815 0.076806627 -0.058553576 0.016484011 0.089137152 -0.045086674 0.030503821 0.10568258 -0.039923195 0.022937354 0.11332909 -0.040543925 0.03517149 0.10778456 -0.055998866 0.005445417 0.09462633 -0.054043554 0.017032886 0.09827511 -0.058553576 0.016484011 0.089137152 -0.019880963 0.038053181 0.027375747 -0.031443372 0.045741756 0.039705765 -0.013433967 0.040504232 0.026019635 0.025010385 0.054103669 0.090215452 0.016923789 0.049239837 0.098677143 0.036620203 0.049723189 0.092623673 -0.019880963 0.038053181 0.027375747 -0.044131972 0.040114235 0.041775286 -0.031443372 0.045741756 0.039705765 -0.04386732 0.034287605 0.037515961 -0.044131972 0.040114235 0.041775286 -0.019880963 0.038053181 0.027375747 -0.013433967 0.040504232 0.026019635 -0.031443372 0.045741756 0.039705765 0.00077858369 0.041880868 0.020840598 -0.062404156 0.0095601054 0.061476082 -0.061434045 0.023840025 0.065427773 -0.05987462 0.020038623 0.051422507 -0.060202647 -0.0055772769 0.070348606 -0.06142598 0.007243481 0.079458736 -0.062433828 0.0058248681 0.069994293 -0.060202647 -0.0055772769 0.070348606 -0.057215225 -0.011913868 0.076862939 -0.060122434 -0.0025648554 0.078152232 -0.055998866 0.005445417 0.09462633 -0.053213362 -0.0017055273 0.097276203 -0.051240686 0.0083949165 0.10284061 0.018932397 0.056916073 0.034297518 0.029617677 0.061106861 0.043011073 0.044186581 0.058487639 0.033383161 -0.057215225 -0.011913868 0.076862939 -0.050761491 -0.018404303 0.087443702 -0.053130236 -0.012577258 0.089592196 -0.062466018 0.010928161 0.073371477 -0.061453845 0.019819815 0.076806627 -0.062178671 0.019653374 0.068965323 -0.060202647 -0.0055772769 0.070348606 -0.060122434 -0.0025648554 0.078152232 -0.06142598 0.007243481 0.079458736 0.016734583 0.0044755926 0.11576866 -0.0029876225 0.002821842 0.11831517 0.010483971 -0.00041803526 0.11592548 -0.053213362 -0.0017055273 0.097276203 -0.046206333 0.0013683994 0.10774519 -0.051240686 0.0083949165 0.10284061 -0.053213362 -0.0017055273 0.097276203 -0.04544168 -0.0091829626 0.1043546 -0.046206333 0.0013683994 0.10774519 -0.062433828 0.0058248681 0.069994293 -0.06142598 0.007243481 0.079458736 -0.062466018 0.010928161 0.073371477 -0.062433828 0.0058248681 0.069994293 -0.062404156 0.0095601054 0.061476082 -0.061639395 0.0021257428 0.060985018 -0.057215225 -0.011913868 0.076862939 -0.053130236 -0.012577258 0.089592196 -0.05680627 -0.0048400182 0.087909877 -0.059617363 0.027184498 0.056630377 -0.061434045 0.023840025 0.065427773 -0.057949014 0.033596694 0.05954944 -0.062404156 0.0095601054 0.061476082 -0.062178671 0.019653374 0.068965323 -0.061434045 0.023840025 0.065427773 -0.060056079 -0.0059997686 0.064793088 -0.060202647 -0.0055772769 0.070348606 -0.061639395 0.0021257428 0.060985018 -0.061639395 0.0021257428 0.060985018 -0.060202647 -0.0055772769 0.070348606 -0.062433828 0.0058248681 0.069994293 -0.062433828 0.0058248681 0.069994293 -0.062466018 0.010928161 0.073371477 -0.062404156 0.0095601054 0.061476082 -0.062404156 0.0095601054 0.061476082 -0.062466018 0.010928161 0.073371477 -0.062178671 0.019653374 0.068965323 -0.062466018 0.010928161 0.073371477 -0.058922492 0.0094176652 0.088630497 -0.061453845 0.019819815 0.076806627 -0.058922492 0.0094176652 0.088630497 -0.055998866 0.005445417 0.09462633 -0.058553576 0.016484011 0.089137152 -0.05680627 -0.0048400182 0.087909877 -0.053213362 -0.0017055273 0.097276203 -0.059456192 0.0038716546 0.085677363 -0.060202647 -0.0055772769 0.070348606 -0.060056079 -0.0059997686 0.064793088 -0.056218285 -0.015440303 0.066277198 -0.05680627 -0.0048400182 0.087909877 -0.053130236 -0.012577258 0.089592196 -0.053213362 -0.0017055273 0.097276203 -0.062466018 0.010928161 0.073371477 -0.06142598 0.007243481 0.079458736 -0.058922492 0.0094176652 0.088630497 -0.058922492 0.0094176652 0.088630497 -0.059456192 0.0038716546 0.085677363 -0.055998866 0.005445417 0.09462633 -0.06142598 0.007243481 0.079458736 -0.060122434 -0.0025648554 0.078152232 -0.059456192 0.0038716546 0.085677363 -0.059456192 0.0038716546 0.085677363 -0.053213362 -0.0017055273 0.097276203 -0.055998866 0.005445417 0.09462633 -0.060202647 -0.0055772769 0.070348606 -0.056218285 -0.015440303 0.066277198 -0.057215225 -0.011913868 0.076862939 -0.062178671 0.019653374 0.068965323 -0.061453845 0.019819815 0.076806627 -0.061434045 0.023840025 0.065427773 -0.060122434 -0.0025648554 0.078152232 -0.05680627 -0.0048400182 0.087909877 -0.059456192 0.0038716546 0.085677363 -0.05987462 0.020038623 0.051422507 -0.060600724 0.0079685282 0.05193051 -0.062404156 0.0095601054 0.061476082 -0.06142598 0.007243481 0.079458736 -0.059456192 0.0038716546 0.085677363 -0.058922492 0.0094176652 0.088630497 -0.060122434 -0.0025648554 0.078152232 -0.057215225 -0.011913868 0.076862939 -0.05680627 -0.0048400182 0.087909877 -0.061453845 0.019819815 0.076806627 -0.058922492 0.0094176652 0.088630497 -0.058553576 0.016484011 0.089137152 -0.053130236 -0.012577258 0.089592196 -0.04544168 -0.0091829626 0.1043546 -0.053213362 -0.0017055273 0.097276203 0.061149281 -0.0001629514 0.10458016 0.047749616 -0.0053371233 0.10732019 0.058886711 -0.013650385 0.10156441 0.018932397 0.056916073 0.034297518 -0.0024258643 0.058206018 0.044627454 0.0049751415 0.060160458 0.04674026 -0.059617363 0.027184498 0.056630377 -0.05987462 0.020038623 0.051422507 -0.061434045 0.023840025 0.065427773 -0.053130236 -0.012577258 0.089592196 -0.047397967 -0.016165527 0.096449338 -0.04544168 -0.0091829626 0.1043546 -0.053214341 0.033844564 0.046313614 -0.0550135 0.035242319 0.051138733 -0.051888641 0.041833464 0.05342938 -0.044131972 0.040114235 0.041775286 -0.049494833 0.024709573 0.037189685 -0.050851684 0.032616962 0.042284679 -0.056184642 0.024216322 0.044887833 -0.05987462 0.020038623 0.051422507 -0.059617363 0.027184498 0.056630377 -0.031443372 0.045741756 0.039705765 -0.044131972 0.040114235 0.041775286 -0.040799726 0.045847792 0.045086585 -0.044131972 0.040114235 0.041775286 -0.04664113 0.044469334 0.048696306 -0.040799726 0.045847792 0.045086585 -0.0550135 0.035242319 0.051138733 -0.057949014 0.033596694 0.05954944 -0.054846268 0.039308473 0.057325829 -0.044131972 0.040114235 0.041775286 -0.050851684 0.032616962 0.042284679 -0.04664113 0.044469334 0.048696306 -0.0550135 0.035242319 0.051138733 -0.059617363 0.027184498 0.056630377 -0.057949014 0.033596694 0.05954944 -0.04664113 0.044469334 0.048696306 -0.053214341 0.033844564 0.046313614 -0.051888641 0.041833464 0.05342938 -0.04664113 0.044469334 0.048696306 -0.050851684 0.032616962 0.042284679 -0.053214341 0.033844564 0.046313614 -0.050851684 0.032616962 0.042284679 -0.049494833 0.024709573 0.037189685 -0.053214341 0.033844564 0.046313614 -0.053214341 0.033844564 0.046313614 -0.056184642 0.024216322 0.044887833 -0.0550135 0.035242319 0.051138733 -0.0550135 0.035242319 0.051138733 -0.054846268 0.039308473 0.057325829 -0.051888641 0.041833464 0.05342938 -0.0550135 0.035242319 0.051138733 -0.056184642 0.024216322 0.044887833 -0.059617363 0.027184498 0.056630377 -0.04386732 0.034287605 0.037515961 -0.049494833 0.024709573 0.037189685 -0.044131972 0.040114235 0.041775286 -0.053214341 0.033844564 0.046313614 -0.049494833 0.024709573 0.037189685 -0.056184642 0.024216322 0.044887833 -0.0024258643 0.058206018 0.044627454 -0.029734364 0.05551951 0.053331912 -0.010192692 0.060054809 0.053774301 -0.032702006 0.02421575 0.026402645 -0.049494833 0.024709573 0.037189685 -0.04386732 0.034287605 0.037515961 -0.024521386 0.0094373599 0.12064522 -0.028337015 0.023766806 0.11887845 -0.031012025 0.013138549 0.11937436 -0.033210844 0.057045083 0.086798772 -0.039671618 0.055342373 0.082321927 -0.043096345 0.04962568 0.090232037 -0.036303967 0.0048836926 0.11646242 -0.036664005 0.017088722 0.11659499 -0.043157279 0.011243954 0.11199717 -0.033210844 0.057045083 0.086798772 -0.036856309 0.057768226 0.076527812 -0.039671618 0.055342373 0.082321927 0.018932397 0.056916073 0.034297518 0.0049751415 0.060160458 0.04674026 0.029617677 0.061106861 0.043011073 -0.033210844 0.057045083 0.086798772 -0.030943567 0.059528444 0.077949584 -0.036856309 0.057768226 0.076527812 -0.018735468 0.019936169 0.12040487 -0.018613845 0.025409535 0.11929377 -0.028337015 0.023766806 0.11887845 -0.031012025 0.013138549 0.11937436 -0.034673236 0.025631068 0.1160042 -0.036664005 0.017088722 0.11659499 -0.031012025 0.013138549 0.11937436 -0.028337015 0.023766806 0.11887845 -0.034673236 0.025631068 0.1160042 -0.043096345 0.04962568 0.090232037 -0.039671618 0.055342373 0.082321927 -0.043527391 0.052725982 0.082016245 -0.030943567 0.059528444 0.077949584 -0.032259826 0.058792591 0.065924816 -0.036856309 0.057768226 0.076527812 -0.018613845 0.025409535 0.11929377 -0.024633773 0.033879675 0.11603259 -0.028337015 0.023766806 0.11887845 -0.018613845 0.025409535 0.11929377 -0.019185893 0.032720067 0.1167513 -0.024633773 0.033879675 0.11603259 -0.036664005 0.017088722 0.11659499 -0.039923195 0.022937354 0.11332909 -0.043157279 0.011243954 0.11199717 -0.043096345 0.04962568 0.090232037 -0.043527391 0.052725982 0.082016245 -0.048951991 0.042531207 0.090079501 -0.032259826 0.058792591 0.065924816 -0.039460074 0.056583207 0.068400845 -0.036856309 0.057768226 0.076527812 -0.039671618 0.055342373 0.082321927 -0.044841319 0.053220529 0.068372481 -0.043527391 0.052725982 0.082016245 -0.039671618 0.055342373 0.082321927 -0.036856309 0.057768226 0.076527812 -0.044841319 0.053220529 0.068372481 0.036620203 0.049723189 0.092623673 0.060919765 0.043111097 0.090702362 0.055253081 0.047852188 0.087995298 -0.028337015 0.023766806 0.11887845 -0.024633773 0.033879675 0.11603259 -0.034673236 0.025631068 0.1160042 -0.032259826 0.058792591 0.065924816 -0.034328844 0.057305098 0.061605133 -0.039460074 0.056583207 0.068400845 -0.043527391 0.052725982 0.082016245 -0.050081696 0.046036467 0.080569312 -0.048951991 0.042531207 0.090079501 -0.019185893 0.032720067 0.1167513 -0.024774769 0.041530572 0.11139883 -0.024633773 0.033879675 0.11603259 -0.034673236 0.025631068 0.1160042 -0.024633773 0.033879675 0.11603259 -0.032501031 0.033218734 0.11413664 -0.036664005 0.017088722 0.11659499 -0.034673236 0.025631068 0.1160042 -0.039923195 0.022937354 0.11332909 -0.036856309 0.057768226 0.076527812 -0.039460074 0.056583207 0.068400845 -0.044841319 0.053220529 0.068372481 -0.019185893 0.032720067 0.1167513 -0.019463914 0.041864615 0.11132536 -0.024774769 0.041530572 0.11139883 -0.044841319 0.053220529 0.068372481 -0.050120175 0.048191525 0.069508597 -0.043527391 0.052725982 0.082016245 -0.034328844 0.057305098 0.061605133 -0.041150417 0.05265075 0.056216829 -0.039460074 0.056583207 0.068400845 -0.034673236 0.025631068 0.1160042 -0.032501031 0.033218734 0.11413664 -0.039923195 0.022937354 0.11332909 -0.029734364 0.05551951 0.053331912 -0.041150417 0.05265075 0.056216829 -0.034328844 0.057305098 0.061605133 -0.043527391 0.052725982 0.082016245 -0.050120175 0.048191525 0.069508597 -0.050081696 0.046036467 0.080569312 -0.019463914 0.041864615 0.11132536 -0.020299491 0.045922082 0.10792665 -0.024774769 0.041530572 0.11139883 -0.029734364 0.05551951 0.053331912 -0.037540358 0.051949628 0.051417597 -0.041150417 0.05265075 0.056216829 -0.024774769 0.041530572 0.11139883 -0.033115849 0.041351039 0.10886832 -0.024633773 0.033879675 0.11603259 -0.039460074 0.056583207 0.068400845 -0.041150417 0.05265075 0.056216829 -0.044841319 0.053220529 0.068372481 -0.024633773 0.033879675 0.11603259 -0.033115849 0.041351039 0.10886832 -0.032501031 0.033218734 0.11413664 -0.029734364 0.05551951 0.053331912 -0.034328844 0.057305098 0.061605133 -0.010192692 0.060054809 0.053774301 -0.044841319 0.053220529 0.068372481 -0.041150417 0.05265075 0.056216829 -0.046181422 0.050642595 0.060039066 -0.032501031 0.033218734 0.11413664 -0.040543925 0.03517149 0.10778456 -0.039923195 0.022937354 0.11332909 0.047749616 -0.0053371233 0.10732019 0.016734583 0.0044755926 0.11576866 0.019660667 -0.005864718 0.11302453 -0.010192692 0.060054809 0.053774301 0.0049751415 0.060160458 0.04674026 -0.0024258643 0.058206018 0.044627454 -0.044841319 0.053220529 0.068372481 -0.050259292 0.047550078 0.063468441 -0.050120175 0.048191525 0.069508597 -0.044841319 0.053220529 0.068372481 -0.046181422 0.050642595 0.060039066 -0.050259292 0.047550078 0.063468441 -0.0084113264 0.053190287 0.098141462 -0.02251054 0.053873837 0.098036274 -0.020299491 0.045922082 0.10792665 -0.024774769 0.041530572 0.11139883 -0.030323133 0.04826564 0.10378646 -0.033115849 0.041351039 0.10886832 -0.024774769 0.041530572 0.11139883 -0.020299491 0.045922082 0.10792665 -0.030323133 0.04826564 0.10378646 -0.037540358 0.051949628 0.051417597 -0.040799726 0.045847792 0.045086585 -0.041150417 0.05265075 0.056216829 -0.030160688 -0.0065925228 0.11546504 -0.037636667 -0.0086796349 0.11118375 -0.035448078 -0.017242191 0.10652078 -0.033115849 0.041351039 0.10886832 -0.040543925 0.03517149 0.10778456 -0.032501031 0.033218734 0.11413664 -0.041150417 0.05265075 0.056216829 -0.040799726 0.045847792 0.045086585 -0.04664113 0.044469334 0.048696306 -0.024551284 -0.011704753 0.11369697 -0.022032628 -0.0021981157 0.11834625 -0.030160688 -0.0065925228 0.11546504 -0.020299491 0.045922082 0.10792665 -0.02251054 0.053873837 0.098036274 -0.030323133 0.04826564 0.10378646 -0.030160688 -0.0065925228 0.11546504 -0.034144171 -0.00025182351 0.11636377 -0.037636667 -0.0086796349 0.11118375 -0.037636667 -0.0086796349 0.11118375 -0.040499121 -0.0040442692 0.1113758 -0.04544168 -0.0091829626 0.1043546 -0.041150417 0.05265075 0.056216829 -0.04664113 0.044469334 0.048696306 -0.046181422 0.050642595 0.060039066 -0.033115849 0.041351039 0.10886832 -0.039021075 0.042259231 0.10405608 -0.040543925 0.03517149 0.10778456 -0.0084113264 0.053190287 0.098141462 0.00047251096 0.047761876 0.10352749 0.0025227384 0.054012798 0.095400549 -0.022032628 -0.0021981157 0.11834625 -0.030180493 0.0006341351 0.11805172 -0.030160688 -0.0065925228 0.11546504 -0.04544168 -0.0091829626 0.1043546 -0.040499121 -0.0040442692 0.1113758 -0.046206333 0.0013683994 0.10774519 -0.033115849 0.041351039 0.10886832 -0.030323133 0.04826564 0.10378646 -0.039021075 0.042259231 0.10405608 -0.037636667 -0.0086796349 0.11118375 -0.034144171 -0.00025182351 0.11636377 -0.040499121 -0.0040442692 0.1113758 -0.046181422 0.050642595 0.060039066 -0.04664113 0.044469334 0.048696306 -0.051888641 0.041833464 0.05342938 0.047749616 -0.0053371233 0.10732019 0.04286762 -0.01139048 0.10654164 0.058886711 -0.013650385 0.10156441 -0.030323133 0.04826564 0.10378646 -0.02251054 0.053873837 0.098036274 -0.033650767 0.051957011 0.097126305 -0.046181422 0.050642595 0.060039066 -0.054846268 0.039308473 0.057325829 -0.050259292 0.047550078 0.063468441 -0.039021075 0.042259231 0.10405608 -0.042584531 0.043156531 0.099457979 -0.040543925 0.03517149 0.10778456 -0.030160688 -0.0065925228 0.11546504 -0.030180493 0.0006341351 0.11805172 -0.034144171 -0.00025182351 0.11636377 -0.030323133 0.04826564 0.10378646 -0.033650767 0.051957011 0.097126305 -0.039021075 0.042259231 0.10405608 -0.046181422 0.050642595 0.060039066 -0.051888641 0.041833464 0.05342938 -0.054846268 0.039308473 0.057325829 -0.02251054 0.053873837 0.098036274 -0.024662754 0.057498988 0.090343677 -0.027404755 0.055890732 0.093457535 -0.02251054 0.053873837 0.098036274 -0.027404755 0.055890732 0.093457535 -0.033650767 0.051957011 0.097126305 0.010483971 -0.00041803526 0.11592548 0.019660667 -0.005864718 0.11302453 0.016734583 0.0044755926 0.11576866 -0.019540455 0.0099242032 0.12079417 -0.024521386 0.0094373599 0.12064522 -0.022032628 -0.0021981157 0.11834625 -0.022032628 -0.0021981157 0.11834625 -0.024521386 0.0094373599 0.12064522 -0.030180493 0.0006341351 0.11805172 -0.034144171 -0.00025182351 0.11636377 -0.036303967 0.0048836926 0.11646242 -0.040499121 -0.0040442692 0.1113758 -0.033650767 0.051957011 0.097126305 -0.042584531 0.043156531 0.099457979 -0.039021075 0.042259231 0.10405608 -0.040499121 -0.0040442692 0.1113758 -0.036303967 0.0048836926 0.11646242 -0.043157279 0.011243954 0.11199717 -0.040499121 -0.0040442692 0.1113758 -0.043157279 0.011243954 0.11199717 -0.046206333 0.0013683994 0.10774519 -0.024662754 0.057498988 0.090343677 -0.02636655 0.059162404 0.084408157 -0.027404755 0.055890732 0.093457535 0.0025227384 0.054012798 0.095400549 0.00047251096 0.047761876 0.10352749 0.016923789 0.049239837 0.098677143 -0.034144171 -0.00025182351 0.11636377 -0.030180493 0.0006341351 0.11805172 -0.036303967 0.0048836926 0.11646242 -0.027404755 0.055890732 0.093457535 -0.033210844 0.057045083 0.086798772 -0.033650767 0.051957011 0.097126305 -0.024521386 0.0094373599 0.12064522 -0.031012025 0.013138549 0.11937436 -0.030180493 0.0006341351 0.11805172 0.036620203 0.049723189 0.092623673 0.030733822 0.044053111 0.10022265 0.060919765 0.043111097 0.090702362 -0.030180493 0.0006341351 0.11805172 -0.031012025 0.013138549 0.11937436 -0.036303967 0.0048836926 0.11646242 -0.02636655 0.059162404 0.084408157 -0.033210844 0.057045083 0.086798772 -0.027404755 0.055890732 0.093457535 -0.019540455 0.0099242032 0.12079417 -0.018735468 0.019936169 0.12040487 -0.024521386 0.0094373599 0.12064522 -0.02636655 0.059162404 0.084408157 -0.030943567 0.059528444 0.077949584 -0.033210844 0.057045083 0.086798772 -0.033650767 0.051957011 0.097126305 -0.043096345 0.04962568 0.090232037 -0.042584531 0.043156531 0.099457979 -0.031012025 0.013138549 0.11937436 -0.036664005 0.017088722 0.11659499 -0.036303967 0.0048836926 0.11646242 -0.033650767 0.051957011 0.097126305 -0.033210844 0.057045083 0.086798772 -0.043096345 0.04962568 0.090232037 -0.018735468 0.019936169 0.12040487 -0.028337015 0.023766806 0.11887845 -0.024521386 0.0094373599 0.12064522 -0.02636655 0.059162404 0.084408157 0.0045906627 0.06190696 0.075769573 0.0054628868 0.063031353 0.064501986 -0.0029876225 0.002821842 0.11831517 -0.019540455 0.0099242032 0.12079417 -0.0044060056 -0.0042306571 0.1165828 0.042993717 0.024754314 0.10770231 0.062465627 0.015753035 0.10388485 0.062449712 0.028526865 0.09995003 0.0054628868 0.063031353 0.064501986 0.0045906627 0.06190696 0.075769573 0.021973392 0.062923305 0.065806255 0.042299327 0.062281504 0.056999765 0.030651933 0.061530139 0.070718169 0.054216299 0.05976082 0.064546853 -0.0009320926 0.034788601 0.11338719 -0.019185893 0.032720067 0.1167513 0.0033094112 0.030024877 0.11485231 0.042299327 0.062281504 0.056999765 0.021973392 0.062923305 0.065806255 0.030651933 0.061530139 0.070718169 0.025045108 0.034583393 0.10827848 0.0033094112 0.030024877 0.11485231 0.018015373 0.025528645 0.11364003 -0.0084113264 0.053190287 0.098141462 -0.020299491 0.045922082 0.10792665 0.00047251096 0.047761876 0.10352749 0.00057842059 -0.015938533 0.11053456 -0.0040192851 -0.023028085 0.10521941 0.021616949 -0.02213861 0.1043629 -0.024551284 -0.011704753 0.11369697 -0.025749231 -0.016944008 0.10976469 0.00057842059 -0.015938533 0.11053456 -0.012874945 0.061890043 0.069938764 -0.030943567 0.059528444 0.077949584 -0.02636655 0.059162404 0.084408157 0.025045108 0.034583393 0.10827848 0.018015373 0.025528645 0.11364003 0.042993717 0.024754314 0.10770231 -0.012874945 0.061890043 0.069938764 -0.02636655 0.059162404 0.084408157 0.0054628868 0.063031353 0.064501986 0.053622305 0.029281855 0.10266705 0.042993717 0.024754314 0.10770231 0.062449712 0.028526865 0.09995003 0.050178904 0.061652273 0.051270921 0.042299327 0.062281504 0.056999765 0.054216299 0.05976082 0.064546853 0.053622305 0.029281855 0.10266705 0.025045108 0.034583393 0.10827848 0.042993717 0.024754314 0.10770231 0.04338906 -0.02362272 0.099755503 0.021616949 -0.02213861 0.1043629 0.032095492 -0.028949086 0.097253166 0.04338906 -0.02362272 0.099755503 0.032095492 -0.028949086 0.097253166 0.054458488 -0.029198108 0.092873409 0.056289073 -0.024012256 0.096544214 0.054458488 -0.029198108 0.092873409 0.054604985 -0.029213311 0.092828505 0.026975127 -0.018583968 0.10602003 0.00057842059 -0.015938533 0.11053456 0.021616949 -0.02213861 0.1043629 0.022679972 0.063106462 0.056455389 0.021973392 0.062923305 0.065806255 0.042299327 0.062281504 0.056999765 0.04338906 -0.02362272 0.099755503 0.054458488 -0.029198108 0.092873409 0.056289073 -0.024012256 0.096544214 0.021868097 0.037704177 0.10723658 0.0033094112 0.030024877 0.11485231 0.025045108 0.034583393 0.10827848 -0.0055256407 -0.0093231825 0.11458748 -0.024551284 -0.011704753 0.11369697 0.00057842059 -0.015938533 0.11053456 0.062106889 0.03391926 0.097227633 0.053622305 0.029281855 0.10266705 0.062449712 0.028526865 0.09995003 0.026975127 -0.018583968 0.10602003 0.021616949 -0.02213861 0.1043629 0.04338906 -0.02362272 0.099755503 0.022679972 0.063106462 0.056455389 0.0054628868 0.063031353 0.064501986 0.021973392 0.062923305 0.065806255 0.025045108 0.034583393 0.10827848 0.053622305 0.029281855 0.10266705 0.042263534 0.036887005 0.10219168 -0.0009320926 0.034788601 0.11338719 0.0033094112 0.030024877 0.11485231 0.021868097 0.037704177 0.10723658 0.0098206876 -0.011423478 0.11220051 0.00057842059 -0.015938533 0.11053456 0.026975127 -0.018583968 0.10602003 -0.024551284 -0.011704753 0.11369697 -0.0055256407 -0.0093231825 0.11458748 -0.022032628 -0.0021981157 0.11834625 0.042263534 0.036887005 0.10219168 0.053622305 0.029281855 0.10266705 0.062106889 0.03391926 0.097227633 -0.022032628 -0.0021981157 0.11834625 -0.0044060056 -0.0042306571 0.1165828 -0.019540455 0.0099242032 0.12079417 0.022679972 0.063106462 0.056455389 0.042299327 0.062281504 0.056999765 0.050178904 0.061652273 0.051270921 -0.019185893 0.032720067 0.1167513 -0.0009320926 0.034788601 0.11338719 -0.019463914 0.041864615 0.11132536 0.044485893 -0.019262936 0.10235874 0.04338906 -0.02362272 0.099755503 0.056289073 -0.024012256 0.096544214 0.0047839209 0.043887053 0.10635936 -0.0009320926 0.034788601 0.11338719 0.021868097 0.037704177 0.10723658 -0.0029876225 0.002821842 0.11831517 -0.0044060056 -0.0042306571 0.1165828 0.010483971 -0.00041803526 0.11592548 0.044485893 -0.019262936 0.10235874 0.026975127 -0.018583968 0.10602003 0.04338906 -0.02362272 0.099755503 0.042263534 0.036887005 0.10219168 0.021868097 0.037704177 0.10723658 0.025045108 0.034583393 0.10827848 -0.030943567 0.059528444 0.077949584 -0.012874945 0.061890043 0.069938764 -0.032259826 0.058792591 0.065924816 0.0098206876 -0.011423478 0.11220051 -0.0055256407 -0.0093231825 0.11458748 0.00057842059 -0.015938533 0.11053456 0.0032963764 0.06250748 0.057943746 -0.019015102 0.060583547 0.062518187 -0.012874945 0.061890043 0.069938764 0.0032963764 0.06250748 0.057943746 -0.012874945 0.061890043 0.069938764 0.0054628868 0.063031353 0.064501986 0.016923789 0.049239837 0.098677143 0.030733822 0.044053111 0.10022265 0.036620203 0.049723189 0.092623673 0.0032963764 0.06250748 0.057943746 0.0054628868 0.063031353 0.064501986 0.022679972 0.063106462 0.056455389 0.048829254 0.061513677 0.047068998 0.022679972 0.063106462 0.056455389 0.050178904 0.061652273 0.051270921 -0.0044060056 -0.0042306571 0.1165828 -0.022032628 -0.0021981157 0.11834625 -0.0055256407 -0.0093231825 0.11458748 -0.019463914 0.041864615 0.11132536 -0.0009320926 0.034788601 0.11338719 0.0047839209 0.043887053 0.10635936 -0.019015102 0.060583547 0.062518187 -0.032259826 0.058792591 0.065924816 -0.012874945 0.061890043 0.069938764 -0.0044060056 -0.0042306571 0.1165828 -0.0055256407 -0.0093231825 0.11458748 0.0098206876 -0.011423478 0.11220051 0.030733822 0.044053111 0.10022265 0.021868097 0.037704177 0.10723658 0.042263534 0.036887005 0.10219168 0.016897606 0.062131885 0.050025687 0.0032963764 0.06250748 0.057943746 0.022679972 0.063106462 0.056455389 0.04286762 -0.01139048 0.10654164 0.026975127 -0.018583968 0.10602003 0.044485893 -0.019262936 0.10235874 -0.010192692 0.060054809 0.053774301 -0.019015102 0.060583547 0.062518187 0.0032963764 0.06250748 0.057943746 0.0098206876 -0.011423478 0.11220051 0.026975127 -0.018583968 0.10602003 0.04286762 -0.01139048 0.10654164 0.0049751415 0.060160458 0.04674026 0.016897606 0.062131885 0.050025687 0.029617677 0.061106861 0.043011073 0.0047839209 0.043887053 0.10635936 0.021868097 0.037704177 0.10723658 0.030733822 0.044053111 0.10022265 0.029617677 0.061106861 0.043011073 0.022679972 0.063106462 0.056455389 0.048829254 0.061513677 0.047068998 0.058886711 -0.013650385 0.10156441 0.044485893 -0.019262936 0.10235874 0.056289073 -0.024012256 0.096544214 0.029617677 0.061106861 0.043011073 0.016897606 0.062131885 0.050025687 0.022679972 0.063106462 0.056455389 0.060919765 0.043111097 0.090702362 0.030733822 0.044053111 0.10022265 0.042263534 0.036887005 0.10219168 0.047749616 -0.0053371233 0.10732019 0.019660667 -0.005864718 0.11302453 0.04286762 -0.01139048 0.10654164 -0.0044060056 -0.0042306571 0.1165828 0.0098206876 -0.011423478 0.11220051 0.019660667 -0.005864718 0.11302453 0.060919765 0.043111097 0.090702362 0.042263534 0.036887005 0.10219168 0.062106889 0.03391926 0.097227633 -0.010192692 0.060054809 0.053774301 0.0032963764 0.06250748 0.057943746 0.0049751415 0.060160458 0.04674026 0.04286762 -0.01139048 0.10654164 0.044485893 -0.019262936 0.10235874 0.058886711 -0.013650385 0.10156441 -0.034328844 0.057305098 0.061605133 -0.032259826 0.058792591 0.065924816 -0.019015102 0.060583547 0.062518187 0.0049751415 0.060160458 0.04674026 0.0032963764 0.06250748 0.057943746 0.016897606 0.062131885 0.050025687 0.00047251096 0.047761876 0.10352749 -0.020299491 0.045922082 0.10792665 -0.019463914 0.041864615 0.11132536 0.016923789 0.049239837 0.098677143 0.0047839209 0.043887053 0.10635936 0.030733822 0.044053111 0.10022265 0.00047251096 0.047761876 0.10352749 0.0047839209 0.043887053 0.10635936 0.016923789 0.049239837 0.098677143 0.00047251096 0.047761876 0.10352749 -0.019463914 0.041864615 0.11132536 0.0047839209 0.043887053 0.10635936 0.019660667 -0.005864718 0.11302453 0.0098206876 -0.011423478 0.11220051 0.04286762 -0.01139048 0.10654164 0.044186581 0.058487639 0.033383161 0.029617677 0.061106861 0.043011073 0.048829254 0.061513677 0.047068998 -0.034328844 0.057305098 0.061605133 -0.019015102 0.060583547 0.062518187 -0.010192692 0.060054809 0.053774301 0.010483971 -0.00041803526 0.11592548 -0.0044060056 -0.0042306571 0.1165828 0.019660667 -0.005864718 0.11302453 + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722

+
+
+
+
+ + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + + + + + + + + + + + + + +
diff --git a/external/rlbench/urdfs/panda/meshes/Pandalink3visual_vis_2.dae b/external/rlbench/urdfs/panda/meshes/Pandalink3visual_vis_2.dae new file mode 100644 index 0000000000000000000000000000000000000000..6a59506086a4533822219698113e497a6fe6d787 --- /dev/null +++ b/external/rlbench/urdfs/panda/meshes/Pandalink3visual_vis_2.dae @@ -0,0 +1,84 @@ + + + + + Assimp + Assimp Exporter + + 2023-09-26T11:24:21 + 2023-09-26T11:24:21 + + Y_UP + + + + + + + + 0 0 0 4.5895327e-41 + + + 0.40000001 0.40000001 0.40000001 4.5893926e-41 + + + 0.40000001 0.40000001 0.40000001 4.5893926e-41 + + + 0.25 0.25 0.25 3.6295857e-33 + + + + + + + + + + + + + + + + -0.038854823 0.029248143 0.014004549 -0.041240033 0.021481087 0.007967337 -0.041000526 0.016730463 0.011100228 -0.034359619 0.027206441 0.013623643 -0.040480163 0.016906902 0.014356372 -0.038627185 0.028212827 0.016929857 -0.036945622 0.016580915 0.011902905 -0.040480163 0.016906902 0.014356372 -0.034359619 0.027206441 0.013623643 -0.041000526 0.016730463 0.011100228 -0.040480163 0.016906902 0.014356372 -0.036945622 0.016580915 0.011902905 -0.03748145 0.016578048 0.0081479959 -0.041000526 0.016730463 0.011100228 -0.036945622 0.016580915 0.011902905 -0.042416494 -0.0043550604 0.013143318 -0.043227464 -0.0023776055 0.008869892 -0.042083472 -0.012380072 0.016625753 -0.038854823 0.029248143 0.014004549 -0.037806738 0.035602737 0.014375174 -0.041240033 0.021481087 0.007967337 -0.034653176 0.028224597 0.010219814 -0.038854823 0.029248143 0.014004549 -0.03748145 0.016578048 0.0081479959 -0.042416494 -0.0043550604 0.013143318 -0.041777678 0.0086117024 0.010721757 -0.043227464 -0.0023776055 0.008869892 -0.041777678 0.0086117024 0.010721757 -0.041240033 0.021481087 0.007967337 -0.043227464 -0.0023776055 0.008869892 -0.042083472 -0.012380072 0.016625753 -0.043227464 -0.0023776055 0.008869892 -0.041566826 -0.024855593 0.021244243 -0.03748145 0.016578048 0.0081479959 -0.038854823 0.029248143 0.014004549 -0.041000526 0.016730463 0.011100228 -0.038627185 0.028212827 0.016929857 -0.038854823 0.029248143 0.014004549 -0.034653176 0.028224597 0.010219814 -0.034359619 0.027206441 0.013623643 -0.038627185 0.028212827 0.016929857 -0.034653176 0.028224597 0.010219814 -0.040831659 -0.022119282 0.023325728 -0.042083472 -0.012380072 0.016625753 -0.041566826 -0.024855593 0.021244243 -0.038429335 0.0090687387 0.0091179851 -0.041777678 0.0086117024 0.010721757 -0.038888872 -3.4897628e-05 0.0089956764 -0.038888872 -3.4897628e-05 0.0089956764 -0.041777678 0.0086117024 0.010721757 -0.042416494 -0.0043550604 0.013143318 -0.038888872 -3.4897628e-05 0.0089956764 -0.042416494 -0.0043550604 0.013143318 -0.03858358 -0.0055775107 0.010979182 -0.037946217 0.0082434863 0.011704202 -0.042175572 0.0084950617 0.015958484 -0.038429335 0.0090687387 0.0091179851 -0.038429335 0.0090687387 0.0091179851 -0.042175572 0.0084950617 0.015958484 -0.041777678 0.0086117024 0.010721757 -0.037946217 0.0082434863 0.011704202 -0.041755732 -0.0034368206 0.016592661 -0.042175572 0.0084950617 0.015958484 -0.037560973 -0.004098759 0.013409954 -0.041755732 -0.0034368206 0.016592661 -0.037946217 0.0082434863 0.011704202 -0.03858358 -0.0055775107 0.010979182 -0.042416494 -0.0043550604 0.013143318 -0.041755732 -0.0034368206 0.016592661 -0.03858358 -0.0055775107 0.010979182 -0.041755732 -0.0034368206 0.016592661 -0.037560973 -0.004098759 0.013409954 -0.03645397 -0.011731729 0.015977029 -0.040279362 -0.020562377 0.026384708 -0.04206967 -0.009948709 0.020963609 -0.034399424 -0.021417888 0.021764765 -0.040279362 -0.020562377 0.026384708 -0.03645397 -0.011731729 0.015977029 -0.03645397 -0.011731729 0.015977029 -0.04206967 -0.009948709 0.020963609 -0.042083472 -0.012380072 0.016625753 -0.040065371 -0.022063151 0.025475597 -0.040831659 -0.022119282 0.023325728 -0.041566826 -0.024855593 0.021244243 -0.03645397 -0.011731729 0.015977029 -0.042083472 -0.012380072 0.016625753 -0.03792255 -0.013007667 0.013318659 -0.035747945 0.038561195 0.021391539 -0.037806738 0.035602737 0.014375174 -0.038854823 0.029248143 0.014004549 -0.03792255 -0.013007667 0.013318659 -0.042083472 -0.012380072 0.016625753 -0.040831659 -0.022119282 0.023325728 -0.03792255 -0.013007667 0.013318659 -0.040831659 -0.022119282 0.023325728 -0.035994746 -0.023205895 0.019592542 -0.036928244 -0.029771565 0.038775202 -0.040065371 -0.022063151 0.025475597 -0.041566826 -0.024855593 0.021244243 -0.034399424 -0.021417888 0.021764765 -0.040065371 -0.022063151 0.025475597 -0.040279362 -0.020562377 0.026384708 -0.041777678 0.0086117024 0.010721757 -0.041000526 0.016730463 0.011100228 -0.041240033 0.021481087 0.007967337 -0.041777678 0.0086117024 0.010721757 -0.040480163 0.016906902 0.014356372 -0.041000526 0.016730463 0.011100228 -0.040121824 -0.022181464 0.025260596 -0.035994746 -0.023205895 0.019592542 -0.040831659 -0.022119282 0.023325728 -0.040065371 -0.022063151 0.025475597 -0.035994746 -0.023205895 0.019592542 -0.040121853 -0.022181364 0.025260611 -0.040193252 -0.028085724 0.025986584 -0.034174711 -0.032375213 0.045637153 -0.036928244 -0.029771565 0.038775202 -0.040121853 -0.022181364 0.025260611 -0.035994746 -0.023205895 0.019592542 -0.040121824 -0.022181464 0.025260596 -0.035994746 -0.023205895 0.019592542 -0.040065371 -0.022063151 0.025475597 -0.034399424 -0.021417888 0.021764765 -0.040831659 -0.022119282 0.023325728 -0.040065371 -0.022063151 0.025475597 -0.040121824 -0.022181464 0.025260596 -0.0039713024 -0.011819019 0.11676566 -0.0066614212 -0.021065919 0.11100798 -0.0022881541 -0.0078125102 0.11521715 -0.039147954 -0.013273326 0.0093988124 -0.039325558 0.0015612912 0.0048543909 -0.038888872 -3.4897628e-05 0.0089956764 -0.0022881541 -0.0078125102 0.11521715 -0.0010439414 0.0038215646 0.12149038 -0.0039713024 -0.011819019 0.11676566 -0.032717053 0.02157186 0.018683532 -0.027488016 0.038948566 0.026323473 -0.026978675 0.034099877 0.026293054 -0.041566826 -0.024855593 0.021244243 -0.040193252 -0.028085724 0.025986584 -0.036928244 -0.029771565 0.038775202 -0.0022881541 -0.0078125102 0.11521715 0.0005858707 0.0077457307 0.11900624 -0.0010439414 0.0038215646 0.12149038 -0.032976657 0.0047677197 0.017330976 -0.034043603 -0.0071825786 0.017311485 -0.037560973 -0.004098759 0.013409954 -0.036945622 0.016580915 0.011902905 -0.034653176 0.028224597 0.010219814 -0.028971231 0.042366277 0.021899901 -0.036945622 0.016580915 0.011902905 -0.028971231 0.042366277 0.021899901 -0.032717053 0.02157186 0.018683532 -0.038888872 -3.4897628e-05 0.0089956764 -0.039325558 0.0015612912 0.0048543909 -0.038429335 0.0090687387 0.0091179851 0.0015065146 0.026418678 0.11659373 0.00075405778 0.030070435 0.11860579 0.00039538168 0.019359989 0.12143892 -0.035890903 -0.030025031 0.023404462 -0.035994746 -0.023205895 0.019592542 -0.032023642 -0.026951816 0.029177565 -0.042864647 -0.01350043 0.013161188 -0.041566826 -0.024855593 0.021244243 -0.043227464 -0.0023776055 0.008869892 -0.042984568 0.0059956019 0.0074158604 -0.043227464 -0.0023776055 0.008869892 -0.041240033 0.021481087 0.007967337 -0.034653176 0.028224597 0.010219814 -0.033521637 0.036083557 0.011259639 -0.028971231 0.042366277 0.021899901 -0.035890903 -0.030025031 0.023404462 -0.037899293 -0.024841586 0.016128547 -0.035994746 -0.023205895 0.019592542 -0.037560973 -0.004098759 0.013409954 -0.037946217 0.0082434863 0.011704202 -0.032717053 0.02157186 0.018683532 -0.038429335 0.0090687387 0.0091179851 -0.039325558 0.0015612912 0.0048543909 -0.038603816 0.012090725 0.0038985524 -0.032717053 0.02157186 0.018683532 -0.028971231 0.042366277 0.021899901 -0.027488016 0.038948566 0.026323473 -0.037560973 -0.004098759 0.013409954 -0.032717053 0.02157186 0.018683532 -0.032976657 0.0047677197 0.017330976 0.0015065146 0.026418678 0.11659373 0.00012827061 0.040070195 0.11386516 0.00075405778 0.030070435 0.11860579 -0.037946217 0.0082434863 0.011704202 -0.038429335 0.0090687387 0.0091179851 -0.036945622 0.016580915 0.011902905 -0.026978675 0.034099877 0.026293054 -0.027488016 0.038948566 0.026323473 -0.022507312 0.048476405 0.035794593 -0.035994746 -0.023205895 0.019592542 -0.034399424 -0.021417888 0.021764765 -0.032023642 -0.026951816 0.029177565 -0.037899293 -0.024841586 0.016128547 -0.03792255 -0.013007667 0.013318659 -0.035994746 -0.023205895 0.019592542 0.00012827061 0.040070195 0.11386516 0.0015065146 0.026418678 0.11659373 -0.00026678471 0.046712022 0.1049545 -0.038429335 0.0090687387 0.0091179851 -0.03748145 0.016578048 0.0081479959 -0.036945622 0.016580915 0.011902905 -0.034399424 -0.021417888 0.021764765 -0.033726487 -0.018300969 0.020894419 -0.032023642 -0.026951816 0.029177565 -0.036812354 0.037808273 0.024553234 -0.031334754 0.046229184 0.030724876 -0.037806738 0.035602737 0.014375174 -0.035747945 0.038561195 0.021391539 -0.036812354 0.037808273 0.024553234 -0.037806738 0.035602737 0.014375174 -0.034399424 -0.021417888 0.021764765 -0.03645397 -0.011731729 0.015977029 -0.033726487 -0.018300969 0.020894419 -0.022507312 0.048476405 0.035794593 -0.027488016 0.038948566 0.026323473 -0.02338895 0.053128369 0.036630955 -0.037946217 0.0082434863 0.011704202 -0.036945622 0.016580915 0.011902905 -0.032717053 0.02157186 0.018683532 0.00012827061 0.040070195 0.11386516 -0.00026678471 0.046712022 0.1049545 -0.00071875425 0.045386136 0.11022544 -0.027488016 0.038948566 0.026323473 -0.028971231 0.042366277 0.021899901 -0.02338895 0.053128369 0.036630955 -0.00026678471 0.046712022 0.1049545 -0.0017887806 0.05171084 0.10429142 -0.00071875425 0.045386136 0.11022544 -0.032976657 0.0047677197 0.017330976 -0.032717053 0.02157186 0.018683532 -0.029998031 0.021668278 0.021282488 -0.038429335 0.0090687387 0.0091179851 -0.038603816 0.012090725 0.0038985524 -0.03748145 0.016578048 0.0081479959 -0.00026678471 0.046712022 0.1049545 -0.0027873083 0.055207402 0.10003511 -0.0017887806 0.05171084 0.10429142 -0.053283572 0.0096016321 0.028234472 -0.052779272 0.018373366 0.028413996 -0.042175572 0.0084950617 0.015958484 -0.022507312 0.048476405 0.035794593 -0.02338895 0.053128369 0.036630955 -0.019968631 0.058348343 0.045186546 -0.017821286 0.057482041 0.047580745 -0.022507312 0.048476405 0.035794593 -0.019968631 0.058348343 0.045186546 -0.0050059063 0.059401959 0.086124696 -0.0069582104 0.062913686 0.085128613 -0.0027873083 0.055207402 0.10003511 -0.017821286 0.057482041 0.047580745 -0.019968631 0.058348343 0.045186546 -0.014945822 0.063919403 0.05948323 -0.017821286 0.057482041 0.047580745 -0.014945822 0.063919403 0.05948323 -0.012370409 0.062660016 0.061593056 -0.033582695 0.060607415 0.060695276 -0.03351498 0.06203267 0.06713751 -0.014945822 0.063919403 0.05948323 -0.012370409 0.062660016 0.061593056 -0.014945822 0.063919403 0.05948323 -0.013450309 0.064721122 0.06381353 0.0005858707 0.0077457307 0.11900624 -0.00033612736 0.010812573 0.12206104 -0.0010439414 0.0038215646 0.12149038 -0.037899293 -0.024841586 0.016128547 -0.039147954 -0.013273326 0.0093988124 -0.03792255 -0.013007667 0.013318659 -0.0050059063 0.059401959 0.086124696 -0.010415658 0.062288247 0.068260528 -0.0093611898 0.064768776 0.076557294 -0.013450309 0.064721122 0.06381353 -0.010415658 0.062288247 0.068260528 -0.012370409 0.062660016 0.061593056 -0.0050059063 0.059401959 0.086124696 -0.0093611898 0.064768776 0.076557294 -0.0069582104 0.062913686 0.085128613 -0.019968631 0.058348343 0.045186546 -0.033582695 0.060607415 0.060695276 -0.014945822 0.063919403 0.05948323 -0.049461655 0.037106726 0.035426538 -0.038627185 0.028212827 0.016929857 -0.039374437 0.027341647 0.018132014 -0.010415658 0.062288247 0.068260528 -0.013450309 0.064721122 0.06381353 -0.0093611898 0.064768776 0.076557294 -0.00033612736 0.010812573 0.12206104 0.0005858707 0.0077457307 0.11900624 0.00039538168 0.019359989 0.12143892 -0.03792255 -0.013007667 0.013318659 -0.039147954 -0.013273326 0.0093988124 -0.03858358 -0.0055775107 0.010979182 -0.02043559 -0.039542276 0.073477112 -0.024219863 -0.038772047 0.062334232 -0.020371776 -0.03794216 0.068539336 -0.03645397 -0.011731729 0.015977029 -0.034043603 -0.0071825786 0.017311485 -0.033726487 -0.018300969 0.020894419 -0.036645036 0.057378046 0.054265954 -0.033582695 0.060607415 0.060695276 -0.019968631 0.058348343 0.045186546 -0.02043559 -0.039542276 0.073477112 -0.020371776 -0.03794216 0.068539336 -0.016655583 -0.03805707 0.085404389 -0.026680546 -0.03710093 0.053927541 -0.020371776 -0.03794216 0.068539336 -0.024219863 -0.038772047 0.062334232 -0.038603816 0.012090725 0.0038985524 -0.034653176 0.028224597 0.010219814 -0.03748145 0.016578048 0.0081479959 -0.052779272 0.018373366 0.028413996 -0.051992059 0.025020681 0.029489638 -0.040480163 0.016906902 0.014356372 0.00039538168 0.019359989 0.12143892 0.0005858707 0.0077457307 0.11900624 0.0015065146 0.026418678 0.11659373 -0.02338895 0.053128369 0.036630955 -0.036645036 0.057378046 0.054265954 -0.019968631 0.058348343 0.045186546 -0.035890903 -0.030025031 0.023404462 -0.032023642 -0.026951816 0.029177565 -0.026680546 -0.03710093 0.053927541 -0.052779272 0.018373366 0.028413996 -0.040480163 0.016906902 0.014356372 -0.042175572 0.0084950617 0.015958484 -0.016655583 -0.03805707 0.085404389 -0.020371776 -0.03794216 0.068539336 -0.010330528 -0.030126648 0.096706234 -0.011929085 -0.0326325 0.098091841 -0.016655583 -0.03805707 0.085404389 -0.010330528 -0.030126648 0.096706234 -0.032717053 0.02157186 0.018683532 -0.026978675 0.034099877 0.026293054 -0.029998031 0.021668278 0.021282488 -0.011929085 -0.0326325 0.098091841 -0.010330528 -0.030126648 0.096706234 -0.009421885 -0.027859841 0.10457504 -0.042175572 0.0084950617 0.015958484 -0.041755732 -0.0034368206 0.016592661 -0.053283572 0.0096016321 0.028234472 -0.034653176 0.028224597 0.010219814 -0.038603816 0.012090725 0.0038985524 -0.035746638 0.029432153 0.0061365445 -0.026680546 -0.03710093 0.053927541 -0.032023642 -0.026951816 0.029177565 -0.020371776 -0.03794216 0.068539336 -0.037560973 -0.004098759 0.013409954 -0.034043603 -0.0071825786 0.017311485 -0.03645397 -0.011731729 0.015977029 -0.037560973 -0.004098759 0.013409954 -0.03645397 -0.011731729 0.015977029 -0.03792255 -0.013007667 0.013318659 -0.039207038 0.060595948 0.069035836 -0.03351498 0.06203267 0.06713751 -0.033582695 0.060607415 0.060695276 -0.037560973 -0.004098759 0.013409954 -0.03792255 -0.013007667 0.013318659 -0.03858358 -0.0055775107 0.010979182 -0.034359619 0.027206441 0.013623643 -0.034653176 0.028224597 0.010219814 -0.036945622 0.016580915 0.011902905 -0.03858358 -0.0055775107 0.010979182 -0.039147954 -0.013273326 0.0093988124 -0.038888872 -3.4897628e-05 0.0089956764 -0.042745914 0.055745389 0.056614887 -0.033582695 0.060607415 0.060695276 -0.036645036 0.057378046 0.054265954 -0.035746638 0.029432153 0.0061365445 -0.033521637 0.036083557 0.011259639 -0.034653176 0.028224597 0.010219814 -0.020111034 0.044768441 0.030815832 -0.026978675 0.034099877 0.026293054 -0.022507312 0.048476405 0.035794593 -0.038935047 0.051112942 0.04386298 -0.036645036 0.057378046 0.054265954 -0.02338895 0.053128369 0.036630955 -0.022507312 0.048476405 0.035794593 -0.017821286 0.057482041 0.047580745 -0.020111034 0.044768441 0.030815832 -0.017821286 0.057482041 0.047580745 -0.010415658 0.062288247 0.068260528 -0.019861925 0.046198834 0.03367551 -0.012370409 0.062660016 0.061593056 -0.010415658 0.062288247 0.068260528 -0.017821286 0.057482041 0.047580745 -0.017821286 0.057482041 0.047580745 -0.019861925 0.046198834 0.03367551 -0.020111034 0.044768441 0.030815832 -0.038935047 0.051112942 0.04386298 -0.042745914 0.055745389 0.056614887 -0.036645036 0.057378046 0.054265954 -0.020111034 0.044768441 0.030815832 -0.019882489 0.026780155 0.017200751 -0.020730255 0.027150091 0.016486201 -0.020111034 0.044768441 0.030815832 -0.019861925 0.046198834 0.03367551 -0.019882489 0.026780155 0.017200751 -0.0027873083 0.055207402 0.10003511 -0.00026678471 0.046712022 0.1049545 -0.0050059063 0.059401959 0.086124696 -0.038935047 0.051112942 0.04386298 -0.028971231 0.042366277 0.021899901 -0.031334754 0.046229184 0.030724876 -0.038935047 0.051112942 0.04386298 -0.02338895 0.053128369 0.036630955 -0.028971231 0.042366277 0.021899901 -0.038935047 0.051112942 0.04386298 -0.046445303 0.046950988 0.044303507 -0.042745914 0.055745389 0.056614887 -0.046445303 0.046950988 0.044303507 -0.031334754 0.046229184 0.030724876 -0.036812354 0.037808273 0.024553234 0.0005858707 0.0077457307 0.11900624 -0.0022881541 -0.0078125102 0.11521715 0.0015065146 0.026418678 0.11659373 -0.010330528 -0.030126648 0.096706234 -0.0022881541 -0.0078125102 0.11521715 -0.009421885 -0.027859841 0.10457504 -0.046445303 0.046950988 0.044303507 -0.038935047 0.051112942 0.04386298 -0.031334754 0.046229184 0.030724876 -0.0022881541 -0.0078125102 0.11521715 -0.0066614212 -0.021065919 0.11100798 -0.009421885 -0.027859841 0.10457504 -0.026402386 0.015760427 0.014690553 -0.029998031 0.021668278 0.021282488 -0.026978675 0.034099877 0.026293054 -0.033582695 0.060607415 0.060695276 -0.042745914 0.055745389 0.056614887 -0.039207038 0.060595948 0.069035836 -0.029998031 0.021668278 0.021282488 -0.026402386 0.015760427 0.014690553 -0.032976657 0.0047677197 0.017330976 -0.026402386 0.015760427 0.014690553 -0.024229277 0.014833573 0.0099985478 -0.028800216 0.0036008509 0.012035852 -0.026402386 0.015760427 0.014690553 -0.028800216 0.0036008509 0.012035852 -0.032976657 0.0047677197 0.017330976 -0.028800216 0.0036008509 0.012035852 -0.034043603 -0.0071825786 0.017311485 -0.032976657 0.0047677197 0.017330976 -0.025765453 -0.02216964 0.015063163 -0.032023642 -0.026951816 0.029177565 -0.033726487 -0.018300969 0.020894419 -0.025178568 -0.031630404 0.032582432 -0.026860256 -0.034711611 0.047215439 -0.032023642 -0.026951816 0.029177565 -0.025178568 -0.031630404 0.032582432 -0.024745835 -0.033825327 0.04441192 -0.026860256 -0.034711611 0.047215439 -0.025765453 -0.02216964 0.015063163 -0.025178568 -0.031630404 0.032582432 -0.032023642 -0.026951816 0.029177565 -0.038627185 0.028212827 0.016929857 -0.049461655 0.037106726 0.035426538 -0.036812354 0.037808273 0.024553234 -0.049461655 0.037106726 0.035426538 -0.046445303 0.046950988 0.044303507 -0.036812354 0.037808273 0.024553234 -0.027091604 -0.011532158 0.0087590497 -0.028800216 0.0036008509 0.012035852 -0.026108785 0.0055150962 0.0071193655 -0.024745835 -0.033825327 0.04441192 -0.020371776 -0.03794216 0.068539336 -0.026860256 -0.034711611 0.047215439 -0.027091604 -0.011532158 0.0087590497 -0.034043603 -0.0071825786 0.017311485 -0.028800216 0.0036008509 0.012035852 -0.027091604 -0.011532158 0.0087590497 -0.033726487 -0.018300969 0.020894419 -0.034043603 -0.0071825786 0.017311485 -0.026108785 0.0055150962 0.0071193655 -0.028800216 0.0036008509 0.012035852 -0.024229277 0.014833573 0.0099985478 -0.020111034 0.044768441 0.030815832 -0.020730255 0.027150091 0.016486201 -0.026978675 0.034099877 0.026293054 -0.020730255 0.027150091 0.016486201 -0.026402386 0.015760427 0.014690553 -0.026978675 0.034099877 0.026293054 -0.051992059 0.025020681 0.029489638 -0.049461655 0.037106726 0.035426538 -0.039374437 0.027341647 0.018132014 -0.024229277 0.014833573 0.0099985478 -0.026402386 0.015760427 0.014690553 -0.020730255 0.027150091 0.016486201 -0.020730255 0.027150091 0.016486201 -0.019882489 0.026780155 0.017200751 -0.024229277 0.014833573 0.0099985478 -0.051992059 0.025020681 0.029489638 -0.039374437 0.027341647 0.018132014 -0.040480163 0.016906902 0.014356372 -0.019882489 0.026780155 0.017200751 -0.023538426 0.01317536 0.009747453 -0.024229277 0.014833573 0.0099985478 -0.024229277 0.014833573 0.0099985478 -0.023538426 0.01317536 0.009747453 -0.026108785 0.0055150962 0.0071193655 -0.026108785 0.0055150962 0.0071193655 -0.023538426 0.01317536 0.009747453 -0.026107265 -0.0083077559 0.0081996433 -0.025765453 -0.02216964 0.015063163 -0.026107265 -0.0083077559 0.0081996433 -0.02434775 -0.027131105 0.024357811 -0.025765453 -0.02216964 0.015063163 -0.02434775 -0.027131105 0.024357811 -0.025178568 -0.031630404 0.032582432 -0.025178568 -0.031630404 0.032582432 -0.02434775 -0.027131105 0.024357811 -0.024745835 -0.033825327 0.04441192 -0.029188875 0.027132558 0.12181212 -0.017377095 0.035452202 0.11887532 -0.029332992 0.036404021 0.11807127 -0.027091604 -0.011532158 0.0087590497 -0.025765453 -0.02216964 0.015063163 -0.033726487 -0.018300969 0.020894419 -0.026108785 0.0055150962 0.0071193655 -0.026107265 -0.0083077559 0.0081996433 -0.027091604 -0.011532158 0.0087590497 -0.026107265 -0.0083077559 0.0081996433 -0.025765453 -0.02216964 0.015063163 -0.027091604 -0.011532158 0.0087590497 -0.052625638 0.045179889 0.065888569 -0.056544125 0.039522301 0.055188045 -0.058115985 0.03432605 0.051796228 -0.058874905 -0.0095946947 0.062893689 -0.061034985 -0.0048154145 0.054585066 -0.059381083 -0.012883102 0.062221907 -0.042702504 0.04960287 0.095691532 -0.044583321 0.051765814 0.089093439 -0.052625638 0.045179889 0.065888569 -0.0388069 0.01797539 0.11756963 -0.038584348 0.029891947 0.1146495 -0.041371915 0.0052961516 0.11342724 -0.044911377 -0.010871278 0.1070866 -0.041371915 0.0052961516 0.11342724 -0.050278664 -0.019167298 0.092747487 -0.0388069 0.01797539 0.11756963 -0.041371915 0.0052961516 0.11342724 -0.041143991 0.001476055 0.11518776 -0.052625638 0.045179889 0.065888569 -0.058115985 0.03432605 0.051796228 -0.061128505 0.016814714 0.047693022 -0.044583321 0.051765814 0.089093439 -0.049351629 0.051719792 0.074078612 -0.052625638 0.045179889 0.065888569 -0.038584348 0.029891947 0.1146495 -0.039539825 0.039797511 0.10860413 -0.041371915 0.0052961516 0.11342724 -0.041371915 0.0052961516 0.11342724 -0.055443201 -0.019799696 0.076261528 -0.050278664 -0.019167298 0.092747487 -0.058874905 -0.0095946947 0.062893689 -0.061636835 0.0082448972 0.048728339 -0.061034985 -0.0048154145 0.054585066 -0.052625638 0.045179889 0.065888569 -0.049351629 0.051719792 0.074078612 -0.053406764 0.046772085 0.062796511 -0.041371915 0.0052961516 0.11342724 -0.058874905 -0.0095946947 0.062893689 -0.055443201 -0.019799696 0.076261528 -0.058874905 -0.0095946947 0.062893689 -0.056769703 -0.018345863 0.07208062 -0.055443201 -0.019799696 0.076261528 -0.058874905 -0.0095946947 0.062893689 -0.052625638 0.045179889 0.065888569 -0.061636835 0.0082448972 0.048728339 -0.052625638 0.045179889 0.065888569 -0.061128505 0.016814714 0.047693022 -0.061636835 0.0082448972 0.048728339 -0.052625638 0.045179889 0.065888569 -0.053406764 0.046772085 0.062796511 -0.056544125 0.039522301 0.055188045 -0.039539825 0.039797511 0.10860413 -0.052625638 0.045179889 0.065888569 -0.041371915 0.0052961516 0.11342724 -0.039539825 0.039797511 0.10860413 -0.040752877 0.04515617 0.10314511 -0.052625638 0.045179889 0.065888569 -0.058874905 -0.0095946947 0.062893689 -0.059381083 -0.012883102 0.062221907 -0.056769703 -0.018345863 0.07208062 -0.020094046 0.064303599 0.074827529 -0.039207038 0.060595948 0.069035836 -0.035994828 0.061088286 0.082363144 -0.020094046 0.064303599 0.074827529 -0.03351498 0.06203267 0.06713751 -0.039207038 0.060595948 0.069035836 -0.040752877 0.04515617 0.10314511 -0.042702504 0.04960287 0.095691532 -0.052625638 0.045179889 0.065888569 -0.031456336 0.06184246 0.084277533 -0.035994828 0.061088286 0.082363144 -0.033263925 0.057930537 0.094650924 -0.023636155 -0.0070975088 0.11982961 -0.02483703 0.0022278912 0.12290132 -0.032352056 -0.0049206773 0.11966994 -0.041143991 0.001476055 0.11518776 -0.041371915 0.0052961516 0.11342724 -0.044911377 -0.010871278 0.1070866 -0.055443201 -0.019799696 0.076261528 -0.04581245 -0.030833226 0.073210314 -0.042541761 -0.030857941 0.086629689 -0.056946222 -0.015040793 0.054888546 -0.051069524 -0.022219138 0.048451319 -0.049610719 -0.025852196 0.055693895 -0.049610719 -0.025852196 0.055693895 -0.056769703 -0.018345863 0.07208062 -0.056946222 -0.015040793 0.054888546 -0.05847482 0.0093604745 0.039185278 -0.061034985 -0.0048154145 0.054585066 -0.061636835 0.0082448972 0.048728339 -0.05847482 0.0093604745 0.039185278 -0.05838662 -0.0056123831 0.045478124 -0.061034985 -0.0048154145 0.054585066 -0.05847482 0.0093604745 0.039185278 -0.053283572 0.0096016321 0.028234472 -0.053567778 -0.003188641 0.031579629 -0.05847482 0.0093604745 0.039185278 -0.053567778 -0.003188641 0.031579629 -0.05838662 -0.0056123831 0.045478124 -0.05838662 -0.0056123831 0.045478124 -0.052917317 -0.013958785 0.038055792 -0.061034985 -0.0048154145 0.054585066 -0.061034985 -0.0048154145 0.054585066 -0.056946222 -0.015040793 0.054888546 -0.059381083 -0.012883102 0.062221907 -0.020921309 0.0096948445 0.12405073 -0.022017442 0.020021744 0.12378182 -0.029642031 0.01628173 0.1236003 -0.025660301 -0.013036723 0.11658268 -0.032352056 -0.0049206773 0.11966994 -0.034055743 -0.012825661 0.11519111 -0.052917317 -0.013958785 0.038055792 -0.056946222 -0.015040793 0.054888546 -0.061034985 -0.0048154145 0.054585066 -0.05838662 -0.0056123831 0.045478124 -0.053567778 -0.003188641 0.031579629 -0.052917317 -0.013958785 0.038055792 -0.056946222 -0.015040793 0.054888546 -0.056769703 -0.018345863 0.07208062 -0.059381083 -0.012883102 0.062221907 -0.052917317 -0.013958785 0.038055792 -0.051069524 -0.022219138 0.048451319 -0.056946222 -0.015040793 0.054888546 -0.056769703 -0.018345863 0.07208062 -0.04581245 -0.030833226 0.073210314 -0.055443201 -0.019799696 0.076261528 -0.056769703 -0.018345863 0.07208062 -0.049610719 -0.025852196 0.055693895 -0.04581245 -0.030833226 0.073210314 -0.042541761 -0.030857941 0.086629689 -0.050278664 -0.019167298 0.092747487 -0.055443201 -0.019799696 0.076261528 -0.05847482 0.0093604745 0.039185278 -0.061636835 0.0082448972 0.048728339 -0.061128505 0.016814714 0.047693022 -0.05847482 0.0093604745 0.039185278 -0.061128505 0.016814714 0.047693022 -0.057112891 0.015813136 0.036686726 -0.053283572 0.0096016321 0.028234472 -0.05847482 0.0093604745 0.039185278 -0.057112891 0.015813136 0.036686726 -0.025660301 -0.013036723 0.11658268 -0.023636155 -0.0070975088 0.11982961 -0.032352056 -0.0049206773 0.11966994 -0.057112891 0.015813136 0.036686726 -0.051992059 0.025020681 0.029489638 -0.052779272 0.018373366 0.028413996 -0.057112891 0.015813136 0.036686726 -0.052779272 0.018373366 0.028413996 -0.053283572 0.0096016321 0.028234472 -0.020802418 0.044378605 0.11354988 -0.025018685 0.049829662 0.10852939 -0.030434255 0.048393998 0.10918472 -0.061128505 0.016814714 0.047693022 -0.058115985 0.03432605 0.051796228 -0.055239733 0.030148249 0.040096257 -0.02483703 0.0022278912 0.12290132 -0.029642031 0.01628173 0.1236003 -0.032352056 -0.0049206773 0.11966994 -0.061128505 0.016814714 0.047693022 -0.055239733 0.030148249 0.040096257 -0.057112891 0.015813136 0.036686726 -0.057112891 0.015813136 0.036686726 -0.055239733 0.030148249 0.040096257 -0.051992059 0.025020681 0.029489638 -0.058115985 0.03432605 0.051796228 -0.056544125 0.039522301 0.055188045 -0.055239733 0.030148249 0.040096257 -0.051992059 0.025020681 0.029489638 -0.055239733 0.030148249 0.040096257 -0.049461655 0.037106726 0.035426538 -0.055239733 0.030148249 0.040096257 -0.056544125 0.039522301 0.055188045 -0.049461655 0.037106726 0.035426538 -0.056544125 0.039522301 0.055188045 -0.053406764 0.046772085 0.062796511 -0.046445303 0.046950988 0.044303507 -0.049461655 0.037106726 0.035426538 -0.056544125 0.039522301 0.055188045 -0.046445303 0.046950988 0.044303507 -0.02483703 0.0022278912 0.12290132 -0.020921309 0.0096948445 0.12405073 -0.029642031 0.01628173 0.1236003 -0.027545022 -0.020607093 0.11064494 -0.025660301 -0.013036723 0.11658268 -0.034055743 -0.012825661 0.11519111 -0.020802418 0.044378605 0.11354988 -0.030434255 0.048393998 0.10918472 -0.029332992 0.036404021 0.11807127 -0.046445303 0.046950988 0.044303507 -0.053406764 0.046772085 0.062796511 -0.042745914 0.055745389 0.056614887 -0.022734847 0.025937404 0.12267101 -0.017377095 0.035452202 0.11887532 -0.029188875 0.027132558 0.12181212 -0.049351629 0.051719792 0.074078612 -0.042745914 0.055745389 0.056614887 -0.053406764 0.046772085 0.062796511 -0.049351629 0.051719792 0.074078612 -0.039207038 0.060595948 0.069035836 -0.042745914 0.055745389 0.056614887 -0.034055743 -0.012825661 0.11519111 -0.041143991 0.001476055 0.11518776 -0.044911377 -0.010871278 0.1070866 -0.034055743 -0.012825661 0.11519111 -0.044911377 -0.010871278 0.1070866 -0.037004896 -0.022055497 0.1064399 -0.035994828 0.061088286 0.082363144 -0.039207038 0.060595948 0.069035836 -0.049351629 0.051719792 0.074078612 -0.039738249 -0.027778069 0.097035259 -0.050278664 -0.019167298 0.092747487 -0.042541761 -0.030857941 0.086629689 -0.044911377 -0.010871278 0.1070866 -0.050278664 -0.019167298 0.092747487 -0.037004896 -0.022055497 0.1064399 -0.037004896 -0.022055497 0.1064399 -0.050278664 -0.019167298 0.092747487 -0.039738249 -0.027778069 0.097035259 -0.033263925 0.057930537 0.094650924 -0.040752877 0.04515617 0.10314511 -0.030434255 0.048393998 0.10918472 -0.027545022 -0.020607093 0.11064494 -0.034055743 -0.012825661 0.11519111 -0.037004896 -0.022055497 0.1064399 -0.029188875 0.027132558 0.12181212 -0.0388069 0.01797539 0.11756963 -0.029642031 0.01628173 0.1236003 -0.038584348 0.029891947 0.1146495 -0.029188875 0.027132558 0.12181212 -0.029332992 0.036404021 0.11807127 -0.038584348 0.029891947 0.1146495 -0.0388069 0.01797539 0.11756963 -0.029188875 0.027132558 0.12181212 -0.044583321 0.051765814 0.089093439 -0.042702504 0.04960287 0.095691532 -0.033263925 0.057930537 0.094650924 -0.044583321 0.051765814 0.089093439 -0.033263925 0.057930537 0.094650924 -0.035994828 0.061088286 0.082363144 -0.033263925 0.057930537 0.094650924 -0.042702504 0.04960287 0.095691532 -0.040752877 0.04515617 0.10314511 -0.01898687 -0.029147249 0.10210201 -0.027545022 -0.020607093 0.11064494 -0.037004896 -0.022055497 0.1064399 -0.030434255 0.048393998 0.10918472 -0.040752877 0.04515617 0.10314511 -0.039539825 0.039797511 0.10860413 -0.039539825 0.039797511 0.10860413 -0.029332992 0.036404021 0.11807127 -0.030434255 0.048393998 0.10918472 -0.039539825 0.039797511 0.10860413 -0.038584348 0.029891947 0.1146495 -0.029332992 0.036404021 0.11807127 -0.029642031 0.01628173 0.1236003 -0.0388069 0.01797539 0.11756963 -0.041143991 0.001476055 0.11518776 -0.041143991 0.001476055 0.11518776 -0.032352056 -0.0049206773 0.11966994 -0.029642031 0.01628173 0.1236003 -0.032352056 -0.0049206773 0.11966994 -0.041143991 0.001476055 0.11518776 -0.034055743 -0.012825661 0.11519111 -0.037004896 -0.022055497 0.1064399 -0.039738249 -0.027778069 0.097035259 -0.031821635 -0.028805537 0.099602476 -0.037004896 -0.022055497 0.1064399 -0.031821635 -0.028805537 0.099602476 -0.01898687 -0.029147249 0.10210201 -0.035994828 0.061088286 0.082363144 -0.049351629 0.051719792 0.074078612 -0.044583321 0.051765814 0.089093439 -0.04581245 -0.030833226 0.073210314 -0.039431348 -0.033810671 0.073908612 -0.042541761 -0.030857941 0.086629689 -0.031456336 0.06184246 0.084277533 -0.020094046 0.064303599 0.074827529 -0.035994828 0.061088286 0.082363144 -0.053283572 0.0096016321 0.028234472 -0.041755732 -0.0034368206 0.016592661 -0.053567778 -0.003188641 0.031579629 -0.041912083 -0.031184124 0.057950467 -0.034174711 -0.032375213 0.045637153 -0.026680546 -0.03710093 0.053927541 -0.031456336 0.06184246 0.084277533 -0.033263925 0.057930537 0.094650924 -0.025206264 0.061684463 0.087864682 -0.042541761 -0.030857941 0.086629689 -0.039431348 -0.033810671 0.073908612 -0.035873428 -0.033858072 0.084669739 -0.041755732 -0.0034368206 0.016592661 -0.04206967 -0.009948709 0.020963609 -0.053567778 -0.003188641 0.031579629 -0.053567778 -0.003188641 0.031579629 -0.04206967 -0.009948709 0.020963609 -0.052917317 -0.013958785 0.038055792 -0.052917317 -0.013958785 0.038055792 -0.046747517 -0.020298043 0.036832981 -0.051069524 -0.022219138 0.048451319 -0.026680546 -0.03710093 0.053927541 -0.024219863 -0.038772047 0.062334232 -0.039431348 -0.033810671 0.073908612 -0.026537506 0.056296486 0.099920586 -0.025206264 0.061684463 0.087864682 -0.033263925 0.057930537 0.094650924 -0.025018685 0.049829662 0.10852939 -0.026537506 0.056296486 0.099920586 -0.033263925 0.057930537 0.094650924 -0.025018685 0.049829662 0.10852939 -0.033263925 0.057930537 0.094650924 -0.030434255 0.048393998 0.10918472 -0.052917317 -0.013958785 0.038055792 -0.04105835 -0.020256387 0.028626844 -0.046747517 -0.020298043 0.036832981 -0.046747517 -0.020298043 0.036832981 -0.04105835 -0.020256387 0.028626844 -0.040279362 -0.020562377 0.026384708 -0.022734847 0.025937404 0.12267101 -0.029188875 0.027132558 0.12181212 -0.029642031 0.01628173 0.1236003 -0.022017442 0.020021744 0.12378182 -0.022734847 0.025937404 0.12267101 -0.029642031 0.01628173 0.1236003 -0.039431348 -0.033810671 0.073908612 -0.024219863 -0.038772047 0.062334232 -0.02043559 -0.039542276 0.073477112 -0.039431348 -0.033810671 0.073908612 -0.02043559 -0.039542276 0.073477112 -0.035873428 -0.033858072 0.084669739 -0.035873428 -0.033858072 0.084669739 -0.02043559 -0.039542276 0.073477112 -0.016655583 -0.03805707 0.085404389 -0.049610719 -0.025852196 0.055693895 -0.041912083 -0.031184124 0.057950467 -0.04581245 -0.030833226 0.073210314 -0.017377095 0.035452202 0.11887532 -0.020802418 0.044378605 0.11354988 -0.029332992 0.036404021 0.11807127 -0.049610719 -0.025852196 0.055693895 -0.034174711 -0.032375213 0.045637153 -0.041912083 -0.031184124 0.057950467 -0.039431348 -0.033810671 0.073908612 -0.041912083 -0.031184124 0.057950467 -0.026680546 -0.03710093 0.053927541 -0.052917317 -0.013958785 0.038055792 -0.04206967 -0.009948709 0.020963609 -0.04105835 -0.020256387 0.028626844 -0.051069524 -0.022219138 0.048451319 -0.046747517 -0.020298043 0.036832981 -0.049610719 -0.025852196 0.055693895 -0.046747517 -0.020298043 0.036832981 -0.034174711 -0.032375213 0.045637153 -0.049610719 -0.025852196 0.055693895 -0.046747517 -0.020298043 0.036832981 -0.040279362 -0.020562377 0.026384708 -0.034174711 -0.032375213 0.045637153 -0.041912083 -0.031184124 0.057950467 -0.039431348 -0.033810671 0.073908612 -0.04581245 -0.030833226 0.073210314 -0.035873428 -0.033858072 0.084669739 -0.039738249 -0.027778069 0.097035259 -0.042541761 -0.030857941 0.086629689 -0.035245486 -0.032373231 0.090375319 -0.031821635 -0.028805537 0.099602476 -0.039738249 -0.027778069 0.097035259 -0.035245486 -0.032373231 0.090375319 -0.039738249 -0.027778069 0.097035259 -0.035873428 -0.033858072 0.084669739 -0.016655583 -0.03805707 0.085404389 -0.035245486 -0.032373231 0.090375319 -0.035873428 -0.033858072 0.084669739 -0.031821635 -0.028805537 0.099602476 -0.016655583 -0.03805707 0.085404389 -0.011929085 -0.0326325 0.098091841 -0.031821635 -0.028805537 0.099602476 -0.035245486 -0.032373231 0.090375319 -0.016655583 -0.03805707 0.085404389 -0.0010439414 0.0038215646 0.12149038 -0.020921309 0.0096948445 0.12405073 -0.02483703 0.0022278912 0.12290132 -0.014945822 0.063919403 0.05948323 -0.03351498 0.06203267 0.06713751 -0.013450309 0.064721122 0.06381353 -0.017377095 0.035452202 0.11887532 0.00075405778 0.030070435 0.11860579 0.00012827061 0.040070195 0.11386516 -0.025018685 0.049829662 0.10852939 -0.020802418 0.044378605 0.11354988 -0.0017887806 0.05171084 0.10429142 -0.0017887806 0.05171084 0.10429142 -0.020802418 0.044378605 0.11354988 -0.00071875425 0.045386136 0.11022544 -0.017377095 0.035452202 0.11887532 0.00012827061 0.040070195 0.11386516 -0.020802418 0.044378605 0.11354988 -0.020921309 0.0096948445 0.12405073 -0.0010439414 0.0038215646 0.12149038 -0.00033612736 0.010812573 0.12206104 -0.013450309 0.064721122 0.06381353 -0.03351498 0.06203267 0.06713751 -0.020094046 0.064303599 0.074827529 -0.020094046 0.064303599 0.074827529 -0.031456336 0.06184246 0.084277533 -0.025206264 0.061684463 0.087864682 -0.0069582104 0.062913686 0.085128613 -0.025206264 0.061684463 0.087864682 -0.026537506 0.056296486 0.099920586 -0.013109332 0.057743881 0.097347789 -0.0069582104 0.062913686 0.085128613 -0.026537506 0.056296486 0.099920586 -0.023636155 -0.0070975088 0.11982961 -0.0039713024 -0.011819019 0.11676566 -0.0010439414 0.0038215646 0.12149038 -0.020802418 0.044378605 0.11354988 0.00012827061 0.040070195 0.11386516 -0.00071875425 0.045386136 0.11022544 -0.023636155 -0.0070975088 0.11982961 -0.025660301 -0.013036723 0.11658268 -0.0039713024 -0.011819019 0.11676566 -0.017377095 0.035452202 0.11887532 -0.022734847 0.025937404 0.12267101 0.00075405778 0.030070435 0.11860579 -0.042175572 0.0084950617 0.015958484 -0.040480163 0.016906902 0.014356372 -0.041777678 0.0086117024 0.010721757 -0.025660301 -0.013036723 0.11658268 -0.0066614212 -0.021065919 0.11100798 -0.0039713024 -0.011819019 0.11676566 0.00039538168 0.019359989 0.12143892 -0.022017442 0.020021744 0.12378182 -0.00033612736 0.010812573 0.12206104 -0.00033612736 0.010812573 0.12206104 -0.022017442 0.020021744 0.12378182 -0.020921309 0.0096948445 0.12405073 -0.027545022 -0.020607093 0.11064494 -0.009421885 -0.027859841 0.10457504 -0.0066614212 -0.021065919 0.11100798 -0.038627185 0.028212827 0.016929857 -0.036812354 0.037808273 0.024553234 -0.035747945 0.038561195 0.021391539 -0.027545022 -0.020607093 0.11064494 -0.01898687 -0.029147249 0.10210201 -0.009421885 -0.027859841 0.10457504 -0.02483703 0.0022278912 0.12290132 -0.023636155 -0.0070975088 0.11982961 -0.0010439414 0.0038215646 0.12149038 -0.01898687 -0.029147249 0.10210201 -0.011929085 -0.0326325 0.098091841 -0.009421885 -0.027859841 0.10457504 -0.0066614212 -0.021065919 0.11100798 -0.025660301 -0.013036723 0.11658268 -0.027545022 -0.020607093 0.11064494 -0.01898687 -0.029147249 0.10210201 -0.031821635 -0.028805537 0.099602476 -0.011929085 -0.0326325 0.098091841 -0.039374437 0.027341647 0.018132014 -0.038627185 0.028212827 0.016929857 -0.040480163 0.016906902 0.014356372 -0.020094046 0.064303599 0.074827529 -0.0093611898 0.064768776 0.076557294 -0.013450309 0.064721122 0.06381353 -0.020094046 0.064303599 0.074827529 -0.025206264 0.061684463 0.087864682 -0.0093611898 0.064768776 0.076557294 -0.025206264 0.061684463 0.087864682 -0.0069582104 0.062913686 0.085128613 -0.0093611898 0.064768776 0.076557294 -0.013109332 0.057743881 0.097347789 -0.025018685 0.049829662 0.10852939 -0.0017887806 0.05171084 0.10429142 -0.013109332 0.057743881 0.097347789 -0.0027873083 0.055207402 0.10003511 -0.0069582104 0.062913686 0.085128613 -0.013109332 0.057743881 0.097347789 -0.026537506 0.056296486 0.099920586 -0.025018685 0.049829662 0.10852939 -0.013109332 0.057743881 0.097347789 -0.0017887806 0.05171084 0.10429142 -0.0027873083 0.055207402 0.10003511 -0.022734847 0.025937404 0.12267101 -0.022017442 0.020021744 0.12378182 0.00039538168 0.019359989 0.12143892 -0.022734847 0.025937404 0.12267101 0.00039538168 0.019359989 0.12143892 0.00075405778 0.030070435 0.11860579 -0.033521637 0.036083557 0.011259639 -0.037806738 0.035602737 0.014375174 -0.031334754 0.046229184 0.030724876 -0.038627185 0.028212827 0.016929857 -0.035747945 0.038561195 0.021391539 -0.038854823 0.029248143 0.014004549 -0.031334754 0.046229184 0.030724876 -0.028971231 0.042366277 0.021899901 -0.033521637 0.036083557 0.011259639 -0.037806738 0.035602737 0.014375174 -0.035746638 0.029432153 0.0061365445 -0.041240033 0.021481087 0.007967337 -0.033521637 0.036083557 0.011259639 -0.035746638 0.029432153 0.0061365445 -0.037806738 0.035602737 0.014375174 -0.039147954 -0.013273326 0.0093988124 -0.043227464 -0.0023776055 0.008869892 -0.039325558 0.0015612912 0.0048543909 -0.039325558 0.0015612912 0.0048543909 -0.043227464 -0.0023776055 0.008869892 -0.042984568 0.0059956019 0.0074158604 -0.039325558 0.0015612912 0.0048543909 -0.042984568 0.0059956019 0.0074158604 -0.038603816 0.012090725 0.0038985524 -0.041240033 0.021481087 0.007967337 -0.038603816 0.012090725 0.0038985524 -0.042984568 0.0059956019 0.0074158604 -0.037899293 -0.024841586 0.016128547 -0.042864647 -0.01350043 0.013161188 -0.039147954 -0.013273326 0.0093988124 -0.041240033 0.021481087 0.007967337 -0.035746638 0.029432153 0.0061365445 -0.038603816 0.012090725 0.0038985524 -0.042864647 -0.01350043 0.013161188 -0.043227464 -0.0023776055 0.008869892 -0.039147954 -0.013273326 0.0093988124 -0.037899293 -0.024841586 0.016128547 -0.041566826 -0.024855593 0.021244243 -0.042864647 -0.01350043 0.013161188 -0.041566826 -0.024855593 0.021244243 -0.037899293 -0.024841586 0.016128547 -0.035890903 -0.030025031 0.023404462 -0.040279362 -0.020562377 0.026384708 -0.040065371 -0.022063151 0.025475597 -0.036928244 -0.029771565 0.038775202 -0.041566826 -0.024855593 0.021244243 -0.035890903 -0.030025031 0.023404462 -0.040193252 -0.028085724 0.025986584 -0.04206967 -0.009948709 0.020963609 -0.040279362 -0.020562377 0.026384708 -0.04105835 -0.020256387 0.028626844 -0.034174711 -0.032375213 0.045637153 -0.035890903 -0.030025031 0.023404462 -0.026680546 -0.03710093 0.053927541 -0.034174711 -0.032375213 0.045637153 -0.040193252 -0.028085724 0.025986584 -0.035890903 -0.030025031 0.023404462 -0.036928244 -0.029771565 0.038775202 -0.034174711 -0.032375213 0.045637153 -0.040279362 -0.020562377 0.026384708 -0.041755732 -0.0034368206 0.016592661 -0.042416494 -0.0043550604 0.013143318 -0.042083472 -0.012380072 0.016625753 -0.041755732 -0.0034368206 0.016592661 -0.042083472 -0.012380072 0.016625753 -0.04206967 -0.009948709 0.020963609 + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079

+
+
+
+
+ + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + + + + + + + + + + + + + +
diff --git a/external/rlbench/urdfs/panda/meshes/Pandalink4respondable_coll_1.dae b/external/rlbench/urdfs/panda/meshes/Pandalink4respondable_coll_1.dae new file mode 100644 index 0000000000000000000000000000000000000000..664134b27e3a2c4c80d56f9cadd3c0725572a618 --- /dev/null +++ b/external/rlbench/urdfs/panda/meshes/Pandalink4respondable_coll_1.dae @@ -0,0 +1,84 @@ + + + + + Assimp + Assimp Exporter + + 2023-09-26T11:24:21 + 2023-09-26T11:24:21 + + Y_UP + + + + + + + + 0 0 0 4.5895327e-41 + + + 0.94901848 0.60567516 0.75858837 4.5893926e-41 + + + 0.94901848 0.60567516 0.75858837 4.5893926e-41 + + + 0.25 0.25 0.25 3.6295857e-33 + + + + + + + + + + + + + + + + 0.029200999 -0.0085637532 0.12440372 0.028800238 -0.024731116 0.12376586 0.038308959 -0.022384899 0.11820564 0.038308959 -0.022384899 0.11820564 0.028800238 -0.024731116 0.12376586 0.03042336 -0.040739194 0.11712984 -0.0061215237 -0.066638961 -0.055390205 0.049811274 -0.033495095 -0.065999098 0.036781486 -0.04963335 -0.056629404 -0.047804821 -0.066639028 0.054745175 -0.040024925 -0.057741903 -0.072712831 -0.021803427 -0.065601014 -0.060881298 -0.051218279 -0.018267216 -0.10833634 -0.0061215237 -0.066638961 -0.055390205 -0.053284634 -0.027659008 -0.10128903 0.036781486 -0.04963335 -0.056629404 0.049811274 -0.033495095 -0.065999098 0.051739711 -0.051212829 0.073848642 -0.0061215237 -0.066638961 -0.055390205 -0.047804821 -0.066639028 0.054745175 -0.021803427 -0.065601014 -0.060881298 -0.051345307 -0.043159835 -0.088028811 -0.021803427 -0.065601014 -0.060881298 -0.040024925 -0.057741903 -0.072712831 -0.00053767487 -0.021424845 0.122073 0.019361397 -0.013456943 0.12511618 0.00042256579 -0.0066653737 0.12250043 -0.00053767487 -0.021424845 0.122073 0.00042256579 -0.0066653737 0.12250043 -0.062651999 -0.01135302 0.10487882 -0.00053767487 -0.021424845 0.122073 0.01899866 -0.026854608 0.12354115 0.019361397 -0.013456943 0.12511618 0.05235035 -0.0042681508 -0.089206107 0.054038789 -0.017884921 -0.077542961 -0.0061215237 -0.066638961 -0.055390205 0.039627049 -0.03651803 0.11231743 0.038308959 -0.022384899 0.11820564 0.03042336 -0.040739194 0.11712984 0.051577713 -0.024170963 0.1014546 0.038308959 -0.022384899 0.11820564 0.039627049 -0.03651803 0.11231743 0.028800238 -0.024731116 0.12376586 0.022495165 -0.036747951 0.11989285 0.03042336 -0.040739194 0.11712984 -0.051345307 -0.043159835 -0.088028811 -0.053284634 -0.027659008 -0.10128903 -0.0061215237 -0.066638961 -0.055390205 -0.051345307 -0.043159835 -0.088028811 -0.0061215237 -0.066638961 -0.055390205 -0.021803427 -0.065601014 -0.060881298 -0.061579954 0.0018718385 0.10338631 -0.062716082 0.025808349 -0.036257289 -0.062651999 -0.01135302 0.10487882 -0.062627837 -0.025284704 0.10296542 -0.062651999 -0.01135302 0.10487882 -0.062716082 0.025808349 -0.036257289 0.049811274 -0.033495095 -0.065999098 0.057761636 -0.040449403 0.056565281 0.051739711 -0.051212829 0.073848642 0.013619326 -0.063206658 -0.05235919 0.015052899 -0.066638984 0.072429433 -0.0061215237 -0.066638961 -0.055390205 -0.055054482 -0.060639013 0.075921759 0.010135492 -0.065054104 0.085492618 0.0043596765 -0.056787748 0.1016681 0.019361397 -0.013456943 0.12511618 0.022587143 -0.0022224514 0.12362881 0.00042256579 -0.0066653737 0.12250043 -0.00053767487 -0.021424845 0.122073 -0.062651999 -0.01135302 0.10487882 -0.062627837 -0.025284704 0.10296542 -0.00053767487 -0.021424845 0.122073 0.00011965031 -0.033332482 0.11905409 0.01899866 -0.026854608 0.12354115 0.00011965031 -0.033332482 0.11905409 -0.00053767487 -0.021424845 0.122073 -0.062627837 -0.025284704 0.10296542 0.029200999 -0.0085637532 0.12440372 0.019361397 -0.013456943 0.12511618 0.028800238 -0.024731116 0.12376586 0.019361397 -0.013456943 0.12511618 0.01899866 -0.026854608 0.12354115 0.028800238 -0.024731116 0.12376586 -0.062627837 -0.025284704 0.10296542 -0.062716082 0.025808349 -0.036257289 -0.061808445 0.0052524544 -0.058475584 -0.061808445 0.0052524544 -0.058475584 -0.05972939 -0.0099736806 -0.070607275 -0.061598849 -0.037009001 0.098693021 0.037888475 0.023917178 -0.078821547 0.055044193 0.019309621 0.072731093 0.058775879 0.011809327 0.06035307 0.062716067 -0.0096041318 0.070626631 0.054038789 -0.017884921 -0.077542961 0.05235035 -0.0042681508 -0.089206107 0.05235035 -0.0042681508 -0.089206107 0.061111707 -0.00075791421 0.051876988 0.062716067 -0.0096041318 0.070626631 0.037888475 0.023917178 -0.078821547 0.047089782 0.0047935224 -0.098142728 0.039045215 0.01204459 -0.10647137 0.05235035 -0.0042681508 -0.089206107 0.058775879 0.011809327 0.06035307 0.061111707 -0.00075791421 0.051876988 0.058775879 0.011809327 0.06035307 0.062716067 -0.0096041318 0.070626631 0.061111707 -0.00075791421 0.051876988 0.01899866 -0.026854608 0.12354115 0.022495165 -0.036747951 0.11989285 0.028800238 -0.024731116 0.12376586 0.03042336 -0.040739194 0.11712984 0.033155039 -0.053908266 0.10421109 0.042552534 -0.046619497 0.1023035 0.033155039 -0.053908266 0.10421109 0.03042336 -0.040739194 0.11712984 0.027083423 -0.054795269 0.10483294 0.052739926 -0.031885568 0.095937006 0.039627049 -0.03651803 0.11231743 0.042552534 -0.046619497 0.1023035 0.039627049 -0.03651803 0.11231743 0.052739926 -0.031885568 0.095937006 0.051577713 -0.024170963 0.1014546 0.039627049 -0.03651803 0.11231743 0.03042336 -0.040739194 0.11712984 0.042552534 -0.046619497 0.1023035 0.038308959 -0.022384899 0.11820564 0.051577713 -0.024170963 0.1014546 0.050208621 -0.016676284 0.10485097 0.056843814 -0.014575395 0.094433583 0.051577713 -0.024170963 0.1014546 0.057638798 -0.024439821 0.090080008 0.039325751 -0.0049023163 0.11748282 0.029200999 -0.0085637532 0.12440372 0.038308959 -0.022384899 0.11820564 0.055044193 0.019309621 0.072731093 0.017816771 0.054112986 -0.040553328 0.043993086 0.030686183 0.07192532 0.051253151 0.021232268 0.08460252 0.058359459 0.00067563786 0.086111978 0.055044193 0.019309621 0.072731093 0.049811274 -0.033495095 -0.065999098 -0.0061215237 -0.066638961 -0.055390205 0.054038789 -0.017884921 -0.077542961 0.049811274 -0.033495095 -0.065999098 0.054038789 -0.017884921 -0.077542961 0.057761636 -0.040449403 0.056565281 0.057761636 -0.040449403 0.056565281 0.054038789 -0.017884921 -0.077542961 0.062108308 -0.022589678 0.069009945 0.01576557 0.019780997 -0.11973582 0.015715709 0.030844323 -0.10305613 0.029264696 0.016879778 -0.11334065 -0.053284634 -0.027659008 -0.10128903 -0.051345307 -0.043159835 -0.088028811 -0.05629288 -0.02606822 -0.082168728 -0.057069823 -0.017810933 -0.086300455 -0.05629288 -0.02606822 -0.082168728 -0.05972939 -0.0099736806 -0.070607275 -0.043374982 -0.0047683632 -0.11711313 -0.036081821 0.002868433 -0.12119909 -0.0061215237 -0.066638961 -0.055390205 -0.0061215237 -0.066638961 -0.055390205 -0.051218279 -0.018267216 -0.10833634 -0.043374982 -0.0047683632 -0.11711313 -0.051218279 -0.018267216 -0.10833634 -0.053284634 -0.027659008 -0.10128903 -0.057069823 -0.017810933 -0.086300455 -0.05972939 -0.0099736806 -0.070607275 -0.05629288 -0.02606822 -0.082168728 -0.059910487 -0.047021046 0.092019551 0.036781486 -0.04963335 -0.056629404 0.013619326 -0.063206658 -0.05235919 -0.0061215237 -0.066638961 -0.055390205 -0.051345307 -0.043159835 -0.088028811 -0.055054482 -0.060639013 0.075921759 -0.058234032 -0.053108077 0.086300448 -0.051352523 -0.065293886 0.063893586 -0.055054482 -0.060639013 0.075921759 -0.051345307 -0.043159835 -0.088028811 0.010135492 -0.065054104 0.085492618 -0.047804821 -0.066639028 0.054745175 0.015052899 -0.066638984 0.072429433 -0.059910487 -0.047021046 0.092019551 -0.061598849 -0.037009001 0.098693021 -0.05972939 -0.0099736806 -0.070607275 -0.058253843 0.0098576276 -0.074634932 -0.057748914 -0.0020735792 -0.082360625 -0.061808445 0.0052524544 -0.058475584 -0.062651999 -0.01135302 0.10487882 0.00042256579 -0.0066653737 0.12250043 -0.061579954 0.0018718385 0.10338631 0.00042256579 -0.0066653737 0.12250043 0.022587143 -0.0022224514 0.12362881 0.0026344189 0.010840721 0.117249 0.029200999 -0.0085637532 0.12440372 0.022587143 -0.0022224514 0.12362881 0.019361397 -0.013456943 0.12511618 0.00011965031 -0.033332482 0.11905409 -0.062627837 -0.025284704 0.10296542 -0.061598849 -0.037009001 0.098693021 0.05235035 -0.0042681508 -0.089206107 0.047089782 0.0047935224 -0.098142728 0.058775879 0.011809327 0.06035307 0.05235035 -0.0042681508 -0.089206107 -0.0061215237 -0.066638961 -0.055390205 0.047089782 0.0047935224 -0.098142728 0.047089782 0.0047935224 -0.098142728 0.037888475 0.023917178 -0.078821547 0.058775879 0.011809327 0.06035307 -0.030443588 0.064160891 -0.043742634 -0.036679789 0.061544079 -0.042974669 -0.047963437 0.041233987 0.068234093 0.061620004 -0.0041243332 0.076175146 0.055044193 0.019309621 0.072731093 0.058359459 0.00067563786 0.086111978 0.027083423 -0.054795269 0.10483294 0.036244355 -0.059862968 0.091768347 0.033155039 -0.053908266 0.10421109 0.027083423 -0.054795269 0.10483294 0.029328503 -0.061651696 0.091175333 0.036244355 -0.059862968 0.091768347 0.022495165 -0.036747951 0.11989285 0.00011965031 -0.033332482 0.11905409 0.0026775096 -0.044795018 0.11333526 0.022495165 -0.036747951 0.11989285 0.01899866 -0.026854608 0.12354115 0.00011965031 -0.033332482 0.11905409 0.023171218 -0.046345621 0.11381374 0.022495165 -0.036747951 0.11989285 0.0026775096 -0.044795018 0.11333526 0.023171218 -0.046345621 0.11381374 0.027083423 -0.054795269 0.10483294 0.03042336 -0.040739194 0.11712984 0.023171218 -0.046345621 0.11381374 0.0026775096 -0.044795018 0.11333526 0.0043596765 -0.056787748 0.1016681 0.062716067 -0.0096041318 0.070626631 0.062108308 -0.022589678 0.069009945 0.054038789 -0.017884921 -0.077542961 0.058985326 -0.032544866 0.077609748 0.051739711 -0.051212829 0.073848642 0.057761636 -0.040449403 0.056565281 0.058359459 0.00067563786 0.086111978 0.056843814 -0.014575395 0.094433583 0.06118729 -0.014397841 0.082254641 0.057638798 -0.024439821 0.090080008 0.052739926 -0.031885568 0.095937006 0.055805344 -0.034060504 0.087423831 0.051253151 0.021232268 0.08460252 0.055044193 0.019309621 0.072731093 0.043993086 0.030686183 0.07192532 0.039361138 0.03155794 0.087044582 0.051253151 0.021232268 0.08460252 0.043993086 0.030686183 0.07192532 0.010906319 0.059850249 -0.039293725 0.039361138 0.03155794 0.087044582 0.043993086 0.030686183 0.07192532 0.011336284 0.032795526 0.095921509 -0.051096518 0.037794728 0.076456331 -0.054989811 0.030383177 0.087109156 0.023894157 0.010292616 0.11879864 0.0026344189 0.010840721 0.117249 0.022587143 -0.0022224514 0.12362881 -0.0061215237 -0.066638961 -0.055390205 0.029264696 0.016879778 -0.11334065 0.039045215 0.01204459 -0.10647137 -0.0061215237 -0.066638961 -0.055390205 0.039045215 0.01204459 -0.10647137 0.047089782 0.0047935224 -0.098142728 0.01576557 0.019780997 -0.11973582 0.029264696 0.016879778 -0.11334065 -0.0061215237 -0.066638961 -0.055390205 -0.053284634 -0.027659008 -0.10128903 -0.05629288 -0.02606822 -0.082168728 -0.057069823 -0.017810933 -0.086300455 -0.01132337 0.016564375 -0.12511617 0.0016004482 0.019456586 -0.12366196 -0.0061215237 -0.066638961 -0.055390205 -0.01132337 0.016564375 -0.12511617 -0.0061215237 -0.066638961 -0.055390205 -0.022948217 0.011664022 -0.12454262 -0.062716082 0.025808349 -0.036257289 -0.06046845 0.0095447367 0.10103842 -0.058429342 0.019327164 0.09629409 -0.058429342 0.019327164 0.09629409 -0.060671423 0.034591384 -0.039863307 -0.062716082 0.025808349 -0.036257289 -0.062716082 0.025808349 -0.036257289 -0.061579954 0.0018718385 0.10338631 -0.06046845 0.0095447367 0.10103842 0.036781486 -0.04963335 -0.056629404 0.051739711 -0.051212829 0.073848642 0.041606806 -0.061074767 0.073733591 0.015052899 -0.066638984 0.072429433 -0.047804821 -0.066639028 0.054745175 -0.0061215237 -0.066638961 -0.055390205 -0.051352523 -0.065293886 0.063893586 -0.040024925 -0.057741903 -0.072712831 -0.047804821 -0.066639028 0.054745175 -0.051352523 -0.065293886 0.063893586 -0.051345307 -0.043159835 -0.088028811 -0.040024925 -0.057741903 -0.072712831 -0.058234032 -0.053108077 0.086300448 0.0043596765 -0.056787748 0.1016681 -0.059910487 -0.047021046 0.092019551 -0.055054482 -0.060639013 0.075921759 -0.051352523 -0.065293886 0.063893586 0.010135492 -0.065054104 0.085492618 0.029328503 -0.061651696 0.091175333 0.027083423 -0.054795269 0.10483294 0.010135492 -0.065054104 0.085492618 0.010135492 -0.065054104 0.085492618 0.027083423 -0.054795269 0.10483294 0.0043596765 -0.056787748 0.1016681 -0.058429342 0.019327164 0.09629409 -0.054989811 0.030383177 0.087109156 -0.060671423 0.034591384 -0.039863307 -0.045577813 0.055817481 -0.043012969 -0.055328954 0.045606781 -0.038522463 -0.051096518 0.037794728 0.076456331 -0.036679789 0.061544079 -0.042974669 -0.045577813 0.055817481 -0.043012969 -0.047963437 0.041233987 0.068234093 -0.045577813 0.055817481 -0.043012969 -0.051096518 0.037794728 0.076456331 -0.047963437 0.041233987 0.068234093 -0.055328954 0.045606781 -0.038522463 -0.060671423 0.034591384 -0.039863307 -0.054989811 0.030383177 0.087109156 -0.057748914 -0.0020735792 -0.082360625 -0.051218279 -0.018267216 -0.10833634 -0.057069823 -0.017810933 -0.086300455 0.0026775096 -0.044795018 0.11333526 -0.061598849 -0.037009001 0.098693021 -0.059910487 -0.047021046 0.092019551 0.0026344189 0.010840721 0.117249 -0.061579954 0.0018718385 0.10338631 0.00042256579 -0.0066653737 0.12250043 -0.061808445 0.0052524544 -0.058475584 -0.061598849 -0.037009001 0.098693021 -0.062627837 -0.025284704 0.10296542 0.015489477 0.03660563 0.086007081 0.039361138 0.03155794 0.087044582 -0.0098927356 0.066639096 -0.036620457 0.019652052 0.03940288 -0.083299033 0.0092442045 0.056230389 -0.056599241 0.019882221 0.04714236 -0.062923513 0.030374231 0.029708648 -0.086305149 0.030162919 0.036882747 -0.063865498 0.037888475 0.023917178 -0.078821547 -0.028749116 0.060347229 -0.057545669 -0.018145122 0.065452255 -0.051004823 -0.015458074 0.05384456 -0.073573202 -0.027055772 0.063687161 -0.051433478 -0.018145122 0.065452255 -0.051004823 -0.028749116 0.060347229 -0.057545669 -0.047963437 0.041233987 0.068234093 -0.0098927356 0.066639096 -0.036620457 -0.021695031 0.066370547 -0.041241493 -0.021695031 0.066370547 -0.041241493 -0.030443588 0.064160891 -0.043742634 -0.047963437 0.041233987 0.068234093 -0.0098927356 0.066639096 -0.036620457 -0.047963437 0.041233987 0.068234093 0.015489477 0.03660563 0.086007081 0.055044193 0.019309621 0.072731093 0.061620004 -0.0041243332 0.076175146 0.058775879 0.011809327 0.06035307 0.033497237 -0.063453972 0.078703269 0.010135492 -0.065054104 0.085492618 0.015052899 -0.066638984 0.072429433 0.023171218 -0.046345621 0.11381374 0.03042336 -0.040739194 0.11712984 0.022495165 -0.036747951 0.11989285 0.06118729 -0.014397841 0.082254641 0.062716067 -0.0096041318 0.070626631 0.061620004 -0.0041243332 0.076175146 0.057638798 -0.024439821 0.090080008 0.058985326 -0.032544866 0.077609748 0.060559649 -0.025695471 0.078959428 0.057638798 -0.024439821 0.090080008 0.055805344 -0.034060504 0.087423831 0.058985326 -0.032544866 0.077609748 0.052739926 -0.031885568 0.095937006 0.042552534 -0.046619497 0.1023035 0.046524949 -0.051707722 0.089676052 0.055805344 -0.034060504 0.087423831 0.052739926 -0.031885568 0.095937006 0.046524949 -0.051707722 0.089676052 0.051739711 -0.051212829 0.073848642 0.058985326 -0.032544866 0.077609748 0.055805344 -0.034060504 0.087423831 0.058359459 0.00067563786 0.086111978 0.054750741 -0.0018711111 0.096007496 0.056843814 -0.014575395 0.094433583 0.051577713 -0.024170963 0.1014546 0.052739926 -0.031885568 0.095937006 0.057638798 -0.024439821 0.090080008 0.046151996 0.017685814 0.099570803 0.042025983 0.0081809293 0.11080179 0.054750741 -0.0018711111 0.096007496 0.046151996 0.017685814 0.099570803 0.03217259 0.018563528 0.11188614 0.042025983 0.0081809293 0.11080179 0.046151996 0.017685814 0.099570803 0.058359459 0.00067563786 0.086111978 0.051253151 0.021232268 0.08460252 0.046151996 0.017685814 0.099570803 0.054750741 -0.0018711111 0.096007496 0.058359459 0.00067563786 0.086111978 0.0077269888 0.023761755 0.10822503 0.011336284 0.032795526 0.095921509 -0.054989811 0.030383177 0.087109156 -0.05629288 -0.02606822 -0.082168728 -0.051345307 -0.043159835 -0.088028811 -0.058234032 -0.053108077 0.086300448 -0.051690351 -0.0011163333 -0.099240877 -0.043374982 -0.0047683632 -0.11711313 -0.051218279 -0.018267216 -0.10833634 0.0034283618 0.034880649 -0.10259522 0.015715709 0.030844323 -0.10305613 0.01576557 0.019780997 -0.11973582 -0.012462272 0.064527243 -0.053141061 -0.006253446 0.058995634 -0.063175477 -0.015458074 0.05384456 -0.073573202 -0.022948217 0.011664022 -0.12454262 -0.0061215237 -0.066638961 -0.055390205 -0.036081821 0.002868433 -0.12119909 -0.061808445 0.0052524544 -0.058475584 -0.061662998 0.019090801 -0.052721806 -0.058253843 0.0098576276 -0.074634932 -0.058429342 0.019327164 0.09629409 -0.06046845 0.0095447367 0.10103842 0.0026344189 0.010840721 0.117249 0.041606806 -0.061074767 0.073733591 0.013619326 -0.063206658 -0.05235919 0.036781486 -0.04963335 -0.056629404 0.013619326 -0.063206658 -0.05235919 0.041606806 -0.061074767 0.073733591 0.033497237 -0.063453972 0.078703269 0.033497237 -0.063453972 0.078703269 0.015052899 -0.066638984 0.072429433 0.013619326 -0.063206658 -0.05235919 0.058985326 -0.032544866 0.077609748 0.057761636 -0.040449403 0.056565281 0.062108308 -0.022589678 0.069009945 -0.051352523 -0.065293886 0.063893586 -0.047804821 -0.066639028 0.054745175 0.010135492 -0.065054104 0.085492618 -0.058234032 -0.053108077 0.086300448 -0.055054482 -0.060639013 0.075921759 0.0043596765 -0.056787748 0.1016681 -0.058429342 0.019327164 0.09629409 0.0026344189 0.010840721 0.117249 0.0077269888 0.023761755 0.10822503 -0.042755157 0.055266578 -0.052976947 -0.050209489 0.050608583 -0.047089916 -0.045577813 0.055817481 -0.043012969 -0.053343318 0.014538525 -0.084486052 -0.050266284 0.027496874 -0.078386024 -0.046530403 0.0097222701 -0.10118165 -0.055328954 0.045606781 -0.038522463 -0.054989811 0.030383177 0.087109156 -0.051096518 0.037794728 0.076456331 -0.056782853 0.041817974 -0.045685057 -0.055328954 0.045606781 -0.038522463 -0.050209489 0.050608583 -0.047089916 0.00011965031 -0.033332482 0.11905409 -0.061598849 -0.037009001 0.098693021 0.0026775096 -0.044795018 0.11333526 0.0026775096 -0.044795018 0.11333526 -0.059910487 -0.047021046 0.092019551 0.0043596765 -0.056787748 0.1016681 0.010906319 0.059850249 -0.039293725 0.0047359634 0.062599018 -0.044083379 0.0020208443 0.064181432 -0.037170053 0.0020208443 0.064181432 -0.037170053 0.039361138 0.03155794 0.087044582 0.010906319 0.059850249 -0.039293725 0.019652052 0.03940288 -0.083299033 0.0091609303 0.04239513 -0.087495282 0.004643789 0.052940577 -0.069845341 0.017816771 0.054112986 -0.040553328 0.019882221 0.04714236 -0.062923513 0.010906319 0.059850249 -0.039293725 0.030374231 0.029708648 -0.086305149 0.019882221 0.04714236 -0.062923513 0.030162919 0.036882747 -0.063865498 0.037888475 0.023917178 -0.078821547 0.030162919 0.036882747 -0.063865498 0.055044193 0.019309621 0.072731093 0.030374231 0.029708648 -0.086305149 0.019652052 0.03940288 -0.083299033 0.019882221 0.04714236 -0.062923513 0.039045215 0.01204459 -0.10647137 0.030374231 0.029708648 -0.086305149 0.037888475 0.023917178 -0.078821547 0.004643789 0.052940577 -0.069845341 0.0092442045 0.056230389 -0.056599241 0.019652052 0.03940288 -0.083299033 0.019652052 0.03940288 -0.083299033 0.015715709 0.030844323 -0.10305613 0.0091609303 0.04239513 -0.087495282 -0.025536675 0.049250297 -0.077523269 -0.028749116 0.060347229 -0.057545669 -0.015458074 0.05384456 -0.073573202 0.061620004 -0.0041243332 0.076175146 0.058359459 0.00067563786 0.086111978 0.06118729 -0.014397841 0.082254641 0.058775879 0.011809327 0.06035307 0.061620004 -0.0041243332 0.076175146 0.062716067 -0.0096041318 0.070626631 0.010135492 -0.065054104 0.085492618 0.033497237 -0.063453972 0.078703269 0.029328503 -0.061651696 0.091175333 0.027083423 -0.054795269 0.10483294 0.023171218 -0.046345621 0.11381374 0.0043596765 -0.056787748 0.1016681 0.06118729 -0.014397841 0.082254641 0.060559649 -0.025695471 0.078959428 0.062108308 -0.022589678 0.069009945 0.062108308 -0.022589678 0.069009945 0.062716067 -0.0096041318 0.070626631 0.06118729 -0.014397841 0.082254641 0.046524949 -0.051707722 0.089676052 0.051739711 -0.051212829 0.073848642 0.055805344 -0.034060504 0.087423831 0.041606806 -0.061074767 0.073733591 0.051739711 -0.051212829 0.073848642 0.046524949 -0.051707722 0.089676052 0.030778579 0.007083531 0.11955526 0.029200999 -0.0085637532 0.12440372 0.039325751 -0.0049023163 0.11748282 0.030778579 0.007083531 0.11955526 0.022587143 -0.0022224514 0.12362881 0.029200999 -0.0085637532 0.12440372 0.023894157 0.010292616 0.11879864 0.022587143 -0.0022224514 0.12362881 0.030778579 0.007083531 0.11955526 0.050208621 -0.016676284 0.10485097 0.039325751 -0.0049023163 0.11748282 0.038308959 -0.022384899 0.11820564 0.039325751 -0.0049023163 0.11748282 0.050208621 -0.016676284 0.10485097 0.051411401 -0.0073269024 0.10271873 0.042025983 0.0081809293 0.11080179 0.03217259 0.018563528 0.11188614 0.030778579 0.007083531 0.11955526 0.042025983 0.0081809293 0.11080179 0.030778579 0.007083531 0.11955526 0.039325751 -0.0049023163 0.11748282 0.0077269888 0.023761755 0.10822503 0.034619629 0.025573201 0.10326382 0.011336284 0.032795526 0.095921509 0.011336284 0.032795526 0.095921509 0.015489477 0.03660563 0.086007081 -0.047963437 0.041233987 0.068234093 -0.047963437 0.041233987 0.068234093 -0.051096518 0.037794728 0.076456331 0.011336284 0.032795526 0.095921509 0.0077269888 0.023761755 0.10822503 0.023894157 0.010292616 0.11879864 0.03217259 0.018563528 0.11188614 0.046151996 0.017685814 0.099570803 0.037252784 0.029499741 0.094872952 0.034619629 0.025573201 0.10326382 0.037252784 0.029499741 0.094872952 0.051253151 0.021232268 0.08460252 0.039361138 0.03155794 0.087044582 0.037252784 0.029499741 0.094872952 0.046151996 0.017685814 0.099570803 0.051253151 0.021232268 0.08460252 -0.057069823 -0.017810933 -0.086300455 -0.061808445 0.0052524544 -0.058475584 -0.057748914 -0.0020735792 -0.082360625 0.015715709 0.030844323 -0.10305613 0.019652052 0.03940288 -0.083299033 0.029264696 0.016879778 -0.11334065 -0.025536675 0.049250297 -0.077523269 -0.015458074 0.05384456 -0.073573202 -0.016624339 0.038902752 -0.096040875 -0.01928266 0.025845006 -0.11150309 -0.01132337 0.016564375 -0.12511617 -0.022948217 0.011664022 -0.12454262 -0.057069823 -0.017810933 -0.086300455 -0.05972939 -0.0099736806 -0.070607275 -0.061808445 0.0052524544 -0.058475584 -0.061662998 0.019090801 -0.052721806 -0.061808445 0.0052524544 -0.058475584 -0.062716082 0.025808349 -0.036257289 0.036244355 -0.059862968 0.091768347 0.042552534 -0.046619497 0.1023035 0.033155039 -0.053908266 0.10421109 0.046524949 -0.051707722 0.089676052 0.042552534 -0.046619497 0.1023035 0.036244355 -0.059862968 0.091768347 0.0077269888 0.023761755 0.10822503 0.0026344189 0.010840721 0.117249 0.023894157 0.010292616 0.11879864 -0.054989811 0.030383177 0.087109156 -0.058429342 0.019327164 0.09629409 0.0077269888 0.023761755 0.10822503 -0.050209489 0.050608583 -0.047089916 -0.042755157 0.055266578 -0.052976947 -0.050895393 0.046750274 -0.053240817 -0.055328954 0.045606781 -0.038522463 -0.045577813 0.055817481 -0.043012969 -0.050209489 0.050608583 -0.047089916 -0.046530403 0.0097222701 -0.10118165 -0.036081821 0.002868433 -0.12119909 -0.043374982 -0.0047683632 -0.11711313 -0.061579954 0.0018718385 0.10338631 0.0026344189 0.010840721 0.117249 -0.06046845 0.0095447367 0.10103842 -0.0030407202 0.064586356 -0.048291009 -0.018145122 0.065452255 -0.051004823 -0.0075817108 0.066447355 -0.042866498 -0.012462272 0.064527243 -0.053141061 -0.018145122 0.065452255 -0.051004823 -0.0030407202 0.064586356 -0.048291009 0.0020208443 0.064181432 -0.037170053 -0.0098927356 0.066639096 -0.036620457 0.039361138 0.03155794 0.087044582 0.015715709 0.030844323 -0.10305613 0.0034283618 0.034880649 -0.10259522 0.0091609303 0.04239513 -0.087495282 -0.0030407202 0.064586356 -0.048291009 0.0047359634 0.062599018 -0.044083379 0.0092442045 0.056230389 -0.056599241 0.043993086 0.030686183 0.07192532 0.017816771 0.054112986 -0.040553328 0.010906319 0.059850249 -0.039293725 0.017816771 0.054112986 -0.040553328 0.030162919 0.036882747 -0.063865498 0.019882221 0.04714236 -0.062923513 -0.028749116 0.060347229 -0.057545669 -0.036931425 0.059508778 -0.052199382 -0.027055772 0.063687161 -0.051433478 0.041606806 -0.061074767 0.073733591 0.046524949 -0.051707722 0.089676052 0.036244355 -0.059862968 0.091768347 0.036244355 -0.059862968 0.091768347 0.033497237 -0.063453972 0.078703269 0.041606806 -0.061074767 0.073733591 0.029328503 -0.061651696 0.091175333 0.033497237 -0.063453972 0.078703269 0.036244355 -0.059862968 0.091768347 0.056843814 -0.014575395 0.094433583 0.057638798 -0.024439821 0.090080008 0.06118729 -0.014397841 0.082254641 0.06118729 -0.014397841 0.082254641 0.057638798 -0.024439821 0.090080008 0.060559649 -0.025695471 0.078959428 0.051411401 -0.0073269024 0.10271873 0.050208621 -0.016676284 0.10485097 0.056843814 -0.014575395 0.094433583 0.056843814 -0.014575395 0.094433583 0.054750741 -0.0018711111 0.096007496 0.051411401 -0.0073269024 0.10271873 0.051411401 -0.0073269024 0.10271873 0.042025983 0.0081809293 0.11080179 0.039325751 -0.0049023163 0.11748282 0.015489477 0.03660563 0.086007081 0.037252784 0.029499741 0.094872952 0.039361138 0.03155794 0.087044582 0.037252784 0.029499741 0.094872952 0.011336284 0.032795526 0.095921509 0.034619629 0.025573201 0.10326382 0.037252784 0.029499741 0.094872952 0.015489477 0.03660563 0.086007081 0.011336284 0.032795526 0.095921509 0.03217259 0.018563528 0.11188614 0.034619629 0.025573201 0.10326382 0.0077269888 0.023761755 0.10822503 0.03217259 0.018563528 0.11188614 0.046151996 0.017685814 0.099570803 0.034619629 0.025573201 0.10326382 0.029264696 0.016879778 -0.11334065 0.030374231 0.029708648 -0.086305149 0.039045215 0.01204459 -0.10647137 0.0016004482 0.019456586 -0.12366196 0.01576557 0.019780997 -0.11973582 -0.0061215237 -0.066638961 -0.055390205 0.0016004482 0.019456586 -0.12366196 0.0034283618 0.034880649 -0.10259522 0.01576557 0.019780997 -0.11973582 -0.0048567341 0.035249434 -0.10311304 0.0034283618 0.034880649 -0.10259522 0.0016004482 0.019456586 -0.12366196 -0.0032035839 0.048151497 -0.082735464 0.0091609303 0.04239513 -0.087495282 0.0034283618 0.034880649 -0.10259522 -0.015458074 0.05384456 -0.073573202 -0.006253446 0.058995634 -0.063175477 -0.0032035839 0.048151497 -0.082735464 -0.012462272 0.064527243 -0.053141061 -0.015458074 0.05384456 -0.073573202 -0.018145122 0.065452255 -0.051004823 -0.036931425 0.059508778 -0.052199382 -0.03687413 0.050235994 -0.067475475 -0.042755157 0.055266578 -0.052976947 -0.03687413 0.050235994 -0.067475475 -0.036931425 0.059508778 -0.052199382 -0.028749116 0.060347229 -0.057545669 -0.03687413 0.050235994 -0.067475475 -0.028749116 0.060347229 -0.057545669 -0.025536675 0.049250297 -0.077523269 -0.030420437 0.036509831 -0.092026986 -0.025536675 0.049250297 -0.077523269 -0.016624339 0.038902752 -0.096040875 -0.031594854 0.022571541 -0.10720655 -0.022948217 0.011664022 -0.12454262 -0.036081821 0.002868433 -0.12119909 -0.01928266 0.025845006 -0.11150309 -0.022948217 0.011664022 -0.12454262 -0.031594854 0.022571541 -0.10720655 -0.030420437 0.036509831 -0.092026986 -0.01928266 0.025845006 -0.11150309 -0.031594854 0.022571541 -0.10720655 -0.053343318 0.014538525 -0.084486052 -0.043374982 -0.0047683632 -0.11711313 -0.051690351 -0.0011163333 -0.099240877 -0.046530403 0.0097222701 -0.10118165 -0.043374982 -0.0047683632 -0.11711313 -0.053343318 0.014538525 -0.084486052 -0.050266284 0.027496874 -0.078386024 -0.041370854 0.025826428 -0.093532987 -0.046530403 0.0097222701 -0.10118165 -0.044445261 0.04154842 -0.070855826 -0.050895393 0.046750274 -0.053240817 -0.042755157 0.055266578 -0.052976947 -0.030420437 0.036509831 -0.092026986 -0.031594854 0.022571541 -0.10720655 -0.041370854 0.025826428 -0.093532987 -0.0030407202 0.064586356 -0.048291009 -0.006253446 0.058995634 -0.063175477 -0.012462272 0.064527243 -0.053141061 -0.0075817108 0.066447355 -0.042866498 -0.0098927356 0.066639096 -0.036620457 0.0020208443 0.064181432 -0.037170053 -0.006253446 0.058995634 -0.063175477 -0.0030407202 0.064586356 -0.048291009 0.004643789 0.052940577 -0.069845341 0.004643789 0.052940577 -0.069845341 -0.0030407202 0.064586356 -0.048291009 0.0092442045 0.056230389 -0.056599241 0.0092442045 0.056230389 -0.056599241 0.010906319 0.059850249 -0.039293725 0.019882221 0.04714236 -0.062923513 0.0092442045 0.056230389 -0.056599241 0.0047359634 0.062599018 -0.044083379 0.010906319 0.059850249 -0.039293725 0.017816771 0.054112986 -0.040553328 0.055044193 0.019309621 0.072731093 0.030162919 0.036882747 -0.063865498 0.030374231 0.029708648 -0.086305149 0.029264696 0.016879778 -0.11334065 0.019652052 0.03940288 -0.083299033 -0.027055772 0.063687161 -0.051433478 -0.021695031 0.066370547 -0.041241493 -0.018145122 0.065452255 -0.051004823 -0.021695031 0.066370547 -0.041241493 -0.027055772 0.063687161 -0.051433478 -0.030443588 0.064160891 -0.043742634 0.062108308 -0.022589678 0.069009945 0.060559649 -0.025695471 0.078959428 0.058985326 -0.032544866 0.077609748 0.051577713 -0.024170963 0.1014546 0.056843814 -0.014575395 0.094433583 0.050208621 -0.016676284 0.10485097 0.042025983 0.0081809293 0.11080179 0.051411401 -0.0073269024 0.10271873 0.054750741 -0.0018711111 0.096007496 0.03217259 0.018563528 0.11188614 0.023894157 0.010292616 0.11879864 0.030778579 0.007083531 0.11955526 -0.05629288 -0.02606822 -0.082168728 -0.058234032 -0.053108077 0.086300448 -0.059910487 -0.047021046 0.092019551 -0.01132337 0.016564375 -0.12511617 -0.0099908635 0.027660824 -0.1124365 0.0016004482 0.019456586 -0.12366196 -0.03687413 0.050235994 -0.067475475 -0.044445261 0.04154842 -0.070855826 -0.042755157 0.055266578 -0.052976947 -0.016624339 0.038902752 -0.096040875 -0.01928266 0.025845006 -0.11150309 -0.030420437 0.036509831 -0.092026986 -0.050209489 0.050608583 -0.047089916 -0.050895393 0.046750274 -0.053240817 -0.056782853 0.041817974 -0.045685057 -0.056782853 0.041817974 -0.045685057 -0.050895393 0.046750274 -0.053240817 -0.057794016 0.031170113 -0.056764439 -0.057794016 0.031170113 -0.056764439 -0.050895393 0.046750274 -0.053240817 -0.050266284 0.027496874 -0.078386024 -0.030420437 0.036509831 -0.092026986 -0.044445261 0.04154842 -0.070855826 -0.03687413 0.050235994 -0.067475475 -0.030420437 0.036509831 -0.092026986 -0.041370854 0.025826428 -0.093532987 -0.044445261 0.04154842 -0.070855826 -0.030420437 0.036509831 -0.092026986 -0.03687413 0.050235994 -0.067475475 -0.025536675 0.049250297 -0.077523269 0.004643789 0.052940577 -0.069845341 -0.0032035839 0.048151497 -0.082735464 -0.006253446 0.058995634 -0.063175477 -0.021695031 0.066370547 -0.041241493 -0.0075817108 0.066447355 -0.042866498 -0.018145122 0.065452255 -0.051004823 -0.01132337 0.016564375 -0.12511617 -0.01928266 0.025845006 -0.11150309 -0.0099908635 0.027660824 -0.1124365 -0.055328954 0.045606781 -0.038522463 -0.056782853 0.041817974 -0.045685057 -0.060671423 0.034591384 -0.039863307 -0.056782853 0.041817974 -0.045685057 -0.057794016 0.031170113 -0.056764439 -0.060671423 0.034591384 -0.039863307 -0.044445261 0.04154842 -0.070855826 -0.041370854 0.025826428 -0.093532987 -0.050266284 0.027496874 -0.078386024 -0.036081821 0.002868433 -0.12119909 -0.041370854 0.025826428 -0.093532987 -0.031594854 0.022571541 -0.10720655 -0.036081821 0.002868433 -0.12119909 -0.046530403 0.0097222701 -0.10118165 -0.041370854 0.025826428 -0.093532987 0.0091609303 0.04239513 -0.087495282 -0.0032035839 0.048151497 -0.082735464 0.004643789 0.052940577 -0.069845341 -0.015458074 0.05384456 -0.073573202 -0.0048567341 0.035249434 -0.10311304 -0.016624339 0.038902752 -0.096040875 -0.0075817108 0.066447355 -0.042866498 -0.021695031 0.066370547 -0.041241493 -0.0098927356 0.066639096 -0.036620457 -0.051218279 -0.018267216 -0.10833634 -0.057748914 -0.0020735792 -0.082360625 -0.058253843 0.0098576276 -0.074634932 -0.058253843 0.0098576276 -0.074634932 -0.051690351 -0.0011163333 -0.099240877 -0.051218279 -0.018267216 -0.10833634 -0.030443588 0.064160891 -0.043742634 -0.036931425 0.059508778 -0.052199382 -0.036679789 0.061544079 -0.042974669 -0.036931425 0.059508778 -0.052199382 -0.030443588 0.064160891 -0.043742634 -0.027055772 0.063687161 -0.051433478 -0.050266284 0.027496874 -0.078386024 -0.050895393 0.046750274 -0.053240817 -0.044445261 0.04154842 -0.070855826 -0.057794016 0.031170113 -0.056764439 -0.053343318 0.014538525 -0.084486052 -0.058253843 0.0098576276 -0.074634932 0.0020208443 0.064181432 -0.037170053 -0.0030407202 0.064586356 -0.048291009 -0.0075817108 0.066447355 -0.042866498 0.0020208443 0.064181432 -0.037170053 0.0047359634 0.062599018 -0.044083379 -0.0030407202 0.064586356 -0.048291009 -0.0099908635 0.027660824 -0.1124365 -0.0048567341 0.035249434 -0.10311304 0.0016004482 0.019456586 -0.12366196 -0.015458074 0.05384456 -0.073573202 -0.0032035839 0.048151497 -0.082735464 -0.0048567341 0.035249434 -0.10311304 -0.016624339 0.038902752 -0.096040875 -0.0048567341 0.035249434 -0.10311304 -0.0099908635 0.027660824 -0.1124365 -0.01928266 0.025845006 -0.11150309 -0.016624339 0.038902752 -0.096040875 -0.0099908635 0.027660824 -0.1124365 -0.050266284 0.027496874 -0.078386024 -0.053343318 0.014538525 -0.084486052 -0.057794016 0.031170113 -0.056764439 -0.058253843 0.0098576276 -0.074634932 -0.053343318 0.014538525 -0.084486052 -0.051690351 -0.0011163333 -0.099240877 -0.0048567341 0.035249434 -0.10311304 -0.0032035839 0.048151497 -0.082735464 0.0034283618 0.034880649 -0.10259522 -0.060671423 0.034591384 -0.039863307 -0.057794016 0.031170113 -0.056764439 -0.061662998 0.019090801 -0.052721806 -0.060671423 0.034591384 -0.039863307 -0.061662998 0.019090801 -0.052721806 -0.062716082 0.025808349 -0.036257289 -0.045577813 0.055817481 -0.043012969 -0.036931425 0.059508778 -0.052199382 -0.042755157 0.055266578 -0.052976947 -0.036931425 0.059508778 -0.052199382 -0.045577813 0.055817481 -0.043012969 -0.036679789 0.061544079 -0.042974669 -0.057794016 0.031170113 -0.056764439 -0.058253843 0.0098576276 -0.074634932 -0.061662998 0.019090801 -0.052721806 + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899

+
+
+
+
+ + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + + + + + + + + + + + + + +
diff --git a/external/rlbench/urdfs/panda/meshes/Pandalink4visual_vis_1.dae b/external/rlbench/urdfs/panda/meshes/Pandalink4visual_vis_1.dae new file mode 100644 index 0000000000000000000000000000000000000000..f4846a490e7f3961869d4d4cbdf15b22ff0c26d1 --- /dev/null +++ b/external/rlbench/urdfs/panda/meshes/Pandalink4visual_vis_1.dae @@ -0,0 +1,84 @@ + + + + + Assimp + Assimp Exporter + + 2023-09-26T11:24:21 + 2023-09-26T11:24:21 + + Y_UP + + + + + + + + 0 0 0 4.5895327e-41 + + + 0.40000001 0.40000001 0.40000001 4.5893926e-41 + + + 0.40000001 0.40000001 0.40000001 4.5893926e-41 + + + 0.25 0.25 0.25 -3.0261091e+37 + + + + + + + + + + + + + + + + 0.037403319 -0.0025043814 0.015210587 0.039248109 -0.013277444 0.022525366 0.034792073 -0.013121982 0.01917062 0.040829908 -0.0024974036 0.017824566 0.039248109 -0.013277444 0.022525366 0.037403319 -0.0025043814 0.015210587 0.037819762 -0.0036555608 0.011633847 0.04134734 -0.0038978334 0.014593399 0.040829908 -0.0024974036 0.017824566 0.037819762 -0.0036555608 0.011633847 0.040829908 -0.0024974036 0.017824566 0.037403319 -0.0025043814 0.015210587 0.035360176 -0.014518639 0.015859874 0.039818995 -0.014327764 0.019171087 0.04134734 -0.0038978334 0.014593399 0.042166166 0.01819717 0.012601747 0.043051146 0.015472138 0.0087796608 0.041593049 0.026796168 0.014493816 0.04134734 -0.0038978334 0.014593399 0.038679741 -0.020926824 0.021392316 0.041745856 -0.008175496 0.012416623 0.035360176 -0.014518639 0.015859874 0.04134734 -0.0038978334 0.014593399 0.037819762 -0.0036555608 0.011633847 0.042166166 0.01819717 0.012601747 0.041982964 0.0050012055 0.012682428 0.043051146 0.015472138 0.0087796608 0.041982964 0.0050012055 0.012682428 0.041745856 -0.008175496 0.012416623 0.043051146 0.015472138 0.0087796608 0.040049359 0.037800077 0.019406699 0.041593049 0.026796168 0.014493816 0.043051146 0.015472138 0.0087796608 0.039818995 -0.014327764 0.019171087 0.038679741 -0.020926824 0.021392316 0.04134734 -0.0038978334 0.014593399 0.035360176 -0.014518639 0.015859874 0.034792073 -0.013121982 0.01917062 0.039818995 -0.014327764 0.019171087 0.039248109 -0.013277444 0.022525366 0.039818995 -0.014327764 0.019171087 0.034792073 -0.013121982 0.01917062 0.040049359 0.037800077 0.019406699 0.043051146 0.015472138 0.0087796608 0.039216354 0.04385772 0.020718787 0.03805159 0.0053958506 0.01357455 0.041982964 0.0050012055 0.012682428 0.038713783 0.0049975049 0.0099920733 0.038713783 0.0049975049 0.0099920733 0.041982964 0.0050012055 0.012682428 0.042166166 0.01819717 0.012601747 0.038713783 0.0049975049 0.0099920733 0.042166166 0.01819717 0.012601747 0.038303286 0.018905781 0.010285585 0.03805159 0.0053958506 0.01357455 0.042280145 0.0061642351 0.017797314 0.041982964 0.0050012055 0.012682428 0.03805159 0.0053958506 0.01357455 0.041511975 0.01790995 0.016160304 0.042280145 0.0061642351 0.017797314 0.037317585 0.017872658 0.012910788 0.041511975 0.01790995 0.016160304 0.03805159 0.0053958506 0.01357455 0.037317585 0.017872658 0.012910788 0.042166166 0.01819717 0.012601747 0.041511975 0.01790995 0.016160304 0.039315943 0.03792277 0.021124395 0.040049359 0.037800077 0.019406699 0.039216354 0.04385772 0.020718787 0.037317585 0.017872658 0.012910788 0.038303286 0.018905781 0.010285585 0.042166166 0.01819717 0.012601747 0.033743601 0.037178386 0.017924547 0.039528105 0.036461096 0.022496456 0.041004166 0.025694413 0.017799487 0.033743601 0.037178386 0.017924547 0.041004166 0.025694413 0.017799487 0.035984993 0.025802333 0.013993849 0.035984993 0.025802333 0.013993849 0.041004166 0.025694413 0.017799487 0.041593049 0.026796168 0.014493816 0.036805023 0.046883479 0.029384591 0.039315943 0.03792277 0.021124395 0.039216354 0.04385772 0.020718787 0.035984993 0.025802333 0.013993849 0.041593049 0.026796168 0.014493816 0.037427627 0.026593326 0.011139915 0.036473531 -0.022964938 0.029519808 0.038679741 -0.020926824 0.021392316 0.039818995 -0.014327764 0.019171087 0.037427627 0.026593326 0.011139915 0.041593049 0.026796168 0.014493816 0.040049359 0.037800077 0.019406699 0.037427627 0.026593326 0.011139915 0.040049359 0.037800077 0.019406699 0.035180274 0.037747271 0.015378517 0.033743601 0.037178386 0.017924547 0.035180274 0.037747271 0.015378517 0.040049359 0.037800077 0.019406699 0.039315943 0.03792277 0.021124395 0.033743601 0.037178386 0.017924547 0.040049359 0.037800077 0.019406699 0.041982964 0.0050012055 0.012682428 0.04134734 -0.0038978334 0.014593399 0.041745856 -0.008175496 0.012416623 0.033743601 0.037178386 0.017924547 0.039243735 0.037813287 0.021434102 0.039528105 0.036461096 0.022496456 0.041982964 0.0050012055 0.012682428 0.040829908 -0.0024974036 0.017824566 0.04134734 -0.0038978334 0.014593399 0.039243735 0.037813287 0.021434102 0.033743601 0.037178386 0.017924547 0.039315943 0.03792277 0.021124395 0.039315943 0.03792277 0.021124395 0.033743601 0.037178386 0.017924547 0.039315943 0.03792277 0.021124395 0.035360176 -0.014518639 0.015859874 0.036624055 -0.015832679 0.011807438 0.034792073 -0.013121982 0.01917062 0.036805023 0.046883479 0.029384591 0.039216354 0.04385772 0.020718787 0.032702506 0.052176747 0.04036082 0.039278928 0.01073142 0.0055878763 0.03886069 0.00019476004 0.0066456054 0.038303286 0.018905781 0.010285585 0.033700999 0.021561079 0.016175348 0.037317585 0.017872658 0.012910788 0.032105159 0.0026840165 0.021090342 0.03886069 0.00019476004 0.0066456054 0.038713783 0.0049975049 0.0099920733 0.038303286 0.018905781 0.010285585 -0.00043512738 0.013721866 0.12349294 -0.0004720118 -0.0054889941 0.11742389 -0.00042931084 0.0079716593 0.12337895 0.036624055 -0.015832679 0.011807438 0.034319706 -0.022020943 0.018119978 0.034792073 -0.013121982 0.01917062 0.0014668156 0.039536864 0.11239674 0.0013227782 0.035268631 0.11824303 0.0032970449 0.044224117 0.11292178 0.025566105 0.057362944 0.04595457 0.034871574 0.045147814 0.017821072 0.031069705 0.043113958 0.024076398 0.034871574 0.045147814 0.017821072 0.031941086 0.039494261 0.020897521 0.031069705 0.043113958 0.024076398 0.034792073 -0.013121982 0.01917062 0.034319706 -0.022020943 0.018119978 0.027633885 -0.030022353 0.038094699 0.0014668156 0.039536864 0.11239674 0.00037756504 0.026767148 0.12149604 0.0013227782 0.035268631 0.11824303 0.03805159 0.0053958506 0.01357455 0.034792073 -0.013121982 0.01917062 0.027746884 -0.017566582 0.032871738 0.034871574 0.045147814 0.017821072 0.033743601 0.037178386 0.017924547 0.031941086 0.039494261 0.020897521 -0.00042931084 0.0079716593 0.12337895 -0.0004720118 -0.0054889941 0.11742389 -0.00013976534 0.00046614159 0.12233947 0.034871574 0.045147814 0.017821072 0.035180274 0.037747271 0.015378517 0.033743601 0.037178386 0.017924547 0.041934643 0.03184545 0.012630472 0.039216354 0.04385772 0.020718787 0.043051146 0.015472138 0.0087796608 0.043052047 0.0069703073 0.0089381402 0.043051146 0.015472138 0.0087796608 0.041745856 -0.008175496 0.012416623 0.034871574 0.045147814 0.017821072 0.037056826 0.038738586 0.011655956 0.035180274 0.037747271 0.015378517 0.038713783 0.0049975049 0.0099920733 0.037403319 -0.0025043814 0.015210587 0.03805159 0.0053958506 0.01357455 0.038713783 0.0049975049 0.0099920733 0.03886069 0.00019476004 0.0066456054 0.037819762 -0.0036555608 0.011633847 0.027746884 -0.017566582 0.032871738 0.034792073 -0.013121982 0.01917062 0.027633885 -0.030022353 0.038094699 0.038713783 0.0049975049 0.0099920733 0.037819762 -0.0036555608 0.011633847 0.037403319 -0.0025043814 0.015210587 0.027746884 -0.017566582 0.032871738 0.027633885 -0.030022353 0.038094699 0.023679309 -0.029920263 0.044858675 0.037056826 0.038738586 0.011655956 0.037427627 0.026593326 0.011139915 0.035180274 0.037747271 0.015378517 0.033743601 0.037178386 0.017924547 0.033010434 0.033401184 0.017674323 0.031941086 0.039494261 0.020897521 -0.0004720118 -0.0054889941 0.11742389 0.00097424502 -0.01035658 0.11888615 -0.00013976534 0.00046614159 0.12233947 0.023679309 -0.029920263 0.044858675 0.027633885 -0.030022353 0.038094699 0.024697645 -0.034309175 0.046561889 -0.0004720118 -0.0054889941 0.11742389 0.0027023398 -0.023299268 0.10695803 0.00097424502 -0.01035658 0.11888615 0.00097424502 -0.01035658 0.11888615 0.0027023398 -0.023299268 0.10695803 0.0018600308 -0.01665535 0.11550841 0.036473531 -0.022964938 0.029519808 0.032447502 -0.028449731 0.039488863 0.038679741 -0.020926824 0.021392316 0.032105159 0.0026840165 0.021090342 0.037317585 0.017872658 0.012910788 0.030605139 -0.0054330262 0.02515851 0.0014668156 0.039536864 0.11239674 -0.00043512738 0.013721866 0.12349294 0.00037756504 0.026767148 0.12149604 0.01888838 -0.03653324 0.057091419 0.023679309 -0.029920263 0.044858675 0.020870674 -0.038338367 0.057396311 0.023679309 -0.029920263 0.044858675 0.024697645 -0.034309175 0.046561889 0.020870674 -0.038338367 0.057396311 0.0027023398 -0.023299268 0.10695803 0.0047872965 -0.027195346 0.10716609 0.0018600308 -0.01665535 0.11550841 0.020870674 -0.038338367 0.057396311 0.018694993 -0.040061951 0.064566232 0.01888838 -0.03653324 0.057091419 0.0027023398 -0.023299268 0.10695803 0.0072644623 -0.033175372 0.099571794 0.0047872965 -0.027195346 0.10716609 0.0027023398 -0.023299268 0.10695803 0.0057059177 -0.03047435 0.098178945 0.0072644623 -0.033175372 0.099571794 0.037819762 -0.0036555608 0.011633847 0.03886069 0.00019476004 0.0066456054 0.036624055 -0.015832679 0.011807438 0.037228547 -0.022442913 0.033280428 0.032447502 -0.028449731 0.039488863 0.036473531 -0.022964938 0.029519808 0.012937278 -0.038069617 0.07607995 0.01888838 -0.03653324 0.057091419 0.018694993 -0.040061951 0.064566232 0.037056826 0.038738586 0.011655956 0.039278928 0.01073142 0.0055878763 0.037427627 0.026593326 0.011139915 0.0057059177 -0.03047435 0.098178945 0.0099884849 -0.037720423 0.090414554 0.0072644623 -0.033175372 0.099571794 0.013891327 -0.04056792 0.078985706 0.012937278 -0.038069617 0.07607995 0.018694993 -0.040061951 0.064566232 0.033743601 0.037178386 0.017924547 0.035984993 0.025802333 0.013993849 0.033010434 0.033401184 0.017674323 0.039248109 -0.013277444 0.022525366 0.040829908 -0.0024974036 0.017824566 0.04153626 -0.003353073 0.019929534 0.013891327 -0.04056792 0.078985706 0.0099884849 -0.037720423 0.090414554 0.012937278 -0.038069617 0.07607995 0.037317585 0.017872658 0.012910788 0.03805159 0.0053958506 0.01357455 0.030605139 -0.0054330262 0.02515851 0.037427627 0.026593326 0.011139915 0.039278928 0.01073142 0.0055878763 0.038303286 0.018905781 0.010285585 0.01849632 0.063865423 0.067071475 0.022398543 0.061168566 0.055649299 0.018947752 0.061024129 0.060658365 0.035984993 0.025802333 0.013993849 0.033700999 0.021561079 0.016175348 0.033010434 0.033401184 0.017674323 0.037819762 -0.0036555608 0.011633847 0.036624055 -0.015832679 0.011807438 0.035360176 -0.014518639 0.015859874 0.01849632 0.063865423 0.067071475 0.018947752 0.061024129 0.060658365 0.017904198 0.060473498 0.062986761 0.03805159 0.0053958506 0.01357455 0.037403319 -0.0025043814 0.015210587 0.034792073 -0.013121982 0.01917062 0.018947752 0.061024129 0.060658365 0.022398543 0.061168566 0.055649299 0.025566105 0.057362944 0.04595457 0.037427627 0.026593326 0.011139915 0.038303286 0.018905781 0.010285585 0.037317585 0.017872658 0.012910788 0.01849632 0.063865423 0.067071475 0.017904198 0.060473498 0.062986761 0.01516602 0.064225875 0.077141322 0.025566105 0.057362944 0.04595457 0.031069705 0.043113958 0.024076398 0.018947752 0.061024129 0.060658365 0.0093680872 0.059007484 0.088378392 0.011149602 0.061794538 0.088932596 0.01516602 0.064225875 0.077141322 0.0093680872 0.059007484 0.088378392 0.0091353953 0.059164885 0.095222071 0.011149602 0.061794538 0.088932596 0.036473531 -0.022964938 0.029519808 0.039248109 -0.013277444 0.022525366 0.037228547 -0.022442913 0.033280428 0.042280145 0.0061642351 0.017797314 0.04153626 -0.003353073 0.019929534 0.040829908 -0.0024974036 0.017824566 0.030605139 -0.0054330262 0.02515851 0.03805159 0.0053958506 0.01357455 0.027746884 -0.017566582 0.032871738 0.0091353953 0.059164885 0.095222071 0.0093680872 0.059007484 0.088378392 0.0067058257 0.05486688 0.10215262 0.0067058257 0.05486688 0.10215262 0.0093680872 0.059007484 0.088378392 0.0051497654 0.051671807 0.10145742 0.0051497654 0.051671807 0.10145742 0.0032970449 0.044224117 0.11292178 0.0067058257 0.05486688 0.10215262 0.037317585 0.017872658 0.012910788 0.033700999 0.021561079 0.016175348 0.035984993 0.025802333 0.013993849 0.0032970449 0.044224117 0.11292178 0.0051497654 0.051671807 0.10145742 0.0014668156 0.039536864 0.11239674 0.037317585 0.017872658 0.012910788 0.035984993 0.025802333 0.013993849 0.037427627 0.026593326 0.011139915 0.039248109 -0.013277444 0.022525366 0.036473531 -0.022964938 0.029519808 0.039818995 -0.014327764 0.019171087 0.041982964 0.0050012055 0.012682428 0.042280145 0.0061642351 0.017797314 0.040829908 -0.0024974036 0.017824566 0.020332577 -0.017007107 0.026426904 0.023679309 -0.029920263 0.044858675 0.021321559 -0.030125836 0.04345388 0.020332577 -0.017007107 0.026426904 0.027746884 -0.017566582 0.032871738 0.023679309 -0.029920263 0.044858675 0.023679309 -0.029920263 0.044858675 0.01888838 -0.03653324 0.057091419 0.021321559 -0.030125836 0.04345388 0.021321559 -0.030125836 0.04345388 0.01888838 -0.03653324 0.057091419 0.019642681 -0.018198481 0.02936786 0.020332577 -0.017007107 0.026426904 0.019642681 -0.018198481 0.02936786 0.021118645 -0.010198898 0.020606561 0.021321559 -0.030125836 0.04345388 0.019642681 -0.018198481 0.02936786 0.020332577 -0.017007107 0.026426904 0.0027023398 -0.023299268 0.10695803 -0.0004720118 -0.0054889941 0.11742389 0.0057059177 -0.03047435 0.098178945 0.017904198 0.060473498 0.062986761 0.0093680872 0.059007484 0.088378392 0.01516602 0.064225875 0.077141322 0.0057059177 -0.03047435 0.098178945 0.012937278 -0.038069617 0.07607995 0.0099884849 -0.037720423 0.090414554 0.0014668156 0.039536864 0.11239674 -0.0004720118 -0.0054889941 0.11742389 -0.00043512738 0.013721866 0.12349294 0.020332577 -0.017007107 0.026426904 0.030605139 -0.0054330262 0.02515851 0.027746884 -0.017566582 0.032871738 0.02682342 -0.0022595215 0.018586585 0.032105159 0.0026840165 0.021090342 0.030605139 -0.0054330262 0.02515851 0.02682342 -0.0022595215 0.018586585 0.024783621 -0.00071596721 0.012485327 0.028792951 0.0097545562 0.0130617 0.02682342 -0.0022595215 0.018586585 0.028792951 0.0097545562 0.0130617 0.032105159 0.0026840165 0.021090342 0.028792951 0.0097545562 0.0130617 0.033700999 0.021561079 0.016175348 0.032105159 0.0026840165 0.021090342 0.02381645 0.042871766 0.018430704 0.023673538 0.054000523 0.038552523 0.026360381 0.052945256 0.038032785 0.02381645 0.042871766 0.018430704 0.026360381 0.052945256 0.038032785 0.031069705 0.043113958 0.024076398 0.025005624 0.035655756 0.011173337 0.031941086 0.039494261 0.020897521 0.033010434 0.033401184 0.017674323 0.038683996 0.043403868 0.030964851 0.039528105 0.036461096 0.022496456 0.036805023 0.046883479 0.029384591 0.025005624 0.035655756 0.011173337 0.031069705 0.043113958 0.024076398 0.031941086 0.039494261 0.020897521 0.025005624 0.035655756 0.011173337 0.02381645 0.042871766 0.018430704 0.031069705 0.043113958 0.024076398 0.026566327 0.010567985 0.0074278368 0.026661936 0.023970744 0.0069570648 0.028792951 0.0097545562 0.0130617 0.041511975 0.01790995 0.016160304 0.042166166 0.01819717 0.012601747 0.041004166 0.025694413 0.017799487 0.023673538 0.054000523 0.038552523 0.018947752 0.061024129 0.060658365 0.026360381 0.052945256 0.038032785 0.026661936 0.023970744 0.0069570648 0.033700999 0.021561079 0.016175348 0.028792951 0.0097545562 0.0130617 0.026661936 0.023970744 0.0069570648 0.033010434 0.033401184 0.017674323 0.033700999 0.021561079 0.016175348 0.037056826 0.038738586 0.011655956 0.038658869 0.026135698 0.0072366004 0.039278928 0.01073142 0.0055878763 0.02682342 -0.0022595215 0.018586585 0.030605139 -0.0054330262 0.02515851 0.020332577 -0.017007107 0.026426904 0.024783621 -0.00071596721 0.012485327 0.02682342 -0.0022595215 0.018586585 0.020332577 -0.017007107 0.026426904 0.026566327 0.010567985 0.0074278368 0.028792951 0.0097545562 0.0130617 0.024783621 -0.00071596721 0.012485327 0.020332577 -0.017007107 0.026426904 0.021118645 -0.010198898 0.020606561 0.024783621 -0.00071596721 0.012485327 0.024783621 -0.00071596721 0.012485327 0.021118645 -0.010198898 0.020606561 0.0254829 0.010911148 0.0077120764 0.024783621 -0.00071596721 0.012485327 0.0254829 0.010911148 0.0077120764 0.026566327 0.010567985 0.0074278368 0.025005624 0.035655756 0.011173337 0.023896797 0.037163567 0.013432247 0.023521794 0.052603967 0.037893176 0.025005624 0.035655756 0.011173337 0.023521794 0.052603967 0.037893176 0.02381645 0.042871766 0.018430704 0.02381645 0.042871766 0.018430704 0.023521794 0.052603967 0.037893176 0.023673538 0.054000523 0.038552523 0.023673538 0.054000523 0.038552523 0.023521794 0.052603967 0.037893176 0.018947752 0.061024129 0.060658365 0.039243735 0.037813287 0.021434102 0.039315943 0.03792277 0.021124395 0.036805023 0.046883479 0.029384591 0.018947752 0.061024129 0.060658365 0.023521794 0.052603967 0.037893176 0.017904198 0.060473498 0.062986761 0.039243735 0.037813287 0.021434102 0.036805023 0.046883479 0.029384591 0.039528105 0.036461096 0.022496456 0.040534113 0.036192168 0.024593139 0.039528105 0.036461096 0.022496456 0.038683996 0.043403868 0.030964851 0.026661936 0.023970744 0.0069570648 0.025005624 0.035655756 0.011173337 0.033010434 0.033401184 0.017674323 0.026566327 0.010567985 0.0074278368 0.0254829 0.010911148 0.0077120764 0.026661936 0.023970744 0.0069570648 0.0254829 0.010911148 0.0077120764 0.023896797 0.037163567 0.013432247 0.025005624 0.035655756 0.011173337 0.0254829 0.010911148 0.0077120764 0.025005624 0.035655756 0.011173337 0.026661936 0.023970744 0.0069570648 0.018622128 0.057084497 0.091228336 0.0051497654 0.051671807 0.10145742 0.0093680872 0.059007484 0.088378392 0.042166166 0.01819717 0.012601747 0.041593049 0.026796168 0.014493816 0.041004166 0.025694413 0.017799487 0.045896459 0.045435086 0.098150104 0.040415898 0.023914069 0.11456168 0.056680296 0.038227737 0.065337941 0.052699625 -0.020982042 0.076373421 0.058079913 -0.014415022 0.060028058 0.060372926 -0.004372254 0.053257484 0.044545349 -0.020818077 0.10111453 0.052699625 -0.020982042 0.076373421 0.040415898 0.023914069 0.11456168 0.038699366 0.0079862457 0.11940921 0.040415898 0.023914069 0.11456168 0.03946783 0.024385173 0.11738177 0.045896459 0.045435086 0.098150104 0.056680296 0.038227737 0.065337941 0.049587063 0.048142567 0.086977907 0.044545349 -0.020818077 0.10111453 0.048205148 -0.024732182 0.089898713 0.052699625 -0.020982042 0.076373421 0.038699366 0.0079862457 0.11940921 0.039113931 0.00044608401 0.11796212 0.040415898 0.023914069 0.11456168 0.056680296 0.038227737 0.065337941 0.06151557 0.016375991 0.050171547 0.058973659 0.035370398 0.058240112 0.049587063 0.048142567 0.086977907 0.056680296 0.038227737 0.065337941 0.053682182 0.046572786 0.074528091 0.03946783 0.024385173 0.11738177 0.040415898 0.023914069 0.11456168 0.041199118 0.034161597 0.11225171 0.052699625 -0.020982042 0.076373421 0.060372926 -0.004372254 0.053257484 0.061501626 0.0076097408 0.05005325 0.048205148 -0.024732182 0.089898713 0.052190628 -0.024443947 0.077727124 0.052699625 -0.020982042 0.076373421 0.056680296 0.038227737 0.065337941 0.052699625 -0.020982042 0.076373421 0.06151557 0.016375991 0.050171547 0.036805023 0.046883479 0.029384591 0.032702506 0.052176747 0.04036082 0.038683996 0.043403868 0.030964851 0.052699625 -0.020982042 0.076373421 0.052190628 -0.024443947 0.077727124 0.054557994 -0.022053448 0.070636004 0.056680296 0.038227737 0.065337941 0.055612501 0.043975316 0.06860467 0.053682182 0.046572786 0.074528091 0.052699625 -0.020982042 0.076373421 0.061501626 0.0076097408 0.05005325 0.06151557 0.016375991 0.050171547 0.034871574 0.045147814 0.017821072 0.025566105 0.057362944 0.04595457 0.032702506 0.052176747 0.04036082 0.032702506 0.052176747 0.04036082 0.039216354 0.04385772 0.020718787 0.034871574 0.045147814 0.017821072 0.039113931 0.00044608401 0.11796212 0.040816125 -0.010485396 0.11262394 0.040415898 0.023914069 0.11456168 0.056680296 0.038227737 0.065337941 0.058973659 0.035370398 0.058240112 0.055612501 0.043975316 0.06860467 0.040816125 -0.010485396 0.11262394 0.044545349 -0.020818077 0.10111453 0.040415898 0.023914069 0.11456168 0.052699625 -0.020982042 0.076373421 0.054557994 -0.022053448 0.070636004 0.058079913 -0.014415022 0.060028058 0.039216354 0.04385772 0.020718787 0.037056826 0.038738586 0.011655956 0.034871574 0.045147814 0.017821072 0.041199118 0.034161597 0.11225171 0.040415898 0.023914069 0.11456168 0.045896459 0.045435086 0.098150104 0.053682182 0.046572786 0.074528091 0.044509679 0.055781346 0.06725131 0.041820023 0.058044966 0.07751672 0.053682182 0.046572786 0.074528091 0.041820023 0.058044966 0.07751672 0.049587063 0.048142567 0.086977907 0.061501626 0.0076097408 0.05005325 0.056522287 0.021953996 0.038171183 0.06151557 0.016375991 0.050171547 0.053656776 0.014604066 0.030346056 0.056522287 0.021953996 0.038171183 0.061501626 0.0076097408 0.05005325 0.06151557 0.016375991 0.050171547 0.056522287 0.021953996 0.038171183 0.058973659 0.035370398 0.058240112 0.058973659 0.035370398 0.058240112 0.056522287 0.021953996 0.038171183 0.057826683 0.031254593 0.048355911 0.038658869 0.026135698 0.0072366004 0.041934643 0.03184545 0.012630472 0.043051146 0.015472138 0.0087796608 0.053373445 0.020131698 0.03090065 0.056522287 0.021953996 0.038171183 0.053656776 0.014604066 0.030346056 0.041745856 -0.008175496 0.012416623 0.036624055 -0.015832679 0.011807438 0.03886069 0.00019476004 0.0066456054 0.056522287 0.021953996 0.038171183 0.052901726 0.029177671 0.033805605 0.057826683 0.031254593 0.048355911 0.056522287 0.021953996 0.038171183 0.053373445 0.020131698 0.03090065 0.052901726 0.029177671 0.033805605 0.052901726 0.029177671 0.033805605 0.051702913 0.036382291 0.037946723 0.057826683 0.031254593 0.048355911 0.037056826 0.038738586 0.011655956 0.041934643 0.03184545 0.012630472 0.038658869 0.026135698 0.0072366004 0.050060224 0.042976301 0.044213731 0.058973659 0.035370398 0.058240112 0.057826683 0.031254593 0.048355911 0.041745856 -0.008175496 0.012416623 0.03886069 0.00019476004 0.0066456054 0.043052047 0.0069703073 0.0089381402 0.057826683 0.031254593 0.048355911 0.051702913 0.036382291 0.037946723 0.050060224 0.042976301 0.044213731 0.058973659 0.035370398 0.058240112 0.050060224 0.042976301 0.044213731 0.048735004 0.047096882 0.049625941 0.039278928 0.01073142 0.0055878763 0.043052047 0.0069703073 0.0089381402 0.03886069 0.00019476004 0.0066456054 0.039278928 0.01073142 0.0055878763 0.043051146 0.015472138 0.0087796608 0.043052047 0.0069703073 0.0089381402 0.048735004 0.047096882 0.049625941 0.055612501 0.043975316 0.06860467 0.058973659 0.035370398 0.058240112 0.039216354 0.04385772 0.020718787 0.041934643 0.03184545 0.012630472 0.037056826 0.038738586 0.011655956 0.044509679 0.055781346 0.06725131 0.053682182 0.046572786 0.074528091 0.055612501 0.043975316 0.06860467 0.055612501 0.043975316 0.06860467 0.048735004 0.047096882 0.049625941 0.044509679 0.055781346 0.06725131 0.038658869 0.026135698 0.0072366004 0.043051146 0.015472138 0.0087796608 0.039278928 0.01073142 0.0055878763 0.053656776 0.014604066 0.030346056 0.061501626 0.0076097408 0.05005325 0.053398747 0.0052211932 0.030511146 0.058043394 0.0019927425 0.041781496 0.061501626 0.0076097408 0.05005325 0.060372926 -0.004372254 0.053257484 0.061501626 0.0076097408 0.05005325 0.058043394 0.0019927425 0.041781496 0.053398747 0.0052211932 0.030511146 0.058043394 0.0019927425 0.041781496 0.052429289 -0.0070177098 0.033942457 0.053398747 0.0052211932 0.030511146 0.038679741 -0.020926824 0.021392316 0.036624055 -0.015832679 0.011807438 0.041745856 -0.008175496 0.012416623 0.038679741 -0.020926824 0.021392316 0.034319706 -0.022020943 0.018119978 0.036624055 -0.015832679 0.011807438 0.058043394 0.0019927425 0.041781496 0.060372926 -0.004372254 0.053257484 0.052429289 -0.0070177098 0.033942457 0.058079913 -0.014415022 0.060028058 0.050882757 -0.015992291 0.04039323 0.060372926 -0.004372254 0.053257484 0.032447502 -0.028449731 0.039488863 0.027633885 -0.030022353 0.038094699 0.034319706 -0.022020943 0.018119978 0.034319706 -0.022020943 0.018119978 0.038679741 -0.020926824 0.021392316 0.032447502 -0.028449731 0.039488863 0.052429289 -0.0070177098 0.033942457 0.060372926 -0.004372254 0.053257484 0.05142843 -0.012454164 0.036910776 0.060372926 -0.004372254 0.053257484 0.050882757 -0.015992291 0.04039323 0.05142843 -0.012454164 0.036910776 0.050882757 -0.015992291 0.04039323 0.058079913 -0.014415022 0.060028058 0.048906449 -0.022683697 0.047983434 0.058079913 -0.014415022 0.060028058 0.054557994 -0.022053448 0.070636004 0.047508754 -0.026169507 0.052956872 0.058079913 -0.014415022 0.060028058 0.047508754 -0.026169507 0.052956872 0.048906449 -0.022683697 0.047983434 0.047508754 -0.026169507 0.052956872 0.054557994 -0.022053448 0.070636004 0.044034582 -0.032534197 0.066658497 0.036045596 -0.036629472 0.073600411 0.020870674 -0.038338367 0.057396311 0.03758027 -0.035040069 0.065383427 0.032447502 -0.028449731 0.039488863 0.038750205 -0.033135049 0.05934963 0.024697645 -0.034309175 0.046561889 0.052190628 -0.024443947 0.077727124 0.048205148 -0.024732182 0.089898713 0.041696399 -0.034695268 0.075389974 0.054557994 -0.022053448 0.070636004 0.052190628 -0.024443947 0.077727124 0.041696399 -0.034695268 0.075389974 0.044034582 -0.032534197 0.066658497 0.054557994 -0.022053448 0.070636004 0.041696399 -0.034695268 0.075389974 0.044545349 -0.020818077 0.10111453 0.031827457 -0.018926913 0.11446621 0.034838863 -0.02882258 0.10276169 0.041199118 0.034161597 0.11225171 0.033095762 0.045437232 0.11137863 0.032116193 0.041219216 0.11521387 0.033095762 0.045437232 0.11137863 0.045896459 0.045435086 0.098150104 0.03513569 0.051521342 0.10360298 0.045896459 0.045435086 0.098150104 0.037062086 0.055297583 0.096028961 0.03513569 0.051521342 0.10360298 0.03447181 -0.037095096 0.078666531 0.013891327 -0.04056792 0.078985706 0.018694993 -0.040061951 0.064566232 0.049587063 0.048142567 0.086977907 0.041820023 0.058044966 0.07751672 0.03873105 0.057236779 0.089531273 0.039113931 0.00044608401 0.11796212 0.030810397 -0.012383754 0.11902905 0.040816125 -0.010485396 0.11262394 0.039113931 0.00044608401 0.11796212 0.029884527 -0.0049100691 0.12256607 0.030810397 -0.012383754 0.11902905 0.029884527 -0.0049100691 0.12256607 0.039113931 0.00044608401 0.11796212 0.02945227 0.0026688478 0.12464979 0.04153626 -0.003353073 0.019929534 0.052429289 -0.0070177098 0.033942457 0.039248109 -0.013277444 0.022525366 0.052429289 -0.0070177098 0.033942457 0.05142843 -0.012454164 0.036910776 0.039248109 -0.013277444 0.022525366 0.030224647 0.028085353 0.12252595 0.029604778 0.019781563 0.12474957 0.03946783 0.024385173 0.11738177 0.038699366 0.0079862457 0.11940921 0.029377403 0.0097744102 0.12543739 0.02945227 0.0026688478 0.12464979 0.049587063 0.048142567 0.086977907 0.037062086 0.055297583 0.096028961 0.045896459 0.045435086 0.098150104 0.036045596 -0.036629472 0.073600411 0.03447181 -0.037095096 0.078666531 0.018694993 -0.040061951 0.064566232 0.037062086 0.055297583 0.096028961 0.049587063 0.048142567 0.086977907 0.03873105 0.057236779 0.089531273 0.029604778 0.019781563 0.12474957 0.038699366 0.0079862457 0.11940921 0.03946783 0.024385173 0.11738177 0.037773073 -0.033567525 0.091306917 0.041696399 -0.034695268 0.075389974 0.048205148 -0.024732182 0.089898713 0.048205148 -0.024732182 0.089898713 0.044545349 -0.020818077 0.10111453 0.036191951 -0.031522527 0.097431302 0.037773073 -0.033567525 0.091306917 0.048205148 -0.024732182 0.089898713 0.036191951 -0.031522527 0.097431302 0.044545349 -0.020818077 0.10111453 0.034838863 -0.02882258 0.10276169 0.036191951 -0.031522527 0.097431302 0.031827457 -0.018926913 0.11446621 0.044545349 -0.020818077 0.10111453 0.040816125 -0.010485396 0.11262394 0.040816125 -0.010485396 0.11262394 0.030810397 -0.012383754 0.11902905 0.031827457 -0.018926913 0.11446621 0.039113931 0.00044608401 0.11796212 0.038699366 0.0079862457 0.11940921 0.02945227 0.0026688478 0.12464979 0.020870674 -0.038338367 0.057396311 0.036045596 -0.036629472 0.073600411 0.018694993 -0.040061951 0.064566232 0.030224647 0.028085353 0.12252595 0.03946783 0.024385173 0.11738177 0.041199118 0.034161597 0.11225171 0.041199118 0.034161597 0.11225171 0.032116193 0.041219216 0.11521387 0.030224647 0.028085353 0.12252595 0.053398747 0.0052211932 0.030511146 0.052429289 -0.0070177098 0.033942457 0.04153626 -0.003353073 0.019929534 0.029377403 0.0097744102 0.12543739 0.038699366 0.0079862457 0.11940921 0.029604778 0.019781563 0.12474957 0.041199118 0.034161597 0.11225171 0.045896459 0.045435086 0.098150104 0.033095762 0.045437232 0.11137863 0.044509679 0.055781346 0.06725131 0.034472577 0.060521256 0.077259742 0.041820023 0.058044966 0.07751672 0.024697645 -0.034309175 0.046561889 0.03758027 -0.035040069 0.065383427 0.020870674 -0.038338367 0.057396311 0.042280145 0.0061642351 0.017797314 0.053398747 0.0052211932 0.030511146 0.04153626 -0.003353073 0.019929534 0.053656776 0.014604066 0.030346056 0.053398747 0.0052211932 0.030511146 0.041511975 0.01790995 0.016160304 0.053656776 0.014604066 0.030346056 0.041511975 0.01790995 0.016160304 0.053373445 0.020131698 0.03090065 0.041511975 0.01790995 0.016160304 0.041004166 0.025694413 0.017799487 0.053373445 0.020131698 0.03090065 0.053398747 0.0052211932 0.030511146 0.042280145 0.0061642351 0.017797314 0.041511975 0.01790995 0.016160304 0.044509679 0.055781346 0.06725131 0.03782133 0.058578197 0.066390708 0.034472577 0.060521256 0.077259742 0.053373445 0.020131698 0.03090065 0.041004166 0.025694413 0.017799487 0.052901726 0.029177671 0.033805605 0.052901726 0.029177671 0.033805605 0.041004166 0.025694413 0.017799487 0.039528105 0.036461096 0.022496456 0.041696399 -0.034695268 0.075389974 0.03447181 -0.037095096 0.078666531 0.036045596 -0.036629472 0.073600411 0.025566105 0.057362944 0.04595457 0.022398543 0.061168566 0.055649299 0.03782133 0.058578197 0.066390708 0.052901726 0.029177671 0.033805605 0.039528105 0.036461096 0.022496456 0.040534113 0.036192168 0.024593139 0.041696399 -0.034695268 0.075389974 0.036045596 -0.036629472 0.073600411 0.03758027 -0.035040069 0.065383427 0.038750205 -0.033135049 0.05934963 0.03758027 -0.035040069 0.065383427 0.024697645 -0.034309175 0.046561889 0.052901726 0.029177671 0.033805605 0.040534113 0.036192168 0.024593139 0.051702913 0.036382291 0.037946723 0.034472577 0.060521256 0.077259742 0.03782133 0.058578197 0.066390708 0.01849632 0.063865423 0.067071475 0.051702913 0.036382291 0.037946723 0.038683996 0.043403868 0.030964851 0.050060224 0.042976301 0.044213731 0.034472577 0.060521256 0.077259742 0.01849632 0.063865423 0.067071475 0.01516602 0.064225875 0.077141322 0.044034582 -0.032534197 0.066658497 0.03758027 -0.035040069 0.065383427 0.038750205 -0.033135049 0.05934963 0.050060224 0.042976301 0.044213731 0.038683996 0.043403868 0.030964851 0.048735004 0.047096882 0.049625941 0.03782133 0.058578197 0.066390708 0.022398543 0.061168566 0.055649299 0.01849632 0.063865423 0.067071475 0.048735004 0.047096882 0.049625941 0.038683996 0.043403868 0.030964851 0.032702506 0.052176747 0.04036082 0.048735004 0.047096882 0.049625941 0.042429768 0.051318139 0.049670085 0.044509679 0.055781346 0.06725131 0.038750205 -0.033135049 0.05934963 0.047508754 -0.026169507 0.052956872 0.044034582 -0.032534197 0.066658497 0.042429768 0.051318139 0.049670085 0.03782133 0.058578197 0.066390708 0.044509679 0.055781346 0.06725131 0.032447502 -0.028449731 0.039488863 0.024697645 -0.034309175 0.046561889 0.027633885 -0.030022353 0.038094699 0.040534113 0.036192168 0.024593139 0.038683996 0.043403868 0.030964851 0.051702913 0.036382291 0.037946723 0.042429768 0.051318139 0.049670085 0.025566105 0.057362944 0.04595457 0.03782133 0.058578197 0.066390708 0.048735004 0.047096882 0.049625941 0.032702506 0.052176747 0.04036082 0.042429768 0.051318139 0.049670085 0.032702506 0.052176747 0.04036082 0.025566105 0.057362944 0.04595457 0.042429768 0.051318139 0.049670085 0.032447502 -0.028449731 0.039488863 0.047508754 -0.026169507 0.052956872 0.038750205 -0.033135049 0.05934963 0.034472577 0.060521256 0.077259742 0.031232718 0.059037413 0.090336882 0.03873105 0.057236779 0.089531273 0.03873105 0.057236779 0.089531273 0.031232718 0.059037413 0.090336882 0.037062086 0.055297583 0.096028961 0.034472577 0.060521256 0.077259742 0.03873105 0.057236779 0.089531273 0.041820023 0.058044966 0.07751672 0.031232718 0.059037413 0.090336882 0.034472577 0.060521256 0.077259742 0.01516602 0.064225875 0.077141322 0.047508754 -0.026169507 0.052956872 0.032447502 -0.028449731 0.039488863 0.037228547 -0.022442913 0.033280428 0.031232718 0.059037413 0.090336882 0.01516602 0.064225875 0.077141322 0.011149602 0.061794538 0.088932596 0.048906449 -0.022683697 0.047983434 0.037228547 -0.022442913 0.033280428 0.050882757 -0.015992291 0.04039323 0.048906449 -0.022683697 0.047983434 0.047508754 -0.026169507 0.052956872 0.037228547 -0.022442913 0.033280428 0.019720387 -0.006619683 0.12243427 -0.00013976534 0.00046614159 0.12233947 0.00097424502 -0.01035658 0.11888615 0.019720387 -0.006619683 0.12243427 0.00097424502 -0.01035658 0.11888615 0.022080125 -0.015592132 0.11793855 -0.00013976534 0.00046614159 0.12233947 0.019720387 -0.006619683 0.12243427 0.01991619 0.005216476 0.12549686 0.039248109 -0.013277444 0.022525366 0.050882757 -0.015992291 0.04039323 0.037228547 -0.022442913 0.033280428 0.013891327 -0.04056792 0.078985706 0.03447181 -0.037095096 0.078666531 0.028861182 -0.035252467 0.092635959 0.019355273 0.029144609 0.12273332 0.0013227782 0.035268631 0.11824303 0.00037756504 0.026767148 0.12149604 0.0072644623 -0.033175372 0.099571794 0.028861182 -0.035252467 0.092635959 0.025885725 -0.028001789 0.10638952 0.0099884849 -0.037720423 0.090414554 0.028861182 -0.035252467 0.092635959 0.0072644623 -0.033175372 0.099571794 0.0072644623 -0.033175372 0.099571794 0.025885725 -0.028001789 0.10638952 0.023974925 -0.0240882 0.1110212 0.03758027 -0.035040069 0.065383427 0.044034582 -0.032534197 0.066658497 0.041696399 -0.034695268 0.075389974 0.0013227782 0.035268631 0.11824303 0.021530231 0.04170642 0.1160602 0.0032970449 0.044224117 0.11292178 0.023974925 -0.0240882 0.1110212 0.0047872965 -0.027195346 0.10716609 0.0072644623 -0.033175372 0.099571794 0.0047872965 -0.027195346 0.10716609 0.023974925 -0.0240882 0.1110212 0.010417544 -0.019133808 0.11477572 0.05142843 -0.012454164 0.036910776 0.050882757 -0.015992291 0.04039323 0.039248109 -0.013277444 0.022525366 0.022080125 -0.015592132 0.11793855 0.00097424502 -0.01035658 0.11888615 0.010417544 -0.019133808 0.11477572 0.010417544 -0.019133808 0.11477572 0.00097424502 -0.01035658 0.11888615 0.0018600308 -0.01665535 0.11550841 0.020256346 0.020913461 0.12508269 -0.00043512738 0.013721866 0.12349294 -0.00042931084 0.0079716593 0.12337895 0.024586922 0.046460625 0.11197995 0.0067058257 0.05486688 0.10215262 0.0032970449 0.044224117 0.11292178 0.020256346 0.020913461 0.12508269 0.019355273 0.029144609 0.12273332 0.00037756504 0.026767148 0.12149604 0.019355273 0.029144609 0.12273332 0.020402784 0.034738567 0.12035999 0.0013227782 0.035268631 0.11824303 0.0013227782 0.035268631 0.11824303 0.020402784 0.034738567 0.12035999 0.021530231 0.04170642 0.1160602 0.0032970449 0.044224117 0.11292178 0.021530231 0.04170642 0.1160602 0.024586922 0.046460625 0.11197995 0.030810397 -0.012383754 0.11902905 0.023974925 -0.0240882 0.1110212 0.031827457 -0.018926913 0.11446621 0.0067058257 0.05486688 0.10215262 0.024586922 0.046460625 0.11197995 0.027635712 0.054938879 0.1008601 0.019720387 -0.006619683 0.12243427 0.029884527 -0.0049100691 0.12256607 0.02945227 0.0026688478 0.12464979 0.027635712 0.054938879 0.1008601 0.0091353953 0.059164885 0.095222071 0.0067058257 0.05486688 0.10215262 0.022080125 -0.015592132 0.11793855 0.023974925 -0.0240882 0.1110212 0.030810397 -0.012383754 0.11902905 -0.00043512738 0.013721866 0.12349294 0.020256346 0.020913461 0.12508269 0.00037756504 0.026767148 0.12149604 0.011149602 0.061794538 0.088932596 0.027635712 0.054938879 0.1008601 0.031232718 0.059037413 0.090336882 0.028861182 -0.035252467 0.092635959 0.0099884849 -0.037720423 0.090414554 0.013891327 -0.04056792 0.078985706 0.03447181 -0.037095096 0.078666531 0.041696399 -0.034695268 0.075389974 0.037773073 -0.033567525 0.091306917 0.027635712 0.054938879 0.1008601 0.011149602 0.061794538 0.088932596 0.0091353953 0.059164885 0.095222071 0.021530231 0.04170642 0.1160602 0.020402784 0.034738567 0.12035999 0.032116193 0.041219216 0.11521387 0.01991619 0.005216476 0.12549686 0.020256346 0.020913461 0.12508269 -0.00042931084 0.0079716593 0.12337895 0.023974925 -0.0240882 0.1110212 0.022080125 -0.015592132 0.11793855 0.010417544 -0.019133808 0.11477572 0.010417544 -0.019133808 0.11477572 0.0018600308 -0.01665535 0.11550841 0.0047872965 -0.027195346 0.10716609 0.01991619 0.005216476 0.12549686 -0.00042931084 0.0079716593 0.12337895 -0.00013976534 0.00046614159 0.12233947 0.020256346 0.020913461 0.12508269 0.01991619 0.005216476 0.12549686 0.029377403 0.0097744102 0.12543739 0.020256346 0.020913461 0.12508269 0.029377403 0.0097744102 0.12543739 0.029604778 0.019781563 0.12474957 0.03513569 0.051521342 0.10360298 0.024586922 0.046460625 0.11197995 0.033095762 0.045437232 0.11137863 0.020402784 0.034738567 0.12035999 0.030224647 0.028085353 0.12252595 0.032116193 0.041219216 0.11521387 0.019355273 0.029144609 0.12273332 0.029604778 0.019781563 0.12474957 0.030224647 0.028085353 0.12252595 0.01991619 0.005216476 0.12549686 0.019720387 -0.006619683 0.12243427 0.02945227 0.0026688478 0.12464979 0.027635712 0.054938879 0.1008601 0.037062086 0.055297583 0.096028961 0.031232718 0.059037413 0.090336882 0.028861182 -0.035252467 0.092635959 0.03447181 -0.037095096 0.078666531 0.037773073 -0.033567525 0.091306917 0.019720387 -0.006619683 0.12243427 0.022080125 -0.015592132 0.11793855 0.029884527 -0.0049100691 0.12256607 0.027635712 0.054938879 0.1008601 0.03513569 0.051521342 0.10360298 0.037062086 0.055297583 0.096028961 0.027635712 0.054938879 0.1008601 0.024586922 0.046460625 0.11197995 0.03513569 0.051521342 0.10360298 0.020402784 0.034738567 0.12035999 0.019355273 0.029144609 0.12273332 0.030224647 0.028085353 0.12252595 0.023974925 -0.0240882 0.1110212 0.025885725 -0.028001789 0.10638952 0.031827457 -0.018926913 0.11446621 0.025885725 -0.028001789 0.10638952 0.034838863 -0.02882258 0.10276169 0.031827457 -0.018926913 0.11446621 0.01991619 0.005216476 0.12549686 0.02945227 0.0026688478 0.12464979 0.029377403 0.0097744102 0.12543739 0.022080125 -0.015592132 0.11793855 0.030810397 -0.012383754 0.11902905 0.029884527 -0.0049100691 0.12256607 0.024586922 0.046460625 0.11197995 0.021530231 0.04170642 0.1160602 0.033095762 0.045437232 0.11137863 0.028861182 -0.035252467 0.092635959 0.037773073 -0.033567525 0.091306917 0.036191951 -0.031522527 0.097431302 0.025885725 -0.028001789 0.10638952 0.028861182 -0.035252467 0.092635959 0.034838863 -0.02882258 0.10276169 0.033095762 0.045437232 0.11137863 0.021530231 0.04170642 0.1160602 0.032116193 0.041219216 0.11521387 0.019355273 0.029144609 0.12273332 0.020256346 0.020913461 0.12508269 0.029604778 0.019781563 0.12474957 0.028861182 -0.035252467 0.092635959 0.036191951 -0.031522527 0.097431302 0.034838863 -0.02882258 0.10276169 + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070

+
+
+
+
+ + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + + + + + + + + + + + + + +
diff --git a/external/rlbench/urdfs/panda/meshes/Pandalink4visual_vis_2.dae b/external/rlbench/urdfs/panda/meshes/Pandalink4visual_vis_2.dae new file mode 100644 index 0000000000000000000000000000000000000000..ce2171339eb219999b98a3cd8792fe037b032205 --- /dev/null +++ b/external/rlbench/urdfs/panda/meshes/Pandalink4visual_vis_2.dae @@ -0,0 +1,84 @@ + + + + + Assimp + Assimp Exporter + + 2023-09-26T11:24:21 + 2023-09-26T11:24:21 + + Y_UP + + + + + + + + 0 0 0 4.5895327e-41 + + + 0.98000002 0.98000002 0.98000002 4.5893926e-41 + + + 0.98000002 0.98000002 0.98000002 4.5893926e-41 + + + 0.25 0.25 0.25 3.6295857e-33 + + + + + + + + + + + + + + + + -0.044777472 -0.0428438 0.050809011 -0.055848908 0.054908566 0.086258695 -0.035872269 0.058652904 0.025566353 -0.049358111 -0.041562561 0.064764664 -0.052066218 -0.038832754 0.073054895 -0.055848908 0.054908566 0.086258695 -0.028348535 0.030325359 0.0021677669 -0.030403262 0.047754448 0.0087363413 -0.027410351 0.046234693 -0.00039563555 -0.044777472 -0.0428438 0.050809011 -0.035872269 0.058652904 0.025566353 -0.038495015 -0.038031645 0.03178804 -0.035764802 -0.039149154 -0.029102469 -0.020894902 -0.041110136 -0.021800095 -0.021016626 -0.041419502 -0.021435581 -0.06133588 -0.0084993942 0.10179637 -0.06211815 -2.1160946e-05 0.10432962 -0.055848908 0.054908566 0.086258695 -0.052066218 -0.038832754 0.073054895 -0.055199645 -0.033388097 0.082680516 -0.055848908 0.054908566 0.086258695 -0.058499787 0.046577372 0.094173551 -0.055849683 0.054906636 0.086260855 -0.055848908 0.054908566 0.086258695 -0.06211815 -2.1160946e-05 0.10432962 -0.062442452 0.014666907 0.10558257 -0.055848908 0.054908566 0.086258695 -0.029848212 -0.040870879 -0.024665507 -0.035764802 -0.039149154 -0.029102469 -0.021016626 -0.041419502 -0.021435581 -0.038495015 -0.038031645 0.03178804 -0.035872269 0.058652904 0.025566353 -0.03394017 -0.028848266 0.018102257 -0.055199645 -0.033388097 0.082680516 -0.057967003 -0.025743306 0.091236442 -0.055848908 0.054908566 0.086258695 -0.028348535 0.030325359 0.0021677669 -0.027410351 0.046234693 -0.00039563555 -0.02394456 0.050709601 -0.010856272 -0.055848908 0.054908566 0.086258695 -0.041440099 0.065918542 0.042632993 -0.035872269 0.058652904 0.025566353 -0.02394456 0.050709601 -0.010856272 -0.027410351 0.046234693 -0.00039563555 -0.02554811 0.047924824 -0.0060300091 -0.022857774 -0.035751648 -0.015732208 -0.023198495 -0.028895492 -0.014571507 -0.019374017 -0.047830962 -0.026514491 -0.057967003 -0.025743306 0.091236442 -0.059607007 -0.019140845 0.096348278 -0.055848908 0.054908566 0.086258695 -0.03394017 -0.028848266 0.018102257 -0.035872269 0.058652904 0.025566353 -0.027528567 0.010754727 -0.00068130274 -0.055848908 0.054908566 0.086258695 -0.052978903 0.060885016 0.077637658 -0.047630019 0.066456802 0.061469965 -0.055848908 0.054908566 0.086258695 -0.047630019 0.066456802 0.061469965 -0.041440099 0.065918542 0.042632993 -0.062442452 0.014666907 0.10558257 -0.062225547 0.020549428 0.10502955 -0.055848908 0.054908566 0.086258695 -0.03394017 -0.028848266 0.018102257 -0.027528567 0.010754727 -0.00068130274 -0.028010666 -0.00034766347 0.00058350695 -0.022857774 -0.035751648 -0.015732208 -0.025816377 -0.028607219 -0.0066034482 -0.023198495 -0.028895492 -0.014571507 -0.062225547 0.020549428 0.10502955 -0.061213981 0.031920388 0.10215943 -0.055848908 0.054908566 0.086258695 -0.027528567 0.010754727 -0.00068130274 -0.035872269 0.058652904 0.025566353 -0.028348535 0.030325359 0.0021677669 -0.03394017 -0.028848266 0.018102257 -0.028010666 -0.00034766347 0.00058350695 -0.031240793 -0.025150876 0.0099581545 -0.061213981 0.031920388 0.10215943 -0.059607167 0.041761585 0.097454168 -0.055848908 0.054908566 0.086258695 -0.025816377 -0.028607219 -0.0066034482 -0.028706845 -0.025065297 0.0022525135 -0.023198495 -0.028895492 -0.014571507 -0.059607007 -0.019140845 0.096348278 -0.06133588 -0.0084993942 0.10179637 -0.055848908 0.054908566 0.086258695 -0.052978903 0.060885016 0.077637658 -0.049459919 0.065229408 0.067013659 -0.047630019 0.066456802 0.061469965 -0.028348535 0.030325359 0.0021677669 -0.035872269 0.058652904 0.025566353 -0.030403262 0.047754448 0.0087363413 -0.035872269 0.058652904 0.025566353 -0.041440099 0.065918542 0.042632993 -0.037604302 0.061707962 0.030893039 -0.027942428 -0.0014937354 0.000356123 -0.046801448 -0.010462434 -0.0029170027 -0.03003056 -0.017213432 0.0064203506 -0.031240793 -0.025150876 0.0099581545 -0.028010666 -0.00034766347 0.00058350695 -0.028706845 -0.025065297 0.0022525135 -0.041440099 0.065918542 0.042632993 -0.047630019 0.066456802 0.061469965 -0.044493496 0.067079425 0.051941611 -0.059607167 0.041761585 0.097454168 -0.058499787 0.046577372 0.094173551 -0.055848908 0.054908566 0.086258695 -0.028706845 -0.025065297 0.0022525135 -0.028010666 -0.00034766347 0.00058350695 -0.023198495 -0.028895492 -0.014571507 -0.049358111 -0.041562561 0.064764664 -0.055848908 0.054908566 0.086258695 -0.044777472 -0.0428438 0.050809011 -0.046801448 -0.010462434 -0.0029170027 -0.048329584 -0.019911552 0.0020785471 -0.03003056 -0.017213432 0.0064203506 0.045806307 0.016754145 0.110663 0.040880993 0.02371829 0.11393166 0.040036496 0.010319339 0.11614741 -0.045948233 -0.0029687993 -0.0052712951 -0.046801448 -0.010462434 -0.0029170027 -0.027942428 -0.0014937354 0.000356123 0.052274495 -0.0092556523 0.095683984 0.055520192 -0.0048186276 0.092382267 0.046488531 -0.0077363271 0.10529449 0.052274495 -0.0092556523 0.095683984 0.046488531 -0.0077363271 0.10529449 0.044937402 -0.014361582 0.10286283 0.054931425 -0.012287449 0.086385004 0.055520192 -0.0048186276 0.092382267 0.052274495 -0.0092556523 0.095683984 -0.048329584 -0.019911552 0.0020785471 -0.031330489 -0.024225127 0.010247851 -0.03003056 -0.017213432 0.0064203506 0.052821781 0.021646056 0.10073418 0.056046691 0.023823926 0.093964264 0.049978577 0.030713307 0.10098448 0.055520192 -0.0048186276 0.092382267 0.0531886 0.0084703043 0.10149505 0.049909499 0.0031097506 0.10522284 0.054931425 -0.012287449 0.086385004 0.052274495 -0.0092556523 0.095683984 0.048326381 -0.01939089 0.092587024 0.052821781 0.021646056 0.10073418 0.050882615 0.013617139 0.10495066 0.056374874 0.012718977 0.096069813 0.049978577 0.030713307 0.10098448 0.043554768 0.035619754 0.10614841 0.047023073 0.026001832 0.10709812 0.049909499 0.0031097506 0.10522284 0.050882615 0.013617139 0.10495066 0.040036496 0.010319339 0.11614741 0.055520192 -0.0048186276 0.092382267 0.049909499 0.0031097506 0.10522284 0.046488531 -0.0077363271 0.10529449 0.046488531 -0.0077363271 0.10529449 0.039436623 -0.0042022238 0.11378387 0.039091475 -0.014298031 0.10877872 0.049909499 0.0031097506 0.10522284 0.040036496 0.010319339 0.11614741 0.043848474 0.0014238768 0.11163566 0.049909499 0.0031097506 0.10522284 0.043848474 0.0014238768 0.11163566 0.046488531 -0.0077363271 0.10529449 0.056374874 0.012718977 0.096069813 0.050882615 0.013617139 0.10495066 0.0531886 0.0084703043 0.10149505 -0.045267757 0.0055825263 -0.0066367802 -0.045948233 -0.0029687993 -0.0052712951 -0.027942428 -0.0014937354 0.000356123 0.046488531 -0.0077363271 0.10529449 0.043848474 0.0014238768 0.11163566 0.039436623 -0.0042022238 0.11378387 0.054750808 -0.017744737 0.065774284 0.058645498 -0.008973009 0.075696252 0.054224618 -0.018779134 0.07291887 0.050882615 0.013617139 0.10495066 0.047023073 0.026001832 0.10709812 0.045806307 0.016754145 0.110663 0.043554768 0.035619754 0.10614841 0.03911268 0.029865138 0.11319198 0.047023073 0.026001832 0.10709812 0.058645498 -0.008973009 0.075696252 0.054931425 -0.012287449 0.086385004 0.054224618 -0.018779134 0.07291887 0.050882615 0.013617139 0.10495066 0.045806307 0.016754145 0.110663 0.040036496 0.010319339 0.11614741 0.050882615 0.013617139 0.10495066 0.049909499 0.0031097506 0.10522284 0.0531886 0.0084703043 0.10149505 0.054224618 -0.018779134 0.07291887 0.054931425 -0.012287449 0.086385004 0.050389856 -0.022812327 0.080310956 0.059543271 0.0069636339 0.087902948 0.0531886 0.0084703043 0.10149505 0.055520192 -0.0048186276 0.092382267 0.047023073 0.026001832 0.10709812 0.040880993 0.02371829 0.11393166 0.045806307 0.016754145 0.110663 0.052821781 0.021646056 0.10073418 0.049978577 0.030713307 0.10098448 0.047023073 0.026001832 0.10709812 -0.045948233 -0.0029687993 -0.0052712951 -0.045267757 0.0055825263 -0.0066367802 -0.0383651 -0.036340736 -0.029053601 -0.038652807 -0.037541006 -0.0280274 -0.041496832 -0.030180911 -0.019284543 -0.0383651 -0.036340736 -0.029053601 0.059543271 0.0069636339 0.087902948 0.056374874 0.012718977 0.096069813 0.0531886 0.0084703043 0.10149505 0.052821781 0.021646056 0.10073418 0.047023073 0.026001832 0.10709812 0.050882615 0.013617139 0.10495066 0.052274495 -0.0092556523 0.095683984 0.044937402 -0.014361582 0.10286283 0.048326381 -0.01939089 0.092587024 0.054931425 -0.012287449 0.086385004 0.048326381 -0.01939089 0.092587024 0.050389856 -0.022812327 0.080310956 -0.046801448 -0.010462434 -0.0029170027 -0.045948233 -0.0029687993 -0.0052712951 -0.0383651 -0.036340736 -0.029053601 0.047023073 0.026001832 0.10709812 0.03911268 0.029865138 0.11319198 0.040880993 0.02371829 0.11393166 0.058645498 -0.008973009 0.075696252 0.055520192 -0.0048186276 0.092382267 0.054931425 -0.012287449 0.086385004 0.056046691 0.023823926 0.093964264 0.052821781 0.021646056 0.10073418 0.056374874 0.012718977 0.096069813 -0.048292775 -0.021119762 0.0014621341 -0.046801448 -0.010462434 -0.0029170027 -0.0383651 -0.036340736 -0.029053601 0.060136188 0.0012586886 0.083115444 0.055520192 -0.0048186276 0.092382267 0.058645498 -0.008973009 0.075696252 0.060136188 0.0012586886 0.083115444 0.059543271 0.0069636339 0.087902948 0.055520192 -0.0048186276 0.092382267 -0.041496832 -0.030180911 -0.019284543 -0.048292775 -0.021119762 0.0014621341 -0.0383651 -0.036340736 -0.029053601 0.044937402 -0.014361582 0.10286283 0.046488531 -0.0077363271 0.10529449 0.039091475 -0.014298031 0.10877872 -0.052978903 0.060885016 0.077637658 -0.022857636 0.061717145 0.082244232 -0.035931468 0.064108267 0.07408943 -0.018411739 0.057026699 0.091759883 -0.0083711967 0.060464907 0.085840471 -0.022857636 0.061717145 0.082244232 0.009056312 0.051265657 0.10176701 0.02573364 0.050495148 0.10215889 0.0033335136 0.054410838 0.097281791 -0.018411739 0.057026699 0.091759883 -0.022857636 0.061717145 0.082244232 -0.052978903 0.060885016 0.077637658 0.017622281 0.060752649 0.075743802 0.019327555 0.060625728 0.070554644 4.3915814e-05 0.063593879 0.060285907 -0.038652807 -0.037541006 -0.0280274 -0.035764802 -0.039149154 -0.029102469 -0.029848212 -0.040870879 -0.024665507 0.035072606 0.057044182 0.073987752 0.019327555 0.060625728 0.070554644 0.017622281 0.060752649 0.075743802 -0.044493496 0.067079425 0.051941611 -0.020894729 0.065645702 0.052459426 -0.041440099 0.065918542 0.042632993 -0.039748535 -0.026975209 -0.0096484767 -0.032177966 -0.033512063 -0.01678437 -0.032179013 -0.029567316 -0.010191507 -0.0095814737 0.065050095 0.065068245 4.3915814e-05 0.063593879 0.060285907 -0.020894729 0.065645702 0.052459426 -0.028028376 -0.025556948 0.00017916915 -0.032179013 -0.029567316 -0.010191507 -0.025687261 -0.02884193 -0.0070011173 -0.035931468 0.064108267 0.07408943 -0.012717542 0.064101741 0.074576065 -0.032383859 0.066456586 0.063336357 -0.018411739 0.057026699 0.091759883 0.0033335136 0.054410838 0.097281791 -0.0083711967 0.060464907 0.085840471 -0.0095814737 0.065050095 0.065068245 -0.020894729 0.065645702 0.052459426 -0.044493496 0.067079425 0.051941611 -0.0095814737 0.065050095 0.065068245 0.017622281 0.060752649 0.075743802 4.3915814e-05 0.063593879 0.060285907 -0.035931468 0.064108267 0.07408943 -0.032383859 0.066456586 0.063336357 -0.047630019 0.066456802 0.061469965 0.035072606 0.057044182 0.073987752 0.017622281 0.060752649 0.075743802 0.032077473 0.057216421 0.082988031 -0.022857636 0.061717145 0.082244232 0.0015354798 0.062518328 0.077733196 -0.012717542 0.064101741 0.074576065 -0.0083711967 0.060464907 0.085840471 0.020836253 0.057141241 0.089999229 0.0015354798 0.062518328 0.077733196 -0.049459919 0.065229408 0.067013659 -0.035931468 0.064108267 0.07408943 -0.047630019 0.066456802 0.061469965 -0.03271335 0.057794012 0.088256516 -0.018411739 0.057026699 0.091759883 -0.052978903 0.060885016 0.077637658 -0.022857636 0.061717145 0.082244232 -0.012717542 0.064101741 0.074576065 -0.035931468 0.064108267 0.07408943 -0.00010490225 0.05032016 0.10253584 0.0033335136 0.054410838 0.097281791 -0.018411739 0.057026699 0.091759883 0.0015354798 0.062518328 0.077733196 0.017622281 0.060752649 0.075743802 -0.0095814737 0.065050095 0.065068245 0.009056312 0.051265657 0.10176701 0.0033335136 0.054410838 0.097281791 -0.00010490225 0.05032016 0.10253584 -0.0083711967 0.060464907 0.085840471 0.0015354798 0.062518328 0.077733196 -0.022857636 0.061717145 0.082244232 0.014524116 0.061163642 0.063631944 -0.0044253329 0.063244186 0.05285627 4.3915814e-05 0.063593879 0.060285907 -0.055848908 0.054908566 0.086258695 -0.03271335 0.057794012 0.088256516 -0.052978903 0.060885016 0.077637658 0.028264215 0.053860229 0.095837213 0.020836253 0.057141241 0.089999229 -0.0083711967 0.060464907 0.085840471 -0.032179013 -0.029567316 -0.010191507 -0.032177966 -0.033512063 -0.01678437 -0.023124799 -0.03497811 -0.014906417 -0.032179013 -0.029567316 -0.010191507 -0.023124799 -0.03497811 -0.014906417 -0.025687261 -0.02884193 -0.0070011173 -0.032383859 0.066456586 0.063336357 -0.0095814737 0.065050095 0.065068245 -0.044493496 0.067079425 0.051941611 -0.020894729 0.065645702 0.052459426 -0.0044253329 0.063244186 0.05285627 -0.024037849 0.064216137 0.043387495 0.02573364 0.050495148 0.10215889 0.009056312 0.051265657 0.10176701 0.023932813 0.045049891 0.10888398 -0.047630019 0.066456802 0.061469965 -0.032383859 0.066456586 0.063336357 -0.044493496 0.067079425 0.051941611 -0.020894729 0.065645702 0.052459426 -0.024037849 0.064216137 0.043387495 -0.041440099 0.065918542 0.042632993 -0.012717542 0.064101741 0.074576065 0.0015354798 0.062518328 0.077733196 -0.0095814737 0.065050095 0.065068245 0.019327555 0.060625728 0.070554644 0.035072606 0.057044182 0.073987752 0.014524116 0.061163642 0.063631944 4.3915814e-05 0.063593879 0.060285907 -0.0044253329 0.063244186 0.05285627 -0.020894729 0.065645702 0.052459426 -0.026494894 0.052848153 0.096222833 -0.00010490225 0.05032016 0.10253584 -0.018411739 0.057026699 0.091759883 0.0033335136 0.054410838 0.097281791 0.028264215 0.053860229 0.095837213 -0.0083711967 0.060464907 0.085840471 0.032077473 0.057216421 0.082988031 0.017622281 0.060752649 0.075743802 0.020836253 0.057141241 0.089999229 -0.026494894 0.052848153 0.096222833 -0.018411739 0.057026699 0.091759883 -0.03271335 0.057794012 0.088256516 0.019327555 0.060625728 0.070554644 0.014524116 0.061163642 0.063631944 4.3915814e-05 0.063593879 0.060285907 -0.052978903 0.060885016 0.077637658 -0.035931468 0.064108267 0.07408943 -0.049459919 0.065229408 0.067013659 -0.055703338 0.054905858 0.086308949 -0.03271335 0.057794012 0.088256516 -0.055848908 0.054908566 0.086258695 -0.012717542 0.064101741 0.074576065 -0.0095814737 0.065050095 0.065068245 -0.032383859 0.066456586 0.063336357 -0.038980808 -0.024878008 -0.00048539828 -0.039748535 -0.026975209 -0.0096484767 -0.029369609 -0.024800228 0.004268161 0.02573364 0.050495148 0.10215889 0.028264215 0.053860229 0.095837213 0.0033335136 0.054410838 0.097281791 0.020836253 0.057141241 0.089999229 0.017622281 0.060752649 0.075743802 0.0015354798 0.062518328 0.077733196 0.048122976 0.049712483 0.071069889 0.042880904 0.053537626 0.070981875 0.046388719 0.051095754 0.076379985 -0.041496832 -0.030180911 -0.019284543 -0.032177966 -0.033512063 -0.01678437 -0.039748535 -0.026975209 -0.0096484767 0.053138178 0.044109434 0.069976099 0.048122976 0.049712483 0.071069889 0.050855845 0.046600487 0.076768592 0.028264215 0.053860229 0.095837213 0.02573364 0.050495148 0.10215889 0.033237886 0.053985201 0.093002744 0.048122976 0.049712483 0.071069889 0.046388719 0.051095754 0.076379985 0.050855845 0.046600487 0.076768592 0.039778922 0.053373072 0.087101966 0.037259646 0.049145665 0.098690219 0.045432545 0.046405796 0.092879519 0.042880904 0.053537626 0.070981875 0.041529741 0.054412406 0.07561978 0.046388719 0.051095754 0.076379985 0.033237886 0.053985201 0.093002744 0.02573364 0.050495148 0.10215889 0.029805643 0.047746509 0.10480782 0.045432545 0.046405796 0.092879519 0.037259646 0.049145665 0.098690219 0.041152194 0.044760484 0.10071437 0.035072606 0.057044182 0.073987752 0.032077473 0.057216421 0.082988031 0.041529741 0.054412406 0.07561978 0.033237886 0.053985201 0.093002744 0.029805643 0.047746509 0.10480782 0.037259646 0.049145665 0.098690219 0.02573364 0.050495148 0.10215889 0.023932813 0.045049891 0.10888398 0.029805643 0.047746509 0.10480782 0.053138178 0.044109434 0.069976099 0.050855845 0.046600487 0.076768592 0.055174485 0.040442463 0.074830137 0.032077473 0.057216421 0.082988031 0.039778922 0.053373072 0.087101966 0.041529741 0.054412406 0.07561978 0.045432545 0.046405796 0.092879519 0.046475939 0.041773621 0.097273827 0.047732793 0.047120549 0.086876728 0.041152194 0.044760484 0.10071437 0.046475939 0.041773621 0.097273827 0.045432545 0.046405796 0.092879519 0.032077473 0.057216421 0.082988031 0.033237886 0.053985201 0.093002744 0.039778922 0.053373072 0.087101966 0.041529741 0.054412406 0.07561978 0.047732793 0.047120549 0.086876728 0.046388719 0.051095754 0.076379985 0.037259646 0.049145665 0.098690219 0.036810704 0.039262597 0.10936145 0.041152194 0.044760484 0.10071437 -0.039748535 -0.026975209 -0.0096484767 -0.032179013 -0.029567316 -0.010191507 -0.028028376 -0.025556948 0.00017916915 0.046388719 0.051095754 0.076379985 0.047732793 0.047120549 0.086876728 0.050855845 0.046600487 0.076768592 0.029805643 0.047746509 0.10480782 0.023932813 0.045049891 0.10888398 0.03083539 0.041368049 0.11071325 0.032077473 0.057216421 0.082988031 0.020836253 0.057141241 0.089999229 0.033237886 0.053985201 0.093002744 0.029805643 0.047746509 0.10480782 0.03083539 0.041368049 0.11071325 0.037259646 0.049145665 0.098690219 0.037259646 0.049145665 0.098690219 0.03083539 0.041368049 0.11071325 0.036810704 0.039262597 0.10936145 0.050855845 0.046600487 0.076768592 0.047732793 0.047120549 0.086876728 0.05232675 0.041057549 0.086093418 -0.032177966 -0.033512063 -0.01678437 -0.029848212 -0.040870879 -0.024665507 -0.023124799 -0.03497811 -0.014906417 0.041529741 0.054412406 0.07561978 0.039778922 0.053373072 0.087101966 0.047732793 0.047120549 0.086876728 0.041152194 0.044760484 0.10071437 0.043554768 0.035619754 0.10614841 0.046475939 0.041773621 0.097273827 0.020836253 0.057141241 0.089999229 0.028264215 0.053860229 0.095837213 0.033237886 0.053985201 0.093002744 0.041152194 0.044760484 0.10071437 0.036810704 0.039262597 0.10936145 0.043554768 0.035619754 0.10614841 -0.040072553 -0.024421092 0.0058308481 -0.038980808 -0.024878008 -0.00048539828 -0.029369609 -0.024800228 0.004268161 0.046403646 0.048227541 0.057718478 0.038114261 0.054851942 0.065122835 0.042880904 0.053537626 0.070981875 0.046403646 0.048227541 0.057718478 0.042880904 0.053537626 0.070981875 0.048122976 0.049712483 0.071069889 0.038114261 0.054851942 0.065122835 0.035072606 0.057044182 0.073987752 0.042880904 0.053537626 0.070981875 0.047732793 0.047120549 0.086876728 0.039778922 0.053373072 0.087101966 0.045432545 0.046405796 0.092879519 -0.038980808 -0.024878008 -0.00048539828 -0.048292775 -0.021119762 0.0014621341 -0.041496832 -0.030180911 -0.019284543 0.042880904 0.053537626 0.070981875 0.035072606 0.057044182 0.073987752 0.041529741 0.054412406 0.07561978 0.053138178 0.044109434 0.069976099 0.055174485 0.040442463 0.074830137 0.056445416 0.038475048 0.067003883 0.039778922 0.053373072 0.087101966 0.033237886 0.053985201 0.093002744 0.037259646 0.049145665 0.098690219 -0.028246127 0.015475507 -0.0013447098 -0.028010666 -0.00034766347 0.00058350695 -0.027528567 0.010754727 -0.00068130274 -0.028662536 0.02445899 -0.00017652931 -0.028246127 0.015475507 -0.0013447098 -0.027528567 0.010754727 -0.00068130274 -0.028348535 0.030325359 0.0021677669 -0.028662536 0.02445899 -0.00017652931 -0.027528567 0.010754727 -0.00068130274 -0.039748535 -0.026975209 -0.0096484767 -0.028028376 -0.025556948 0.00017916915 -0.029369609 -0.024800228 0.004268161 -0.029180273 0.03035854 0.0013686154 -0.028662536 0.02445899 -0.00017652931 -0.028348535 0.030325359 0.0021677669 -0.027932286 0.03878409 -0.0027564852 -0.029180273 0.03035854 0.0013686154 -0.028348535 0.030325359 0.0021677669 -0.026909091 0.043864597 -0.0061070803 -0.027932286 0.03878409 -0.0027564852 -0.028348535 0.030325359 0.0021677669 -0.02394456 0.050709601 -0.010856272 -0.026909091 0.043864597 -0.0061070803 -0.028348535 0.030325359 0.0021677669 -0.045704763 -0.020093404 -0.1122619 -0.011294832 -0.067081325 -0.040038317 -0.054544654 -0.034126826 -0.096828505 -0.040099274 -0.015066721 -0.11700743 -0.011294832 -0.067081325 -0.040038317 -0.045704763 -0.020093404 -0.1122619 -0.01670853 -0.0027794824 -0.1254968 -0.011294832 -0.067081325 -0.040038317 -0.026099751 -0.0065399683 -0.12361529 -0.0009497836 0.00099318603 -0.12535027 -0.011294832 -0.067081325 -0.040038317 -0.01670853 -0.0027794824 -0.1254968 0.016043734 0.0017825227 -0.12092297 -0.011294832 -0.067081325 -0.040038317 -0.0009497836 0.00099318603 -0.12535027 -0.033514298 -0.010516763 -0.12081753 -0.011294832 -0.067081325 -0.040038317 -0.040099274 -0.015066721 -0.11700743 -0.026099751 -0.0065399683 -0.12361529 -0.011294832 -0.067081325 -0.040038317 -0.033514298 -0.010516763 -0.12081753 0.028953254 -0.00026659199 -0.11411111 -0.011294832 -0.067081325 -0.040038317 0.016043734 0.0017825227 -0.12092297 0.039693773 -0.0046538408 -0.10495098 -0.011294832 -0.067081325 -0.040038317 0.028953254 -0.00026659199 -0.11411111 0.04473538 -0.0082729245 -0.098620571 -0.011294832 -0.067081325 -0.040038317 0.039693773 -0.0046538408 -0.10495098 0.048002101 -0.011753244 -0.093040675 -0.011294832 -0.067081325 -0.040038317 0.04473538 -0.0082729245 -0.098620571 0.051385134 -0.018106038 -0.083683304 -0.011294832 -0.067081325 -0.040038317 0.048002101 -0.011753244 -0.093040675 0.052323982 -0.023327254 -0.076583929 -0.011294832 -0.067081325 -0.040038317 0.051385134 -0.018106038 -0.083683304 0.051398207 -0.030638548 -0.067361847 -0.011294832 -0.067081325 -0.040038317 0.052323982 -0.023327254 -0.076583929 -0.041496832 -0.030180911 -0.019284543 -0.038652807 -0.037541006 -0.0280274 -0.029848212 -0.040870879 -0.024665507 0.047480077 -0.038899738 -0.057863552 -0.011294832 -0.067081325 -0.040038317 0.051398207 -0.030638548 -0.067361847 0.043246862 -0.044270974 -0.052229114 -0.011294832 -0.067081325 -0.040038317 0.047480077 -0.038899738 -0.057863552 0.039768707 -0.047692984 -0.048890281 -0.011294832 -0.067081325 -0.040038317 0.043246862 -0.044270974 -0.052229114 -0.038980808 -0.024878008 -0.00048539828 -0.040072553 -0.024421092 0.0058308481 -0.048292775 -0.021119762 0.0014621341 -0.011294832 -0.067081325 -0.040038317 -0.048366394 -0.056653537 -0.065515198 -0.052349884 -0.051972974 -0.072888181 -0.04294645 -0.060595307 -0.058643203 -0.048366394 -0.056653537 -0.065515198 -0.011294832 -0.067081325 -0.040038317 -0.036828969 -0.063483663 -0.052918836 -0.04294645 -0.060595307 -0.058643203 -0.011294832 -0.067081325 -0.040038317 -0.011294832 -0.067081325 -0.040038317 -0.052349884 -0.051972974 -0.072888181 -0.054043915 -0.048791688 -0.077573895 -0.011294832 -0.067081325 -0.040038317 -0.054043915 -0.048791688 -0.077573895 -0.055446461 -0.043681785 -0.084677286 -0.029798301 -0.06557069 -0.047944859 -0.036828969 -0.063483663 -0.052918836 -0.011294832 -0.067081325 -0.040038317 0.031424746 -0.053975377 -0.043388691 -0.011294832 -0.067081325 -0.040038317 0.039768707 -0.047692984 -0.048890281 0.023506565 -0.05837214 -0.040206406 -0.011294832 -0.067081325 -0.040038317 0.031424746 -0.053975377 -0.043388691 0.0024519709 -0.065398514 -0.037816528 -0.011294832 -0.067081325 -0.040038317 0.012030075 -0.062911101 -0.037980314 -0.02469299 -0.066489622 -0.045109782 -0.029798301 -0.06557069 -0.047944859 -0.011294832 -0.067081325 -0.040038317 -0.011294832 -0.067081325 -0.040038317 -0.055446461 -0.043681785 -0.084677286 -0.054544654 -0.034126826 -0.096828505 0.012030075 -0.062911101 -0.037980314 -0.011294832 -0.067081325 -0.040038317 0.023506565 -0.05837214 -0.040206406 -0.028246127 0.015475507 -0.0013447098 -0.028223336 0.007982173 -0.0012851168 -0.028010666 -0.00034766347 0.00058350695 -0.028010666 -0.00034766347 0.00058350695 -0.022865791 -0.032772548 -0.017640963 -0.023198495 -0.028895492 -0.014571507 -0.023198495 -0.028895492 -0.014571507 -0.022865791 -0.032772548 -0.017640963 -0.019374017 -0.047830962 -0.026514491 -0.014169401 -0.025412658 0.017213766 0.0066459849 -0.025286788 0.029019944 -0.015429924 -0.02745454 0.022393132 0.0055464869 -0.021212289 0.014130025 0.010195186 -0.020189619 -0.00079806865 0.014773454 -0.014506211 0.011430902 -0.028706845 -0.025065297 0.0022525135 -0.009582812 -0.024438992 0.0099366223 -0.031240793 -0.025150876 0.0099581545 0.010195186 -0.020189619 -0.00079806865 0.016843824 -0.013899053 -0.0010511071 0.014773454 -0.014506211 0.011430902 -0.005779834 -0.050193202 -0.02636259 -0.0087107727 -0.04216814 -0.019834021 -0.019374017 -0.047830962 -0.026514491 0.0070422967 -0.024945008 -0.0064458665 0.005060988 -0.023045648 -0.00040319981 -0.0045553087 -0.026160365 -0.00062851451 0.0055464869 -0.021212289 0.014130025 0.0084661879 -0.021757433 0.022022435 0.0025327879 -0.023524657 0.02032537 0.023220506 -0.0055378745 -0.0080961576 0.021146188 -0.004920918 0.00049605448 0.016843824 -0.013899053 -0.0010511071 -0.014169401 -0.025412658 0.017213766 0.0025327879 -0.023524657 0.02032537 0.0066459849 -0.025286788 0.029019944 0.0070422967 -0.024945008 -0.0064458665 0.010195186 -0.020189619 -0.00079806865 0.005060988 -0.023045648 -0.00040319981 -0.041496832 -0.030180911 -0.019284543 -0.029848212 -0.040870879 -0.024665507 -0.032177966 -0.033512063 -0.01678437 -0.005779834 -0.050193202 -0.02636259 0.0020732274 -0.044012744 -0.022607893 -0.0087107727 -0.04216814 -0.019834021 -0.041496832 -0.030180911 -0.019284543 -0.039748535 -0.026975209 -0.0096484767 -0.038980808 -0.024878008 -0.00048539828 0.037944064 0.0067583462 -0.035982914 0.031800427 0.021550544 -0.026509494 0.026885377 0.014915043 -0.012752888 0.01261145 -0.022168012 -0.0082882317 0.017943865 -0.021963313 -0.014193458 0.020936957 -0.014246449 -0.011230882 -0.0045553087 -0.026160365 -0.00062851451 0.005060988 -0.023045648 -0.00040319981 0.003930077 -0.021699537 0.008150205 0.0055464869 -0.021212289 0.014130025 0.014773454 -0.014506211 0.011430902 0.012819029 -0.016952902 0.015793184 -0.019374017 -0.047830962 -0.026514491 -0.0087107727 -0.04216814 -0.019834021 -0.015815018 -0.035412308 -0.013644157 0.016843824 -0.013899053 -0.0010511071 0.018568359 -0.009045274 0.011348256 0.014773454 -0.014506211 0.011430902 -0.015815018 -0.035412308 -0.013644157 -0.022857774 -0.035751648 -0.015732208 -0.019374017 -0.047830962 -0.026514491 0.0070422967 -0.024945008 -0.0064458665 0.01261145 -0.022168012 -0.0082882317 0.010195186 -0.020189619 -0.00079806865 0.023220506 -0.0055378745 -0.0080961576 0.025066847 -0.0004521205 -0.0097724246 0.021146188 -0.004920918 0.00049605448 0.0055464869 -0.021212289 0.014130025 0.012819029 -0.016952902 0.015793184 0.0084661879 -0.021757433 0.022022435 -0.017892443 -0.02614343 0.00099697825 -0.0045553087 -0.026160365 -0.00062851451 -0.009582812 -0.024438992 0.0099366223 0.0025327879 -0.023524657 0.02032537 0.0084661879 -0.021757433 0.022022435 0.0066459849 -0.025286788 0.029019944 -0.015429924 -0.02745454 0.022393132 0.010624532 -0.026980776 0.035081141 -0.017095601 -0.032768462 0.029911099 0.0020732274 -0.044012744 -0.022607893 -0.009309209 -0.036382962 -0.014392295 -0.0087107727 -0.04216814 -0.019834021 0.031319715 -0.011011199 -0.025281332 0.033921067 0.00086578319 -0.027396828 0.026246306 0.010696036 -0.0099769048 -0.015429924 -0.02745454 0.022393132 0.0066459849 -0.025286788 0.029019944 0.010624532 -0.026980776 0.035081141 -0.015815018 -0.035412308 -0.013644157 -0.0087107727 -0.04216814 -0.019834021 -0.009309209 -0.036382962 -0.014392295 -0.0045553087 -0.026160365 -0.00062851451 0.003930077 -0.021699537 0.008150205 -0.009582812 -0.024438992 0.0099366223 -0.038652807 -0.037541006 -0.0280274 -0.0383651 -0.036340736 -0.029053601 -0.035764802 -0.039149154 -0.029102469 0.016843824 -0.013899053 -0.0010511071 0.021146188 -0.004920918 0.00049605448 0.018568359 -0.009045274 0.011348256 0.020936957 -0.014246449 -0.011230882 0.025482753 -0.020972341 -0.021923771 0.023220506 -0.0055378745 -0.0080961576 -0.031240793 -0.025150876 0.0099581545 -0.014169401 -0.025412658 0.017213766 -0.015429924 -0.02745454 0.022393132 -0.009582812 -0.024438992 0.0099366223 -0.014169401 -0.025412658 0.017213766 -0.031240793 -0.025150876 0.0099581545 0.0085474625 -0.038075007 -0.020346953 0.013782213 -0.035857521 -0.021418825 0.012551515 -0.031203236 -0.017244658 -0.031240793 -0.025150876 0.0099581545 -0.015429924 -0.02745454 0.022393132 -0.03394017 -0.028848266 0.018102257 0.01261145 -0.022168012 -0.0082882317 0.020936957 -0.014246449 -0.011230882 0.010195186 -0.020189619 -0.00079806865 0.0085474625 -0.038075007 -0.020346953 0.012551515 -0.031203236 -0.017244658 0.0020732274 -0.044012744 -0.022607893 0.025482753 -0.020972341 -0.021923771 0.031319715 -0.011011199 -0.025281332 0.023220506 -0.0055378745 -0.0080961576 0.014773454 -0.014506211 0.011430902 0.018568359 -0.009045274 0.011348256 0.012819029 -0.016952902 0.015793184 0.0020732274 -0.044012744 -0.022607893 0.0003691059 -0.030034721 -0.0093535306 -0.009309209 -0.036382962 -0.014392295 0.0020732274 -0.044012744 -0.022607893 0.012551515 -0.031203236 -0.017244658 0.0003691059 -0.030034721 -0.0093535306 -0.040072553 -0.024421092 0.0058308481 -0.048329584 -0.019911552 0.0020785471 -0.048292775 -0.021119762 0.0014621341 -0.025816377 -0.028607219 -0.0066034482 -0.022857774 -0.035751648 -0.015732208 -0.017131845 -0.030064793 -0.0068969461 0.005060988 -0.023045648 -0.00040319981 0.010195186 -0.020189619 -0.00079806865 0.003930077 -0.021699537 0.008150205 -0.009309209 -0.036382962 -0.014392295 0.0003691059 -0.030034721 -0.0093535306 -0.015815018 -0.035412308 -0.013644157 0.010195186 -0.020189619 -0.00079806865 0.020936957 -0.014246449 -0.011230882 0.016843824 -0.013899053 -0.0010511071 0.018568359 -0.009045274 0.011348256 0.021146188 -0.004920918 0.00049605448 0.021418452 -0.0032224986 0.012815061 0.013782213 -0.035857521 -0.021418825 0.017943865 -0.021963313 -0.014193458 0.012551515 -0.031203236 -0.017244658 -0.031330489 -0.024225127 0.010247851 -0.048329584 -0.019911552 0.0020785471 -0.040072553 -0.024421092 0.0058308481 0.013782213 -0.035857521 -0.021418825 0.020120807 -0.033606909 -0.024135225 0.017943865 -0.021963313 -0.014193458 0.025066847 -0.0004521205 -0.0097724246 0.026246306 0.010696036 -0.0099769048 0.021146188 -0.004920918 0.00049605448 -0.022857774 -0.035751648 -0.015732208 -0.015815018 -0.035412308 -0.013644157 -0.017131845 -0.030064793 -0.0068969461 -0.009582812 -0.024438992 0.0099366223 0.0025327879 -0.023524657 0.02032537 -0.014169401 -0.025412658 0.017213766 0.012551515 -0.031203236 -0.017244658 0.01261145 -0.022168012 -0.0082882317 0.0003691059 -0.030034721 -0.0093535306 0.021146188 -0.004920918 0.00049605448 0.026246306 0.010696036 -0.0099769048 0.022980362 0.0041159755 0.0028120854 0.021146188 -0.004920918 0.00049605448 0.022980362 0.0041159755 0.0028120854 0.021418452 -0.0032224986 0.012815061 0.012819029 -0.016952902 0.015793184 0.017889017 -0.016635654 0.026521789 0.0084661879 -0.021757433 0.022022435 0.0084661879 -0.021757433 0.022022435 0.017006852 -0.021613261 0.032295372 0.0066459849 -0.025286788 0.029019944 0.031319715 -0.011011199 -0.025281332 0.026246306 0.010696036 -0.0099769048 0.025066847 -0.0004521205 -0.0097724246 0.031319715 -0.011011199 -0.025281332 0.025066847 -0.0004521205 -0.0097724246 0.023220506 -0.0055378745 -0.0080961576 0.0066459849 -0.025286788 0.029019944 0.017006852 -0.021613261 0.032295372 0.010624532 -0.026980776 0.035081141 0.012819029 -0.016952902 0.015793184 0.018568359 -0.009045274 0.011348256 0.017889017 -0.016635654 0.026521789 -0.028706845 -0.025065297 0.0022525135 -0.025816377 -0.028607219 -0.0066034482 -0.017892443 -0.02614343 0.00099697825 -0.040072553 -0.024421092 0.0058308481 -0.029369609 -0.024800228 0.004268161 -0.031330489 -0.024225127 0.010247851 0.012551515 -0.031203236 -0.017244658 0.017943865 -0.021963313 -0.014193458 0.01261145 -0.022168012 -0.0082882317 0.0084661879 -0.021757433 0.022022435 0.017889017 -0.016635654 0.026521789 0.017006852 -0.021613261 0.032295372 0.033921067 0.00086578319 -0.027396828 0.026885377 0.014915043 -0.012752888 0.026246306 0.010696036 -0.0099769048 0.020120807 -0.033606909 -0.024135225 0.025482753 -0.020972341 -0.021923771 0.017943865 -0.021963313 -0.014193458 -0.017131845 -0.030064793 -0.0068969461 -0.017892443 -0.02614343 0.00099697825 -0.025816377 -0.028607219 -0.0066034482 0.003930077 -0.021699537 0.008150205 0.010195186 -0.020189619 -0.00079806865 0.0055464869 -0.021212289 0.014130025 0.0003691059 -0.030034721 -0.0093535306 0.01261145 -0.022168012 -0.0082882317 0.0070422967 -0.024945008 -0.0064458665 0.020936957 -0.014246449 -0.011230882 0.023220506 -0.0055378745 -0.0080961576 0.016843824 -0.013899053 -0.0010511071 -0.009582812 -0.024438992 0.0099366223 0.003930077 -0.021699537 0.008150205 0.0055464869 -0.021212289 0.014130025 -0.017131845 -0.030064793 -0.0068969461 -0.015815018 -0.035412308 -0.013644157 -0.0045553087 -0.026160365 -0.00062851451 -0.015815018 -0.035412308 -0.013644157 0.0003691059 -0.030034721 -0.0093535306 -0.0045553087 -0.026160365 -0.00062851451 0.017943865 -0.021963313 -0.014193458 0.025482753 -0.020972341 -0.021923771 0.020936957 -0.014246449 -0.011230882 -0.017131845 -0.030064793 -0.0068969461 -0.0045553087 -0.026160365 -0.00062851451 -0.017892443 -0.02614343 0.00099697825 0.033921067 0.00086578319 -0.027396828 0.037944064 0.0067583462 -0.035982914 0.026885377 0.014915043 -0.012752888 -0.009582812 -0.024438992 0.0099366223 0.0055464869 -0.021212289 0.014130025 0.0025327879 -0.023524657 0.02032537 0.0003691059 -0.030034721 -0.0093535306 0.0070422967 -0.024945008 -0.0064458665 -0.0045553087 -0.026160365 -0.00062851451 -0.028706845 -0.025065297 0.0022525135 -0.017892443 -0.02614343 0.00099697825 -0.009582812 -0.024438992 0.0099366223 -0.049393985 0.020863846 -0.0077043031 -0.028662536 0.02445899 -0.00017652931 -0.043681387 0.026921961 -0.0044890768 -0.050246194 0.01559419 -0.0085683446 -0.028662536 0.02445899 -0.00017652931 -0.049393985 0.020863846 -0.0077043031 -0.028246127 0.015475507 -0.0013447098 -0.028662536 0.02445899 -0.00017652931 -0.050246194 0.01559419 -0.0085683446 -0.046801448 -0.010462434 -0.0029170027 -0.048292775 -0.021119762 0.0014621341 -0.048329584 -0.019911552 0.0020785471 -0.03552752 0.00068352866 -0.002613493 -0.028223336 0.007982173 -0.0012851168 -0.045375612 0.0061103092 -0.0067327167 -0.028223336 0.007982173 -0.0012851168 -0.028246127 0.015475507 -0.0013447098 -0.050246194 0.01559419 -0.0085683446 -0.028010666 -0.00034766347 0.00058350695 -0.028223336 0.007982173 -0.0012851168 -0.03552752 0.00068352866 -0.002613493 -0.043681387 0.026921961 -0.0044890768 -0.029180273 0.03035854 0.0013686154 -0.038617589 0.028980795 -0.0021947341 -0.028662536 0.02445899 -0.00017652931 -0.029180273 0.03035854 0.0013686154 -0.043681387 0.026921961 -0.0044890768 -0.045375612 0.0061103092 -0.0067327167 -0.028223336 0.007982173 -0.0012851168 -0.050246194 0.01559419 -0.0085683446 0.021426365 0.051714469 -0.046506207 0.017638443 0.055179808 -0.049582917 0.019198937 0.054965224 -0.041054331 -0.026788302 0.0638569 -0.058192492 -0.030261043 0.06418106 -0.050876901 -0.020322233 0.066460982 -0.051774841 -0.035346437 0.055486962 -0.067002103 -0.038704243 0.05800714 -0.059913963 -0.030450957 0.061267022 -0.061730914 -0.030450957 0.061267022 -0.061730914 -0.034757879 0.06146498 -0.056381393 -0.026788302 0.0638569 -0.058192492 -0.030450957 0.061267022 -0.061730914 -0.038704243 0.05800714 -0.059913963 -0.034757879 0.06146498 -0.056381393 0.020485204 0.051323593 -0.029168684 0.010890247 0.059034202 -0.030874018 0.010143199 0.056266207 -0.02399407 -0.035346437 0.055486962 -0.067002103 -0.0418281 0.052299976 -0.065068416 -0.038704243 0.05800714 -0.059913963 0.019198937 0.054965224 -0.041054331 0.01212316 0.060511969 -0.043824434 0.013685837 0.05885312 -0.035890527 0.020485204 0.051323593 -0.029168684 0.013685837 0.05885312 -0.035890527 0.010890247 0.059034202 -0.030874018 -0.026788302 0.0638569 -0.058192492 -0.034757879 0.06146498 -0.056381393 -0.030261043 0.06418106 -0.050876901 -0.038704243 0.05800714 -0.059913963 -0.042777844 0.057630919 -0.052942529 -0.034757879 0.06146498 -0.056381393 0.017638443 0.055179808 -0.049582917 0.01212316 0.060511969 -0.043824434 0.019198937 0.054965224 -0.041054331 -0.0418281 0.052299976 -0.065068416 -0.046838559 0.049727332 -0.062064845 -0.046116501 0.052626751 -0.058975633 0.017638443 0.055179808 -0.049582917 0.013145184 0.057059482 -0.05521556 0.01212316 0.060511969 -0.043824434 -0.0418281 0.052299976 -0.065068416 -0.046116501 0.052626751 -0.058975633 -0.038704243 0.05800714 -0.059913963 -0.038704243 0.05800714 -0.059913963 -0.046116501 0.052626751 -0.058975633 -0.042777844 0.057630919 -0.052942529 0.013685837 0.05885312 -0.035890527 0.0088203214 0.061649494 -0.036735389 0.010890247 0.059034202 -0.030874018 0.01212316 0.060511969 -0.043824434 0.0088203214 0.061649494 -0.036735389 0.013685837 0.05885312 -0.035890527 -0.030261043 0.06418106 -0.050876901 -0.034757879 0.06146498 -0.056381393 -0.037427932 0.061242424 -0.04710713 -0.029848212 -0.040870879 -0.024665507 -0.021016626 -0.041419502 -0.021435581 -0.023124799 -0.03497811 -0.014906417 0.013145184 0.057059482 -0.05521556 0.0030746423 0.064470597 -0.049390316 0.01212316 0.060511969 -0.043824434 0.010890247 0.059034202 -0.030874018 0.0088203214 0.061649494 -0.036735389 0.0049031852 0.062068045 -0.032853711 -0.042777844 0.057630919 -0.052942529 -0.037427932 0.061242424 -0.04710713 -0.034757879 0.06146498 -0.056381393 -0.035764802 -0.039149154 -0.029102469 -0.023124799 -0.03497811 -0.014906417 -0.020894902 -0.041110136 -0.021800095 -0.039938163 0.046341363 -0.015208721 -0.037028 0.047946244 -0.012769585 -0.024871822 0.048884068 -0.0080697769 0.013145184 0.057059482 -0.05521556 0.0092121586 0.059325539 -0.056692638 0.0030746423 0.064470597 -0.049390316 -0.046838559 0.049727332 -0.062064845 -0.05320837 0.044558957 -0.057386968 -0.046116501 0.052626751 -0.058975633 0.01212316 0.060511969 -0.043824434 0.0030746423 0.064470597 -0.049390316 0.0088203214 0.061649494 -0.036735389 0.0088203214 0.061649494 -0.036735389 0.0022677523 0.064728513 -0.041081365 0.0049031852 0.062068045 -0.032853711 -0.042777844 0.057630919 -0.052942529 -0.043838482 0.057464473 -0.045821629 -0.037427932 0.061242424 -0.04710713 -0.046116501 0.052626751 -0.058975633 -0.05320837 0.044558957 -0.057386968 -0.048626222 0.053363491 -0.05030445 0.0088203214 0.061649494 -0.036735389 0.0030746423 0.064470597 -0.049390316 0.0022677523 0.064728513 -0.041081365 -0.046116501 0.052626751 -0.058975633 -0.048626222 0.053363491 -0.05030445 -0.042777844 0.057630919 -0.052942529 0.0092121586 0.059325539 -0.056692638 0.0019435826 0.063833058 -0.0544958 0.0030746423 0.064470597 -0.049390316 0.0092121586 0.059325539 -0.056692638 0.0011627635 0.060162611 -0.063140623 0.0019435826 0.063833058 -0.0544958 -0.05320837 0.044558957 -0.057386968 -0.053764448 0.047903769 -0.0485502 -0.048626222 0.053363491 -0.05030445 -0.042777844 0.057630919 -0.052942529 -0.048626222 0.053363491 -0.05030445 -0.043838482 0.057464473 -0.045821629 -0.05320837 0.044558957 -0.057386968 -0.056551781 0.042160425 -0.051923003 -0.053764448 0.047903769 -0.0485502 0.0030746423 0.064470597 -0.049390316 0.0019435826 0.063833058 -0.0544958 -0.0016608346 0.065963201 -0.048268899 0.0049031852 0.062068045 -0.032853711 0.0022677523 0.064728513 -0.041081365 -0.0039052812 0.065067686 -0.036693711 -0.048626222 0.053363491 -0.05030445 -0.053764448 0.047903769 -0.0485502 -0.055819295 0.045339838 -0.040608399 0.0030746423 0.064470597 -0.049390316 -0.0016608346 0.065963201 -0.048268899 0.0022677523 0.064728513 -0.041081365 0.0011627635 0.060162611 -0.063140623 -0.010277127 0.066115268 -0.055829812 0.0019435826 0.063833058 -0.0544958 0.0022677523 0.064728513 -0.041081365 -0.0016608346 0.065963201 -0.048268899 -0.0039052812 0.065067686 -0.036693711 -0.048626222 0.053363491 -0.05030445 -0.055819295 0.045339838 -0.040608399 -0.043838482 0.057464473 -0.045821629 -0.040947743 0.04644464 0.0035278748 -0.047441717 0.04431501 0.00025102452 -0.047755037 0.043208659 0.0013906024 -0.0057198731 0.061235078 -0.065153025 -0.012059386 0.062709823 -0.064403318 0.0011627635 0.060162611 -0.063140623 0.031659372 0.027880883 -0.02975071 0.026999671 0.039196011 -0.025756223 0.023445316 0.026143933 -0.0094610536 0.0019435826 0.063833058 -0.0544958 -0.010277127 0.066115268 -0.055829812 -0.0016608346 0.065963201 -0.048268899 0.023445316 0.026143933 -0.0094610536 0.026999671 0.039196011 -0.025756223 0.023349421 0.03723269 -0.016318366 -0.01005553 0.057291955 -0.07136663 -0.012059386 0.062709823 -0.064403318 -0.0057198731 0.061235078 -0.065153025 0.0011627635 0.060162611 -0.063140623 -0.012059386 0.062709823 -0.064403318 -0.010277127 0.066115268 -0.055829812 0.023349421 0.03723269 -0.016318366 0.020230992 0.04850227 -0.023258468 0.01695667 0.038048148 -0.0082696853 -0.0016608346 0.065963201 -0.048268899 -0.013612732 0.067081504 -0.050351694 -0.0039052812 0.065067686 -0.036693711 -0.056551781 0.042160425 -0.051923003 -0.059504151 0.038614612 -0.039490122 -0.053764448 0.047903769 -0.0485502 -0.056551781 0.042160425 -0.051923003 -0.059433997 0.036218785 -0.04985844 -0.059504151 0.038614612 -0.039490122 0.01695667 0.038048148 -0.0082696853 0.020230992 0.04850227 -0.023258468 0.018021427 0.044332813 -0.015291011 -0.010277127 0.066115268 -0.055829812 -0.013612732 0.067081504 -0.050351694 -0.0016608346 0.065963201 -0.048268899 0.026999671 0.039196011 -0.025756223 0.020230992 0.04850227 -0.023258468 0.023349421 0.03723269 -0.016318366 -0.053764448 0.047903769 -0.0485502 -0.059504151 0.038614612 -0.039490122 -0.055819295 0.045339838 -0.040608399 -0.055819295 0.045339838 -0.040608399 -0.052885629 0.048623227 -0.038437549 -0.043838482 0.057464473 -0.045821629 0.018021427 0.044332813 -0.015291011 0.009936031 0.042684209 -0.0065687108 0.01695667 0.038048148 -0.0082696853 -0.01005553 0.057291955 -0.07136663 -0.016282108 0.060587119 -0.067730628 -0.012059386 0.062709823 -0.064403318 -0.043838482 0.057464473 -0.045821629 -0.052885629 0.048623227 -0.038437549 -0.043380696 0.056634519 -0.038851805 -0.012059386 0.062709823 -0.064403318 -0.016879145 0.065174788 -0.059195716 -0.010277127 0.066115268 -0.055829812 -0.013612732 0.067081504 -0.050351694 -0.015442744 0.066677161 -0.043325078 -0.0039052812 0.065067686 -0.036693711 -0.016282108 0.060587119 -0.067730628 -0.021714842 0.063533776 -0.06194349 -0.012059386 0.062709823 -0.064403318 0.027717965 0.04079099 -0.031338893 0.025450218 0.046444286 -0.034843918 0.020485204 0.051323593 -0.029168684 0.027717965 0.04079099 -0.031338893 0.020485204 0.051323593 -0.029168684 0.026999671 0.039196011 -0.025756223 -0.052885629 0.048623227 -0.038437549 -0.055819295 0.045339838 -0.040608399 -0.055044837 0.043904684 -0.032465585 -0.030603008 0.045916472 0.0093045468 -0.03023403 0.047475949 0.0082109459 -0.040947743 0.04644464 0.0035278748 -0.040947743 0.04644464 0.0035278748 -0.047755037 0.043208659 0.0013906024 -0.030603008 0.045916472 0.0093045468 0.026999671 0.039196011 -0.025756223 0.020485204 0.051323593 -0.029168684 0.020230992 0.04850227 -0.023258468 -0.055819295 0.045339838 -0.040608399 -0.059504151 0.038614612 -0.039490122 -0.055044837 0.043904684 -0.032465585 -0.012059386 0.062709823 -0.064403318 -0.021714842 0.063533776 -0.06194349 -0.016879145 0.065174788 -0.059195716 0.018021427 0.044332813 -0.015291011 0.015255949 0.050512344 -0.019585431 0.009936031 0.042684209 -0.0065687108 0.018021427 0.044332813 -0.015291011 0.020230992 0.04850227 -0.023258468 0.015255949 0.050512344 -0.019585431 -0.016282108 0.060587119 -0.067730628 -0.026216405 0.057764448 -0.069190145 -0.021714842 0.063533776 -0.06194349 -0.021714842 0.063533776 -0.06194349 -0.026216405 0.057764448 -0.069190145 -0.030450957 0.061267022 -0.061730914 -0.010277127 0.066115268 -0.055829812 -0.016879145 0.065174788 -0.059195716 -0.013612732 0.067081504 -0.050351694 -0.013612732 0.067081504 -0.050351694 -0.016879145 0.065174788 -0.059195716 -0.020322233 0.066460982 -0.051774841 0.020485204 0.051323593 -0.029168684 0.025450218 0.046444286 -0.034843918 0.021736803 0.051767353 -0.035329949 0.009936031 0.042684209 -0.0065687108 0.015255949 0.050512344 -0.019585431 0.0078240009 0.050927531 -0.014726732 -0.021714842 0.063533776 -0.06194349 -0.026788302 0.0638569 -0.058192492 -0.016879145 0.065174788 -0.059195716 0.020230992 0.04850227 -0.023258468 0.020485204 0.051323593 -0.029168684 0.015255949 0.050512344 -0.019585431 -0.021714842 0.063533776 -0.06194349 -0.030450957 0.061267022 -0.061730914 -0.026788302 0.0638569 -0.058192492 0.025450218 0.046444286 -0.034843918 0.021426365 0.051714469 -0.046506207 0.021736803 0.051767353 -0.035329949 -0.026216405 0.057764448 -0.069190145 -0.035346437 0.055486962 -0.067002103 -0.030450957 0.061267022 -0.061730914 -0.016879145 0.065174788 -0.059195716 -0.026788302 0.0638569 -0.058192492 -0.020322233 0.066460982 -0.051774841 0.021426365 0.051714469 -0.046506207 0.019198937 0.054965224 -0.041054331 0.021736803 0.051767353 -0.035329949 0.015255949 0.050512344 -0.019585431 0.010143199 0.056266207 -0.02399407 0.0078240009 0.050927531 -0.014726732 0.021736803 0.051767353 -0.035329949 0.013685837 0.05885312 -0.035890527 0.020485204 0.051323593 -0.029168684 0.021736803 0.051767353 -0.035329949 0.019198937 0.054965224 -0.041054331 0.013685837 0.05885312 -0.035890527 0.020485204 0.051323593 -0.029168684 0.010143199 0.056266207 -0.02399407 0.015255949 0.050512344 -0.019585431 -0.0075796926 0.062829882 -0.028669141 0.0032933035 0.058135442 -0.022837711 -0.0039052812 0.065067686 -0.036693711 0.0032933035 0.058135442 -0.022837711 0.0078240009 0.050927531 -0.014726732 0.010143199 0.056266207 -0.02399407 -0.012835774 0.065321967 -0.035823204 -0.0039052812 0.065067686 -0.036693711 -0.015442744 0.066677161 -0.043325078 0.0032933035 0.058135442 -0.022837711 0.0049031852 0.062068045 -0.032853711 -0.0039052812 0.065067686 -0.036693711 -0.018559651 0.065330923 -0.037487499 -0.012835774 0.065321967 -0.035823204 -0.015442744 0.066677161 -0.043325078 -0.025567805 0.055718649 -0.018568926 -0.019996868 0.060886394 -0.025464242 -0.031191133 0.056497566 -0.022955369 -0.015442744 0.066677161 -0.043325078 -0.013612732 0.067081504 -0.050351694 -0.020322233 0.066460982 -0.051774841 -0.02381357 0.065328091 -0.041979671 -0.020322233 0.066460982 -0.051774841 -0.030261043 0.06418106 -0.050876901 -0.02394456 0.050709601 -0.010856272 -0.015831096 0.054837834 -0.014756321 -0.025567805 0.055718649 -0.018568926 -0.010785004 0.057791088 -0.018675728 -0.0075796926 0.062829882 -0.028669141 -0.019996868 0.060886394 -0.025464242 -0.0075796926 0.062829882 -0.028669141 -0.0039052812 0.065067686 -0.036693711 -0.012835774 0.065321967 -0.035823204 -0.00010272722 0.053765278 -0.014898066 0.0032933035 0.058135442 -0.022837711 -0.0068530133 0.060126401 -0.023005093 -0.038017593 0.059790291 -0.039118569 -0.029849511 0.062322006 -0.035676584 -0.037427932 0.061242424 -0.04710713 -0.048360813 0.049839623 -0.030314129 -0.052885629 0.048623227 -0.038437549 -0.055044837 0.043904684 -0.032465585 -0.0090260617 0.054421283 -0.014032823 -0.0015994727 0.048330635 -0.0081699425 -0.00010272722 0.053765278 -0.014898066 -0.031191133 0.056497566 -0.022955369 -0.019996868 0.060886394 -0.025464242 -0.029849511 0.062322006 -0.035676584 -0.052885629 0.048623227 -0.038437549 -0.048360813 0.049839623 -0.030314129 -0.043380696 0.056634519 -0.038851805 0.0078240009 0.050927531 -0.014726732 -0.0015994727 0.048330635 -0.0081699425 0.009936031 0.042684209 -0.0065687108 0.010143199 0.056266207 -0.02399407 0.010890247 0.059034202 -0.030874018 0.0032933035 0.058135442 -0.022837711 -0.010785004 0.057791088 -0.018675728 -0.0090260617 0.054421283 -0.014032823 -0.0068530133 0.060126401 -0.023005093 -0.00010272722 0.053765278 -0.014898066 0.0078240009 0.050927531 -0.014726732 0.0032933035 0.058135442 -0.022837711 0.0032933035 0.058135442 -0.022837711 0.010890247 0.059034202 -0.030874018 0.0049031852 0.062068045 -0.032853711 -0.048360813 0.049839623 -0.030314129 -0.039142057 0.054805424 -0.027047165 -0.043380696 0.056634519 -0.038851805 -0.029849511 0.062322006 -0.035676584 -0.02381357 0.065328091 -0.041979671 -0.037427932 0.061242424 -0.04710713 -0.019996868 0.060886394 -0.025464242 -0.0075796926 0.062829882 -0.028669141 -0.012835774 0.065321967 -0.035823204 -0.010785004 0.057791088 -0.018675728 -0.0068530133 0.060126401 -0.023005093 -0.0075796926 0.062829882 -0.028669141 -0.0068530133 0.060126401 -0.023005093 0.0032933035 0.058135442 -0.022837711 -0.0075796926 0.062829882 -0.028669141 -0.037408765 0.050800618 -0.018906515 -0.031191133 0.056497566 -0.022955369 -0.039142057 0.054805424 -0.027047165 -0.015831096 0.054837834 -0.014756321 -0.010785004 0.057791088 -0.018675728 -0.025567805 0.055718649 -0.018568926 -0.019996868 0.060886394 -0.025464242 -0.012835774 0.065321967 -0.035823204 -0.018559651 0.065330923 -0.037487499 -0.0090260617 0.054421283 -0.014032823 -0.00010272722 0.053765278 -0.014898066 -0.0068530133 0.060126401 -0.023005093 -0.025567805 0.055718649 -0.018568926 -0.010785004 0.057791088 -0.018675728 -0.019996868 0.060886394 -0.025464242 -0.037427932 0.061242424 -0.04710713 -0.02381357 0.065328091 -0.041979671 -0.030261043 0.06418106 -0.050876901 -0.029849511 0.062322006 -0.035676584 -0.018559651 0.065330923 -0.037487499 -0.02381357 0.065328091 -0.041979671 -0.029849511 0.062322006 -0.035676584 -0.019996868 0.060886394 -0.025464242 -0.018559651 0.065330923 -0.037487499 -0.037028 0.047946244 -0.012769585 -0.026555197 0.046781059 -0.0029885382 -0.024871822 0.048884068 -0.0080697769 -0.031191133 0.056497566 -0.022955369 -0.037408765 0.050800618 -0.018906515 -0.025567805 0.055718649 -0.018568926 -0.043380696 0.056634519 -0.038851805 -0.038017593 0.059790291 -0.039118569 -0.043838482 0.057464473 -0.045821629 -0.039142057 0.054805424 -0.027047165 -0.038017593 0.059790291 -0.039118569 -0.043380696 0.056634519 -0.038851805 -0.039142057 0.054805424 -0.027047165 -0.031191133 0.056497566 -0.022955369 -0.029849511 0.062322006 -0.035676584 -0.02381357 0.065328091 -0.041979671 -0.015442744 0.066677161 -0.043325078 -0.020322233 0.066460982 -0.051774841 -0.00010272722 0.053765278 -0.014898066 -0.0015994727 0.048330635 -0.0081699425 0.0078240009 0.050927531 -0.014726732 -0.039142057 0.054805424 -0.027047165 -0.029849511 0.062322006 -0.035676584 -0.038017593 0.059790291 -0.039118569 -0.015831096 0.054837834 -0.014756321 -0.0090260617 0.054421283 -0.014032823 -0.010785004 0.057791088 -0.018675728 -0.02381357 0.065328091 -0.041979671 -0.018559651 0.065330923 -0.037487499 -0.015442744 0.066677161 -0.043325078 -0.038017593 0.059790291 -0.039118569 -0.037427932 0.061242424 -0.04710713 -0.043838482 0.057464473 -0.045821629 -0.047441717 0.04431501 0.00025102452 -0.040947743 0.04644464 0.0035278748 -0.040882055 0.044984221 -0.0034916357 -0.040882055 0.044984221 -0.0034916357 -0.03023403 0.047475949 0.0082109459 -0.028288065 0.04612359 0.002270706 0.0092121586 0.059325539 -0.056692638 0.013145184 0.057059482 -0.05521556 0.017011844 0.043768898 -0.072739288 -0.037011851 0.045973774 -0.075512394 -0.035346437 0.055486962 -0.067002103 -0.030095318 0.038521145 -0.087015234 0.032475431 0.0082671195 -0.1007845 0.02381862 0.030545814 -0.083457343 0.033071082 0.017310936 -0.087785833 -0.040882055 0.044984221 -0.0034916357 -0.040947743 0.04644464 0.0035278748 -0.03023403 0.047475949 0.0082109459 -0.027576704 0.010838133 -0.11110653 -0.017763412 0.011706461 -0.11469046 -0.01670853 -0.0027794824 -0.1254968 -0.027576704 0.010838133 -0.11110653 -0.022492794 0.018898029 -0.1073828 -0.017763412 0.011706461 -0.11469046 0.042707767 0.0047704075 -0.049954955 0.037944064 0.0067583462 -0.035982914 0.042621806 -0.0041206041 -0.045054108 -0.037028 0.047946244 -0.012769585 -0.042909563 0.045561127 -0.013600249 -0.03531548 0.046220776 -0.0055791503 -0.03531548 0.046220776 -0.0055791503 -0.028288065 0.04612359 0.002270706 -0.026555197 0.046781059 -0.0029885382 0.031659372 0.027880883 -0.02975071 0.023445316 0.026143933 -0.0094610536 0.031800427 0.021550544 -0.026509494 -0.044877458 0.043668441 -0.0077792378 -0.040882055 0.044984221 -0.0034916357 -0.03531548 0.046220776 -0.0055791503 -0.034826189 0.033853307 -0.088264748 -0.030095318 0.038521145 -0.087015234 -0.028909463 0.027932871 -0.096980184 -0.028909463 0.027932871 -0.096980184 -0.022492794 0.018898029 -0.1073828 -0.027576704 0.010838133 -0.11110653 0.02381862 0.030545814 -0.083457343 0.032475431 0.0082671195 -0.1007845 0.027334765 0.012252497 -0.10245027 0.042707767 0.0047704075 -0.049954955 0.031800427 0.021550544 -0.026509494 0.037944064 0.0067583462 -0.035982914 0.038140014 0.01634272 -0.042042948 0.031800427 0.021550544 -0.026509494 0.042707767 0.0047704075 -0.049954955 -0.034826189 0.033853307 -0.088264748 -0.037011851 0.045973774 -0.075512394 -0.030095318 0.038521145 -0.087015234 -0.0418281 0.052299976 -0.065068416 -0.035346437 0.055486962 -0.067002103 -0.037011851 0.045973774 -0.075512394 -0.026099751 -0.0065399683 -0.12361529 -0.027576704 0.010838133 -0.11110653 -0.01670853 -0.0027794824 -0.1254968 -0.038180973 0.023523221 -0.094212152 -0.028909463 0.027932871 -0.096980184 -0.027576704 0.010838133 -0.11110653 0.028953254 -0.00026659199 -0.11411111 0.032475431 0.0082671195 -0.1007845 0.039693773 -0.0046538408 -0.10495098 -0.038180973 0.023523221 -0.094212152 -0.034826189 0.033853307 -0.088264748 -0.028909463 0.027932871 -0.096980184 0.013715678 0.042741112 -0.077885717 0.017011844 0.043768898 -0.072739288 0.02381862 0.030545814 -0.083457343 0.027334765 0.012252497 -0.10245027 0.032475431 0.0082671195 -0.1007845 0.028953254 -0.00026659199 -0.11411111 -0.044877458 0.043668441 -0.0077792378 -0.03531548 0.046220776 -0.0055791503 -0.042909563 0.045561127 -0.013600249 0.031659372 0.027880883 -0.02975071 0.031800427 0.021550544 -0.026509494 0.038140014 0.01634272 -0.042042948 0.0011627635 0.060162611 -0.063140623 0.0092121586 0.059325539 -0.056692638 0.013715678 0.042741112 -0.077885717 0.013715678 0.042741112 -0.077885717 0.0092121586 0.059325539 -0.056692638 0.017011844 0.043768898 -0.072739288 0.049289256 -0.016079461 -0.063690156 0.042621806 -0.0041206041 -0.045054108 0.046241745 -0.015538254 -0.052841194 -0.026099751 -0.0065399683 -0.12361529 -0.038180973 0.023523221 -0.094212152 -0.027576704 0.010838133 -0.11110653 0.049289256 -0.016079461 -0.063690156 0.046241745 -0.015538254 -0.052841194 0.051398207 -0.030638548 -0.067361847 -0.035414767 0.0066470541 -0.10872438 -0.038180973 0.023523221 -0.094212152 -0.026099751 -0.0065399683 -0.12361529 0.017401971 0.022494685 -0.099848174 0.02381862 0.030545814 -0.083457343 0.027334765 0.012252497 -0.10245027 0.042707767 0.0047704075 -0.049954955 0.042621806 -0.0041206041 -0.045054108 0.049289256 -0.016079461 -0.063690156 0.026999671 0.039196011 -0.025756223 0.031659372 0.027880883 -0.02975071 0.038140014 0.01634272 -0.042042948 0.017401971 0.022494685 -0.099848174 0.013715678 0.042741112 -0.077885717 0.02381862 0.030545814 -0.083457343 -0.044299826 0.042832848 -0.071838163 -0.037011851 0.045973774 -0.075512394 -0.034826189 0.033853307 -0.088264748 -0.03531548 0.046220776 -0.0055791503 -0.040882055 0.044984221 -0.0034916357 -0.028288065 0.04612359 0.002270706 -0.0418281 0.052299976 -0.065068416 -0.037011851 0.045973774 -0.075512394 -0.044299826 0.042832848 -0.071838163 -0.044299826 0.042832848 -0.071838163 -0.034826189 0.033853307 -0.088264748 -0.038180973 0.023523221 -0.094212152 0.0084519973 0.041236147 -0.083982669 0.0011627635 0.060162611 -0.063140623 0.013715678 0.042741112 -0.077885717 0.052323982 -0.023327254 -0.076583929 0.049289256 -0.016079461 -0.063690156 0.051398207 -0.030638548 -0.067361847 -0.044877458 0.043668441 -0.0077792378 -0.047441717 0.04431501 0.00025102452 -0.040882055 0.044984221 -0.0034916357 0.021749362 0.011481981 -0.108362 0.027334765 0.012252497 -0.10245027 0.028953254 -0.00026659199 -0.11411111 0.0084519973 0.041236147 -0.083982669 0.013715678 0.042741112 -0.077885717 0.017401971 0.022494685 -0.099848174 0.042508997 0.0090123229 -0.054924231 0.038140014 0.01634272 -0.042042948 0.042707767 0.0047704075 -0.049954955 -0.033514298 -0.010516763 -0.12081753 -0.035414767 0.0066470541 -0.10872438 -0.026099751 -0.0065399683 -0.12361529 0.017401971 0.022494685 -0.099848174 0.027334765 0.012252497 -0.10245027 0.021749362 0.011481981 -0.108362 -0.041765817 0.0152301 -0.097071052 -0.038180973 0.023523221 -0.094212152 -0.035414767 0.0066470541 -0.10872438 0.038321152 0.01922692 -0.047360439 0.026999671 0.039196011 -0.025756223 0.038140014 0.01634272 -0.042042948 -0.037028 0.047946244 -0.012769585 -0.03531548 0.046220776 -0.0055791503 -0.026555197 0.046781059 -0.0029885382 -0.045222137 0.030864514 -0.081343971 -0.044299826 0.042832848 -0.071838163 -0.038180973 0.023523221 -0.094212152 -0.03693229 -0.0005953646 -0.11209075 -0.035414767 0.0066470541 -0.10872438 -0.033514298 -0.010516763 -0.12081753 -0.0418281 0.052299976 -0.065068416 -0.044299826 0.042832848 -0.071838163 -0.046838559 0.049727332 -0.062064845 0.027717965 0.04079099 -0.031338893 0.026999671 0.039196011 -0.025756223 0.038321152 0.01922692 -0.047360439 0.049309954 -0.011186928 -0.069831215 0.042707767 0.0047704075 -0.049954955 0.049289256 -0.016079461 -0.063690156 0.038321152 0.01922692 -0.047360439 0.038140014 0.01634272 -0.042042948 0.042508997 0.0090123229 -0.054924231 -0.03693229 -0.0005953646 -0.11209075 -0.041765817 0.0152301 -0.097071052 -0.035414767 0.0066470541 -0.10872438 -0.045222137 0.030864514 -0.081343971 -0.038180973 0.023523221 -0.094212152 -0.041765817 0.0152301 -0.097071052 0.049309954 -0.011186928 -0.069831215 0.049289256 -0.016079461 -0.063690156 0.052323982 -0.023327254 -0.076583929 0.013232971 0.02310217 -0.10187419 0.017401971 0.022494685 -0.099848174 0.021749362 0.011481981 -0.108362 -0.0030234547 0.049371727 -0.079383738 0.0011627635 0.060162611 -0.063140623 0.0084519973 0.041236147 -0.083982669 0.004499686 0.039239328 -0.088474967 0.0084519973 0.041236147 -0.083982669 0.017401971 0.022494685 -0.099848174 0.044735994 0.0044088629 -0.066870406 0.042508997 0.0090123229 -0.054924231 0.042707767 0.0047704075 -0.049954955 -0.051449109 0.036835954 -0.06780304 -0.046838559 0.049727332 -0.062064845 -0.044299826 0.042832848 -0.071838163 0.044735994 0.0044088629 -0.066870406 0.042707767 0.0047704075 -0.049954955 0.049309954 -0.011186928 -0.069831215 0.016043734 0.0017825227 -0.12092297 0.021749362 0.011481981 -0.108362 0.028953254 -0.00026659199 -0.11411111 -0.051449109 0.036835954 -0.06780304 -0.044299826 0.042832848 -0.071838163 -0.045222137 0.030864514 -0.081343971 -0.030603008 0.045916472 0.0093045468 -0.047755037 0.043208659 0.0013906024 -0.028921621 0.036483373 0.0040225666 0.004499686 0.039239328 -0.088474967 0.017401971 0.022494685 -0.099848174 0.013232971 0.02310217 -0.10187419 0.030761374 0.037005246 -0.044457465 0.027717965 0.04079099 -0.031338893 0.038321152 0.01922692 -0.047360439 -0.047755037 0.043208659 0.0013906024 -0.046412762 0.033608563 -0.0032901522 -0.028921621 0.036483373 0.0040225666 -0.0030234547 0.049371727 -0.079383738 -0.0057198731 0.061235078 -0.065153025 0.0011627635 0.060162611 -0.063140623 0.016043734 0.0017825227 -0.12092297 0.013232971 0.02310217 -0.10187419 0.021749362 0.011481981 -0.108362 0.025450218 0.046444286 -0.034843918 0.027717965 0.04079099 -0.031338893 0.030761374 0.037005246 -0.044457465 0.004499686 0.039239328 -0.088474967 -0.0030234547 0.049371727 -0.079383738 0.0084519973 0.041236147 -0.083982669 0.044735994 0.0044088629 -0.066870406 0.049309954 -0.011186928 -0.069831215 0.048057318 -0.0059491075 -0.076072723 -0.04974591 0.024393912 -0.080656119 -0.045222137 0.030864514 -0.081343971 -0.041765817 0.0152301 -0.097071052 -0.051449109 0.036835954 -0.06780304 -0.045222137 0.030864514 -0.081343971 -0.04974591 0.024393912 -0.080656119 0.0049086581 0.023428794 -0.1050749 0.013232971 0.02310217 -0.10187419 0.016043734 0.0017825227 -0.12092297 -0.046412762 0.033608563 -0.0032901522 -0.045685891 0.026142934 -0.0054449355 -0.028921621 0.036483373 0.0040225666 -0.040099274 -0.015066721 -0.11700743 -0.03693229 -0.0005953646 -0.11209075 -0.033514298 -0.010516763 -0.12081753 -0.045449335 0.009604333 -0.096803352 -0.04974591 0.024393912 -0.080656119 -0.041765817 0.0152301 -0.097071052 0.040050026 0.016798826 -0.059815146 0.038321152 0.01922692 -0.047360439 0.042508997 0.0090123229 -0.054924231 0.051385134 -0.018106038 -0.083683304 0.049309954 -0.011186928 -0.069831215 0.052323982 -0.023327254 -0.076583929 0.040050026 0.016798826 -0.059815146 0.042508997 0.0090123229 -0.054924231 0.044735994 0.0044088629 -0.066870406 -0.045449335 0.009604333 -0.096803352 -0.041765817 0.0152301 -0.097071052 -0.03693229 -0.0005953646 -0.11209075 -0.045449335 0.009604333 -0.096803352 -0.03693229 -0.0005953646 -0.11209075 -0.040099274 -0.015066721 -0.11700743 -0.046412762 0.033608563 -0.0032901522 -0.047441717 0.04431501 0.00025102452 -0.042549193 0.043927621 -0.014816557 -0.05320837 0.044558957 -0.057386968 -0.046838559 0.049727332 -0.062064845 -0.051449109 0.036835954 -0.06780304 -0.046412762 0.033608563 -0.0032901522 -0.042549193 0.043927621 -0.014816557 -0.045685891 0.026142934 -0.0054449355 0.048057318 -0.0059491075 -0.076072723 0.049309954 -0.011186928 -0.069831215 0.051385134 -0.018106038 -0.083683304 -0.047441717 0.04431501 0.00025102452 -0.044877458 0.043668441 -0.0077792378 -0.042549193 0.043927621 -0.014816557 0.0049086581 0.023428794 -0.1050749 0.004499686 0.039239328 -0.088474967 0.013232971 0.02310217 -0.10187419 0.040050026 0.016798826 -0.059815146 0.030761374 0.037005246 -0.044457465 0.038321152 0.01922692 -0.047360439 -0.042549193 0.043927621 -0.014816557 -0.044877458 0.043668441 -0.0077792378 -0.042909563 0.045561127 -0.013600249 -0.047755037 0.043208659 0.0013906024 -0.047441717 0.04431501 0.00025102452 -0.046412762 0.033608563 -0.0032901522 -0.00056495372 0.039484393 -0.090012021 -0.0030234547 0.049371727 -0.079383738 0.004499686 0.039239328 -0.088474967 -0.048873555 0.0033282845 -0.096098304 -0.04974591 0.024393912 -0.080656119 -0.045449335 0.009604333 -0.096803352 0.034354143 0.028775193 -0.059095874 0.030761374 0.037005246 -0.044457465 0.040050026 0.016798826 -0.059815146 -0.039938163 0.046341363 -0.015208721 -0.042549193 0.043927621 -0.014816557 -0.042909563 0.045561127 -0.013600249 -0.00056495372 0.039484393 -0.090012021 0.004499686 0.039239328 -0.088474967 0.0049086581 0.023428794 -0.1050749 -0.01005553 0.057291955 -0.07136663 -0.0057198731 0.061235078 -0.065153025 -0.0030234547 0.049371727 -0.079383738 -0.054039422 0.017489953 -0.078539349 -0.051449109 0.036835954 -0.06780304 -0.04974591 0.024393912 -0.080656119 0.0059008142 0.0099065676 -0.11727817 0.0049086581 0.023428794 -0.1050749 0.016043734 0.0017825227 -0.12092297 -0.048873555 0.0033282845 -0.096098304 -0.045449335 0.009604333 -0.096803352 -0.040099274 -0.015066721 -0.11700743 0.025450218 0.046444286 -0.034843918 0.030761374 0.037005246 -0.044457465 0.028552106 0.040888969 -0.047663178 0.041574612 0.012656418 -0.06613569 0.040050026 0.016798826 -0.059815146 0.044735994 0.0044088629 -0.066870406 0.044544168 0.0015422015 -0.081789427 0.044735994 0.0044088629 -0.066870406 0.048057318 -0.0059491075 -0.076072723 0.044544168 0.0015422015 -0.081789427 0.041574612 0.012656418 -0.06613569 0.044735994 0.0044088629 -0.066870406 -0.047122538 -0.0082137175 -0.10487758 -0.048873555 0.0033282845 -0.096098304 -0.040099274 -0.015066721 -0.11700743 -0.056551781 0.042160425 -0.051923003 -0.05320837 0.044558957 -0.057386968 -0.055820387 0.032281522 -0.063536525 -0.042909563 0.045561127 -0.013600249 -0.037028 0.047946244 -0.012769585 -0.039938163 0.046341363 -0.015208721 -0.055820387 0.032281522 -0.063536525 -0.05320837 0.044558957 -0.057386968 -0.051449109 0.036835954 -0.06780304 -0.011240048 0.048591468 -0.081642643 -0.0030234547 0.049371727 -0.079383738 -0.00056495372 0.039484393 -0.090012021 -0.055820387 0.032281522 -0.063536525 -0.051449109 0.036835954 -0.06780304 -0.054039422 0.017489953 -0.078539349 -0.011240048 0.048591468 -0.081642643 -0.01005553 0.057291955 -0.07136663 -0.0030234547 0.049371727 -0.079383738 -0.0009497836 0.00099318603 -0.12535027 0.0059008142 0.0099065676 -0.11727817 0.016043734 0.0017825227 -0.12092297 -0.054039422 0.017489953 -0.078539349 -0.04974591 0.024393912 -0.080656119 -0.048873555 0.0033282845 -0.096098304 0.034354143 0.028775193 -0.059095874 0.028552106 0.040888969 -0.047663178 0.030761374 0.037005246 -0.044457465 -0.045704763 -0.020093404 -0.1122619 -0.047122538 -0.0082137175 -0.10487758 -0.040099274 -0.015066721 -0.11700743 0.041574612 0.012656418 -0.06613569 0.034354143 0.028775193 -0.059095874 0.040050026 0.016798826 -0.059815146 -0.0088627655 0.03350687 -0.09727437 -0.011240048 0.048591468 -0.081642643 -0.00056495372 0.039484393 -0.090012021 0.021426365 0.051714469 -0.046506207 0.025450218 0.046444286 -0.034843918 0.028552106 0.040888969 -0.047663178 -0.00056495372 0.039484393 -0.090012021 0.0049086581 0.023428794 -0.1050749 -0.0039851116 0.02284503 -0.10717527 0.048002101 -0.011753244 -0.093040675 0.048057318 -0.0059491075 -0.076072723 0.051385134 -0.018106038 -0.083683304 -0.016282108 0.060587119 -0.067730628 -0.01005553 0.057291955 -0.07136663 -0.011240048 0.048591468 -0.081642643 -0.054793838 0.003398129 -0.085693009 -0.048873555 0.0033282845 -0.096098304 -0.047122538 -0.0082137175 -0.10487758 -0.0039851116 0.02284503 -0.10717527 0.0049086581 0.023428794 -0.1050749 0.0059008142 0.0099065676 -0.11727817 -0.054039422 0.017489953 -0.078539349 -0.048873555 0.0033282845 -0.096098304 -0.054793838 0.003398129 -0.085693009 -0.0088627655 0.03350687 -0.09727437 -0.00056495372 0.039484393 -0.090012021 -0.0039851116 0.02284503 -0.10717527 -0.050211884 -0.019026436 -0.10456434 -0.047122538 -0.0082137175 -0.10487758 -0.045704763 -0.020093404 -0.1122619 0.036934104 0.020190852 -0.072067626 0.034354143 0.028775193 -0.059095874 0.041574612 0.012656418 -0.06613569 -0.016820734 0.052393295 -0.077243254 -0.016282108 0.060587119 -0.067730628 -0.011240048 0.048591468 -0.081642643 -0.054793838 0.003398129 -0.085693009 -0.047122538 -0.0082137175 -0.10487758 -0.050211884 -0.019026436 -0.10456434 0.028552106 0.040888969 -0.047663178 0.034354143 0.028775193 -0.059095874 0.029915536 0.034864839 -0.062677987 0.048002101 -0.011753244 -0.093040675 0.044544168 0.0015422015 -0.081789427 0.048057318 -0.0059491075 -0.076072723 -0.058436573 0.027023869 -0.061340276 -0.055820387 0.032281522 -0.063536525 -0.054039422 0.017489953 -0.078539349 -0.058436573 0.027023869 -0.061340276 -0.056551781 0.042160425 -0.051923003 -0.055820387 0.032281522 -0.063536525 0.036934104 0.020190852 -0.072067626 0.041574612 0.012656418 -0.06613569 0.044544168 0.0015422015 -0.081789427 -0.0061021964 0.017063241 -0.11232135 -0.0039851116 0.02284503 -0.10717527 0.0059008142 0.0099065676 -0.11727817 0.029915536 0.034864839 -0.062677987 0.034354143 0.028775193 -0.059095874 0.036934104 0.020190852 -0.072067626 -0.013720501 0.028313534 -0.10177972 -0.011240048 0.048591468 -0.081642643 -0.0088627655 0.03350687 -0.09727437 0.040041685 0.0081731174 -0.085935444 0.036934104 0.020190852 -0.072067626 0.044544168 0.0015422015 -0.081789427 -0.056551781 0.042160425 -0.051923003 -0.058436573 0.027023869 -0.061340276 -0.059433997 0.036218785 -0.04985844 -0.0061021964 0.017063241 -0.11232135 0.0059008142 0.0099065676 -0.11727817 -0.0009497836 0.00099318603 -0.12535027 -0.058985908 0.0071777734 -0.072958849 -0.054039422 0.017489953 -0.078539349 -0.054793838 0.003398129 -0.085693009 -0.058985908 0.0071777734 -0.072958849 -0.058436573 0.027023869 -0.061340276 -0.054039422 0.017489953 -0.078539349 -0.053642526 -0.019996651 -0.097787268 -0.054793838 0.003398129 -0.085693009 -0.050211884 -0.019026436 -0.10456434 0.021426365 0.051714469 -0.046506207 0.028552106 0.040888969 -0.047663178 0.029915536 0.034864839 -0.062677987 -0.016820734 0.052393295 -0.077243254 -0.011240048 0.048591468 -0.081642643 -0.013720501 0.028313534 -0.10177972 0.059946638 -0.0044484315 0.061204918 0.061705507 0.010372809 0.058178965 0.062435467 0.0057210797 0.069739781 0.040041685 0.0081731174 -0.085935444 0.044544168 0.0015422015 -0.081789427 0.048002101 -0.011753244 -0.093040675 -0.013720501 0.028313534 -0.10177972 -0.0039851116 0.02284503 -0.10717527 -0.0061021964 0.017063241 -0.11232135 -0.013720501 0.028313534 -0.10177972 -0.0088627655 0.03350687 -0.09727437 -0.0039851116 0.02284503 -0.10717527 0.040041685 0.0081731174 -0.085935444 0.048002101 -0.011753244 -0.093040675 0.04473538 -0.0082729245 -0.098620571 -0.02011821 0.039237347 -0.090281211 -0.016820734 0.052393295 -0.077243254 -0.013720501 0.028313534 -0.10177972 -0.053642526 -0.019996651 -0.097787268 -0.050211884 -0.019026436 -0.10456434 -0.045704763 -0.020093404 -0.1122619 -0.057830051 -0.0048964242 -0.081905089 -0.058985908 0.0071777734 -0.072958849 -0.054793838 0.003398129 -0.085693009 -0.016282108 0.060587119 -0.067730628 -0.016820734 0.052393295 -0.077243254 -0.026216405 0.057764448 -0.069190145 -0.057830051 -0.0048964242 -0.081905089 -0.054793838 0.003398129 -0.085693009 -0.053642526 -0.019996651 -0.097787268 0.030202463 0.031300869 -0.070041768 0.029915536 0.034864839 -0.062677987 0.036934104 0.020190852 -0.072067626 0.017638443 0.055179808 -0.049582917 0.021426365 0.051714469 -0.046506207 0.029915536 0.034864839 -0.062677987 -0.02011821 0.039237347 -0.090281211 -0.026216405 0.057764448 -0.069190145 -0.016820734 0.052393295 -0.077243254 0.053233206 0.034204423 0.092627518 0.047732793 0.047120549 0.086876728 0.046475939 0.041773621 0.097273827 -0.059433997 0.036218785 -0.04985844 -0.058436573 0.027023869 -0.061340276 -0.060246293 0.017309124 -0.06259191 -0.0097017456 0.010836095 -0.11716337 -0.0061021964 0.017063241 -0.11232135 -0.0009497836 0.00099318603 -0.12535027 -0.060246293 0.017309124 -0.06259191 -0.058436573 0.027023869 -0.061340276 -0.058985908 0.0071777734 -0.072958849 0.055174485 0.040442463 0.074830137 0.05232675 0.041057549 0.086093418 0.056349143 0.030407021 0.088699944 -0.054544654 -0.034126826 -0.096828505 -0.053642526 -0.019996651 -0.097787268 -0.045704763 -0.020093404 -0.1122619 -0.013720501 0.028313534 -0.10177972 -0.0061021964 0.017063241 -0.11232135 -0.0097017456 0.010836095 -0.11716337 0.021757631 0.046158146 -0.060350142 0.017638443 0.055179808 -0.049582917 0.029915536 0.034864839 -0.062677987 0.033071082 0.017310936 -0.087785833 0.036934104 0.020190852 -0.072067626 0.040041685 0.0081731174 -0.085935444 0.033071082 0.017310936 -0.087785833 0.030202463 0.031300869 -0.070041768 0.036934104 0.020190852 -0.072067626 0.055174485 0.040442463 0.074830137 0.050855845 0.046600487 0.076768592 0.05232675 0.041057549 0.086093418 -0.017763412 0.011706461 -0.11469046 -0.013720501 0.028313534 -0.10177972 -0.0097017456 0.010836095 -0.11716337 0.033071082 0.017310936 -0.087785833 0.040041685 0.0081731174 -0.085935444 0.04473538 -0.0082729245 -0.098620571 -0.02011821 0.039237347 -0.090281211 -0.013720501 0.028313534 -0.10177972 -0.017763412 0.011706461 -0.11469046 0.059647977 0.029263435 0.076748453 0.056349143 0.030407021 0.088699944 0.060049761 0.022032455 0.083685108 0.039693773 -0.0046538408 -0.10495098 0.033071082 0.017310936 -0.087785833 0.04473538 -0.0082729245 -0.098620571 0.021757631 0.046158146 -0.060350142 0.029915536 0.034864839 -0.062677987 0.030202463 0.031300869 -0.070041768 -0.056478664 -0.022835867 -0.090333089 -0.053642526 -0.019996651 -0.097787268 -0.054544654 -0.034126826 -0.096828505 0.053233206 0.034204423 0.092627518 0.049978577 0.030713307 0.10098448 0.056046691 0.023823926 0.093964264 0.013145184 0.057059482 -0.05521556 0.017638443 0.055179808 -0.049582917 0.021757631 0.046158146 -0.060350142 -0.057830051 -0.0048964242 -0.081905089 -0.053642526 -0.019996651 -0.097787268 -0.056478664 -0.022835867 -0.090333089 -0.030095318 0.038521145 -0.087015234 -0.026216405 0.057764448 -0.069190145 -0.02011821 0.039237347 -0.090281211 0.02381862 0.030545814 -0.083457343 0.030202463 0.031300869 -0.070041768 0.033071082 0.017310936 -0.087785833 0.021757631 0.046158146 -0.060350142 0.030202463 0.031300869 -0.070041768 0.02381862 0.030545814 -0.083457343 -0.01670853 -0.0027794824 -0.1254968 -0.0097017456 0.010836095 -0.11716337 -0.0009497836 0.00099318603 -0.12535027 -0.022492794 0.018898029 -0.1073828 -0.02011821 0.039237347 -0.090281211 -0.017763412 0.011706461 -0.11469046 0.060459308 0.0052723978 0.054168046 0.061705507 0.010372809 0.058178965 0.059946638 -0.0044484315 0.061204918 -0.035346437 0.055486962 -0.067002103 -0.026216405 0.057764448 -0.069190145 -0.030095318 0.038521145 -0.087015234 -0.017763412 0.011706461 -0.11469046 -0.0097017456 0.010836095 -0.11716337 -0.01670853 -0.0027794824 -0.1254968 -0.030095318 0.038521145 -0.087015234 -0.02011821 0.039237347 -0.090281211 -0.028909463 0.027932871 -0.096980184 -0.028909463 0.027932871 -0.096980184 -0.02011821 0.039237347 -0.090281211 -0.022492794 0.018898029 -0.1073828 0.017011844 0.043768898 -0.072739288 0.013145184 0.057059482 -0.05521556 0.021757631 0.046158146 -0.060350142 0.017011844 0.043768898 -0.072739288 0.021757631 0.046158146 -0.060350142 0.02381862 0.030545814 -0.083457343 0.032475431 0.0082671195 -0.1007845 0.033071082 0.017310936 -0.087785833 0.039693773 -0.0046538408 -0.10495098 -0.055446461 -0.043681785 -0.084677286 -0.057087723 -0.030318376 -0.086833194 -0.054544654 -0.034126826 -0.096828505 -0.038000185 -0.030606067 -0.024598952 -0.04705061 -0.01910823 -0.025150754 -0.040711455 -0.046423052 -0.040483627 -0.058996025 -0.025690939 -0.075699233 -0.061306648 -0.0005372407 -0.065922536 -0.060204022 -0.0064479988 -0.073269144 -0.058996025 -0.025690939 -0.075699233 -0.060204022 -0.0064479988 -0.073269144 -0.057087723 -0.030318376 -0.086833194 -0.060994137 -0.013106362 -0.063680083 -0.061306648 -0.0005372407 -0.065922536 -0.058996025 -0.025690939 -0.075699233 0.062435467 0.0057210797 0.069739781 0.062273011 0.015879478 0.075517602 0.062038969 0.0041901525 0.074276298 -0.035652179 -0.050737839 -0.039140064 -0.040711455 -0.046423052 -0.040483627 -0.036828969 -0.063483663 -0.052918836 -0.060994137 -0.013106362 -0.063680083 -0.062216029 0.00047883933 -0.054653548 -0.061306648 -0.0005372407 -0.065922536 -0.039347854 -0.0044455924 -0.0079850582 -0.045375612 0.0061103092 -0.0067327167 -0.043127377 -0.011705673 -0.015671089 0.05232675 0.041057549 0.086093418 0.047732793 0.047120549 0.086876728 0.053233206 0.034204423 0.092627518 -0.038000185 -0.030606067 -0.024598952 -0.043127377 -0.011705673 -0.015671089 -0.04705061 -0.01910823 -0.025150754 -0.058996025 -0.025690939 -0.075699233 -0.057087723 -0.030318376 -0.086833194 -0.055446461 -0.043681785 -0.084677286 -0.038000185 -0.030606067 -0.024598952 -0.040711455 -0.046423052 -0.040483627 -0.035652179 -0.050737839 -0.039140064 -0.035652179 -0.050737839 -0.039140064 -0.036828969 -0.063483663 -0.052918836 -0.029798301 -0.06557069 -0.047944859 -0.062356338 0.0076168142 -0.044034701 -0.062368948 0.022932515 -0.03433387 -0.062216029 0.00047883933 -0.054653548 -0.03552752 0.00068352866 -0.002613493 -0.045375612 0.0061103092 -0.0067327167 -0.039347854 -0.0044455924 -0.0079850582 -0.032041922 -0.030511735 -0.020303225 -0.043127377 -0.011705673 -0.015671089 -0.038000185 -0.030606067 -0.024598952 -0.039347854 -0.0044455924 -0.0079850582 -0.043127377 -0.011705673 -0.015671089 -0.032041922 -0.030511735 -0.020303225 -0.061270989 0.0077183209 -0.035952341 -0.062368948 0.022932515 -0.03433387 -0.062356338 0.0076168142 -0.044034701 -0.032041922 -0.030511735 -0.020303225 -0.038000185 -0.030606067 -0.024598952 -0.035652179 -0.050737839 -0.039140064 -0.057696149 -0.032468971 -0.066719435 -0.060994137 -0.013106362 -0.063680083 -0.058996025 -0.025690939 -0.075699233 -0.032033231 -0.014957374 -0.0099722408 -0.03552752 0.00068352866 -0.002613493 -0.039347854 -0.0044455924 -0.0079850582 -0.060070056 -0.012517625 -0.049520288 -0.062356338 0.0076168142 -0.044034701 -0.062216029 0.00047883933 -0.054653548 -0.02469299 -0.066489622 -0.045109782 -0.035652179 -0.050737839 -0.039140064 -0.029798301 -0.06557069 -0.047944859 -0.060070056 -0.012517625 -0.049520288 -0.062216029 0.00047883933 -0.054653548 -0.060994137 -0.013106362 -0.063680083 -0.061270989 0.0077183209 -0.035952341 -0.062356338 0.0076168142 -0.044034701 -0.060070056 -0.012517625 -0.049520288 -0.025484104 -0.049093816 -0.030638808 -0.032041922 -0.030511735 -0.020303225 -0.035652179 -0.050737839 -0.039140064 -0.032033231 -0.014957374 -0.0099722408 -0.039347854 -0.0044455924 -0.0079850582 -0.032041922 -0.030511735 -0.020303225 -0.057696149 -0.032468971 -0.066719435 -0.058996025 -0.025690939 -0.075699233 -0.055446461 -0.043681785 -0.084677286 -0.025484104 -0.049093816 -0.030638808 -0.035652179 -0.050737839 -0.039140064 -0.02469299 -0.066489622 -0.045109782 -0.054043915 -0.048791688 -0.077573895 -0.057696149 -0.032468971 -0.066719435 -0.055446461 -0.043681785 -0.084677286 -0.060070056 -0.012517625 -0.049520288 -0.060994137 -0.013106362 -0.063680083 -0.057696149 -0.032468971 -0.066719435 -0.05993868 0.016405102 -0.024888175 -0.062368948 0.022932515 -0.03433387 -0.061270989 0.0077183209 -0.035952341 -0.028010666 -0.00034766347 0.00058350695 -0.03552752 0.00068352866 -0.002613493 -0.032033231 -0.014957374 -0.0099722408 -0.022865791 -0.032772548 -0.017640963 -0.032033231 -0.014957374 -0.0099722408 -0.032041922 -0.030511735 -0.020303225 -0.05566889 -0.033721142 -0.056900863 -0.060070056 -0.012517625 -0.049520288 -0.057696149 -0.032468971 -0.066719435 0.055174485 0.040442463 0.074830137 0.056349143 0.030407021 0.088699944 0.059647977 0.029263435 0.076748453 -0.052349884 -0.051972974 -0.072888181 -0.057696149 -0.032468971 -0.066719435 -0.054043915 -0.048791688 -0.077573895 -0.028010666 -0.00034766347 0.00058350695 -0.032033231 -0.014957374 -0.0099722408 -0.022865791 -0.032772548 -0.017640963 -0.011294832 -0.067081325 -0.040038317 -0.025484104 -0.049093816 -0.030638808 -0.02469299 -0.066489622 -0.045109782 -0.058838569 -0.011780338 -0.042946849 -0.060070056 -0.012517625 -0.049520288 -0.05566889 -0.033721142 -0.056900863 0.056349143 0.030407021 0.088699944 0.053233206 0.034204423 0.092627518 0.056046691 0.023823926 0.093964264 -0.058838569 -0.011780338 -0.042946849 -0.061270989 0.0077183209 -0.035952341 -0.060070056 -0.012517625 -0.049520288 -0.025484104 -0.049093816 -0.030638808 -0.022865791 -0.032772548 -0.017640963 -0.032041922 -0.030511735 -0.020303225 -0.017080318 -0.063240759 -0.038534414 -0.025484104 -0.049093816 -0.030638808 -0.011294832 -0.067081325 -0.040038317 -0.058335137 0.0032542748 -0.028685661 -0.061270989 0.0077183209 -0.035952341 -0.058838569 -0.011780338 -0.042946849 -0.05993868 0.016405102 -0.024888175 -0.061270989 0.0077183209 -0.035952341 -0.058335137 0.0032542748 -0.028685661 -0.019374017 -0.047830962 -0.026514491 -0.022865791 -0.032772548 -0.017640963 -0.025484104 -0.049093816 -0.030638808 -0.019374017 -0.047830962 -0.026514491 -0.025484104 -0.049093816 -0.030638808 -0.017080318 -0.063240759 -0.038534414 -0.05566889 -0.033721142 -0.056900863 -0.057696149 -0.032468971 -0.066719435 -0.052349884 -0.051972974 -0.072888181 -0.019374017 -0.047830962 -0.026514491 -0.017080318 -0.063240759 -0.038534414 -0.011294832 -0.067081325 -0.040038317 -0.019374017 -0.047830962 -0.026514491 -0.011294832 -0.067081325 -0.040038317 -0.005779834 -0.050193202 -0.02636259 -0.055316262 0.013628975 -0.015723635 -0.05993868 0.016405102 -0.024888175 -0.058335137 0.0032542748 -0.028685661 0.0024519709 -0.065398514 -0.037816528 -0.005779834 -0.050193202 -0.02636259 -0.011294832 -0.067081325 -0.040038317 0.0020732274 -0.044012744 -0.022607893 -0.005779834 -0.050193202 -0.02636259 0.0024519709 -0.065398514 -0.037816528 0.012030075 -0.062911101 -0.037980314 0.0020732274 -0.044012744 -0.022607893 0.0024519709 -0.065398514 -0.037816528 0.062038969 0.0041901525 0.074276298 0.060890362 0.01450929 0.083689213 0.059543271 0.0069636339 0.087902948 -0.053821806 -0.028482908 -0.044952448 -0.058838569 -0.011780338 -0.042946849 -0.05566889 -0.033721142 -0.056900863 0.0085474625 -0.038075007 -0.020346953 0.0020732274 -0.044012744 -0.022607893 0.012030075 -0.062911101 -0.037980314 -0.054582685 -0.014185543 -0.033391628 -0.058335137 0.0032542748 -0.028685661 -0.058838569 -0.011780338 -0.042946849 0.06244256 0.015864333 0.064695947 0.062273011 0.015879478 0.075517602 0.062435467 0.0057210797 0.069739781 0.013782213 -0.035857521 -0.021418825 0.0085474625 -0.038075007 -0.020346953 0.012030075 -0.062911101 -0.037980314 0.023506565 -0.05837214 -0.040206406 0.013782213 -0.035857521 -0.021418825 0.012030075 -0.062911101 -0.037980314 -0.054582685 -0.014185543 -0.033391628 -0.058838569 -0.011780338 -0.042946849 -0.053821806 -0.028482908 -0.044952448 0.027376983 -0.042834226 -0.034098614 0.013782213 -0.035857521 -0.021418825 0.023506565 -0.05837214 -0.040206406 0.062038969 0.0041901525 0.074276298 0.059543271 0.0069636339 0.087902948 0.060136188 0.0012586886 0.083115444 -0.054892093 -0.0001636361 -0.023329437 -0.055316262 0.013628975 -0.015723635 -0.058335137 0.0032542748 -0.028685661 0.020120807 -0.033606909 -0.024135225 0.013782213 -0.035857521 -0.021418825 0.027376983 -0.042834226 -0.034098614 0.031424746 -0.053975377 -0.043388691 0.027376983 -0.042834226 -0.034098614 0.023506565 -0.05837214 -0.040206406 -0.048366394 -0.056653537 -0.065515198 -0.05566889 -0.033721142 -0.056900863 -0.052349884 -0.051972974 -0.072888181 -0.054892093 -0.0001636361 -0.023329437 -0.058335137 0.0032542748 -0.028685661 -0.054582685 -0.014185543 -0.033391628 0.062273011 0.015879478 0.075517602 0.060049761 0.022032455 0.083685108 0.060890362 0.01450929 0.083689213 0.020120807 -0.033606909 -0.024135225 0.027376983 -0.042834226 -0.034098614 0.031026704 -0.038218662 -0.035016626 0.05922728 0.031777062 0.072523184 0.055174485 0.040442463 0.074830137 0.059647977 0.029263435 0.076748453 0.020120807 -0.033606909 -0.024135225 0.031026704 -0.038218662 -0.035016626 0.025482753 -0.020972341 -0.021923771 -0.053821806 -0.028482908 -0.044952448 -0.05566889 -0.033721142 -0.056900863 -0.0520298 -0.040464237 -0.053846311 0.031424746 -0.053975377 -0.043388691 0.031026704 -0.038218662 -0.035016626 0.027376983 -0.042834226 -0.034098614 0.039768707 -0.047692984 -0.048890281 0.031026704 -0.038218662 -0.035016626 0.031424746 -0.053975377 -0.043388691 0.061248787 0.024880437 0.066857234 0.056445416 0.038475048 0.067003883 0.05922728 0.031777062 0.072523184 -0.0520298 -0.040464237 -0.053846311 -0.05566889 -0.033721142 -0.056900863 -0.048366394 -0.056653537 -0.065515198 0.034738943 -0.034357656 -0.037181608 0.025482753 -0.020972341 -0.021923771 0.031026704 -0.038218662 -0.035016626 0.039768707 -0.047692984 -0.048890281 0.034738943 -0.034357656 -0.037181608 0.031026704 -0.038218662 -0.035016626 -0.051502764 -0.0026222286 -0.019374287 -0.055316262 0.013628975 -0.015723635 -0.054892093 -0.0001636361 -0.023329437 0.031319715 -0.011011199 -0.025281332 0.025482753 -0.020972341 -0.021923771 0.034738943 -0.034357656 -0.037181608 0.040119436 -0.030473119 -0.042682894 0.031319715 -0.011011199 -0.025281332 0.034738943 -0.034357656 -0.037181608 0.043246862 -0.044270974 -0.052229114 0.034738943 -0.034357656 -0.037181608 0.039768707 -0.047692984 -0.048890281 0.038381506 -0.019892909 -0.037310425 0.031319715 -0.011011199 -0.025281332 0.040119436 -0.030473119 -0.042682894 0.040119436 -0.030473119 -0.042682894 0.034738943 -0.034357656 -0.037181608 0.043246862 -0.044270974 -0.052229114 0.062435467 0.0057210797 0.069739781 0.062038969 0.0041901525 0.074276298 0.058645498 -0.008973009 0.075696252 -0.052471954 0.0097766602 -0.01298969 -0.055316262 0.013628975 -0.015723635 -0.051502764 -0.0026222286 -0.019374287 0.060049761 0.022032455 0.083685108 0.056046691 0.023823926 0.093964264 0.056374874 0.012718977 0.096069813 -0.051502764 -0.0026222286 -0.019374287 -0.054892093 -0.0001636361 -0.023329437 -0.054582685 -0.014185543 -0.033391628 0.031319715 -0.011011199 -0.025281332 0.038381506 -0.019892909 -0.037310425 0.033921067 0.00086578319 -0.027396828 0.062273011 0.015879478 0.075517602 0.060890362 0.01450929 0.083689213 0.062038969 0.0041901525 0.074276298 -0.051431347 -0.027762908 -0.039078549 -0.054582685 -0.014185543 -0.033391628 -0.053821806 -0.028482908 -0.044952448 0.033921067 0.00086578319 -0.027396828 0.038381506 -0.019892909 -0.037310425 0.038497463 -0.010813474 -0.036018509 0.047480077 -0.038899738 -0.057863552 0.040119436 -0.030473119 -0.042682894 0.043246862 -0.044270974 -0.052229114 0.06244256 0.015864333 0.064695947 0.061248787 0.024880437 0.066857234 0.062273011 0.015879478 0.075517602 0.04564295 -0.022482837 -0.051069543 0.038381506 -0.019892909 -0.037310425 0.040119436 -0.030473119 -0.042682894 -0.051431347 -0.027762908 -0.039078549 -0.053821806 -0.028482908 -0.044952448 -0.0520298 -0.040464237 -0.053846311 0.04564295 -0.022482837 -0.051069543 0.038497463 -0.010813474 -0.036018509 0.038381506 -0.019892909 -0.037310425 0.04564295 -0.022482837 -0.051069543 0.040119436 -0.030473119 -0.042682894 0.047480077 -0.038899738 -0.057863552 -0.046358068 -0.029936207 -0.032919586 -0.054582685 -0.014185543 -0.033391628 -0.051431347 -0.027762908 -0.039078549 -0.04294645 -0.060595307 -0.058643203 -0.0520298 -0.040464237 -0.053846311 -0.048366394 -0.056653537 -0.065515198 0.042621806 -0.0041206041 -0.045054108 0.033921067 0.00086578319 -0.027396828 0.038497463 -0.010813474 -0.036018509 -0.045337956 -0.045046512 -0.045398481 -0.051431347 -0.027762908 -0.039078549 -0.0520298 -0.040464237 -0.053846311 0.037944064 0.0067583462 -0.035982914 0.033921067 0.00086578319 -0.027396828 0.042621806 -0.0041206041 -0.045054108 -0.04705061 -0.01910823 -0.025150754 -0.054582685 -0.014185543 -0.033391628 -0.046358068 -0.029936207 -0.032919586 0.056349143 0.030407021 0.088699944 0.05232675 0.041057549 0.086093418 0.053233206 0.034204423 0.092627518 -0.04705061 -0.01910823 -0.025150754 -0.051502764 -0.0026222286 -0.019374287 -0.054582685 -0.014185543 -0.033391628 -0.062136441 0.019322509 -0.051344927 -0.061859816 0.03110994 -0.040648185 -0.059433997 0.036218785 -0.04985844 -0.045337956 -0.045046512 -0.045398481 -0.046358068 -0.029936207 -0.032919586 -0.051431347 -0.027762908 -0.039078549 -0.062136441 0.019322509 -0.051344927 -0.059433997 0.036218785 -0.04985844 -0.060246293 0.017309124 -0.06259191 -0.045337956 -0.045046512 -0.045398481 -0.0520298 -0.040464237 -0.053846311 -0.04294645 -0.060595307 -0.058643203 0.042621806 -0.0041206041 -0.045054108 0.038497463 -0.010813474 -0.036018509 0.04564295 -0.022482837 -0.051069543 -0.060204022 -0.0064479988 -0.073269144 -0.058985908 0.0071777734 -0.072958849 -0.057830051 -0.0048964242 -0.081905089 -0.061306648 -0.0005372407 -0.065922536 -0.060246293 0.017309124 -0.06259191 -0.058985908 0.0071777734 -0.072958849 -0.052471954 0.0097766602 -0.01298969 -0.051502764 -0.0026222286 -0.019374287 -0.04705061 -0.01910823 -0.025150754 -0.062136441 0.019322509 -0.051344927 -0.060246293 0.017309124 -0.06259191 -0.061306648 -0.0005372407 -0.065922536 -0.061306648 -0.0005372407 -0.065922536 -0.058985908 0.0071777734 -0.072958849 -0.060204022 -0.0064479988 -0.073269144 0.042621806 -0.0041206041 -0.045054108 0.04564295 -0.022482837 -0.051069543 0.046241745 -0.015538254 -0.052841194 -0.045375612 0.0061103092 -0.0067327167 -0.052471954 0.0097766602 -0.01298969 -0.04705061 -0.01910823 -0.025150754 0.051398207 -0.030638548 -0.067361847 0.04564295 -0.022482837 -0.051069543 0.047480077 -0.038899738 -0.057863552 0.046241745 -0.015538254 -0.052841194 0.04564295 -0.022482837 -0.051069543 0.051398207 -0.030638548 -0.067361847 -0.060204022 -0.0064479988 -0.073269144 -0.057830051 -0.0048964242 -0.081905089 -0.056478664 -0.022835867 -0.090333089 -0.040711455 -0.046423052 -0.040483627 -0.046358068 -0.029936207 -0.032919586 -0.045337956 -0.045046512 -0.045398481 -0.036828969 -0.063483663 -0.052918836 -0.045337956 -0.045046512 -0.045398481 -0.04294645 -0.060595307 -0.058643203 -0.062216029 0.00047883933 -0.054653548 -0.062136441 0.019322509 -0.051344927 -0.061306648 -0.0005372407 -0.065922536 -0.060204022 -0.0064479988 -0.073269144 -0.056478664 -0.022835867 -0.090333089 -0.057087723 -0.030318376 -0.086833194 -0.061859816 0.03110994 -0.040648185 -0.062136441 0.019322509 -0.051344927 -0.062216029 0.00047883933 -0.054653548 -0.057087723 -0.030318376 -0.086833194 -0.056478664 -0.022835867 -0.090333089 -0.054544654 -0.034126826 -0.096828505 -0.04705061 -0.01910823 -0.025150754 -0.046358068 -0.029936207 -0.032919586 -0.040711455 -0.046423052 -0.040483627 -0.043127377 -0.011705673 -0.015671089 -0.045375612 0.0061103092 -0.0067327167 -0.04705061 -0.01910823 -0.025150754 -0.036828969 -0.063483663 -0.052918836 -0.040711455 -0.046423052 -0.040483627 -0.045337956 -0.045046512 -0.045398481 -0.062368948 0.022932515 -0.03433387 -0.061859816 0.03110994 -0.040648185 -0.062216029 0.00047883933 -0.054653548 -0.055044837 0.043904684 -0.032465585 -0.056080669 0.038875688 -0.026719186 -0.04955738 0.04524862 -0.02442175 0.05769727 -0.011257042 0.062280461 0.058645498 -0.008973009 0.075696252 0.054750808 -0.017744737 0.065774284 -0.055044837 0.043904684 -0.032465585 -0.058967054 0.03366768 -0.027524404 -0.056080669 0.038875688 -0.026719186 -0.055316262 0.013628975 -0.015723635 -0.050246194 0.01559419 -0.0085683446 -0.055529308 0.023497652 -0.015497718 -0.061619934 0.030748587 -0.034901422 -0.060855132 0.024902917 -0.027067419 -0.058967054 0.03366768 -0.027524404 -0.055529308 0.023497652 -0.015497718 -0.051199399 0.029233495 -0.01205409 -0.053961977 0.032998849 -0.017632885 0.060049761 0.022032455 0.083685108 0.056349143 0.030407021 0.088699944 0.056046691 0.023823926 0.093964264 -0.055529308 0.023497652 -0.015497718 -0.050246194 0.01559419 -0.0085683446 -0.049393985 0.020863846 -0.0077043031 -0.062368948 0.022932515 -0.03433387 -0.05993868 0.016405102 -0.024888175 -0.060855132 0.024902917 -0.027067419 -0.052471954 0.0097766602 -0.01298969 -0.050246194 0.01559419 -0.0085683446 -0.055316262 0.013628975 -0.015723635 -0.055529308 0.023497652 -0.015497718 -0.049393985 0.020863846 -0.0077043031 -0.051199399 0.029233495 -0.01205409 -0.052471954 0.0097766602 -0.01298969 -0.045375612 0.0061103092 -0.0067327167 -0.050246194 0.01559419 -0.0085683446 -0.053961977 0.032998849 -0.017632885 -0.051199399 0.029233495 -0.01205409 -0.047300506 0.035543945 -0.012128701 -0.059433997 0.036218785 -0.04985844 -0.061859816 0.03110994 -0.040648185 -0.059504151 0.038614612 -0.039490122 0.060890362 0.01450929 0.083689213 0.060049761 0.022032455 0.083685108 0.056374874 0.012718977 0.096069813 -0.058967054 0.03366768 -0.027524404 -0.053961977 0.032998849 -0.017632885 -0.056080669 0.038875688 -0.026719186 -0.061859816 0.03110994 -0.040648185 -0.061619934 0.030748587 -0.034901422 -0.059504151 0.038614612 -0.039490122 -0.061859816 0.03110994 -0.040648185 -0.062368948 0.022932515 -0.03433387 -0.061619934 0.030748587 -0.034901422 -0.049393985 0.020863846 -0.0077043031 -0.043681387 0.026921961 -0.0044890768 -0.051199399 0.029233495 -0.01205409 -0.060855132 0.024902917 -0.027067419 -0.055529308 0.023497652 -0.015497718 -0.058967054 0.03366768 -0.027524404 -0.060855132 0.024902917 -0.027067419 -0.05993868 0.016405102 -0.024888175 -0.055529308 0.023497652 -0.015497718 0.059946638 -0.0044484315 0.061204918 0.058645498 -0.008973009 0.075696252 0.05769727 -0.011257042 0.062280461 -0.059504151 0.038614612 -0.039490122 -0.061619934 0.030748587 -0.034901422 -0.055044837 0.043904684 -0.032465585 -0.058967054 0.03366768 -0.027524404 -0.055529308 0.023497652 -0.015497718 -0.053961977 0.032998849 -0.017632885 0.062273011 0.015879478 0.075517602 0.059647977 0.029263435 0.076748453 0.060049761 0.022032455 0.083685108 -0.053961977 0.032998849 -0.017632885 -0.05067293 0.040646181 -0.020254472 -0.056080669 0.038875688 -0.026719186 -0.062368948 0.022932515 -0.03433387 -0.060855132 0.024902917 -0.027067419 -0.061619934 0.030748587 -0.034901422 -0.061619934 0.030748587 -0.034901422 -0.058967054 0.03366768 -0.027524404 -0.055044837 0.043904684 -0.032465585 -0.05993868 0.016405102 -0.024888175 -0.055316262 0.013628975 -0.015723635 -0.055529308 0.023497652 -0.015497718 -0.026909091 0.043864597 -0.0061070803 -0.02394456 0.050709601 -0.010856272 -0.033063807 0.048969477 -0.013709408 -0.043681387 0.026921961 -0.0044890768 -0.047300506 0.035543945 -0.012128701 -0.051199399 0.029233495 -0.01205409 0.059946638 -0.0044484315 0.061204918 0.062435467 0.0057210797 0.069739781 0.058645498 -0.008973009 0.075696252 0.056445416 0.038475048 0.067003883 0.055174485 0.040442463 0.074830137 0.05922728 0.031777062 0.072523184 -0.053961977 0.032998849 -0.017632885 -0.047300506 0.035543945 -0.012128701 -0.05067293 0.040646181 -0.020254472 -0.037814945 0.038041133 -0.006822159 -0.026909091 0.043864597 -0.0061070803 -0.041529667 0.044690371 -0.015057932 -0.033063807 0.048969477 -0.013709408 -0.025567805 0.055718649 -0.018568926 -0.037408765 0.050800618 -0.018906515 0.06244256 0.015864333 0.064695947 0.061404031 0.020918822 0.060448501 0.061248787 0.024880437 0.066857234 -0.043681387 0.026921961 -0.0044890768 -0.038617589 0.028980795 -0.0021947341 -0.037814945 0.038041133 -0.006822159 -0.043681387 0.026921961 -0.0044890768 -0.037814945 0.038041133 -0.006822159 -0.047300506 0.035543945 -0.012128701 -0.033063807 0.048969477 -0.013709408 -0.02394456 0.050709601 -0.010856272 -0.025567805 0.055718649 -0.018568926 0.060890362 0.01450929 0.083689213 0.056374874 0.012718977 0.096069813 0.059543271 0.0069636339 0.087902948 -0.027932286 0.03878409 -0.0027564852 -0.026909091 0.043864597 -0.0061070803 -0.037814945 0.038041133 -0.006822159 -0.047300506 0.035543945 -0.012128701 -0.041529667 0.044690371 -0.015057932 -0.05067293 0.040646181 -0.020254472 -0.056080669 0.038875688 -0.026719186 -0.05067293 0.040646181 -0.020254472 -0.04955738 0.04524862 -0.02442175 0.053233206 0.034204423 0.092627518 0.043554768 0.035619754 0.10614841 0.049978577 0.030713307 0.10098448 -0.04955738 0.04524862 -0.02442175 -0.041529667 0.044690371 -0.015057932 -0.037408765 0.050800618 -0.018906515 -0.026909091 0.043864597 -0.0061070803 -0.033063807 0.048969477 -0.013709408 -0.041529667 0.044690371 -0.015057932 -0.047300506 0.035543945 -0.012128701 -0.037814945 0.038041133 -0.006822159 -0.041529667 0.044690371 -0.015057932 -0.04955738 0.04524862 -0.02442175 -0.037408765 0.050800618 -0.018906515 -0.039142057 0.054805424 -0.027047165 -0.04955738 0.04524862 -0.02442175 -0.039142057 0.054805424 -0.027047165 -0.048360813 0.049839623 -0.030314129 -0.04955738 0.04524862 -0.02442175 -0.048360813 0.049839623 -0.030314129 -0.055044837 0.043904684 -0.032465585 -0.05067293 0.040646181 -0.020254472 -0.041529667 0.044690371 -0.015057932 -0.04955738 0.04524862 -0.02442175 -0.038617589 0.028980795 -0.0021947341 -0.027932286 0.03878409 -0.0027564852 -0.037814945 0.038041133 -0.006822159 -0.038617589 0.028980795 -0.0021947341 -0.029180273 0.03035854 0.0013686154 -0.027932286 0.03878409 -0.0027564852 -0.041529667 0.044690371 -0.015057932 -0.033063807 0.048969477 -0.013709408 -0.037408765 0.050800618 -0.018906515 0.046348259 0.024820527 0.030764183 0.028636279 0.027714645 0.013569431 0.039350282 0.031828728 0.025271935 0.051404495 0.039864272 0.049523074 0.04568398 0.043324299 0.044086952 0.050563835 0.044979054 0.059173744 0.024268011 0.0064405357 0.010336889 0.02441908 0.011620111 0.0073039122 0.025056252 0.021529952 0.0074742655 0.032054491 0.042036943 0.026033793 0.022714758 0.045830712 0.024635758 0.03072978 0.047092438 0.032475997 0.025346341 0.0018156472 0.016504608 0.024268011 0.0064405357 0.010336889 0.027178118 0.0087506007 0.014620422 0.0010647321 0.044508025 0.012936393 -0.030403262 0.047754448 0.0087363413 -0.022264136 0.049600646 0.015281531 0.017679073 0.039918661 0.0121999 0.01269261 0.039489944 0.0058118575 0.0030086492 0.043020386 0.0099157477 0.013614817 0.052215431 0.030947361 -0.014474666 0.060587849 0.03719186 0.006960785 0.05524838 0.034140758 0.03072978 0.047092438 0.032475997 0.022714758 0.045830712 0.024635758 0.013614817 0.052215431 0.030947361 0.050563835 0.044979054 0.059173744 0.04568398 0.043324299 0.044086952 0.043975022 0.047002584 0.049134962 0.026259078 0.03365986 0.013463357 0.020241167 0.033705119 0.0059175175 0.01269261 0.039489944 0.0058118575 0.0580801 0.030276766 0.055310301 0.05929438 0.019493721 0.050363056 0.054870322 0.032759294 0.048283655 -0.022264136 0.049600646 0.015281531 -0.030403262 0.047754448 0.0087363413 -0.035872269 0.058652904 0.025566353 0.053233206 0.034204423 0.092627518 0.046475939 0.041773621 0.097273827 0.043554768 0.035619754 0.10614841 0.055701725 0.036629852 0.05643072 0.054870322 0.032759294 0.048283655 0.051404495 0.039864272 0.049523074 0.030360971 0.05309451 0.047579065 0.022477929 0.053063076 0.039075315 0.018971693 0.058480281 0.055254549 -0.024037849 0.064216137 0.043387495 -0.037604302 0.061707962 0.030893039 -0.041440099 0.065918542 0.042632993 0.028636279 0.027714645 0.013569431 0.025056252 0.021529952 0.0074742655 0.022295542 0.028826101 0.0047778585 0.027178118 0.0087506007 0.014620422 0.024268011 0.0064405357 0.010336889 0.025056252 0.021529952 0.0074742655 0.046403646 0.048227541 0.057718478 0.043975022 0.047002584 0.049134962 0.039325576 0.050665036 0.051948532 0.061705507 0.010372809 0.058178965 0.05929438 0.019493721 0.050363056 0.061404031 0.020918822 0.060448501 0.050918445 0.016179364 0.03549711 0.046073359 0.012353156 0.031286523 0.032331534 0.023503663 0.017060269 0.026259078 0.03365986 0.013463357 0.01269261 0.039489944 0.0058118575 0.025266668 0.037028845 0.015088134 0.061248787 0.024880437 0.066857234 0.059647977 0.029263435 0.076748453 0.062273011 0.015879478 0.075517602 0.027866844 -0.0051264591 0.025063287 0.019577662 -0.012024214 0.022415284 0.025346341 0.0018156472 0.016504608 0.017889017 -0.016635654 0.026521789 0.019577662 -0.012024214 0.022415284 0.027866844 -0.0051264591 0.025063287 0.028636279 0.027714645 0.013569431 0.022295542 0.028826101 0.0047778585 0.020241167 0.033705119 0.0059175175 -0.024037849 0.064216137 0.043387495 -0.014474666 0.060587849 0.03719186 -0.037604302 0.061707962 0.030893039 0.046348259 0.024820527 0.030764183 0.039350282 0.031828728 0.025271935 0.044919431 0.033780027 0.032352593 0.044919431 0.033780027 0.032352593 0.039350282 0.031828728 0.025271935 0.040978938 0.038412005 0.03117484 0.0580801 0.030276766 0.055310301 0.054870322 0.032759294 0.048283655 0.055701725 0.036629852 0.05643072 0.026091337 -0.015217438 0.032057568 0.017889017 -0.016635654 0.026521789 0.027866844 -0.0051264591 0.025063287 0.050918445 0.016179364 0.03549711 0.032331534 0.023503663 0.017060269 0.046348259 0.024820527 0.030764183 0.052295599 0.0018017776 0.040522184 0.035410382 0.0069191037 0.024337899 0.046073359 0.012353156 0.031286523 0.040978938 0.038412005 0.03117484 0.032054491 0.042036943 0.026033793 0.037937973 0.044252574 0.034850467 0.013614817 0.052215431 0.030947361 0.006960785 0.05524838 0.034140758 0.022477929 0.053063076 0.039075315 0.025266668 0.037028845 0.015088134 0.01269261 0.039489944 0.0058118575 0.017679073 0.039918661 0.0121999 0.029348621 0.0497832 0.036771692 0.03072978 0.047092438 0.032475997 0.013614817 0.052215431 0.030947361 0.048079908 -0.014795237 0.046534922 0.04546446 -0.011611333 0.041802183 0.048863709 -0.0028924379 0.039327856 0.039325576 0.050665036 0.051948532 0.030360971 0.05309451 0.047579065 0.038114261 0.054851942 0.065122835 0.027178118 0.0087506007 0.014620422 0.025056252 0.021529952 0.0074742655 0.033372436 0.012587552 0.020162746 0.061404031 0.020918822 0.060448501 0.05929438 0.019493721 0.050363056 0.0580801 0.030276766 0.055310301 0.048863709 -0.0028924379 0.039327856 0.035410382 0.0069191037 0.024337899 0.052295599 0.0018017776 0.040522184 0.028636279 0.027714645 0.013569431 0.020241167 0.033705119 0.0059175175 0.026259078 0.03365986 0.013463357 0.017006852 -0.021613261 0.032295372 0.017889017 -0.016635654 0.026521789 0.026091337 -0.015217438 0.032057568 0.061705507 0.010372809 0.058178965 0.06244256 0.015864333 0.064695947 0.062435467 0.0057210797 0.069739781 0.055701725 0.036629852 0.05643072 0.051404495 0.039864272 0.049523074 0.050563835 0.044979054 0.059173744 0.022714758 0.045830712 0.024635758 0.0030086492 0.043020386 0.0099157477 0.0010647321 0.044508025 0.012936393 0.062038969 0.0041901525 0.074276298 0.060136188 0.0012586886 0.083115444 0.058645498 -0.008973009 0.075696252 0.018971693 0.058480281 0.055254549 0.0082450723 0.058367793 0.044225093 0.014524116 0.061163642 0.063631944 0.06244256 0.015864333 0.064695947 0.061705507 0.010372809 0.058178965 0.061404031 0.020918822 0.060448501 0.006960785 0.05524838 0.034140758 -0.014474666 0.060587849 0.03719186 -0.0059937169 0.060748458 0.042174801 0.037937973 0.044252574 0.034850467 0.032054491 0.042036943 0.026033793 0.03072978 0.047092438 0.032475997 0.033372436 0.012587552 0.020162746 0.025056252 0.021529952 0.0074742655 0.032331534 0.023503663 0.017060269 0.029348621 0.0497832 0.036771692 0.013614817 0.052215431 0.030947361 0.022477929 0.053063076 0.039075315 0.052295599 0.0018017776 0.040522184 0.046073359 0.012353156 0.031286523 0.050918445 0.016179364 0.03549711 0.046403646 0.048227541 0.057718478 0.050563835 0.044979054 0.059173744 0.043975022 0.047002584 0.049134962 0.014524116 0.061163642 0.063631944 0.0082450723 0.058367793 0.044225093 -0.0044253329 0.063244186 0.05285627 0.032331534 0.023503663 0.017060269 0.025056252 0.021529952 0.0074742655 0.028636279 0.027714645 0.013569431 0.022477929 0.053063076 0.039075315 0.006960785 0.05524838 0.034140758 0.0082450723 0.058367793 0.044225093 0.044919431 0.033780027 0.032352593 0.040978938 0.038412005 0.03117484 0.047009163 0.039126668 0.03999785 0.05922728 0.031777062 0.072523184 0.059647977 0.029263435 0.076748453 0.061248787 0.024880437 0.066857234 0.022714758 0.045830712 0.024635758 0.017679073 0.039918661 0.0121999 0.0030086492 0.043020386 0.0099157477 0.0010647321 0.044508025 0.012936393 -0.022264136 0.049600646 0.015281531 -0.008202333 0.053781517 0.025405794 0.027866844 -0.0051264591 0.025063287 0.025346341 0.0018156472 0.016504608 0.027178118 0.0087506007 0.014620422 0.053126302 -0.010904334 0.049178064 0.048863709 -0.0028924379 0.039327856 0.052295599 0.0018017776 0.040522184 -0.008202333 0.053781517 0.025405794 -0.022264136 0.049600646 0.015281531 -0.035872269 0.058652904 0.025566353 0.0082450723 0.058367793 0.044225093 0.006960785 0.05524838 0.034140758 -0.0059937169 0.060748458 0.042174801 0.030360971 0.05309451 0.047579065 0.018971693 0.058480281 0.055254549 0.038114261 0.054851942 0.065122835 0.046348259 0.024820527 0.030764183 0.044919431 0.033780027 0.032352593 0.052366454 0.032217987 0.042366721 0.061248787 0.024880437 0.066857234 0.061404031 0.020918822 0.060448501 0.0580801 0.030276766 0.055310301 0.027866844 -0.0051264591 0.025063287 0.027178118 0.0087506007 0.014620422 0.035410382 0.0069191037 0.024337899 0.035410382 0.0069191037 0.024337899 0.027178118 0.0087506007 0.014620422 0.033372436 0.012587552 0.020162746 -0.0059937169 0.060748458 0.042174801 -0.014474666 0.060587849 0.03719186 -0.024037849 0.064216137 0.043387495 0.048079908 -0.014795237 0.046534922 0.053126302 -0.010904334 0.049178064 0.051910728 -0.018273197 0.056413483 0.046403646 0.048227541 0.057718478 0.039325576 0.050665036 0.051948532 0.038114261 0.054851942 0.065122835 0.047009163 0.039126668 0.03999785 0.040978938 0.038412005 0.03117484 0.037937973 0.044252574 0.034850467 0.026091337 -0.015217438 0.032057568 0.027866844 -0.0051264591 0.025063287 0.035185862 -0.0047867559 0.030594457 0.037937973 0.044252574 0.034850467 0.03072978 0.047092438 0.032475997 0.029348621 0.0497832 0.036771692 0.055729482 0.017503045 0.042031769 0.050918445 0.016179364 0.03549711 0.046348259 0.024820527 0.030764183 0.026885377 0.014915043 -0.012752888 0.031800427 0.021550544 -0.026509494 0.023445316 0.026143933 -0.0094610536 -0.015831096 0.054837834 -0.014756321 -0.02394456 0.050709601 -0.010856272 -0.019087659 0.048293218 -0.0056190318 0.055729482 0.017503045 0.042031769 0.046348259 0.024820527 0.030764183 0.052366454 0.032217987 0.042366721 -0.0090260617 0.054421283 -0.014032823 -0.015831096 0.054837834 -0.014756321 -0.019087659 0.048293218 -0.0056190318 -0.019087659 0.048293218 -0.0056190318 -0.02394456 0.050709601 -0.010856272 -0.02554811 0.047924824 -0.0060300091 0.022980362 0.0041159755 0.0028120854 0.026885377 0.014915043 -0.012752888 0.023712678 0.013950686 -0.0015309214 0.061248787 0.024880437 0.066857234 0.0580801 0.030276766 0.055310301 0.055701725 0.036629852 0.05643072 0.023712678 0.013950686 -0.0015309214 0.026885377 0.014915043 -0.012752888 0.023445316 0.026143933 -0.0094610536 0.026246306 0.010696036 -0.0099769048 0.026885377 0.014915043 -0.012752888 0.022980362 0.0041159755 0.0028120854 0.057966206 0.010103785 0.046271279 0.052295599 0.0018017776 0.040522184 0.050918445 0.016179364 0.03549711 0.047009163 0.039126668 0.03999785 0.037937973 0.044252574 0.034850467 0.04568398 0.043324299 0.044086952 0.013862822 0.048916429 0.025099877 0.0010647321 0.044508025 0.012936393 -0.008202333 0.053781517 0.025405794 -0.0015994727 0.048330635 -0.0081699425 -0.0090260617 0.054421283 -0.014032823 -0.019087659 0.048293218 -0.0056190318 0.057139184 -0.00698118 0.053210557 0.059946638 -0.0044484315 0.061204918 0.05769727 -0.011257042 0.062280461 0.019528661 0.034190085 -0.0078684352 0.023349421 0.03723269 -0.016318366 0.01695667 0.038048148 -0.0082696853 0.032054491 0.042036943 0.026033793 0.017679073 0.039918661 0.0121999 0.022714758 0.045830712 0.024635758 0.032054491 0.042036943 0.026033793 0.025266668 0.037028845 0.015088134 0.017679073 0.039918661 0.0121999 0.057966206 0.010103785 0.046271279 0.050918445 0.016179364 0.03549711 0.055729482 0.017503045 0.042031769 0.039350282 0.031828728 0.025271935 0.028636279 0.027714645 0.013569431 0.026259078 0.03365986 0.013463357 0.046307057 -0.021458311 0.052485071 0.048079908 -0.014795237 0.046534922 0.051910728 -0.018273197 0.056413483 0.023445316 0.026143933 -0.0094610536 0.023349421 0.03723269 -0.016318366 0.019528661 0.034190085 -0.0078684352 0.035072606 0.057044182 0.073987752 0.018971693 0.058480281 0.055254549 0.014524116 0.061163642 0.063631944 0.023445316 0.026143933 -0.0094610536 0.019528661 0.034190085 -0.0078684352 0.019728731 0.031821024 -0.0043388302 -0.0025184921 0.044871233 -0.0023876608 -0.0015994727 0.048330635 -0.0081699425 -0.019087659 0.048293218 -0.0056190318 0.053138178 0.044109434 0.069976099 0.055701725 0.036629852 0.05643072 0.050563835 0.044979054 0.059173744 -0.02554811 0.047924824 -0.0060300091 -0.027410351 0.046234693 -0.00039563555 -0.019164253 0.045548253 0.0032969981 0.039350282 0.031828728 0.025271935 0.026259078 0.03365986 0.013463357 0.025266668 0.037028845 0.015088134 0.022943141 0.02157053 -0.0025619669 0.023712678 0.013950686 -0.0015309214 0.023445316 0.026143933 -0.0094610536 0.056445416 0.038475048 0.067003883 0.055701725 0.036629852 0.05643072 0.053138178 0.044109434 0.069976099 0.057139184 -0.00698118 0.053210557 0.052295599 0.0018017776 0.040522184 0.057966206 0.010103785 0.046271279 0.01100118 0.040515777 -0.0033693099 0.01695667 0.038048148 -0.0082696853 0.009936031 0.042684209 -0.0065687108 0.035185862 -0.0047867559 0.030594457 0.027866844 -0.0051264591 0.025063287 0.035410382 0.0069191037 0.024337899 0.038114261 0.054851942 0.065122835 0.018971693 0.058480281 0.055254549 0.035072606 0.057044182 0.073987752 -0.019164253 0.045548253 0.0032969981 -0.019087659 0.048293218 -0.0056190318 -0.02554811 0.047924824 -0.0060300091 0.046073359 0.012353156 0.031286523 0.035410382 0.0069191037 0.024337899 0.033372436 0.012587552 0.020162746 0.061248787 0.024880437 0.066857234 0.055701725 0.036629852 0.05643072 0.056445416 0.038475048 0.067003883 0.022714758 0.045830712 0.024635758 0.0010647321 0.044508025 0.012936393 0.013862822 0.048916429 0.025099877 0.022943141 0.02157053 -0.0025619669 0.023445316 0.026143933 -0.0094610536 0.019728731 0.031821024 -0.0043388302 0.046073359 0.012353156 0.031286523 0.033372436 0.012587552 0.020162746 0.032331534 0.023503663 0.017060269 0.053138178 0.044109434 0.069976099 0.050563835 0.044979054 0.059173744 0.048122976 0.049712483 0.071069889 0.052366454 0.032217987 0.042366721 0.044919431 0.033780027 0.032352593 0.047009163 0.039126668 0.03999785 0.048122976 0.049712483 0.071069889 0.050563835 0.044979054 0.059173744 0.046403646 0.048227541 0.057718478 0.029348621 0.0497832 0.036771692 0.022477929 0.053063076 0.039075315 0.030360971 0.05309451 0.047579065 0.02441908 0.011620111 0.0073039122 0.022943141 0.02157053 -0.0025619669 0.022892574 0.024438392 0.0029195563 -0.030403262 0.047754448 0.0087363413 -0.019164253 0.045548253 0.0032969981 -0.027410351 0.046234693 -0.00039563555 0.04568398 0.043324299 0.044086952 0.037937973 0.044252574 0.034850467 0.043975022 0.047002584 0.049134962 0.02441908 0.011620111 0.0073039122 0.023712678 0.013950686 -0.0015309214 0.022943141 0.02157053 -0.0025619669 0.013862822 0.048916429 0.025099877 -0.008202333 0.053781517 0.025405794 0.013614817 0.052215431 0.030947361 0.051910728 -0.018273197 0.056413483 0.057139184 -0.00698118 0.053210557 0.05769727 -0.011257042 0.062280461 0.009936031 0.042684209 -0.0065687108 -0.0015994727 0.048330635 -0.0081699425 -0.0025184921 0.044871233 -0.0023876608 -0.019164253 0.045548253 0.0032969981 -0.0025184921 0.044871233 -0.0023876608 -0.019087659 0.048293218 -0.0056190318 0.046348259 0.024820527 0.030764183 0.032331534 0.023503663 0.017060269 0.028636279 0.027714645 0.013569431 0.01695667 0.038048148 -0.0082696853 0.01100118 0.040515777 -0.0033693099 0.019528661 0.034190085 -0.0078684352 0.052366454 0.032217987 0.042366721 0.047009163 0.039126668 0.03999785 0.051404495 0.039864272 0.049523074 0.05929438 0.019493721 0.050363056 0.057966206 0.010103785 0.046271279 0.055729482 0.017503045 0.042031769 0.022980362 0.0041159755 0.0028120854 0.023712678 0.013950686 -0.0015309214 0.02441908 0.011620111 0.0073039122 0.05929438 0.019493721 0.050363056 0.055729482 0.017503045 0.042031769 0.052366454 0.032217987 0.042366721 0.0088422392 0.040684815 0.0038763322 0.009936031 0.042684209 -0.0065687108 -0.0025184921 0.044871233 -0.0023876608 0.048079908 -0.014795237 0.046534922 0.048863709 -0.0028924379 0.039327856 0.053126302 -0.010904334 0.049178064 -0.0044253329 0.063244186 0.05285627 -0.0059937169 0.060748458 0.042174801 -0.024037849 0.064216137 0.043387495 0.01100118 0.040515777 -0.0033693099 0.009936031 0.042684209 -0.0065687108 0.0088422392 0.040684815 0.0038763322 0.057139184 -0.00698118 0.053210557 0.057966206 0.010103785 0.046271279 0.060459308 0.0052723978 0.054168046 0.039325576 0.050665036 0.051948532 0.037937973 0.044252574 0.034850467 0.029348621 0.0497832 0.036771692 -0.037604302 0.061707962 0.030893039 -0.008202333 0.053781517 0.025405794 -0.035872269 0.058652904 0.025566353 0.022943141 0.02157053 -0.0025619669 0.019728731 0.031821024 -0.0043388302 0.022295542 0.028826101 0.0047778585 0.0088422392 0.040684815 0.0038763322 -0.0025184921 0.044871233 -0.0023876608 -0.019164253 0.045548253 0.0032969981 0.019728731 0.031821024 -0.0043388302 0.019528661 0.034190085 -0.0078684352 0.01269261 0.039489944 0.0058118575 0.02441908 0.011620111 0.0073039122 0.022892574 0.024438392 0.0029195563 0.025056252 0.021529952 0.0074742655 0.021418452 -0.0032224986 0.012815061 0.022980362 0.0041159755 0.0028120854 0.024268011 0.0064405357 0.010336889 0.022892574 0.024438392 0.0029195563 0.022943141 0.02157053 -0.0025619669 0.022295542 0.028826101 0.0047778585 0.0030086492 0.043020386 0.0099157477 -0.019164253 0.045548253 0.0032969981 -0.030403262 0.047754448 0.0087363413 0.046307057 -0.021458311 0.052485071 0.026091337 -0.015217438 0.032057568 0.048079908 -0.014795237 0.046534922 0.022477929 0.053063076 0.039075315 0.0082450723 0.058367793 0.044225093 0.018971693 0.058480281 0.055254549 0.024268011 0.0064405357 0.010336889 0.022980362 0.0041159755 0.0028120854 0.02441908 0.011620111 0.0073039122 0.051404495 0.039864272 0.049523074 0.047009163 0.039126668 0.03999785 0.04568398 0.043324299 0.044086952 0.043975022 0.047002584 0.049134962 0.037937973 0.044252574 0.034850467 0.039325576 0.050665036 0.051948532 0.0030086492 0.043020386 0.0099157477 -0.030403262 0.047754448 0.0087363413 0.0010647321 0.044508025 0.012936393 0.022295542 0.028826101 0.0047778585 0.019728731 0.031821024 -0.0043388302 0.020241167 0.033705119 0.0059175175 0.039325576 0.050665036 0.051948532 0.029348621 0.0497832 0.036771692 0.030360971 0.05309451 0.047579065 0.019528661 0.034190085 -0.0078684352 0.01100118 0.040515777 -0.0033693099 0.0088422392 0.040684815 0.0038763322 -0.014474666 0.060587849 0.03719186 -0.008202333 0.053781517 0.025405794 -0.037604302 0.061707962 0.030893039 0.04546446 -0.011611333 0.041802183 0.026091337 -0.015217438 0.032057568 0.035185862 -0.0047867559 0.030594457 0.040978938 0.038412005 0.03117484 0.025266668 0.037028845 0.015088134 0.032054491 0.042036943 0.026033793 0.039350282 0.031828728 0.025271935 0.025266668 0.037028845 0.015088134 0.040978938 0.038412005 0.03117484 0.060459308 0.0052723978 0.054168046 0.057966206 0.010103785 0.046271279 0.061705507 0.010372809 0.058178965 0.019528661 0.034190085 -0.0078684352 0.0088422392 0.040684815 0.0038763322 0.01269261 0.039489944 0.0058118575 0.018568359 -0.009045274 0.011348256 0.021418452 -0.0032224986 0.012815061 0.025346341 0.0018156472 0.016504608 0.054870322 0.032759294 0.048283655 0.052366454 0.032217987 0.042366721 0.051404495 0.039864272 0.049523074 0.0088422392 0.040684815 0.0038763322 -0.019164253 0.045548253 0.0032969981 0.0030086492 0.043020386 0.0099157477 0.061705507 0.010372809 0.058178965 0.057966206 0.010103785 0.046271279 0.05929438 0.019493721 0.050363056 0.020241167 0.033705119 0.0059175175 0.019728731 0.031821024 -0.0043388302 0.01269261 0.039489944 0.0058118575 0.022714758 0.045830712 0.024635758 0.013862822 0.048916429 0.025099877 0.013614817 0.052215431 0.030947361 0.01269261 0.039489944 0.0058118575 0.0088422392 0.040684815 0.0038763322 0.0030086492 0.043020386 0.0099157477 0.019577662 -0.012024214 0.022415284 0.018568359 -0.009045274 0.011348256 0.025346341 0.0018156472 0.016504608 0.0082450723 0.058367793 0.044225093 -0.0059937169 0.060748458 0.042174801 -0.0044253329 0.063244186 0.05285627 0.013614817 0.052215431 0.030947361 -0.008202333 0.053781517 0.025405794 -0.014474666 0.060587849 0.03719186 0.048863709 -0.0028924379 0.039327856 0.035185862 -0.0047867559 0.030594457 0.035410382 0.0069191037 0.024337899 0.04546446 -0.011611333 0.041802183 0.035185862 -0.0047867559 0.030594457 0.048863709 -0.0028924379 0.039327856 0.018568359 -0.009045274 0.011348256 0.019577662 -0.012024214 0.022415284 0.017889017 -0.016635654 0.026521789 0.05929438 0.019493721 0.050363056 0.052366454 0.032217987 0.042366721 0.054870322 0.032759294 0.048283655 0.057139184 -0.00698118 0.053210557 0.060459308 0.0052723978 0.054168046 0.059946638 -0.0044484315 0.061204918 0.053126302 -0.010904334 0.049178064 0.057139184 -0.00698118 0.053210557 0.051910728 -0.018273197 0.056413483 0.025056252 0.021529952 0.0074742655 0.022892574 0.024438392 0.0029195563 0.022295542 0.028826101 0.0047778585 0.021418452 -0.0032224986 0.012815061 0.024268011 0.0064405357 0.010336889 0.025346341 0.0018156472 0.016504608 0.01898979 0.021486329 0.12160463 0.022879766 0.0097106807 0.12259988 0.027990356 0.023411527 0.12046404 0.038713738 -0.02026986 0.10404356 0.041507568 -0.025817849 0.093878716 0.043900985 -0.022083748 0.096353084 0.028680164 -0.032283839 0.091355555 0.0379402 -0.031225845 0.085872427 0.041507568 -0.025817849 0.093878716 0.027990356 0.023411527 0.12046404 0.022879766 0.0097106807 0.12259988 0.028927742 0.012177507 0.12167281 0.027990356 0.023411527 0.12046404 0.028927742 0.012177507 0.12167281 0.034854744 0.025060678 0.11753805 0.038713738 -0.02026986 0.10404356 0.043900985 -0.022083748 0.096353084 0.044937402 -0.014361582 0.10286283 0.028927742 0.012177507 0.12167281 0.036124799 0.013928043 0.11871731 0.034854744 0.025060678 0.11753805 0.028680164 -0.032283839 0.091355555 0.030883959 -0.033740208 0.084783904 0.0379402 -0.031225845 0.085872427 0.043900985 -0.022083748 0.096353084 0.048326381 -0.01939089 0.092587024 0.044937402 -0.014361582 0.10286283 0.034854744 0.025060678 0.11753805 0.036124799 0.013928043 0.11871731 0.040880993 0.02371829 0.11393166 0.033372164 -0.034103144 0.077021793 0.038100056 -0.032477468 0.078235507 0.030883959 -0.033740208 0.084783904 0.0379402 -0.031225845 0.085872427 0.043574292 -0.027711848 0.086218916 0.041507568 -0.025817849 0.093878716 0.030883959 -0.033740208 0.084783904 0.038100056 -0.032477468 0.078235507 0.0379402 -0.031225845 0.085872427 0.028927742 0.012177507 0.12167281 0.022879766 0.0097106807 0.12259988 0.029662691 0.0033957136 0.12073154 0.041507568 -0.025817849 0.093878716 0.043574292 -0.027711848 0.086218916 0.043900985 -0.022083748 0.096353084 0.040880993 0.02371829 0.11393166 0.036124799 0.013928043 0.11871731 0.040036496 0.010319339 0.11614741 0.043900985 -0.022083748 0.096353084 0.043574292 -0.027711848 0.086218916 0.048326381 -0.01939089 0.092587024 0.022879766 0.0097106807 0.12259988 0.019024432 0.00080913806 0.12135375 0.029662691 0.0033957136 0.12073154 0.033372164 -0.034103144 0.077021793 0.035345182 -0.033390399 0.071141608 0.038100056 -0.032477468 0.078235507 0.028927742 0.012177507 0.12167281 0.029662691 0.0033957136 0.12073154 0.036124799 0.013928043 0.11871731 0.038100056 -0.032477468 0.078235507 0.043477047 -0.029825656 0.074414171 0.0379402 -0.031225845 0.085872427 0.0379402 -0.031225845 0.085872427 0.043477047 -0.029825656 0.074414171 0.043574292 -0.027711848 0.086218916 0.019024432 0.00080913806 0.12135375 0.02545793 -0.0084030917 0.11794887 0.029662691 0.0033957136 0.12073154 0.019024432 0.00080913806 0.12135375 0.020065442 -0.0078046257 0.11846842 0.02545793 -0.0084030917 0.11794887 0.029662691 0.0033957136 0.12073154 0.03724796 0.0033072343 0.11733846 0.036124799 0.013928043 0.11871731 0.036124799 0.013928043 0.11871731 0.03724796 0.0033072343 0.11733846 0.040036496 0.010319339 0.11614741 0.053126302 -0.010904334 0.049178064 0.052295599 0.0018017776 0.040522184 0.057139184 -0.00698118 0.053210557 0.043574292 -0.027711848 0.086218916 0.043477047 -0.029825656 0.074414171 0.050389856 -0.022812327 0.080310956 0.043574292 -0.027711848 0.086218916 0.050389856 -0.022812327 0.080310956 0.048326381 -0.01939089 0.092587024 0.02545793 -0.0084030917 0.11794887 0.031105418 -0.0096179349 0.11596072 0.029662691 0.0033957136 0.12073154 0.035345182 -0.033390399 0.071141608 0.044569414 -0.028582223 0.067295119 0.038100056 -0.032477468 0.078235507 0.038100056 -0.032477468 0.078235507 0.044569414 -0.028582223 0.067295119 0.043477047 -0.029825656 0.074414171 0.054750808 -0.017744737 0.065774284 0.051910728 -0.018273197 0.056413483 0.05769727 -0.011257042 0.062280461 0.029662691 0.0033957136 0.12073154 0.031105418 -0.0096179349 0.11596072 0.03724796 0.0033072343 0.11733846 0.035345182 -0.033390399 0.071141608 0.038037434 -0.031029683 0.063383639 0.044569414 -0.028582223 0.067295119 0.020065442 -0.0078046257 0.11846842 0.021052109 -0.014488678 0.11479395 0.02545793 -0.0084030917 0.11794887 0.043477047 -0.029825656 0.074414171 0.048164204 -0.026219603 0.072276808 0.050389856 -0.022812327 0.080310956 0.040036496 0.010319339 0.11614741 0.03724796 0.0033072343 0.11733846 0.043848474 0.0014238768 0.11163566 0.044569414 -0.028582223 0.067295119 0.048164204 -0.026219603 0.072276808 0.043477047 -0.029825656 0.074414171 0.021052109 -0.014488678 0.11479395 0.026471868 -0.018499151 0.11142787 0.02545793 -0.0084030917 0.11794887 0.038037434 -0.031029683 0.063383639 0.044225868 -0.027134746 0.060861714 0.044569414 -0.028582223 0.067295119 0.026471868 -0.018499151 0.11142787 0.031105418 -0.0096179349 0.11596072 0.02545793 -0.0084030917 0.11794887 0.031105418 -0.0096179349 0.11596072 0.039436623 -0.0042022238 0.11378387 0.03724796 0.0033072343 0.11733846 0.038037434 -0.031029683 0.063383639 0.040642451 -0.026638838 0.055201534 0.044225868 -0.027134746 0.060861714 0.03724796 0.0033072343 0.11733846 0.039436623 -0.0042022238 0.11378387 0.043848474 0.0014238768 0.11163566 0.023932813 0.045049891 0.10888398 0.027608501 0.03597546 0.11538829 0.03083539 0.041368049 0.11071325 0.023932813 0.045049891 0.10888398 0.021273799 0.037479315 0.1150635 0.027608501 0.03597546 0.11538829 0.044569414 -0.028582223 0.067295119 0.044225868 -0.027134746 0.060861714 0.048164204 -0.026219603 0.072276808 0.031105418 -0.0096179349 0.11596072 0.026471868 -0.018499151 0.11142787 0.032719985 -0.016528454 0.11102723 0.050389856 -0.022812327 0.080310956 0.048164204 -0.026219603 0.072276808 0.054224618 -0.018779134 0.07291887 0.021052109 -0.014488678 0.11479395 0.023280304 -0.021909464 0.10865501 0.026471868 -0.018499151 0.11142787 0.03083539 0.041368049 0.11071325 0.027608501 0.03597546 0.11538829 0.032425631 0.035376862 0.11421848 0.03083539 0.041368049 0.11071325 0.032425631 0.035376862 0.11421848 0.036810704 0.039262597 0.10936145 0.044225868 -0.027134746 0.060861714 0.051910728 -0.018273197 0.056413483 0.048164204 -0.026219603 0.072276808 0.040642451 -0.026638838 0.055201534 0.046307057 -0.021458311 0.052485071 0.044225868 -0.027134746 0.060861714 0.021273799 0.037479315 0.1150635 0.020264057 0.032167573 0.11801805 0.026532017 0.030074194 0.11855523 0.010624532 -0.026980776 0.035081141 0.030186227 -0.023419408 0.042756286 0.0098817265 -0.029954256 0.039112579 0.021273799 0.037479315 0.1150635 0.026532017 0.030074194 0.11855523 0.027608501 0.03597546 0.11538829 0.031105418 -0.0096179349 0.11596072 0.032719985 -0.016528454 0.11102723 0.039436623 -0.0042022238 0.11378387 0.044225868 -0.027134746 0.060861714 0.046307057 -0.021458311 0.052485071 0.051910728 -0.018273197 0.056413483 0.048164204 -0.026219603 0.072276808 0.051910728 -0.018273197 0.056413483 0.054750808 -0.017744737 0.065774284 0.026471868 -0.018499151 0.11142787 0.023280304 -0.021909464 0.10865501 0.029491739 -0.023917649 0.1053735 0.030186227 -0.023419408 0.042756286 0.046307057 -0.021458311 0.052485071 0.040642451 -0.026638838 0.055201534 0.048079908 -0.014795237 0.046534922 0.026091337 -0.015217438 0.032057568 0.04546446 -0.011611333 0.041802183 0.023280304 -0.021909464 0.10865501 0.01430621 -0.02681517 0.10302351 0.029491739 -0.023917649 0.1053735 0.048164204 -0.026219603 0.072276808 0.054750808 -0.017744737 0.065774284 0.054224618 -0.018779134 0.07291887 0.039436623 -0.0042022238 0.11378387 0.032719985 -0.016528454 0.11102723 0.039091475 -0.014298031 0.10877872 0.026471868 -0.018499151 0.11142787 0.029491739 -0.023917649 0.1053735 0.032719985 -0.016528454 0.11102723 0.027608501 0.03597546 0.11538829 0.026532017 0.030074194 0.11855523 0.032425631 0.035376862 0.11421848 0.01430621 -0.02681517 0.10302351 0.029956039 -0.027358323 0.1006659 0.029491739 -0.023917649 0.1053735 0.026091337 -0.015217438 0.032057568 0.030186227 -0.023419408 0.042756286 0.017006852 -0.021613261 0.032295372 0.036810704 0.039262597 0.10936145 0.03911268 0.029865138 0.11319198 0.043554768 0.035619754 0.10614841 0.036810704 0.039262597 0.10936145 0.032425631 0.035376862 0.11421848 0.03911268 0.029865138 0.11319198 0.026091337 -0.015217438 0.032057568 0.046307057 -0.021458311 0.052485071 0.030186227 -0.023419408 0.042756286 0.020264057 0.032167573 0.11801805 0.01898979 0.021486329 0.12160463 0.026532017 0.030074194 0.11855523 0.026532017 0.030074194 0.11855523 0.027990356 0.023411527 0.12046404 0.032425631 0.035376862 0.11421848 0.032719985 -0.016528454 0.11102723 0.038713738 -0.02026986 0.10404356 0.039091475 -0.014298031 0.10877872 0.026532017 0.030074194 0.11855523 0.01898979 0.021486329 0.12160463 0.027990356 0.023411527 0.12046404 0.032719985 -0.016528454 0.11102723 0.029491739 -0.023917649 0.1053735 0.038713738 -0.02026986 0.10404356 0.032425631 0.035376862 0.11421848 0.034854744 0.025060678 0.11753805 0.03911268 0.029865138 0.11319198 0.030186227 -0.023419408 0.042756286 0.010624532 -0.026980776 0.035081141 0.017006852 -0.021613261 0.032295372 0.032425631 0.035376862 0.11421848 0.027990356 0.023411527 0.12046404 0.034854744 0.025060678 0.11753805 0.029491739 -0.023917649 0.1053735 0.029956039 -0.027358323 0.1006659 0.038713738 -0.02026986 0.10404356 0.039091475 -0.014298031 0.10877872 0.038713738 -0.02026986 0.10404356 0.044937402 -0.014361582 0.10286283 0.038713738 -0.02026986 0.10404356 0.029956039 -0.027358323 0.1006659 0.041507568 -0.025817849 0.093878716 -0.051447455 0.0039465195 0.10846784 -0.050413478 0.010188467 0.10935508 -0.062442452 0.014666907 0.10558257 0.029956039 -0.027358323 0.1006659 0.028680164 -0.032283839 0.091355555 0.041507568 -0.025817849 0.093878716 -0.017013157 -0.00012652334 0.11607518 0.0089715729 0.0071253581 0.12135579 -0.019211877 0.0042880648 0.11649445 0.034854744 0.025060678 0.11753805 0.040880993 0.02371829 0.11393166 0.03911268 0.029865138 0.11319198 -0.051447455 0.0039465195 0.10846784 -0.036024403 0.0078552365 0.11312067 -0.050413478 0.010188467 0.10935508 -0.035930652 0.00097958569 0.11214776 -0.036024403 0.0078552365 0.11312067 -0.051447455 0.0039465195 0.10846784 0.011987961 -0.037582688 0.07883428 0.014711338 -0.033407435 0.091925323 -0.0062836972 -0.038506009 0.080706194 0.011987961 -0.037582688 0.07883428 0.028680164 -0.032283839 0.091355555 0.014711338 -0.033407435 0.091925323 -0.017013157 -0.00012652334 0.11607518 -0.019211877 0.0042880648 0.11649445 -0.035930652 0.00097958569 0.11214776 0.019024432 0.00080913806 0.12135375 0.0089715729 0.0071253581 0.12135579 -0.017013157 -0.00012652334 0.11607518 -0.020880884 -0.039531961 0.077677861 -0.0062836972 -0.038506009 0.080706194 -0.01234883 -0.037009228 0.085007697 -0.035930652 0.00097958569 0.11214776 -0.019211877 0.0042880648 0.11649445 -0.036024403 0.0078552365 0.11312067 -0.06211815 -2.1160946e-05 0.10432962 -0.051447455 0.0039465195 0.10846784 -0.062442452 0.014666907 0.10558257 0.023932813 0.045049891 0.10888398 0.009056312 0.051265657 0.10176701 -0.00010490225 0.05032016 0.10253584 -0.049358111 -0.041562561 0.064764664 -0.038891196 -0.040228415 0.072903745 -0.052066218 -0.038832754 0.073054895 0.0060882154 -0.0054419357 0.11809337 0.019024432 0.00080913806 0.12135375 -0.017013157 -0.00012652334 0.11607518 -0.055703338 0.054905858 0.086308949 -0.026494894 0.052848153 0.096222833 -0.03271335 0.057794012 0.088256516 0.030883959 -0.033740208 0.084783904 0.028680164 -0.032283839 0.091355555 0.011987961 -0.037582688 0.07883428 -0.023582995 -0.0043155933 0.11356912 -0.017013157 -0.00012652334 0.11607518 -0.035930652 0.00097958569 0.11214776 -0.035930652 0.00097958569 0.11214776 -0.051447455 0.0039465195 0.10846784 -0.06211815 -2.1160946e-05 0.10432962 0.0060882154 -0.0054419357 0.11809337 -0.017013157 -0.00012652334 0.11607518 -0.023582995 -0.0043155933 0.11356912 0.00081073644 0.042036597 0.1103287 0.023932813 0.045049891 0.10888398 -0.00010490225 0.05032016 0.10253584 -0.008537286 -0.040248461 0.073723972 -0.0062836972 -0.038506009 0.080706194 -0.020880884 -0.039531961 0.077677861 -0.008537286 -0.040248461 0.073723972 0.011987961 -0.037582688 0.07883428 -0.0062836972 -0.038506009 0.080706194 0.020065442 -0.0078046257 0.11846842 0.019024432 0.00080913806 0.12135375 0.0060882154 -0.0054419357 0.11809337 -0.020880884 -0.039531961 0.077677861 -0.034032073 -0.03748665 0.08116442 -0.038891196 -0.040228415 0.072903745 -0.04641052 0.048989668 0.095645607 -0.026494894 0.052848153 0.096222833 -0.055703338 0.054905858 0.086308949 -0.020928277 0.047970064 0.10233616 -0.00010490225 0.05032016 0.10253584 -0.026494894 0.052848153 0.096222833 -0.058499787 0.046577372 0.094173551 -0.055703338 0.054905858 0.086308949 -0.055849683 0.054906636 0.086260855 -0.038891196 -0.040228415 0.072903745 -0.034032073 -0.03748665 0.08116442 -0.052066218 -0.038832754 0.073054895 -0.020880884 -0.039531961 0.077677861 -0.01234883 -0.037009228 0.085007697 -0.034032073 -0.03748665 0.08116442 -0.020928277 0.047970064 0.10233616 0.00081073644 0.042036597 0.1103287 -0.00010490225 0.05032016 0.10253584 0.021273799 0.037479315 0.1150635 0.023932813 0.045049891 0.10888398 0.00081073644 0.042036597 0.1103287 -0.020928277 0.047970064 0.10233616 -0.026494894 0.052848153 0.096222833 -0.04641052 0.048989668 0.095645607 -0.035159614 -0.042604055 0.061433014 -0.038891196 -0.040228415 0.072903745 -0.049358111 -0.041562561 0.064764664 -0.035159614 -0.042604055 0.061433014 -0.008537286 -0.040248461 0.073723972 -0.020880884 -0.039531961 0.077677861 -0.035159614 -0.042604055 0.061433014 -0.020880884 -0.039531961 0.077677861 -0.038891196 -0.040228415 0.072903745 -0.04641052 0.048989668 0.095645607 -0.055703338 0.054905858 0.086308949 -0.058499787 0.046577372 0.094173551 -0.049501155 -0.010989988 0.10438056 -0.035930652 0.00097958569 0.11214776 -0.06211815 -2.1160946e-05 0.10432962 0.033372164 -0.034103144 0.077021793 0.030883959 -0.033740208 0.084783904 0.011987961 -0.037582688 0.07883428 -0.023508022 -0.011106688 0.11082228 0.0060882154 -0.0054419357 0.11809337 -0.023582995 -0.0043155933 0.11356912 -0.06133588 -0.0084993942 0.10179637 -0.049501155 -0.010989988 0.10438056 -0.06211815 -2.1160946e-05 0.10432962 -0.0042405911 -0.012595392 0.1134478 0.020065442 -0.0078046257 0.11846842 0.0060882154 -0.0054419357 0.11809337 0.00081073644 0.042036597 0.1103287 -0.020928277 0.047970064 0.10233616 -0.026192233 0.041369352 0.10656019 -0.049501155 -0.010989988 0.10438056 -0.023582995 -0.0043155933 0.11356912 -0.035930652 0.00097958569 0.11214776 -0.0042405911 -0.012595392 0.1134478 0.0060882154 -0.0054419357 0.11809337 -0.023508022 -0.011106688 0.11082228 -0.026192233 0.041369352 0.10656019 -0.020928277 0.047970064 0.10233616 -0.04641052 0.048989668 0.095645607 0.0070772558 -0.039158087 0.067601882 0.011987961 -0.037582688 0.07883428 -0.008537286 -0.040248461 0.073723972 -0.034184013 -0.014612072 0.10655534 -0.023508022 -0.011106688 0.11082228 -0.023582995 -0.0043155933 0.11356912 -0.054286532 -0.021660993 0.096124455 -0.059607007 -0.019140845 0.096348278 -0.057967003 -0.025743306 0.091236442 -0.034184013 -0.014612072 0.10655534 -0.023582995 -0.0043155933 0.11356912 -0.049501155 -0.010989988 0.10438056 -0.019397678 -0.042073444 0.061660528 -0.008537286 -0.040248461 0.073723972 -0.035159614 -0.042604055 0.061433014 0.017544234 -0.037405342 0.070354931 0.011987961 -0.037582688 0.07883428 0.0070772558 -0.039158087 0.067601882 0.017544234 -0.037405342 0.070354931 0.033372164 -0.034103144 0.077021793 0.011987961 -0.037582688 0.07883428 0.0070772558 -0.039158087 0.067601882 -0.008537286 -0.040248461 0.073723972 -0.019397678 -0.042073444 0.061660528 -0.058499787 0.046577372 0.094173551 -0.026192233 0.041369352 0.10656019 -0.04641052 0.048989668 0.095645607 0.021052109 -0.014488678 0.11479395 0.020065442 -0.0078046257 0.11846842 -0.0042405911 -0.012595392 0.1134478 -0.044777472 -0.0428438 0.050809011 -0.035159614 -0.042604055 0.061433014 -0.049358111 -0.041562561 0.064764664 -0.013145844 -0.01995693 0.10724824 -0.0042405911 -0.012595392 0.1134478 -0.023508022 -0.011106688 0.11082228 -0.037637323 0.038014676 0.10603024 -0.026192233 0.041369352 0.10656019 -0.058499787 0.046577372 0.094173551 -0.0062836972 -0.038506009 0.080706194 0.014711338 -0.033407435 0.091925323 -0.01234883 -0.037009228 0.085007697 -0.044433445 -0.01856233 0.10139132 -0.049501155 -0.010989988 0.10438056 -0.06133588 -0.0084993942 0.10179637 -0.010112136 0.038339812 0.11137099 0.021273799 0.037479315 0.1150635 0.00081073644 0.042036597 0.1103287 0.0022506756 -0.017260429 0.11134522 0.021052109 -0.014488678 0.11479395 -0.0042405911 -0.012595392 0.1134478 -0.044433445 -0.01856233 0.10139132 -0.034184013 -0.014612072 0.10655534 -0.049501155 -0.010989988 0.10438056 0.033372164 -0.034103144 0.077021793 0.017544234 -0.037405342 0.070354931 0.035345182 -0.033390399 0.071141608 0.022879766 0.0097106807 0.12259988 0.0089715729 0.0071253581 0.12135579 0.019024432 0.00080913806 0.12135375 -0.013145844 -0.01995693 0.10724824 -0.023508022 -0.011106688 0.11082228 -0.034184013 -0.014612072 0.10655534 -0.010112136 0.038339812 0.11137099 0.00081073644 0.042036597 0.1103287 -0.026192233 0.041369352 0.10656019 -0.013145844 -0.01995693 0.10724824 0.0022506756 -0.017260429 0.11134522 -0.0042405911 -0.012595392 0.1134478 -0.019798588 -0.04121165 0.05031782 0.0070772558 -0.039158087 0.067601882 -0.019397678 -0.042073444 0.061660528 0.0027434933 0.03158702 0.11663207 0.021273799 0.037479315 0.1150635 -0.010112136 0.038339812 0.11137099 0.020264057 0.032167573 0.11801805 0.021273799 0.037479315 0.1150635 0.0027434933 0.03158702 0.11663207 -0.031900957 -0.04240163 0.050939731 -0.035159614 -0.042604055 0.061433014 -0.044777472 -0.0428438 0.050809011 -0.031900957 -0.04240163 0.050939731 -0.019397678 -0.042073444 0.061660528 -0.035159614 -0.042604055 0.061433014 -0.036024403 0.0078552365 0.11312067 -0.043223441 0.013901669 0.11138273 -0.050413478 0.010188467 0.10935508 -0.059607007 -0.019140845 0.096348278 -0.044433445 -0.01856233 0.10139132 -0.06133588 -0.0084993942 0.10179637 -0.037637323 0.038014676 0.10603024 -0.058499787 0.046577372 0.094173551 -0.059607167 0.041761585 0.097454168 -0.014891696 0.031266324 0.11410044 -0.010112136 0.038339812 0.11137099 -0.026192233 0.041369352 0.10656019 -0.019798588 -0.04121165 0.05031782 -0.019397678 -0.042073444 0.061660528 -0.031900957 -0.04240163 0.050939731 -0.014891696 0.031266324 0.11410044 0.0027434933 0.03158702 0.11663207 -0.010112136 0.038339812 0.11137099 -0.032953668 -0.02074944 0.10271105 -0.013145844 -0.01995693 0.10724824 -0.034184013 -0.014612072 0.10655534 -0.014891696 0.031266324 0.11410044 -0.026192233 0.041369352 0.10656019 -0.037637323 0.038014676 0.10603024 -0.032953668 -0.02074944 0.10271105 -0.034184013 -0.014612072 0.10655534 -0.044433445 -0.01856233 0.10139132 -0.0057569174 -0.039884888 0.054050121 0.0070772558 -0.039158087 0.067601882 -0.019798588 -0.04121165 0.05031782 -0.0038237961 -0.022865353 0.10610337 0.021052109 -0.014488678 0.11479395 0.0022506756 -0.017260429 0.11134522 0.029956039 -0.027358323 0.1006659 0.014711338 -0.033407435 0.091925323 0.028680164 -0.032283839 0.091355555 0.010590629 -0.037104212 0.056302696 0.017544234 -0.037405342 0.070354931 0.0070772558 -0.039158087 0.067601882 -0.059607167 0.041761585 0.097454168 -0.04895699 0.034580778 0.10477087 -0.037637323 0.038014676 0.10603024 -0.015429924 -0.02745454 0.022393132 -0.017095601 -0.032768462 0.029911099 -0.03394017 -0.028848266 0.018102257 -0.0057569174 -0.039884888 0.054050121 0.010590629 -0.037104212 0.056302696 0.0070772558 -0.039158087 0.067601882 0.0022867767 0.026262948 0.11853995 0.020264057 0.032167573 0.11801805 0.0027434933 0.03158702 0.11663207 0.038037434 -0.031029683 0.063383639 0.035345182 -0.033390399 0.071141608 0.017544234 -0.037405342 0.070354931 -0.0038237961 -0.022865353 0.10610337 0.0022506756 -0.017260429 0.11134522 -0.013145844 -0.01995693 0.10724824 -0.034998953 0.029875975 0.11039697 -0.014891696 0.031266324 0.11410044 -0.037637323 0.038014676 0.10603024 -0.054286532 -0.021660993 0.096124455 -0.044433445 -0.01856233 0.10139132 -0.059607007 -0.019140845 0.096348278 0.038037434 -0.031029683 0.063383639 0.017544234 -0.037405342 0.070354931 0.010590629 -0.037104212 0.056302696 -0.027903579 -0.026469927 0.098685086 -0.013145844 -0.01995693 0.10724824 -0.032953668 -0.02074944 0.10271105 0.023280304 -0.021909464 0.10865501 0.021052109 -0.014488678 0.11479395 -0.0038237961 -0.022865353 0.10610337 -0.032953668 -0.02074944 0.10271105 -0.044433445 -0.01856233 0.10139132 -0.054286532 -0.021660993 0.096124455 0.0089715729 0.0071253581 0.12135579 -0.00051167299 0.012227204 0.12029493 -0.019211877 0.0042880648 0.11649445 -0.034998953 0.029875975 0.11039697 -0.037637323 0.038014676 0.10603024 -0.04895699 0.034580778 0.10477087 0.020264057 0.032167573 0.11801805 0.0022867767 0.026262948 0.11853995 0.01898979 0.021486329 0.12160463 -0.04895699 0.034580778 0.10477087 -0.059607167 0.041761585 0.097454168 -0.061213981 0.031920388 0.10215943 -0.0038237961 -0.022865353 0.10610337 -0.013145844 -0.01995693 0.10724824 -0.027903579 -0.026469927 0.098685086 -0.019798588 -0.04121165 0.05031782 -0.031900957 -0.04240163 0.050939731 -0.044777472 -0.0428438 0.050809011 0.0022867767 0.026262948 0.11853995 0.0027434933 0.03158702 0.11663207 -0.014891696 0.031266324 0.11410044 -0.045888606 -0.02740125 0.093280464 -0.032953668 -0.02074944 0.10271105 -0.054286532 -0.021660993 0.096124455 -0.0097706253 -0.037958175 0.044039343 -0.0057569174 -0.039884888 0.054050121 -0.019798588 -0.04121165 0.05031782 -0.038495015 -0.038031645 0.03178804 -0.019798588 -0.04121165 0.05031782 -0.044777472 -0.0428438 0.050809011 -0.0076470543 -0.027198166 0.10120711 -0.0038237961 -0.022865353 0.10610337 -0.027903579 -0.026469927 0.098685086 0.016488813 -0.033657942 0.050541151 0.038037434 -0.031029683 0.063383639 0.010590629 -0.037104212 0.056302696 -0.01234883 -0.037009228 0.085007697 -0.0064916862 -0.032997165 0.093313262 -0.034032073 -0.03748665 0.08116442 -0.045888606 -0.02740125 0.093280464 -0.054286532 -0.021660993 0.096124455 -0.057967003 -0.025743306 0.091236442 -0.045888606 -0.02740125 0.093280464 -0.027903579 -0.026469927 0.098685086 -0.032953668 -0.02074944 0.10271105 -0.0097706253 -0.037958175 0.044039343 0.010590629 -0.037104212 0.056302696 -0.0057569174 -0.039884888 0.054050121 -0.0077228704 0.01866 0.11869954 -0.014891696 0.031266324 0.11410044 -0.034998953 0.029875975 0.11039697 -0.051388171 0.027668694 0.10674036 -0.04895699 0.034580778 0.10477087 -0.061213981 0.031920388 0.10215943 -0.051388171 0.027668694 0.10674036 -0.034998953 0.029875975 0.11039697 -0.04895699 0.034580778 0.10477087 0.01430621 -0.02681517 0.10302351 0.023280304 -0.021909464 0.10865501 -0.0038237961 -0.022865353 0.10610337 -0.0077228704 0.01866 0.11869954 0.0022867767 0.026262948 0.11853995 -0.014891696 0.031266324 0.11410044 -0.02768955 -0.039118931 0.038426615 -0.0097706253 -0.037958175 0.044039343 -0.019798588 -0.04121165 0.05031782 -0.02768955 -0.039118931 0.038426615 -0.019798588 -0.04121165 0.05031782 -0.038495015 -0.038031645 0.03178804 -0.022187006 -0.031974625 0.093045563 -0.0076470543 -0.027198166 0.10120711 -0.027903579 -0.026469927 0.098685086 0.0045022806 -0.029727228 0.098905616 -0.0038237961 -0.022865353 0.10610337 -0.0076470543 -0.027198166 0.10120711 -0.01234883 -0.037009228 0.085007697 0.014711338 -0.033407435 0.091925323 -0.0064916862 -0.032997165 0.093313262 -0.0077228704 0.01866 0.11869954 0.01898979 0.021486329 0.12160463 0.0022867767 0.026262948 0.11853995 0.016488813 -0.033657942 0.050541151 0.010590629 -0.037104212 0.056302696 -0.0097706253 -0.037958175 0.044039343 0.01430621 -0.02681517 0.10302351 -0.0038237961 -0.022865353 0.10610337 0.0045022806 -0.029727228 0.098905616 -0.035429783 0.020695677 0.1127008 -0.0077228704 0.01866 0.11869954 -0.034998953 0.029875975 0.11039697 -0.022187006 -0.031974625 0.093045563 -0.027903579 -0.026469927 0.098685086 -0.045888606 -0.02740125 0.093280464 -0.055199645 -0.033388097 0.082680516 -0.045888606 -0.02740125 0.093280464 -0.057967003 -0.025743306 0.091236442 0.038037434 -0.031029683 0.063383639 0.016488813 -0.033657942 0.050541151 0.040642451 -0.026638838 0.055201534 -0.035429783 0.020695677 0.1127008 -0.034998953 0.029875975 0.11039697 -0.051388171 0.027668694 0.10674036 -0.022187006 -0.031974625 0.093045563 0.0045022806 -0.029727228 0.098905616 -0.0076470543 -0.027198166 0.10120711 -0.062225547 0.020549428 0.10502955 -0.051388171 0.027668694 0.10674036 -0.061213981 0.031920388 0.10215943 0.024378797 -0.030813091 0.050210714 0.040642451 -0.026638838 0.055201534 0.016488813 -0.033657942 0.050541151 -0.038495015 -0.038031645 0.03178804 -0.0097706253 -0.037958175 0.044039343 -0.02768955 -0.039118931 0.038426615 -0.011027638 -0.034352895 0.035323441 0.016488813 -0.033657942 0.050541151 -0.0097706253 -0.037958175 0.044039343 -0.011027638 -0.034352895 0.035323441 -0.0097706253 -0.037958175 0.044039343 -0.038495015 -0.038031645 0.03178804 -0.019211877 0.0042880648 0.11649445 -0.032501873 0.015504279 0.11401954 -0.036024403 0.0078552365 0.11312067 0.016741807 -0.030635566 0.097235195 0.01430621 -0.02681517 0.10302351 0.0045022806 -0.029727228 0.098905616 -0.035429783 0.020695677 0.1127008 -0.051388171 0.027668694 0.10674036 -0.043223441 0.013901669 0.11138273 -0.036418606 -0.033419173 0.088053934 -0.022187006 -0.031974625 0.093045563 -0.045888606 -0.02740125 0.093280464 -0.036024403 0.0078552365 0.11312067 -0.032501873 0.015504279 0.11401954 -0.043223441 0.013901669 0.11138273 0.024378797 -0.030813091 0.050210714 0.016488813 -0.033657942 0.050541151 0.0098817265 -0.029954256 0.039112579 -0.00051167299 0.012227204 0.12029493 0.01898979 0.021486329 0.12160463 -0.0077228704 0.01866 0.11869954 -0.017095601 -0.032768462 0.029911099 -0.011027638 -0.034352895 0.035323441 -0.038495015 -0.038031645 0.03178804 0.016741807 -0.030635566 0.097235195 0.0045022806 -0.029727228 0.098905616 -0.0064916862 -0.032997165 0.093313262 -0.0064916862 -0.032997165 0.093313262 0.0045022806 -0.029727228 0.098905616 -0.022187006 -0.031974625 0.093045563 -0.043223441 0.013901669 0.11138273 -0.051388171 0.027668694 0.10674036 -0.062225547 0.020549428 0.10502955 0.029956039 -0.027358323 0.1006659 0.01430621 -0.02681517 0.10302351 0.016741807 -0.030635566 0.097235195 -0.036418606 -0.033419173 0.088053934 -0.045888606 -0.02740125 0.093280464 -0.055199645 -0.033388097 0.082680516 0.029956039 -0.027358323 0.1006659 0.016741807 -0.030635566 0.097235195 0.014711338 -0.033407435 0.091925323 -0.032501873 0.015504279 0.11401954 -0.0077228704 0.01866 0.11869954 -0.035429783 0.020695677 0.1127008 -0.019211877 0.0042880648 0.11649445 -0.00051167299 0.012227204 0.12029493 -0.032501873 0.015504279 0.11401954 0.0098817265 -0.029954256 0.039112579 0.016488813 -0.033657942 0.050541151 -0.011027638 -0.034352895 0.035323441 0.010624532 -0.026980776 0.035081141 -0.011027638 -0.034352895 0.035323441 -0.017095601 -0.032768462 0.029911099 -0.062442452 0.014666907 0.10558257 -0.043223441 0.013901669 0.11138273 -0.062225547 0.020549428 0.10502955 -0.043223441 0.013901669 0.11138273 -0.032501873 0.015504279 0.11401954 -0.035429783 0.020695677 0.1127008 -0.03394017 -0.028848266 0.018102257 -0.017095601 -0.032768462 0.029911099 -0.038495015 -0.038031645 0.03178804 -0.00051167299 0.012227204 0.12029493 -0.0077228704 0.01866 0.11869954 -0.032501873 0.015504279 0.11401954 0.01898979 0.021486329 0.12160463 -0.00051167299 0.012227204 0.12029493 0.022879766 0.0097106807 0.12259988 0.030186227 -0.023419408 0.042756286 0.040642451 -0.026638838 0.055201534 0.024378797 -0.030813091 0.050210714 0.022879766 0.0097106807 0.12259988 -0.00051167299 0.012227204 0.12029493 0.0089715729 0.0071253581 0.12135579 -0.034032073 -0.03748665 0.08116442 -0.022187006 -0.031974625 0.093045563 -0.036418606 -0.033419173 0.088053934 0.0098817265 -0.029954256 0.039112579 0.030186227 -0.023419408 0.042756286 0.024378797 -0.030813091 0.050210714 -0.0064916862 -0.032997165 0.093313262 -0.022187006 -0.031974625 0.093045563 -0.034032073 -0.03748665 0.08116442 -0.052066218 -0.038832754 0.073054895 -0.036418606 -0.033419173 0.088053934 -0.055199645 -0.033388097 0.082680516 -0.050413478 0.010188467 0.10935508 -0.043223441 0.013901669 0.11138273 -0.062442452 0.014666907 0.10558257 0.014711338 -0.033407435 0.091925323 0.016741807 -0.030635566 0.097235195 -0.0064916862 -0.032997165 0.093313262 -0.052066218 -0.038832754 0.073054895 -0.034032073 -0.03748665 0.08116442 -0.036418606 -0.033419173 0.088053934 0.010624532 -0.026980776 0.035081141 0.0098817265 -0.029954256 0.039112579 -0.011027638 -0.034352895 0.035323441 + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842

+
+
+
+
+ + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + + + + + + + + + + + + + +
diff --git a/external/rlbench/urdfs/panda/meshes/Pandalink5respondable_coll_1.dae b/external/rlbench/urdfs/panda/meshes/Pandalink5respondable_coll_1.dae new file mode 100644 index 0000000000000000000000000000000000000000..83abc0a93c1f93bc72ae6398ee3fc28a2f75c0c4 --- /dev/null +++ b/external/rlbench/urdfs/panda/meshes/Pandalink5respondable_coll_1.dae @@ -0,0 +1,84 @@ + + + + + Assimp + Assimp Exporter + + 2023-09-26T11:24:21 + 2023-09-26T11:24:21 + + Y_UP + + + + + + + + 0 0 0 4.5895327e-41 + + + 0.69999999 1 0.69999999 4.5893926e-41 + + + 0.69999999 1 0.69999999 4.5893926e-41 + + + 0.25 0.25 0.25 -3.0261091e+37 + + + + + + + + + + + + + + + + -0.017116077 0.047513839 0.097766072 0.044562608 0.039772328 0.067955568 -0.053191572 0.021315334 0.069630526 -0.040666178 0.032421947 0.14530875 -0.024638146 0.048761606 0.13038346 -0.053191572 0.021315334 0.069630526 0.061408214 0.035857089 0.13396513 0.064741731 0.00097762898 0.14511964 0.051149998 0.05162514 0.09451095 0.064741731 0.00097762898 0.14511964 0.061408214 0.035857089 0.13396513 0.064231209 0.015748208 0.14394206 0.044562608 0.039772328 0.067955568 0.0415571 0.022248354 0.055159029 -0.053191572 0.021315334 0.069630526 0.0415571 0.022248354 0.055159029 0.044562608 0.039772328 0.067955568 0.051149998 0.05162514 0.09451095 0.044190094 -0.02752169 0.06272161 -0.039856937 -0.028374074 0.070436507 0.041270044 -0.0050840918 0.052517597 0.0415571 0.022248354 0.055159029 0.044190094 -0.02752169 0.06272161 0.041270044 -0.0050840918 0.052517597 0.051995642 -0.044108421 0.092508622 0.044190094 -0.02752169 0.06272161 0.056617111 -0.04283762 0.11074577 0.064741731 0.00097762898 0.14511964 0.044190094 -0.02752169 0.06272161 0.051149998 0.05162514 0.09451095 0.044190094 -0.02752169 0.06272161 0.0415571 0.022248354 0.055159029 0.051149998 0.05162514 0.09451095 0.061043181 -0.033347346 0.12867592 -0.016302433 -0.04274229 0.13239171 0.056617111 -0.04283762 0.11074577 -0.016302433 -0.04274229 0.13239171 0.061043181 -0.033347346 0.12867592 -0.0097521329 -0.033135813 0.14807966 0.044190094 -0.02752169 0.06272161 0.061043181 -0.033347346 0.12867592 0.056617111 -0.04283762 0.11074577 0.061043181 -0.033347346 0.12867592 0.044190094 -0.02752169 0.06272161 0.064741731 0.00097762898 0.14511964 0.061043181 -0.033347346 0.12867592 0.064095028 -0.015289914 0.14168043 -0.0097521329 -0.033135813 0.14807966 0.064095028 -0.015289914 0.14168043 0.061043181 -0.033347346 0.12867592 0.064741731 0.00097762898 0.14511964 -0.017116077 0.047513839 0.097766072 -0.021090617 0.050615557 0.1155661 0.051149998 0.05162514 0.09451095 -0.024638146 0.048761606 0.13038346 -0.021090617 0.050615557 0.1155661 -0.053191572 0.021315334 0.069630526 -0.021090617 0.050615557 0.1155661 -0.017116077 0.047513839 0.097766072 -0.053191572 0.021315334 0.069630526 0.044562608 0.039772328 0.067955568 0.04747083 0.047592025 0.079824902 0.051149998 0.05162514 0.09451095 0.04747083 0.047592025 0.079824902 -0.017116077 0.047513839 0.097766072 0.051149998 0.05162514 0.09451095 -0.017116077 0.047513839 0.097766072 0.04747083 0.047592025 0.079824902 0.044562608 0.039772328 0.067955568 -0.040666178 0.032421947 0.14530875 -0.026431484 0.034243915 0.1510655 -0.024638146 0.048761606 0.13038346 0.055993289 0.049650349 0.11344706 0.061408214 0.035857089 0.13396513 0.051149998 0.05162514 0.09451095 -0.021090617 0.050615557 0.1155661 0.055993289 0.049650349 0.11344706 0.051149998 0.05162514 0.09451095 0.055993289 0.049650349 0.11344706 -0.021090617 0.050615557 0.1155661 -0.024638146 0.048761606 0.13038346 -0.032505587 -0.036198501 0.13890013 -0.016302433 -0.04274229 0.13239171 -0.0097521329 -0.033135813 0.14807966 -0.026968293 -0.026886869 0.15273133 -0.032505587 -0.036198501 0.13890013 -0.0097521329 -0.033135813 0.14807966 -0.039856937 -0.028374074 0.070436507 -0.052278485 -0.019288648 0.068920076 0.041270044 -0.0050840918 0.052517597 -0.052278485 -0.019288648 0.068920076 -0.055430349 -0.0077400543 0.066916846 0.041270044 -0.0050840918 0.052517597 -0.05592227 0.010023244 0.066798605 0.0415571 0.022248354 0.055159029 0.041270044 -0.0050840918 0.052517597 -0.055430349 -0.0077400543 0.066916846 -0.05592227 0.010023244 0.066798605 0.041270044 -0.0050840918 0.052517597 0.0415571 0.022248354 0.055159029 -0.05592227 0.010023244 0.066798605 -0.053191572 0.021315334 0.069630526 0.048277013 -0.039519086 0.07814002 0.044190094 -0.02752169 0.06272161 0.051995642 -0.044108421 0.092508622 0.044190094 -0.02752169 0.06272161 0.048277013 -0.039519086 0.07814002 -0.039856937 -0.028374074 0.070436507 -0.023391206 -0.04421518 0.10691366 0.048277013 -0.039519086 0.07814002 0.051995642 -0.044108421 0.092508622 0.048277013 -0.039519086 0.07814002 -0.023391206 -0.04421518 0.10691366 -0.039856937 -0.028374074 0.070436507 -0.026431484 0.034243915 0.1510655 -0.014918108 0.042841233 0.14336954 -0.024638146 0.048761606 0.13038346 -0.014918108 0.042841233 0.14336954 0.055993289 0.049650349 0.11344706 -0.024638146 0.048761606 0.13038346 0.055993289 0.049650349 0.11344706 -0.014918108 0.042841233 0.14336954 0.061408214 0.035857089 0.13396513 -0.022190433 -0.045058131 0.12084687 -0.023391206 -0.04421518 0.10691366 0.051995642 -0.044108421 0.092508622 -0.022190433 -0.045058131 0.12084687 0.051995642 -0.044108421 0.092508622 0.056617111 -0.04283762 0.11074577 -0.016302433 -0.04274229 0.13239171 -0.022190433 -0.045058131 0.12084687 0.056617111 -0.04283762 0.11074577 -0.032505587 -0.036198501 0.13890013 -0.022190433 -0.045058131 0.12084687 -0.016302433 -0.04274229 0.13239171 0.064095028 -0.015289914 0.14168043 -0.013664984 -0.019151667 0.1594903 -0.0097521329 -0.033135813 0.14807966 -0.013664984 -0.019151667 0.1594903 -0.026968293 -0.026886869 0.15273133 -0.0097521329 -0.033135813 0.14807966 -0.041824069 0.020108633 0.15351465 -0.026431484 0.034243915 0.1510655 -0.040666178 0.032421947 0.14530875 -0.026431484 0.034243915 0.1510655 -0.041824069 0.020108633 0.15351465 -0.011333972 0.01550701 0.162597 -0.041824069 0.020108633 0.15351465 -0.021485925 0.0017882354 0.16438238 -0.011333972 0.01550701 0.162597 -0.046644434 -0.023679968 0.1416012 -0.032505587 -0.036198501 0.13890013 -0.026968293 -0.026886869 0.15273133 -0.032505587 -0.036198501 0.13890013 -0.046644434 -0.023679968 0.1416012 -0.048050441 -0.033320788 0.12002128 -0.010688172 0.029204002 0.15623616 -0.026431484 0.034243915 0.1510655 -0.011333972 0.01550701 0.162597 -0.010688172 0.029204002 0.15623616 -0.014918108 0.042841233 0.14336954 -0.026431484 0.034243915 0.1510655 -0.014918108 0.042841233 0.14336954 -0.010688172 0.029204002 0.15623616 0.061408214 0.035857089 0.13396513 0.064231209 0.015748208 0.14394206 -0.010688172 0.029204002 0.15623616 -0.011333972 0.01550701 0.162597 0.061408214 0.035857089 0.13396513 -0.010688172 0.029204002 0.15623616 0.064231209 0.015748208 0.14394206 -0.035622269 -0.041859284 0.11845544 -0.032505587 -0.036198501 0.13890013 -0.048050441 -0.033320788 0.12002128 -0.035622269 -0.041859284 0.11845544 -0.022190433 -0.045058131 0.12084687 -0.032505587 -0.036198501 0.13890013 -0.022190433 -0.045058131 0.12084687 -0.035622269 -0.041859284 0.11845544 -0.023391206 -0.04421518 0.10691366 -0.023391206 -0.04421518 0.10691366 -0.035622269 -0.041859284 0.11845544 -0.039856937 -0.028374074 0.070436507 -0.052278485 -0.019288648 0.068920076 -0.035622269 -0.041859284 0.11845544 -0.048050441 -0.033320788 0.12002128 -0.035622269 -0.041859284 0.11845544 -0.052278485 -0.019288648 0.068920076 -0.039856937 -0.028374074 0.070436507 -0.0043758252 -0.0020669545 0.16288796 0.064095028 -0.015289914 0.14168043 0.064741731 0.00097762898 0.14511964 -0.0043758252 -0.0020669545 0.16288796 -0.013664984 -0.019151667 0.1594903 0.064095028 -0.015289914 0.14168043 -0.013664984 -0.019151667 0.1594903 -0.0043758252 -0.0020669545 0.16288796 -0.021485925 0.0017882354 0.16438238 -0.021485925 0.0017882354 0.16438238 -0.0043758252 -0.0020669545 0.16288796 -0.011333972 0.01550701 0.162597 -0.0043758252 -0.0020669545 0.16288796 0.064231209 0.015748208 0.14394206 -0.011333972 0.01550701 0.162597 -0.0043758252 -0.0020669545 0.16288796 0.064741731 0.00097762898 0.14511964 0.064231209 0.015748208 0.14394206 -0.058948625 -0.0063417465 0.11564051 -0.054749016 -0.022963472 0.11938217 -0.051826365 -0.0091160443 0.14314228 -0.046644434 -0.023679968 0.1416012 -0.054749016 -0.022963472 0.11938217 -0.048050441 -0.033320788 0.12002128 -0.054749016 -0.022963472 0.11938217 -0.046644434 -0.023679968 0.1416012 -0.051826365 -0.0091160443 0.14314228 -0.054749016 -0.022963472 0.11938217 -0.052278485 -0.019288648 0.068920076 -0.048050441 -0.033320788 0.12002128 -0.052278485 -0.019288648 0.068920076 -0.054749016 -0.022963472 0.11938217 -0.055430349 -0.0077400543 0.066916846 -0.054749016 -0.022963472 0.11938217 -0.058948625 -0.0063417465 0.11564051 -0.055430349 -0.0077400543 0.066916846 -0.058958244 0.010886982 0.10588215 -0.05592227 0.010023244 0.066798605 -0.055430349 -0.0077400543 0.066916846 -0.058948625 -0.0063417465 0.11564051 -0.058958244 0.010886982 0.10588215 -0.055430349 -0.0077400543 0.066916846 -0.05592227 0.010023244 0.066798605 -0.058958244 0.010886982 0.10588215 -0.053191572 0.021315334 0.069630526 -0.058958244 0.010886982 0.10588215 -0.040666178 0.032421947 0.14530875 -0.053191572 0.021315334 0.069630526 -0.058958244 0.010886982 0.10588215 -0.041824069 0.020108633 0.15351465 -0.040666178 0.032421947 0.14530875 -0.058958244 0.010886982 0.10588215 -0.058948625 -0.0063417465 0.11564051 -0.051826365 -0.0091160443 0.14314228 -0.041824069 0.020108633 0.15351465 -0.058958244 0.010886982 0.10588215 -0.051826365 -0.0091160443 0.14314228 -0.036958884 -0.013837934 0.15597683 -0.046644434 -0.023679968 0.1416012 -0.026968293 -0.026886869 0.15273133 -0.046644434 -0.023679968 0.1416012 -0.036958884 -0.013837934 0.15597683 -0.051826365 -0.0091160443 0.14314228 -0.013664984 -0.019151667 0.1594903 -0.036958884 -0.013837934 0.15597683 -0.026968293 -0.026886869 0.15273133 -0.036958884 -0.013837934 0.15597683 -0.013664984 -0.019151667 0.1594903 -0.021485925 0.0017882354 0.16438238 -0.041824069 0.020108633 0.15351465 -0.036958884 -0.013837934 0.15597683 -0.021485925 0.0017882354 0.16438238 -0.036958884 -0.013837934 0.15597683 -0.041824069 0.020108633 0.15351465 -0.051826365 -0.0091160443 0.14314228 + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263

+
+
+
+
+ + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + + + + + + + + + + + + + +
diff --git a/external/rlbench/urdfs/panda/meshes/Pandalink5respondable_coll_2.dae b/external/rlbench/urdfs/panda/meshes/Pandalink5respondable_coll_2.dae new file mode 100644 index 0000000000000000000000000000000000000000..c946bdf280d3cd96abfc5a9d2f9a18c3b2e9851f --- /dev/null +++ b/external/rlbench/urdfs/panda/meshes/Pandalink5respondable_coll_2.dae @@ -0,0 +1,84 @@ + + + + + Assimp + Assimp Exporter + + 2023-09-26T11:24:21 + 2023-09-26T11:24:21 + + Y_UP + + + + + + + + 0 0 0 4.5895327e-41 + + + 0.69999999 1 0.69999999 4.5893926e-41 + + + 0.69999999 1 0.69999999 4.5893926e-41 + + + 0.25 0.25 0.25 -3.0261091e+37 + + + + + + + + + + + + + + + + -0.051294353 -0.030582028 -0.075402848 -0.025000349 0.049174447 0.14208537 -0.048127837 0.027418543 0.14384364 -0.025000349 0.049174447 0.14208537 -0.051294353 -0.030582028 -0.075402848 -0.053011697 0.0070385844 -0.091483355 -0.051962689 0.030840931 -0.067940056 -0.025000349 0.049174447 0.14208537 -0.053011697 0.0070385844 -0.091483355 -0.039229035 0.050194182 0.106125 -0.051962689 0.030840931 -0.067940056 -0.061145518 0.028441031 -0.048840161 -0.051000245 0.036786791 0.12242891 -0.039229035 0.050194182 0.106125 -0.061145518 0.028441031 -0.048840161 -0.054371282 0.016502321 -0.087546542 -0.051962689 0.030840931 -0.067940056 -0.053011697 0.0070385844 -0.091483355 -0.061773922 -0.0074440101 -0.085877016 -0.054371282 0.016502321 -0.087546542 -0.053011697 0.0070385844 -0.091483355 -0.051962689 0.030840931 -0.067940056 -0.032998722 0.052967075 0.12357892 -0.025000349 0.049174447 0.14208537 -0.032998722 0.052967075 0.12357892 -0.051962689 0.030840931 -0.067940056 -0.039229035 0.050194182 0.106125 -0.051000245 0.036786791 0.12242891 -0.032998722 0.052967075 0.12357892 -0.039229035 0.050194182 0.106125 -0.025000349 0.049174447 0.14208537 -0.032998722 0.052967075 0.12357892 -0.048127837 0.027418543 0.14384364 -0.032998722 0.052967075 0.12357892 -0.051000245 0.036786791 0.12242891 -0.048127837 0.027418543 0.14384364 -0.051294353 -0.030582028 -0.075402848 -0.054546498 -0.007107947 -0.091099858 -0.053011697 0.0070385844 -0.091483355 -0.054546498 -0.007107947 -0.091099858 -0.061773922 -0.0074440101 -0.085877016 -0.053011697 0.0070385844 -0.091483355 -0.061773922 -0.0074440101 -0.085877016 -0.054546498 -0.007107947 -0.091099858 -0.051294353 -0.030582028 -0.075402848 -0.060544666 -0.024727447 -0.067639112 -0.061773922 -0.0074440101 -0.085877016 -0.051294353 -0.030582028 -0.075402848 -0.060544666 -0.024727447 -0.067639112 -0.051294353 -0.030582028 -0.075402848 -0.048127837 0.027418543 0.14384364 -0.051241849 0.03376529 0.11878838 -0.054758597 0.018998576 0.071151465 -0.048127837 0.027418543 0.14384364 -0.051000245 0.036786791 0.12242891 -0.051241849 0.03376529 0.11878838 -0.048127837 0.027418543 0.14384364 -0.051962689 0.030840931 -0.067940056 -0.053957667 0.027024176 -0.07572075 -0.061145518 0.028441031 -0.048840161 -0.054371282 0.016502321 -0.087546542 -0.053957667 0.027024176 -0.07572075 -0.051962689 0.030840931 -0.067940056 -0.061865665 0.018088777 -0.079058185 -0.054371282 0.016502321 -0.087546542 -0.061773922 -0.0074440101 -0.085877016 -0.053957667 0.027024176 -0.07572075 -0.061865665 0.018088777 -0.079058185 -0.061145518 0.028441031 -0.048840161 -0.061865665 0.018088777 -0.079058185 -0.053957667 0.027024176 -0.07572075 -0.054371282 0.016502321 -0.087546542 -0.060544666 -0.024727447 -0.067639112 -0.063877329 -0.012818276 -0.055269174 -0.061773922 -0.0074440101 -0.085877016 -0.054758597 0.018998576 0.071151465 -0.063877329 -0.012818276 -0.055269174 -0.048127837 0.027418543 0.14384364 -0.063877329 -0.012818276 -0.055269174 -0.060544666 -0.024727447 -0.067639112 -0.048127837 0.027418543 0.14384364 -0.063698359 0.011923926 -0.042154454 -0.051000245 0.036786791 0.12242891 -0.061145518 0.028441031 -0.048840161 -0.051241849 0.03376529 0.11878838 -0.063698359 0.011923926 -0.042154454 -0.054758597 0.018998576 0.071151465 -0.063698359 0.011923926 -0.042154454 -0.051241849 0.03376529 0.11878838 -0.051000245 0.036786791 0.12242891 -0.063698359 0.011923926 -0.042154454 -0.063877329 -0.012818276 -0.055269174 -0.054758597 0.018998576 0.071151465 -0.063877329 -0.012818276 -0.055269174 -0.063698359 0.011923926 -0.042154454 -0.064237989 -0.00054444955 -0.054779243 -0.064770401 0.0048227841 -0.066032819 -0.061865665 0.018088777 -0.079058185 -0.061773922 -0.0074440101 -0.085877016 -0.063877329 -0.012818276 -0.055269174 -0.064770401 0.0048227841 -0.066032819 -0.061773922 -0.0074440101 -0.085877016 -0.064770401 0.0048227841 -0.066032819 -0.063877329 -0.012818276 -0.055269174 -0.064237989 -0.00054444955 -0.054779243 -0.063698359 0.011923926 -0.042154454 -0.064770401 0.0048227841 -0.066032819 -0.064237989 -0.00054444955 -0.054779243 -0.061865665 0.018088777 -0.079058185 -0.064770401 0.0048227841 -0.066032819 -0.061145518 0.028441031 -0.048840161 -0.064770401 0.0048227841 -0.066032819 -0.063698359 0.011923926 -0.042154454 -0.061145518 0.028441031 -0.048840161 + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113

+
+
+
+
+ + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + + + + + + + + + + + + + +
diff --git a/external/rlbench/urdfs/panda/meshes/Pandalink5respondable_coll_3.dae b/external/rlbench/urdfs/panda/meshes/Pandalink5respondable_coll_3.dae new file mode 100644 index 0000000000000000000000000000000000000000..04b1399e81a29cc18708327c72144ac2375f00bf --- /dev/null +++ b/external/rlbench/urdfs/panda/meshes/Pandalink5respondable_coll_3.dae @@ -0,0 +1,84 @@ + + + + + Assimp + Assimp Exporter + + 2023-09-26T11:24:21 + 2023-09-26T11:24:21 + + Y_UP + + + + + + + + 0 0 0 4.5895327e-41 + + + 0.69999999 1 0.69999999 4.5893926e-41 + + + 0.69999999 1 0.69999999 4.5893926e-41 + + + 0.25 0.25 0.25 -3.0261091e+37 + + + + + + + + + + + + + + + + -0.018567987 0.050739512 0.10332379 -0.032999031 0.052966617 0.12358014 -0.0044582887 0.051306795 0.1260176 -0.00095204735 0.035027061 0.074688382 -0.018567987 0.050739512 0.10332379 -0.0044582887 0.051306795 0.1260176 -0.018567987 0.050739512 0.10332379 -0.00095204735 0.035027061 0.074688382 -0.031797428 0.032625154 0.057124328 0.00030961042 -0.037120491 0.084909827 -0.030721974 -0.029254088 0.061048329 -0.023276232 -0.023937767 0.061700318 -0.039857827 -0.028374672 0.070436388 -0.030721974 -0.029254088 0.061048329 -0.034054268 -0.048454504 0.11512984 -0.030721974 -0.029254088 0.061048329 -0.019492332 0.00085856538 0.056393374 -0.023276232 -0.023937767 0.061700318 -0.019492332 0.00085856538 0.056393374 -0.030721974 -0.029254088 0.061048329 -0.031797428 0.032625154 0.057124328 0.014526201 0.021242445 0.15588732 -0.017845921 0.033897236 0.15979517 -0.014154252 0.0091090528 0.17003092 0.0080875978 0.038191915 0.14592548 -0.017845921 0.033897236 0.15979517 0.014526201 0.021242445 0.15588732 -0.036693756 -0.0080475397 0.15988357 -0.014154252 0.0091090528 0.17003092 -0.046503387 0.00087633252 0.15445396 -0.05319117 0.021314465 0.069633655 -0.030721974 -0.029254088 0.061048329 -0.039857827 -0.028374672 0.070436388 -0.031797428 0.032625154 0.057124328 -0.05319117 0.021314465 0.069633655 -0.050144378 0.03148216 0.067956589 -0.030721974 -0.029254088 0.061048329 -0.05319117 0.021314465 0.069633655 -0.031797428 0.032625154 0.057124328 -0.047463812 -0.025623139 0.14128156 -0.036693756 -0.0080475397 0.15988357 -0.046503387 0.00087633252 0.15445396 -0.036693756 -0.0080475397 0.15988357 -0.047463812 -0.025623139 0.14128156 -0.018649282 -0.031824604 0.15726951 0.00030961042 -0.037120491 0.084909827 -0.0071919733 -0.0060918038 0.064884983 -0.00095204735 0.035027061 0.074688382 -0.019492332 0.00085856538 0.056393374 -0.0071919733 -0.0060918038 0.064884983 -0.023276232 -0.023937767 0.061700318 -0.017709751 -0.045249555 0.10316213 -0.0067547541 -0.046464015 0.12065077 -0.034054268 -0.048454504 0.11512984 -0.0067547541 -0.046464015 0.12065077 -0.017709751 -0.045249555 0.10316213 0.00030961042 -0.037120491 0.084909827 -0.030721974 -0.029254088 0.061048329 -0.017709751 -0.045249555 0.10316213 -0.034054268 -0.048454504 0.11512984 -0.017709751 -0.045249555 0.10316213 -0.030721974 -0.029254088 0.061048329 0.00030961042 -0.037120491 0.084909827 0.0034958543 -0.03965646 0.13733526 -0.0067547541 -0.046464015 0.12065077 0.00030961042 -0.037120491 0.084909827 -0.018649282 -0.031824604 0.15726951 0.0034958543 -0.03965646 0.13733526 0.012975541 -0.022922929 0.15271407 0.016858688 0.0011633496 0.15918069 0.014526201 0.021242445 0.15588732 -0.014154252 0.0091090528 0.17003092 0.016858688 0.0011633496 0.15918069 0.00030961042 -0.037120491 0.084909827 -0.00095204735 0.035027061 0.074688382 0.0023278384 0.044331867 0.13631834 -0.00095204735 0.035027061 0.074688382 -0.0044582887 0.051306795 0.1260176 0.0080875978 0.038191915 0.14592548 0.0023278384 0.044331867 0.13631834 -0.0044582887 0.051306795 0.1260176 0.0023278384 0.044331867 0.13631834 0.0080875978 0.038191915 0.14592548 -0.00095204735 0.035027061 0.074688382 0.010216521 0.032447785 0.14848787 0.014526201 0.021242445 0.15588732 -0.00095204735 0.035027061 0.074688382 0.0080875978 0.038191915 0.14592548 0.010216521 0.032447785 0.14848787 -0.00095204735 0.035027061 0.074688382 0.010216521 0.032447785 0.14848787 0.0080875978 0.038191915 0.14592548 0.014526201 0.021242445 0.15588732 -0.014154252 0.0091090528 0.17003092 -0.032212649 0.020146465 0.16003354 -0.046503387 0.00087633252 0.15445396 -0.017845921 0.033897236 0.15979517 -0.032212649 0.020146465 0.16003354 -0.014154252 0.0091090528 0.17003092 -0.036693756 -0.0080475397 0.15988357 -0.014688537 -0.015733523 0.16655381 -0.014154252 0.0091090528 0.17003092 -0.014688537 -0.015733523 0.16655381 -0.036693756 -0.0080475397 0.15988357 -0.018649282 -0.031824604 0.15726951 -0.014688537 -0.015733523 0.16655381 -0.018649282 -0.031824604 0.15726951 0.012975541 -0.022922929 0.15271407 0.016858688 0.0011633496 0.15918069 -0.014688537 -0.015733523 0.16655381 0.012975541 -0.022922929 0.15271407 -0.014688537 -0.015733523 0.16655381 0.016858688 0.0011633496 0.15918069 -0.014154252 0.0091090528 0.17003092 -0.050372913 -0.023199981 0.090671137 -0.05319117 0.021314465 0.069633655 -0.039857827 -0.028374672 0.070436388 -0.05319117 0.021314465 0.069633655 -0.050372913 -0.023199981 0.090671137 -0.058948081 -0.0063411756 0.11564457 -0.050372913 -0.023199981 0.090671137 -0.049428884 -0.033045303 0.12346324 -0.058948081 -0.0063411756 0.11564457 -0.050372913 -0.023199981 0.090671137 -0.039857827 -0.028374672 0.070436388 -0.034054268 -0.048454504 0.11512984 -0.049428884 -0.033045303 0.12346324 -0.050372913 -0.023199981 0.090671137 -0.034054268 -0.048454504 0.11512984 -0.058959469 0.010887085 0.10588346 -0.05319117 0.021314465 0.069633655 -0.058948081 -0.0063411756 0.11564457 -0.032999031 0.052966617 0.12358014 -0.025001507 0.049174372 0.14208753 -0.0044582887 0.051306795 0.1260176 -0.025001507 0.049174372 0.14208753 0.0080875978 0.038191915 0.14592548 -0.0044582887 0.051306795 0.1260176 -0.025001507 0.049174372 0.14208753 -0.017845921 0.033897236 0.15979517 0.0080875978 0.038191915 0.14592548 -0.051825922 -0.0091157565 0.14314562 -0.047463812 -0.025623139 0.14128156 -0.046503387 0.00087633252 0.15445396 -0.049428884 -0.033045303 0.12346324 -0.051825922 -0.0091157565 0.14314562 -0.058948081 -0.0063411756 0.11564457 -0.051825922 -0.0091157565 0.14314562 -0.049428884 -0.033045303 0.12346324 -0.047463812 -0.025623139 0.14128156 -0.0071919733 -0.0060918038 0.064884983 -0.0065294565 0.014670864 0.06542442 -0.00095204735 0.035027061 0.074688382 -0.0065294565 0.014670864 0.06542442 -0.0071919733 -0.0060918038 0.064884983 -0.019492332 0.00085856538 0.056393374 -0.00095204735 0.035027061 0.074688382 -0.0065294565 0.014670864 0.06542442 -0.031797428 0.032625154 0.057124328 -0.0065294565 0.014670864 0.06542442 -0.019492332 0.00085856538 0.056393374 -0.031797428 0.032625154 0.057124328 -0.005834341 -0.024374835 0.072401628 0.00030961042 -0.037120491 0.084909827 -0.023276232 -0.023937767 0.061700318 -0.0071919733 -0.0060918038 0.064884983 -0.005834341 -0.024374835 0.072401628 -0.023276232 -0.023937767 0.061700318 -0.005834341 -0.024374835 0.072401628 -0.0071919733 -0.0060918038 0.064884983 0.00030961042 -0.037120491 0.084909827 0.0099830218 -0.028155435 0.14719106 0.00030961042 -0.037120491 0.084909827 0.012975541 -0.022922929 0.15271407 0.0034958543 -0.03965646 0.13733526 0.0099830218 -0.028155435 0.14719106 0.012975541 -0.022922929 0.15271407 0.0099830218 -0.028155435 0.14719106 0.0034958543 -0.03965646 0.13733526 0.00030961042 -0.037120491 0.084909827 -0.023948401 -0.043936018 0.14147024 0.0034958543 -0.03965646 0.13733526 -0.018649282 -0.031824604 0.15726951 0.0034958543 -0.03965646 0.13733526 -0.023948401 -0.043936018 0.14147024 -0.0067547541 -0.046464015 0.12065077 -0.0067547541 -0.046464015 0.12065077 -0.023948401 -0.043936018 0.14147024 -0.034054268 -0.048454504 0.11512984 -0.047463812 -0.025623139 0.14128156 -0.023948401 -0.043936018 0.14147024 -0.018649282 -0.031824604 0.15726951 -0.023948401 -0.043936018 0.14147024 -0.049428884 -0.033045303 0.12346324 -0.034054268 -0.048454504 0.11512984 -0.049428884 -0.033045303 0.12346324 -0.023948401 -0.043936018 0.14147024 -0.047463812 -0.025623139 0.14128156 0.00030961042 -0.037120491 0.084909827 0.015133765 -0.011271482 0.15548849 0.012975541 -0.022922929 0.15271407 0.015133765 -0.011271482 0.15548849 0.016858688 0.0011633496 0.15918069 0.012975541 -0.022922929 0.15271407 0.016858688 0.0011633496 0.15918069 0.015133765 -0.011271482 0.15548849 0.00030961042 -0.037120491 0.084909827 0.014526201 0.021242445 0.15588732 0.01530794 0.014801695 0.1561527 -0.00095204735 0.035027061 0.074688382 0.016858688 0.0011633496 0.15918069 0.01530794 0.014801695 0.1561527 0.014526201 0.021242445 0.15588732 -0.048145205 0.038984291 0.11885095 -0.039229073 0.050193869 0.10612872 -0.050144378 0.03148216 0.067956589 -0.039229073 0.050193869 0.10612872 -0.048145205 0.038984291 0.11885095 -0.032999031 0.052966617 0.12358014 -0.018567987 0.050739512 0.10332379 -0.039229073 0.050193869 0.10612872 -0.032999031 0.052966617 0.12358014 -0.039229073 0.050193869 0.10612872 -0.031797428 0.032625154 0.057124328 -0.050144378 0.03148216 0.067956589 -0.039229073 0.050193869 0.10612872 -0.018567987 0.050739512 0.10332379 -0.031797428 0.032625154 0.057124328 -0.056189187 0.009058604 0.13498691 -0.058959469 0.010887085 0.10588346 -0.058948081 -0.0063411756 0.11564457 -0.051825922 -0.0091157565 0.14314562 -0.056189187 0.009058604 0.13498691 -0.058948081 -0.0063411756 0.11564457 -0.056189187 0.009058604 0.13498691 -0.051825922 -0.0091157565 0.14314562 -0.046503387 0.00087633252 0.15445396 -0.05319117 0.021314465 0.069633655 -0.052617859 0.026382666 0.073930658 -0.050144378 0.03148216 0.067956589 -0.058959469 0.010887085 0.10588346 -0.052617859 0.026382666 0.073930658 -0.05319117 0.021314465 0.069633655 -0.055111852 0.027635539 0.11181749 -0.056189187 0.009058604 0.13498691 -0.052095246 0.027240621 0.13396023 -0.056189187 0.009058604 0.13498691 -0.055111852 0.027635539 0.11181749 -0.058959469 0.010887085 0.10588346 -0.055111852 0.027635539 0.11181749 -0.052617859 0.026382666 0.073930658 -0.058959469 0.010887085 0.10588346 -0.055111852 0.027635539 0.11181749 -0.048145205 0.038984291 0.11885095 -0.050144378 0.03148216 0.067956589 -0.052617859 0.026382666 0.073930658 -0.055111852 0.027635539 0.11181749 -0.050144378 0.03148216 0.067956589 -0.048127718 0.027418755 0.14384425 -0.025001507 0.049174372 0.14208753 -0.032999031 0.052966617 0.12358014 -0.048127718 0.027418755 0.14384425 -0.056189187 0.009058604 0.13498691 -0.046503387 0.00087633252 0.15445396 -0.056189187 0.009058604 0.13498691 -0.048127718 0.027418755 0.14384425 -0.052095246 0.027240621 0.13396023 -0.048145205 0.038984291 0.11885095 -0.048127718 0.027418755 0.14384425 -0.032999031 0.052966617 0.12358014 -0.048127718 0.027418755 0.14384425 -0.048145205 0.038984291 0.11885095 -0.052095246 0.027240621 0.13396023 0.016062181 0.0079957973 0.15721898 0.016858688 0.0011633496 0.15918069 -0.00095204735 0.035027061 0.074688382 0.01530794 0.014801695 0.1561527 0.016062181 0.0079957973 0.15721898 -0.00095204735 0.035027061 0.074688382 0.016062181 0.0079957973 0.15721898 0.01530794 0.014801695 0.1561527 0.016858688 0.0011633496 0.15918069 -0.048145205 0.038984291 0.11885095 -0.051241715 0.033765655 0.1187891 -0.052095246 0.027240621 0.13396023 -0.051241715 0.033765655 0.1187891 -0.055111852 0.027635539 0.11181749 -0.052095246 0.027240621 0.13396023 -0.055111852 0.027635539 0.11181749 -0.051241715 0.033765655 0.1187891 -0.048145205 0.038984291 0.11885095 -0.032212649 0.020146465 0.16003354 -0.041822579 0.02010808 0.15351626 -0.046503387 0.00087633252 0.15445396 -0.041822579 0.02010808 0.15351626 -0.048127718 0.027418755 0.14384425 -0.046503387 0.00087633252 0.15445396 -0.041822579 0.02010808 0.15351626 -0.032212649 0.020146465 0.16003354 -0.017845921 0.033897236 0.15979517 -0.04066617 0.032421991 0.14531036 -0.041822579 0.02010808 0.15351626 -0.017845921 0.033897236 0.15979517 -0.041822579 0.02010808 0.15351626 -0.04066617 0.032421991 0.14531036 -0.048127718 0.027418755 0.14384425 -0.025001507 0.049174372 0.14208753 -0.04066617 0.032421991 0.14531036 -0.017845921 0.033897236 0.15979517 -0.048127718 0.027418755 0.14384425 -0.04066617 0.032421991 0.14531036 -0.025001507 0.049174372 0.14208753 + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311

+
+
+
+
+ + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + + + + + + + + + + + + + +
diff --git a/external/rlbench/urdfs/panda/meshes/Pandalink5respondable_coll_4.dae b/external/rlbench/urdfs/panda/meshes/Pandalink5respondable_coll_4.dae new file mode 100644 index 0000000000000000000000000000000000000000..9344ca6dd06703f2bc61e0d4e1ca904e0cd8a434 --- /dev/null +++ b/external/rlbench/urdfs/panda/meshes/Pandalink5respondable_coll_4.dae @@ -0,0 +1,84 @@ + + + + + Assimp + Assimp Exporter + + 2023-09-26T11:24:21 + 2023-09-26T11:24:21 + + Y_UP + + + + + + + + 0 0 0 4.5895327e-41 + + + 0.69999999 1 0.69999999 4.5893926e-41 + + + 0.69999999 1 0.69999999 4.5893926e-41 + + + 0.25 0.25 0.25 3.6295857e-33 + + + + + + + + + + + + + + + + -0.052373137 -0.016618343 -0.087661587 -0.054546874 -0.007107906 -0.091100611 -0.037923213 -0.029757293 0.071484447 -0.058448073 0.00094194151 0.032247115 -0.050924473 -0.027804343 0.062925048 -0.037923213 -0.029757293 0.071484447 -0.054546874 -0.007107906 -0.091100611 -0.058448073 0.00094194151 0.032247115 -0.037923213 -0.029757293 0.071484447 -0.051294323 -0.030582625 -0.075403512 -0.052373137 -0.016618343 -0.087661587 -0.037923213 -0.029757293 0.071484447 -0.050924473 -0.027804343 0.062925048 -0.051294323 -0.030582625 -0.075403512 -0.037923213 -0.029757293 0.071484447 -0.060543939 -0.024727805 -0.067638792 -0.054546874 -0.007107906 -0.091100611 -0.052373137 -0.016618343 -0.087661587 -0.051294323 -0.030582625 -0.075403512 -0.060543939 -0.024727805 -0.067638792 -0.052373137 -0.016618343 -0.087661587 -0.059134495 -0.028285949 -0.034083407 -0.051294323 -0.030582625 -0.075403512 -0.050924473 -0.027804343 0.062925048 -0.059134495 -0.028285949 -0.034083407 -0.060543939 -0.024727805 -0.067638792 -0.051294323 -0.030582625 -0.075403512 -0.058835413 -0.012982341 0.015392655 -0.059134495 -0.028285949 -0.034083407 -0.050924473 -0.027804343 0.062925048 -0.060543939 -0.024727805 -0.067638792 -0.06387721 -0.012817133 -0.055268593 -0.054546874 -0.007107906 -0.091100611 -0.059134495 -0.028285949 -0.034083407 -0.06387721 -0.012817133 -0.055268593 -0.060543939 -0.024727805 -0.067638792 -0.058448073 0.00094194151 0.032247115 -0.055475798 -0.014839665 0.047234997 -0.050924473 -0.027804343 0.062925048 -0.055475798 -0.014839665 0.047234997 -0.058835413 -0.012982341 0.015392655 -0.050924473 -0.027804343 0.062925048 -0.06165956 0.00032730095 -0.010956828 -0.058448073 0.00094194151 0.032247115 -0.054546874 -0.007107906 -0.091100611 -0.06387721 -0.012817133 -0.055268593 -0.06165956 0.00032730095 -0.010956828 -0.054546874 -0.007107906 -0.091100611 -0.06041301 -0.013259537 -0.0071025686 -0.059134495 -0.028285949 -0.034083407 -0.058835413 -0.012982341 0.015392655 -0.06041301 -0.013259537 -0.0071025686 -0.06387721 -0.012817133 -0.055268593 -0.059134495 -0.028285949 -0.034083407 -0.06165956 0.00032730095 -0.010956828 -0.059962347 -0.0021413816 0.014005037 -0.058448073 0.00094194151 0.032247115 -0.058663152 -0.0025678785 0.030737747 -0.055475798 -0.014839665 0.047234997 -0.058448073 0.00094194151 0.032247115 -0.059881687 -0.0050488217 0.016525595 -0.06165956 0.00032730095 -0.010956828 -0.06387721 -0.012817133 -0.055268593 -0.059881687 -0.0050488217 0.016525595 -0.059962347 -0.0021413816 0.014005037 -0.06165956 0.00032730095 -0.010956828 -0.06041301 -0.013259537 -0.0071025686 -0.059881687 -0.0050488217 0.016525595 -0.06387721 -0.012817133 -0.055268593 -0.059881687 -0.0050488217 0.016525595 -0.06041301 -0.013259537 -0.0071025686 -0.058835413 -0.012982341 0.015392655 -0.055475798 -0.014839665 0.047234997 -0.059881687 -0.0050488217 0.016525595 -0.058835413 -0.012982341 0.015392655 -0.058663152 -0.0025678785 0.030737747 -0.059881687 -0.0050488217 0.016525595 -0.055475798 -0.014839665 0.047234997 -0.059962347 -0.0021413816 0.014005037 -0.059881687 -0.0050488217 0.016525595 -0.058448073 0.00094194151 0.032247115 -0.059881687 -0.0050488217 0.016525595 -0.058663152 -0.0025678785 0.030737747 -0.058448073 0.00094194151 0.032247115 + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83

+
+
+
+
+ + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + + + + + + + + + + + + + +
diff --git a/external/rlbench/urdfs/panda/meshes/Pandalink5respondable_coll_5.dae b/external/rlbench/urdfs/panda/meshes/Pandalink5respondable_coll_5.dae new file mode 100644 index 0000000000000000000000000000000000000000..18efbc149f7675beace86dd6bae8e8aafbd8ed55 --- /dev/null +++ b/external/rlbench/urdfs/panda/meshes/Pandalink5respondable_coll_5.dae @@ -0,0 +1,84 @@ + + + + + Assimp + Assimp Exporter + + 2023-09-26T11:24:21 + 2023-09-26T11:24:21 + + Y_UP + + + + + + + + 0 0 0 4.5895327e-41 + + + 0.69999999 1 0.69999999 4.5893926e-41 + + + 0.69999999 1 0.69999999 4.5893926e-41 + + + 0.25 0.25 0.25 -3.0261091e+37 + + + + + + + + + + + + + + + + -0.034053553 -0.048453417 0.11512624 -0.017710548 -0.045249306 0.1031604 -0.049430188 -0.03304423 0.12346175 -0.055017967 -0.01432172 0.066148639 -0.055475451 -0.014840133 0.047236063 -0.049430188 -0.03304423 0.12346175 -0.055475451 -0.014840133 0.047236063 -0.050924111 -0.027803877 0.062924005 -0.049430188 -0.03304423 0.12346175 -0.050924111 -0.027803877 0.062924005 -0.034053553 -0.048453417 0.11512624 -0.049430188 -0.03304423 0.12346175 -0.034053553 -0.048453417 0.11512624 -0.050924111 -0.027803877 0.062924005 -0.017710548 -0.045249306 0.1031604 -0.05037364 -0.023200139 0.090668097 -0.055017967 -0.01432172 0.066148639 -0.049430188 -0.03304423 0.12346175 -0.05037364 -0.023200139 0.090668097 -0.021930844 -0.040602859 0.096483968 -0.055017967 -0.01432172 0.066148639 -0.017710548 -0.045249306 0.1031604 -0.021930844 -0.040602859 0.096483968 -0.049430188 -0.03304423 0.12346175 -0.021930844 -0.040602859 0.096483968 -0.05037364 -0.023200139 0.090668097 -0.049430188 -0.03304423 0.12346175 -0.0379235 -0.029757211 0.071484618 -0.050924111 -0.027803877 0.062924005 -0.055475451 -0.014840133 0.047236063 -0.050924111 -0.027803877 0.062924005 -0.0379235 -0.029757211 0.071484618 -0.017710548 -0.045249306 0.1031604 -0.055017967 -0.01432172 0.066148639 -0.032317687 -0.032631159 0.07985229 -0.055475451 -0.014840133 0.047236063 -0.021930844 -0.040602859 0.096483968 -0.032317687 -0.032631159 0.07985229 -0.055017967 -0.01432172 0.066148639 -0.032317687 -0.032631159 0.07985229 -0.0379235 -0.029757211 0.071484618 -0.055475451 -0.014840133 0.047236063 -0.032317687 -0.032631159 0.07985229 -0.021930844 -0.040602859 0.096483968 -0.017710548 -0.045249306 0.1031604 -0.0379235 -0.029757211 0.071484618 -0.032317687 -0.032631159 0.07985229 -0.017710548 -0.045249306 0.1031604 + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47

+
+
+
+
+ + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + + + + + + + + + + + + + +
diff --git a/external/rlbench/urdfs/panda/meshes/Pandalink5respondable_coll_6.dae b/external/rlbench/urdfs/panda/meshes/Pandalink5respondable_coll_6.dae new file mode 100644 index 0000000000000000000000000000000000000000..d4f09ae595639a35a54d99eba86198c455da1704 --- /dev/null +++ b/external/rlbench/urdfs/panda/meshes/Pandalink5respondable_coll_6.dae @@ -0,0 +1,84 @@ + + + + + Assimp + Assimp Exporter + + 2023-09-26T11:24:21 + 2023-09-26T11:24:21 + + Y_UP + + + + + + + + 0 0 0 4.5895327e-41 + + + 0.69999999 1 0.69999999 4.5893926e-41 + + + 0.69999999 1 0.69999999 4.5893926e-41 + + + 0.25 0.25 0.25 -3.0261091e+37 + + + + + + + + + + + + + + + + -0.047495138 -0.021948466 -0.094569154 -0.02970385 0.035594095 -0.041321121 -0.018724829 -0.026938774 -0.037345547 -0.02970385 0.035594095 -0.041321121 -0.022793487 0.024371123 -0.028768711 -0.018724829 -0.026938774 -0.037345547 -0.021596733 0.024855545 0.061715264 -0.022793487 0.024371123 -0.028768711 -0.02970385 0.035594095 -0.041321121 -0.031243593 -0.032194767 -0.033110831 -0.047495138 -0.021948466 -0.094569154 -0.018724829 -0.026938774 -0.037345547 -0.040892076 0.031822804 0.069580697 -0.019833634 -0.01570281 0.062483434 -0.021596733 0.024855545 0.061715264 -0.019833634 -0.01570281 0.062483434 -0.040892076 0.031822804 0.069580697 -0.039858893 -0.028373742 0.070433743 -0.062810004 0.0029855554 -0.072166495 -0.02970385 0.035594095 -0.041321121 -0.047495138 -0.021948466 -0.094569154 -0.062810004 0.0029855554 -0.072166495 -0.060360376 0.022096606 -0.051143672 -0.02970385 0.035594095 -0.041321121 -0.031798825 0.032625485 0.057119567 -0.021596733 0.024855545 0.061715264 -0.02970385 0.035594095 -0.041321121 -0.040892076 0.031822804 0.069580697 -0.031798825 0.032625485 0.057119567 -0.02970385 0.035594095 -0.041321121 -0.031798825 0.032625485 0.057119567 -0.040892076 0.031822804 0.069580697 -0.021596733 0.024855545 0.061715264 -0.060360376 0.022096606 -0.051143672 -0.049622096 0.02988895 -0.024337668 -0.02970385 0.035594095 -0.041321121 -0.049622096 0.02988895 -0.024337668 -0.040892076 0.031822804 0.069580697 -0.02970385 0.035594095 -0.041321121 -0.022793487 0.024371123 -0.028768711 -0.019908158 -0.0086677419 -0.028475035 -0.018724829 -0.026938774 -0.037345547 -0.030722015 -0.029253546 0.061044078 -0.031243593 -0.032194767 -0.033110831 -0.018724829 -0.026938774 -0.037345547 -0.031243593 -0.032194767 -0.033110831 -0.030722015 -0.029253546 0.061044078 -0.039858893 -0.028373742 0.070433743 -0.031243593 -0.032194767 -0.033110831 -0.057524458 -0.024322458 -0.06415315 -0.047495138 -0.021948466 -0.094569154 -0.057524458 -0.024322458 -0.06415315 -0.052279141 -0.019288668 0.068915881 -0.059686139 -0.017853586 -0.018365726 -0.019492365 0.00085735309 0.056386936 -0.019833634 -0.01570281 0.062483434 -0.018724829 -0.026938774 -0.037345547 -0.019833634 -0.01570281 0.062483434 -0.019492365 0.00085735309 0.056386936 -0.021596733 0.024855545 0.061715264 -0.019908158 -0.0086677419 -0.028475035 -0.019492365 0.00085735309 0.056386936 -0.018724829 -0.026938774 -0.037345547 -0.019492365 0.00085735309 0.056386936 -0.022793487 0.024371123 -0.028768711 -0.021596733 0.024855545 0.061715264 -0.019492365 0.00085735309 0.056386936 -0.019908158 -0.0086677419 -0.028475035 -0.022793487 0.024371123 -0.028768711 -0.049622096 0.02988895 -0.024337668 -0.048265263 0.027892955 0.071138464 -0.040892076 0.031822804 0.069580697 -0.040892076 0.031822804 0.069580697 -0.048265263 0.027892955 0.071138464 -0.039858893 -0.028373742 0.070433743 -0.053191785 0.02131469 0.06962876 -0.048265263 0.027892955 0.071138464 -0.060360376 0.022096606 -0.051143672 -0.048265263 0.027892955 0.071138464 -0.049622096 0.02988895 -0.024337668 -0.060360376 0.022096606 -0.051143672 -0.048265263 0.027892955 0.071138464 -0.052279141 -0.019288668 0.068915881 -0.039858893 -0.028373742 0.070433743 -0.052279141 -0.019288668 0.068915881 -0.048265263 0.027892955 0.071138464 -0.053191785 0.02131469 0.06962876 -0.05543039 -0.0077405339 0.066912018 -0.053191785 0.02131469 0.06962876 -0.055921584 0.010023167 0.066796534 -0.05543039 -0.0077405339 0.066912018 -0.052279141 -0.019288668 0.068915881 -0.053191785 0.02131469 0.06962876 -0.062173668 0.0021151539 -0.013768262 -0.05543039 -0.0077405339 0.066912018 -0.055921584 0.010023167 0.066796534 -0.052279141 -0.019288668 0.068915881 -0.05543039 -0.0077405339 0.066912018 -0.059686139 -0.017853586 -0.018365726 -0.05543039 -0.0077405339 0.066912018 -0.062173668 0.0021151539 -0.013768262 -0.059686139 -0.017853586 -0.018365726 -0.023276558 -0.023937566 0.061695531 -0.019833634 -0.01570281 0.062483434 -0.039858893 -0.028373742 0.070433743 -0.030722015 -0.029253546 0.061044078 -0.023276558 -0.023937566 0.061695531 -0.039858893 -0.028373742 0.070433743 -0.019833634 -0.01570281 0.062483434 -0.023276558 -0.023937566 0.061695531 -0.018724829 -0.026938774 -0.037345547 -0.023276558 -0.023937566 0.061695531 -0.030722015 -0.029253546 0.061044078 -0.018724829 -0.026938774 -0.037345547 -0.0625678 -0.010712917 -0.0593738 -0.057524458 -0.024322458 -0.06415315 -0.059686139 -0.017853586 -0.018365726 -0.062173668 0.0021151539 -0.013768262 -0.0625678 -0.010712917 -0.0593738 -0.059686139 -0.017853586 -0.018365726 -0.0625678 -0.010712917 -0.0593738 -0.062173668 0.0021151539 -0.013768262 -0.062810004 0.0029855554 -0.072166495 -0.048961777 -0.028259868 -0.017394217 -0.031243593 -0.032194767 -0.033110831 -0.039858893 -0.028373742 0.070433743 -0.048961777 -0.028259868 -0.017394217 -0.057524458 -0.024322458 -0.06415315 -0.031243593 -0.032194767 -0.033110831 -0.062810004 0.0029855554 -0.072166495 -0.060862329 0.018007882 -0.026624477 -0.060360376 0.022096606 -0.051143672 -0.062173668 0.0021151539 -0.013768262 -0.060862329 0.018007882 -0.026624477 -0.062810004 0.0029855554 -0.072166495 -0.060862329 0.018007882 -0.026624477 -0.062173668 0.0021151539 -0.013768262 -0.055921584 0.010023167 0.066796534 -0.053191785 0.02131469 0.06962876 -0.060862329 0.018007882 -0.026624477 -0.055921584 0.010023167 0.066796534 -0.060862329 0.018007882 -0.026624477 -0.053191785 0.02131469 0.06962876 -0.060360376 0.022096606 -0.051143672 -0.059500977 -0.018507607 -0.071346775 -0.0625678 -0.010712917 -0.0593738 -0.062810004 0.0029855554 -0.072166495 -0.0625678 -0.010712917 -0.0593738 -0.059500977 -0.018507607 -0.071346775 -0.057524458 -0.024322458 -0.06415315 -0.059500977 -0.018507607 -0.071346775 -0.062810004 0.0029855554 -0.072166495 -0.047495138 -0.021948466 -0.094569154 -0.057524458 -0.024322458 -0.06415315 -0.059500977 -0.018507607 -0.071346775 -0.047495138 -0.021948466 -0.094569154 -0.057524458 -0.024322458 -0.06415315 -0.048448578 -0.024266887 0.062877133 -0.052279141 -0.019288668 0.068915881 -0.048961777 -0.028259868 -0.017394217 -0.048448578 -0.024266887 0.062877133 -0.057524458 -0.024322458 -0.06415315 -0.052279141 -0.019288668 0.068915881 -0.048448578 -0.024266887 0.062877133 -0.039858893 -0.028373742 0.070433743 -0.048448578 -0.024266887 0.062877133 -0.048961777 -0.028259868 -0.017394217 -0.039858893 -0.028373742 0.070433743 + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167

+
+
+
+
+ + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + + + + + + + + + + + + + +
diff --git a/external/rlbench/urdfs/panda/meshes/Pandalink5respondable_coll_7.dae b/external/rlbench/urdfs/panda/meshes/Pandalink5respondable_coll_7.dae new file mode 100644 index 0000000000000000000000000000000000000000..d985913a06551664692eee9a40ebf353056baf2d --- /dev/null +++ b/external/rlbench/urdfs/panda/meshes/Pandalink5respondable_coll_7.dae @@ -0,0 +1,84 @@ + + + + + Assimp + Assimp Exporter + + 2023-09-26T11:24:21 + 2023-09-26T11:24:21 + + Y_UP + + + + + + + + 0 0 0 4.5895327e-41 + + + 0.69999999 1 0.69999999 4.5893926e-41 + + + 0.69999999 1 0.69999999 4.5893926e-41 + + + 0.25 0.25 0.25 -3.0261091e+37 + + + + + + + + + + + + + + + + -0.02588689 -0.045564916 -0.14775549 -0.047262933 -0.016422225 -0.14283326 -0.0017296545 -0.055365667 -0.15379608 -0.047262933 -0.016422225 -0.14283326 -0.02588689 -0.045564916 -0.14775549 -0.057523783 -0.024322385 -0.064150393 0.0063208984 0.055365339 -0.15755658 -0.047122102 0.01541695 -0.14335622 -0.033018701 0.040314618 -0.1473227 -0.047122102 0.01541695 -0.14335622 0.0063208984 0.055365339 -0.15755658 -0.047262933 -0.016422225 -0.14283326 -0.048960268 -0.02825956 -0.017391546 -0.062173922 0.0021156243 -0.013765765 -0.057523783 -0.024322385 -0.064150393 -0.062173922 0.0021156243 -0.013765765 -0.019907905 -0.0086666979 -0.028473841 -0.022793552 0.024371084 -0.028766688 -0.062173922 0.0021156243 -0.013765765 -0.048960268 -0.02825956 -0.017391546 -0.019907905 -0.0086666979 -0.028473841 -0.010544969 0.053071138 -0.15320417 0.0063208984 0.055365339 -0.15755658 -0.033018701 0.040314618 -0.1473227 0.0063208984 0.055365339 -0.15755658 0.058391664 0.0061666975 -0.17003129 -0.047262933 -0.016422225 -0.14283326 -0.047262933 -0.016422225 -0.14283326 0.058391664 0.0061666975 -0.17003129 -0.0017296545 -0.055365667 -0.15379608 0.033587135 0.026009103 -0.07884711 0.021288496 0.04117645 -0.082524717 -0.022793552 0.024371084 -0.028766688 0.0305699 0.051601876 -0.13424858 0.0063208984 0.055365339 -0.15755658 0.016407177 0.054439995 -0.13472144 0.048135825 0.039323073 -0.10872559 0.033587135 0.026009103 -0.07884711 0.055464189 0.024137519 -0.10400917 0.033587135 0.026009103 -0.07884711 0.048135825 0.039323073 -0.10872559 0.021288496 0.04117645 -0.082524717 0.0305699 0.051601876 -0.13424858 0.048135825 0.039323073 -0.10872559 0.04837795 0.041184135 -0.13246383 0.059525881 0.026104566 -0.13426743 0.048135825 0.039323073 -0.10872559 0.055464189 0.024137519 -0.10400917 0.048135825 0.039323073 -0.10872559 0.059525881 0.026104566 -0.13426743 0.04837795 0.041184135 -0.13246383 0.04837795 0.041184135 -0.13246383 0.059525881 0.026104566 -0.13426743 0.047685556 0.032437567 -0.16769707 0.059525881 0.026104566 -0.13426743 0.058391664 0.0061666975 -0.17003129 0.047685556 0.032437567 -0.16769707 0.058391664 0.0061666975 -0.17003129 0.059525881 0.026104566 -0.13426743 0.061460748 0.010778549 -0.15059994 -0.043127868 -0.033844169 -0.057174858 -0.048960268 -0.02825956 -0.017391546 -0.057523783 -0.024322385 -0.064150393 -0.02588689 -0.045564916 -0.14775549 -0.043127868 -0.033844169 -0.057174858 -0.057523783 -0.024322385 -0.064150393 -0.048960268 -0.02825956 -0.017391546 -0.043127868 -0.033844169 -0.057174858 -0.0017296545 -0.055365667 -0.15379608 -0.043127868 -0.033844169 -0.057174858 -0.02588689 -0.045564916 -0.14775549 -0.0017296545 -0.055365667 -0.15379608 -0.062809236 0.0029851601 -0.072164923 -0.047262933 -0.016422225 -0.14283326 -0.057523783 -0.024322385 -0.064150393 -0.062809236 0.0029851601 -0.072164923 -0.047122102 0.01541695 -0.14335622 -0.047262933 -0.016422225 -0.14283326 -0.062173922 0.0021156243 -0.013765765 -0.062809236 0.0029851601 -0.072164923 -0.057523783 -0.024322385 -0.064150393 -0.062809236 0.0029851601 -0.072164923 -0.062173922 0.0021156243 -0.013765765 -0.060862556 0.018008498 -0.026620761 0.034721594 -0.027691692 -0.080783986 0.039046317 -0.011908809 -0.078781411 -0.019907905 -0.0086666979 -0.028473841 0.052117467 -0.0193414 -0.096504711 0.034721594 -0.027691692 -0.080783986 0.049470045 -0.036087237 -0.10685363 0.034721594 -0.027691692 -0.080783986 0.052117467 -0.0193414 -0.096504711 0.039046317 -0.011908809 -0.078781411 0.0088775 -0.051357836 -0.11182798 -0.048960268 -0.02825956 -0.017391546 -0.0017296545 -0.055365667 -0.15379608 0.0088775 -0.051357836 -0.11182798 0.022701072 -0.053040139 -0.13798149 0.027468488 -0.046616178 -0.096001171 0.028512897 -0.049771089 -0.16143784 0.022701072 -0.053040139 -0.13798149 -0.0017296545 -0.055365667 -0.15379608 0.022701072 -0.053040139 -0.13798149 0.0088775 -0.051357836 -0.11182798 -0.0017296545 -0.055365667 -0.15379608 -0.049622279 0.029889081 -0.024335742 -0.062173922 0.0021156243 -0.013765765 -0.022793552 0.024371084 -0.028766688 -0.062173922 0.0021156243 -0.013765765 -0.049622279 0.029889081 -0.024335742 -0.060862556 0.018008498 -0.026620761 0.0063208984 0.055365339 -0.15755658 0.0012744039 0.053163998 -0.11946181 0.016407177 0.054439995 -0.13472144 -0.010544969 0.053071138 -0.15320417 0.0012744039 0.053163998 -0.11946181 0.0063208984 0.055365339 -0.15755658 -0.049622279 0.029889081 -0.024335742 0.0012744039 0.053163998 -0.11946181 -0.010544969 0.053071138 -0.15320417 0.033587135 0.026009103 -0.07884711 0.042681683 0.01144349 -0.082092278 0.055464189 0.024137519 -0.10400917 0.042681683 0.01144349 -0.082092278 0.033587135 0.026009103 -0.07884711 -0.022793552 0.024371084 -0.028766688 -0.019907905 -0.0086666979 -0.028473841 0.042681683 0.01144349 -0.082092278 -0.022793552 0.024371084 -0.028766688 0.039046317 -0.011908809 -0.078781411 0.042681683 0.01144349 -0.082092278 -0.019907905 -0.0086666979 -0.028473841 0.0305699 0.051601876 -0.13424858 0.033406373 0.046594743 -0.16430056 0.0063208984 0.055365339 -0.15755658 0.058391664 0.0061666975 -0.17003129 0.033406373 0.046594743 -0.16430056 0.047685556 0.032437567 -0.16769707 0.033406373 0.046594743 -0.16430056 0.058391664 0.0061666975 -0.17003129 0.0063208984 0.055365339 -0.15755658 0.033406373 0.046594743 -0.16430056 0.04837795 0.041184135 -0.13246383 0.047685556 0.032437567 -0.16769707 0.033406373 0.046594743 -0.16430056 0.0305699 0.051601876 -0.13424858 0.04837795 0.041184135 -0.13246383 0.048135825 0.039323073 -0.10872559 0.024049979 0.049000435 -0.09669888 0.021288496 0.04117645 -0.082524717 0.024049979 0.049000435 -0.09669888 0.048135825 0.039323073 -0.10872559 0.0305699 0.051601876 -0.13424858 0.024049979 0.049000435 -0.09669888 0.0305699 0.051601876 -0.13424858 0.016407177 0.054439995 -0.13472144 0.0012744039 0.053163998 -0.11946181 0.024049979 0.049000435 -0.09669888 0.016407177 0.054439995 -0.13472144 0.05150786 -0.036480948 -0.13628346 0.042286925 -0.038851351 -0.16523588 0.051999208 -0.026208259 -0.16789845 0.042286925 -0.038851351 -0.16523588 0.05150786 -0.036480948 -0.13628346 0.028512897 -0.049771089 -0.16143784 0.042286925 -0.038851351 -0.16523588 0.028512897 -0.049771089 -0.16143784 -0.0017296545 -0.055365667 -0.15379608 0.058391664 0.0061666975 -0.17003129 0.042286925 -0.038851351 -0.16523588 -0.0017296545 -0.055365667 -0.15379608 0.042286925 -0.038851351 -0.16523588 0.058391664 0.0061666975 -0.17003129 0.051999208 -0.026208259 -0.16789845 0.064066008 -0.013697292 -0.12154654 0.052117467 -0.0193414 -0.096504711 0.049470045 -0.036087237 -0.10685363 -0.062809236 0.0029851601 -0.072164923 -0.059261564 0.019675095 -0.072831564 -0.047122102 0.01541695 -0.14335622 -0.047122102 0.01541695 -0.14335622 -0.059261564 0.019675095 -0.072831564 -0.033018701 0.040314618 -0.1473227 -0.048960268 -0.02825956 -0.017391546 -0.018723186 -0.026937749 -0.037342366 -0.019907905 -0.0086666979 -0.028473841 -0.018723186 -0.026937749 -0.037342366 0.034721594 -0.027691692 -0.080783986 -0.019907905 -0.0086666979 -0.028473841 0.0088775 -0.051357836 -0.11182798 -0.031243261 -0.032195594 -0.033107657 -0.048960268 -0.02825956 -0.017391546 -0.031243261 -0.032195594 -0.033107657 0.0088775 -0.051357836 -0.11182798 0.027468488 -0.046616178 -0.096001171 -0.031243261 -0.032195594 -0.033107657 -0.018723186 -0.026937749 -0.037342366 -0.048960268 -0.02825956 -0.017391546 0.05150786 -0.036480948 -0.13628346 0.042538587 -0.044375159 -0.1267619 0.028512897 -0.049771089 -0.16143784 0.042538587 -0.044375159 -0.1267619 0.022701072 -0.053040139 -0.13798149 0.028512897 -0.049771089 -0.16143784 0.042538587 -0.044375159 -0.1267619 0.05150786 -0.036480948 -0.13628346 0.049470045 -0.036087237 -0.10685363 0.027468488 -0.046616178 -0.096001171 0.042538587 -0.044375159 -0.1267619 0.049470045 -0.036087237 -0.10685363 0.022701072 -0.053040139 -0.13798149 0.042538587 -0.044375159 -0.1267619 0.027468488 -0.046616178 -0.096001171 -0.047695648 0.03269808 -0.067752309 -0.010544969 0.053071138 -0.15320417 -0.033018701 0.040314618 -0.1473227 -0.047695648 0.03269808 -0.067752309 -0.049622279 0.029889081 -0.024335742 -0.010544969 0.053071138 -0.15320417 -0.029703787 0.035594773 -0.041318838 0.0012744039 0.053163998 -0.11946181 -0.049622279 0.029889081 -0.024335742 -0.029703787 0.035594773 -0.041318838 0.024049979 0.049000435 -0.09669888 0.0012744039 0.053163998 -0.11946181 -0.029703787 0.035594773 -0.041318838 -0.049622279 0.029889081 -0.024335742 -0.022793552 0.024371084 -0.028766688 0.021288496 0.04117645 -0.082524717 -0.029703787 0.035594773 -0.041318838 -0.022793552 0.024371084 -0.028766688 0.024049979 0.049000435 -0.09669888 -0.029703787 0.035594773 -0.041318838 0.021288496 0.04117645 -0.082524717 0.059313349 -0.025044929 -0.13594304 0.05150786 -0.036480948 -0.13628346 0.051999208 -0.026208259 -0.16789845 0.05150786 -0.036480948 -0.13628346 0.059313349 -0.025044929 -0.13594304 0.049470045 -0.036087237 -0.10685363 0.059313349 -0.025044929 -0.13594304 0.064066008 -0.013697292 -0.12154654 0.049470045 -0.036087237 -0.10685363 0.064066008 -0.013697292 -0.12154654 0.061751757 -0.00014001108 -0.10657316 0.052117467 -0.0193414 -0.096504711 0.042681683 0.01144349 -0.082092278 0.061751757 -0.00014001108 -0.10657316 0.055464189 0.024137519 -0.10400917 0.052117467 -0.0193414 -0.096504711 0.061751757 -0.00014001108 -0.10657316 0.039046317 -0.011908809 -0.078781411 0.061751757 -0.00014001108 -0.10657316 0.042681683 0.01144349 -0.082092278 0.039046317 -0.011908809 -0.078781411 0.059525881 0.026104566 -0.13426743 0.064770542 0.01068567 -0.12387379 0.061460748 0.010778549 -0.15059994 0.064770542 0.01068567 -0.12387379 0.061751757 -0.00014001108 -0.10657316 0.064066008 -0.013697292 -0.12154654 0.064770542 0.01068567 -0.12387379 0.059525881 0.026104566 -0.13426743 0.055464189 0.024137519 -0.10400917 0.061751757 -0.00014001108 -0.10657316 0.064770542 0.01068567 -0.12387379 0.055464189 0.024137519 -0.10400917 -0.018723186 -0.026937749 -0.037342366 0.024535516 -0.040741686 -0.084438436 0.034721594 -0.027691692 -0.080783986 -0.031243261 -0.032195594 -0.033107657 0.024535516 -0.040741686 -0.084438436 -0.018723186 -0.026937749 -0.037342366 0.024535516 -0.040741686 -0.084438436 -0.031243261 -0.032195594 -0.033107657 0.027468488 -0.046616178 -0.096001171 0.024535516 -0.040741686 -0.084438436 0.027468488 -0.046616178 -0.096001171 0.049470045 -0.036087237 -0.10685363 0.034721594 -0.027691692 -0.080783986 0.024535516 -0.040741686 -0.084438436 0.049470045 -0.036087237 -0.10685363 -0.059261564 0.019675095 -0.072831564 -0.060360126 0.022097263 -0.051140018 -0.033018701 0.040314618 -0.1473227 -0.060360126 0.022097263 -0.051140018 -0.047695648 0.03269808 -0.067752309 -0.033018701 0.040314618 -0.1473227 -0.060360126 0.022097263 -0.051140018 -0.062809236 0.0029851601 -0.072164923 -0.060862556 0.018008498 -0.026620761 -0.060360126 0.022097263 -0.051140018 -0.059261564 0.019675095 -0.072831564 -0.062809236 0.0029851601 -0.072164923 -0.049622279 0.029889081 -0.024335742 -0.060360126 0.022097263 -0.051140018 -0.060862556 0.018008498 -0.026620761 -0.047695648 0.03269808 -0.067752309 -0.060360126 0.022097263 -0.051140018 -0.049622279 0.029889081 -0.024335742 0.058391664 0.0061666975 -0.17003129 0.062860154 -0.010530748 -0.1432533 0.051999208 -0.026208259 -0.16789845 0.062860154 -0.010530748 -0.1432533 0.059313349 -0.025044929 -0.13594304 0.051999208 -0.026208259 -0.16789845 0.059313349 -0.025044929 -0.13594304 0.062860154 -0.010530748 -0.1432533 0.064066008 -0.013697292 -0.12154654 0.062860154 -0.010530748 -0.1432533 0.058391664 0.0061666975 -0.17003129 0.061460748 0.010778549 -0.15059994 0.064770542 0.01068567 -0.12387379 0.062860154 -0.010530748 -0.1432533 0.061460748 0.010778549 -0.15059994 0.062860154 -0.010530748 -0.1432533 0.064770542 0.01068567 -0.12387379 0.064066008 -0.013697292 -0.12154654 + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317

+
+
+
+
+ + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + + + + + + + + + + + + + +
diff --git a/external/rlbench/urdfs/panda/meshes/Pandalink5visual_vis_1.dae b/external/rlbench/urdfs/panda/meshes/Pandalink5visual_vis_1.dae new file mode 100644 index 0000000000000000000000000000000000000000..63a317755f9220973f56692dd26e223ac25563e2 --- /dev/null +++ b/external/rlbench/urdfs/panda/meshes/Pandalink5visual_vis_1.dae @@ -0,0 +1,84 @@ + + + + + Assimp + Assimp Exporter + + 2023-09-26T11:24:21 + 2023-09-26T11:24:21 + + Y_UP + + + + + + + + 0 0 0 4.5895327e-41 + + + 0.40000001 0.40000001 0.40000001 4.5893926e-41 + + + 0.40000001 0.40000001 0.40000001 4.5893926e-41 + + + 0.25 0.25 0.25 -3.0261091e+37 + + + + + + + + + + + + + + + + -0.057728413 -0.011916479 -0.081582248 -0.057046548 -0.012957435 -0.086987525 -0.057404857 -0.019988064 -0.10316487 -0.058676392 0.022335794 0.0064602704 -0.058771718 0.022358142 0.0083583342 -0.05793792 0.024833107 0.0074176257 -0.057494748 0.024738964 0.0074497033 -0.05793792 0.024833107 0.0074176257 -0.058325786 0.022281382 0.0083917016 -0.05793792 0.024833107 0.0074176257 -0.058771718 0.022358142 0.0083583342 -0.058325786 0.022281382 0.0083917016 -0.058227766 0.022270858 0.0064992839 -0.058771718 0.022358142 0.0083583342 -0.058676392 0.022335794 0.0064602704 -0.058227766 0.022270858 0.0064992839 -0.058325786 0.022281382 0.0083917016 -0.058771718 0.022358142 0.0083583342 -0.057494748 0.024738964 0.0074497033 -0.058227766 0.022270858 0.0064992839 -0.05793792 0.024833107 0.0074176257 -0.056959331 -0.022879202 -0.11430912 -0.056420371 -0.022050351 -0.11884869 -0.05662863 -0.023317145 -0.11896765 -0.056959331 -0.022879202 -0.11430912 -0.056970149 -0.019873865 -0.10608517 -0.056420371 -0.022050351 -0.11884869 -0.057889748 -0.0088465773 -0.071399368 -0.057003636 -0.0080784047 -0.071862757 -0.057728413 -0.011916479 -0.081582248 -0.057728413 -0.011916479 -0.081582248 -0.057003636 -0.0080784047 -0.071862757 -0.057046548 -0.012957435 -0.086987525 -0.05793792 0.024833107 0.0074176257 -0.058227766 0.022270858 0.0064992839 -0.058676392 0.022335794 0.0064602704 -0.058291182 0.016744949 -0.016237298 -0.05873527 0.016821647 -0.016270578 -0.058686052 0.015391477 -0.015722344 -0.058613714 0.015375756 -0.01675115 -0.058686052 0.015391477 -0.015722344 -0.05873527 0.016821647 -0.016270578 -0.057260629 -0.021385983 -0.10772616 -0.056970149 -0.019873865 -0.10608517 -0.056959331 -0.022879202 -0.11430912 -0.058291182 0.016744949 -0.016237298 -0.058613714 0.015375756 -0.01675115 -0.05873527 0.016821647 -0.016270578 -0.05587244 0.023014227 -0.023878144 -0.056456331 0.023159606 -0.021706333 -0.055748332 0.024787145 -0.023897327 -0.056456331 0.023159606 -0.021706333 -0.055884253 0.02480932 -0.021892371 -0.055748332 0.024787145 -0.023897327 -0.058056038 -0.0076247966 -0.065071747 -0.057003636 -0.0080784047 -0.071862757 -0.057889748 -0.0088465773 -0.071399368 -0.056456331 0.023159606 -0.021706333 -0.055608515 0.024382425 -0.021150069 -0.055884253 0.02480932 -0.021892371 -0.057404857 -0.019988064 -0.10316487 -0.056970149 -0.019873865 -0.10608517 -0.057260629 -0.021385983 -0.10772616 -0.055884253 0.02480932 -0.021892371 -0.055300009 0.024709918 -0.023863843 -0.055748332 0.024787145 -0.023897327 -0.058056038 -0.0076247966 -0.065071747 -0.057221092 -0.0064978758 -0.062182087 -0.057003636 -0.0080784047 -0.071862757 -0.057404857 -0.019988064 -0.10316487 -0.057046548 -0.012957435 -0.086987525 -0.056970149 -0.019873865 -0.10608517 -0.058286242 -0.0069976067 -0.059006006 -0.057221092 -0.0064978758 -0.062182087 -0.058056038 -0.0076247966 -0.065071747 -0.055300009 0.024709918 -0.023863843 -0.05587244 0.023014227 -0.023878144 -0.055748332 0.024787145 -0.023897327 -0.055884253 0.02480932 -0.021892371 -0.055608515 0.024382425 -0.021150069 -0.055300009 0.024709918 -0.023863843 -0.055608515 0.024382425 -0.021150069 -0.056456331 0.023159606 -0.021706333 -0.055930078 0.023433568 -0.021158081 -0.056456331 0.023159606 -0.021706333 -0.05587244 0.023014227 -0.023878144 -0.055930078 0.023433568 -0.021158081 -0.05649031 0.024495112 -0.015084849 -0.057375155 0.022029486 -0.014147885 -0.056036394 0.02441705 -0.015050875 -0.056036394 0.02441705 -0.015050875 -0.057375155 0.022029486 -0.014147885 -0.056924809 0.021951599 -0.01411412 -0.057242155 0.022000199 -0.016043263 -0.057375155 0.022029486 -0.014147885 -0.05649031 0.024495112 -0.015084849 -0.052306309 -0.031284019 -0.11305285 -0.054274101 -0.027892627 -0.11224671 -0.053501561 -0.029008171 -0.11787228 -0.052062303 -0.027531506 -0.087110095 -0.054488301 -0.021536767 -0.074268274 -0.053844158 -0.023488604 -0.084215134 -0.051053718 -0.033004928 -0.10782862 -0.054274101 -0.027892627 -0.11224671 -0.052306309 -0.031284019 -0.11305285 -0.053302385 -0.02428164 -0.075097784 -0.054488301 -0.021536767 -0.074268274 -0.052062303 -0.027531506 -0.087110095 -0.05679575 0.021923371 -0.016009837 -0.057375155 0.022029486 -0.014147885 -0.057242155 0.022000199 -0.016043263 -0.05679575 0.021923371 -0.016009837 -0.056924809 0.021951599 -0.01411412 -0.057375155 0.022029486 -0.014147885 -0.056036394 0.02441705 -0.015050875 -0.05679575 0.021923371 -0.016009837 -0.05649031 0.024495112 -0.015084849 -0.05649031 0.024495112 -0.015084849 -0.05679575 0.021923371 -0.016009837 -0.057242155 0.022000199 -0.016043263 -0.046443164 -0.021564044 -0.056613628 -0.046634473 -0.023062008 -0.056937411 -0.045444719 -0.023784285 -0.062603772 -0.046443164 -0.021564044 -0.056613628 -0.045444719 -0.023784285 -0.062603772 -0.044635147 -0.022703931 -0.064800046 -0.054219898 -0.02253635 -0.070373058 -0.054488301 -0.021536767 -0.074268274 -0.053302385 -0.02428164 -0.075097784 -0.053501561 -0.029008171 -0.11787228 -0.056959331 -0.022879202 -0.11430912 -0.05662863 -0.023317145 -0.11896765 -0.044635147 -0.022703931 -0.064800046 -0.045444719 -0.023784285 -0.062603772 -0.044329599 -0.024640579 -0.066685155 -0.049283247 -0.035196044 -0.10327861 -0.050834991 -0.032580558 -0.10171302 -0.051053718 -0.033004928 -0.10782862 -0.054488301 -0.021536767 -0.074268274 -0.055746015 -0.018030982 -0.071692914 -0.053844158 -0.023488604 -0.084215134 -0.047508486 -0.037087556 -0.099364668 -0.050834991 -0.032580558 -0.10171302 -0.049283247 -0.035196044 -0.10327861 -0.054274101 -0.027892627 -0.11224671 -0.056959331 -0.022879202 -0.11430912 -0.053501561 -0.029008171 -0.11787228 -0.051053718 -0.033004928 -0.10782862 -0.053663325 -0.028380532 -0.1062875 -0.054274101 -0.027892627 -0.11224671 -0.044635147 -0.022703931 -0.064800046 -0.044329599 -0.024640579 -0.066685155 -0.04330856 -0.023831222 -0.069169804 -0.04330856 -0.023831222 -0.069169804 -0.044329599 -0.024640579 -0.066685155 -0.043497629 -0.025356954 -0.069299653 -0.04330856 -0.023831222 -0.069169804 -0.043497629 -0.025356954 -0.069299653 -0.041652836 -0.02711983 -0.074259505 -0.050834991 -0.032580558 -0.10171302 -0.053663325 -0.028380532 -0.1062875 -0.051053718 -0.033004928 -0.10782862 -0.04330856 -0.023831222 -0.069169804 -0.041652836 -0.02711983 -0.074259505 -0.040227782 -0.02685344 -0.077038668 -0.053844158 -0.023488604 -0.084215134 -0.05672729 -0.01476271 -0.068277948 -0.054732479 -0.021355627 -0.083957784 -0.040227782 -0.02685344 -0.077038668 -0.041652836 -0.02711983 -0.074259505 -0.040406808 -0.028388955 -0.077153988 -0.050834991 -0.032580558 -0.10171302 -0.052457709 -0.029595882 -0.10050561 -0.053663325 -0.028380532 -0.1062875 -0.038624581 -0.02850862 -0.080356538 -0.040406808 -0.028388955 -0.077153988 -0.038867746 -0.029987469 -0.080318682 -0.040227782 -0.02685344 -0.077038668 -0.040406808 -0.028388955 -0.077153988 -0.038624581 -0.02850862 -0.080356538 -0.042975083 -0.042932406 -0.11519285 -0.043517359 -0.042572949 -0.11351112 -0.047838386 -0.037208792 -0.11735234 -0.038624581 -0.02850862 -0.080356538 -0.038867746 -0.029987469 -0.080318682 -0.036135472 -0.032948449 -0.085523054 -0.053663325 -0.028380532 -0.1062875 -0.056959331 -0.022879202 -0.11430912 -0.054274101 -0.027892627 -0.11224671 -0.038624581 -0.02850862 -0.080356538 -0.036135472 -0.032948449 -0.085523054 -0.030138897 -0.040191863 -0.097089961 -0.02547189 -0.042618752 -0.10519848 -0.038624581 -0.02850862 -0.080356538 -0.030138897 -0.040191863 -0.097089961 -0.043517359 -0.042572949 -0.11351112 -0.046413701 -0.039473578 -0.11150569 -0.047838386 -0.037208792 -0.11735234 -0.054732479 -0.021355627 -0.083957784 -0.056825079 -0.013856304 -0.071783632 -0.055987787 -0.017547857 -0.081594542 -0.055746015 -0.018030982 -0.071692914 -0.05672729 -0.01476271 -0.068277948 -0.053844158 -0.023488604 -0.084215134 -0.02547189 -0.042618752 -0.10519848 -0.030138897 -0.040191863 -0.097089961 -0.028431853 -0.041949004 -0.10028771 -0.02547189 -0.042618752 -0.10519848 -0.028431853 -0.041949004 -0.10028771 -0.027290255 -0.042948768 -0.10237733 -0.053663325 -0.028380532 -0.1062875 -0.057260629 -0.021385983 -0.10772616 -0.056959331 -0.022879202 -0.11430912 -0.055987787 -0.017547857 -0.081594542 -0.057728413 -0.011916479 -0.081582248 -0.05611347 -0.018412441 -0.087156698 -0.02547189 -0.042618752 -0.10519848 -0.027290255 -0.042948768 -0.10237733 -0.026028369 -0.043868747 -0.10463414 -0.055987787 -0.017547857 -0.081594542 -0.056800179 -0.014162435 -0.077148579 -0.057728413 -0.011916479 -0.081582248 -0.056825079 -0.013856304 -0.071783632 -0.056800179 -0.014162435 -0.077148579 -0.055987787 -0.017547857 -0.081594542 -0.05672729 -0.01476271 -0.068277948 -0.056825079 -0.013856304 -0.071783632 -0.054732479 -0.021355627 -0.083957784 -0.054271478 -0.026505586 -0.10227759 -0.057260629 -0.021385983 -0.10772616 -0.053663325 -0.028380532 -0.1062875 -0.02547189 -0.042618752 -0.10519848 -0.026028369 -0.043868747 -0.10463414 -0.02494894 -0.044539873 -0.1065319 -0.02547189 -0.042618752 -0.10519848 -0.02494894 -0.044539873 -0.1065319 -0.023509322 -0.045252446 -0.10901082 -0.02547189 -0.042618752 -0.10519848 -0.023509322 -0.045252446 -0.10901082 -0.022398591 -0.045689669 -0.11089139 -0.046413701 -0.039473578 -0.11150569 -0.049781755 -0.034652472 -0.117626 -0.047838386 -0.037208792 -0.11735234 -0.02547189 -0.042618752 -0.10519848 -0.022398591 -0.045689669 -0.11089139 -0.021472439 -0.045981281 -0.11243901 -0.02547189 -0.042618752 -0.10519848 -0.021472439 -0.045981281 -0.11243901 -0.010790333 -0.043750629 -0.12868708 -0.010790333 -0.043750629 -0.12868708 -0.021472439 -0.045981281 -0.11243901 -0.019425498 -0.04640732 -0.11580545 -0.054271478 -0.026505586 -0.10227759 -0.057404857 -0.019988064 -0.10316487 -0.057260629 -0.021385983 -0.10772616 -0.058886364 0.01390062 -0.018107848 -0.058030982 0.017594058 -0.016627472 -0.059336092 0.013979535 -0.018140895 -0.058030982 0.017594058 -0.016627472 -0.058477473 0.017671047 -0.016660988 -0.059336092 0.013979535 -0.018140895 -0.056800179 -0.014162435 -0.077148579 -0.057889748 -0.0088465773 -0.071399368 -0.057728413 -0.011916479 -0.081582248 -0.052062303 -0.027531506 -0.087110095 -0.054271478 -0.026505586 -0.10227759 -0.052457709 -0.029595882 -0.10050561 -0.051957842 0.027735529 -0.065959796 -0.051592436 0.026340326 -0.062383793 -0.05231636 0.027245557 -0.060966842 -0.051014438 0.027303712 -0.070292279 -0.051592436 0.026340326 -0.062383793 -0.051957842 0.027735529 -0.065959796 -0.05138566 0.028832959 -0.072231516 -0.051014438 0.027303712 -0.070292279 -0.051957842 0.027735529 -0.065959796 -0.043517359 -0.042572949 -0.11351112 -0.044148691 -0.042038843 -0.11141893 -0.046413701 -0.039473578 -0.11150569 -0.050924055 0.029899107 -0.076573201 -0.051014438 0.027303712 -0.070292279 -0.05138566 0.028832959 -0.072231516 -0.044908009 -0.041217025 -0.10884711 -0.046413701 -0.039473578 -0.11150569 -0.044148691 -0.042038843 -0.11141893 -0.050004642 0.030109422 -0.081082441 -0.051014438 0.027303712 -0.070292279 -0.050924055 0.029899107 -0.076573201 -0.049781755 -0.034652472 -0.117626 -0.046413701 -0.039473578 -0.11150569 -0.049537826 -0.035393205 -0.11338625 -0.044908009 -0.041217025 -0.10884711 -0.045488004 -0.04052043 -0.10694616 -0.046413701 -0.039473578 -0.11150569 -0.046413701 -0.039473578 -0.11150569 -0.045488004 -0.04052043 -0.10694616 -0.049143277 -0.035853185 -0.10793836 -0.05231636 0.027245557 -0.060966842 -0.051592436 0.026340326 -0.062383793 -0.0525674 0.027126487 -0.056583486 -0.048931811 0.034943312 -0.091876887 -0.050004642 0.030109422 -0.081082441 -0.050924055 0.029899107 -0.076573201 -0.046110857 -0.03958106 -0.10460748 -0.046662848 -0.038680155 -0.10259208 -0.045488004 -0.04052043 -0.10694616 -0.048172999 0.035460636 -0.096370816 -0.050004642 0.030109422 -0.081082441 -0.048931811 0.034943312 -0.091876887 -0.045488004 -0.04052043 -0.10694616 -0.046662848 -0.038680155 -0.10259208 -0.049143277 -0.035853185 -0.10793836 -0.049537826 -0.035393205 -0.11338625 -0.052306309 -0.031284019 -0.11305285 -0.051355068 -0.032688089 -0.11528301 -0.05621412 0.021945337 -0.023887467 -0.057051074 0.019140163 -0.023903247 -0.05666019 0.022034761 -0.023920039 -0.05666019 0.022034761 -0.023920039 -0.057051074 0.019140163 -0.023903247 -0.057495967 0.019216994 -0.023936609 -0.05790998 0.019334307 -0.011547719 -0.057805844 0.01931054 -0.013074022 -0.058355145 0.019411232 -0.011581151 -0.049537826 -0.035393205 -0.11338625 -0.051355068 -0.032688089 -0.11528301 -0.049781755 -0.034652472 -0.117626 -0.058355145 0.019411232 -0.011581151 -0.057805844 0.01931054 -0.013074022 -0.058251124 0.019387381 -0.013107479 -0.049283247 -0.035196044 -0.10327861 -0.051053718 -0.033004928 -0.10782862 -0.049143277 -0.035853185 -0.10793836 -0.047508486 -0.037087556 -0.099364668 -0.049283247 -0.035196044 -0.10327861 -0.046662848 -0.038680155 -0.10259208 -0.055959828 0.021939706 -0.027405787 -0.055762004 0.021897245 -0.030306067 -0.056406271 0.022017034 -0.027439244 -0.046413701 -0.039473578 -0.11150569 -0.049143277 -0.035853185 -0.10793836 -0.049537826 -0.035393205 -0.11338625 -0.051355068 -0.032688089 -0.11528301 -0.053501561 -0.029008171 -0.11787228 -0.049781755 -0.034652472 -0.117626 -0.056406271 0.022017034 -0.027439244 -0.055762004 0.021897245 -0.030306067 -0.056213006 0.021970879 -0.030339736 -0.059948135 -0.010661966 -0.029969081 -0.059453689 -0.0065725972 -0.040137783 -0.059776802 -0.012509546 -0.030259574 -0.059776802 -0.012509546 -0.030259574 -0.058103558 -0.01196349 -0.056000438 -0.057883963 -0.013759343 -0.055641003 -0.059776802 -0.012509546 -0.030259574 -0.057883963 -0.013759343 -0.055641003 -0.062046964 -0.012808802 0.0031458277 -0.050257061 -0.030731305 -0.08804673 -0.050834991 -0.032580558 -0.10171302 -0.047508486 -0.037087556 -0.099364668 -0.062046964 -0.012808802 0.0031458277 -0.057883963 -0.013759343 -0.055641003 -0.057652205 -0.015529821 -0.054171585 -0.062046964 -0.012808802 0.0031458277 -0.057652205 -0.015529821 -0.054171585 -0.060206264 -0.015032882 -0.018790128 -0.057652205 -0.015529821 -0.054171585 -0.057379972 -0.01694373 -0.053280123 -0.059885267 -0.016657842 -0.018756177 -0.052457709 -0.029595882 -0.10050561 -0.054271478 -0.026505586 -0.10227759 -0.053663325 -0.028380532 -0.1062875 -0.059885267 -0.016657842 -0.018756177 -0.057379972 -0.01694373 -0.053280123 -0.059511319 -0.018742118 -0.016669746 -0.059511319 -0.018742118 -0.016669746 -0.057379972 -0.01694373 -0.053280123 -0.056252141 -0.019601375 -0.056233972 -0.049143277 -0.035853185 -0.10793836 -0.052306309 -0.031284019 -0.11305285 -0.049537826 -0.035393205 -0.11338625 -0.050257061 -0.030731305 -0.08804673 -0.052062303 -0.027531506 -0.087110095 -0.050834991 -0.032580558 -0.10171302 -0.059776802 -0.012509546 -0.030259574 -0.058286242 -0.0069976067 -0.059006006 -0.057945702 -0.0098886024 -0.060570523 -0.050834991 -0.032580558 -0.10171302 -0.052062303 -0.027531506 -0.087110095 -0.052457709 -0.029595882 -0.10050561 -0.059776802 -0.012509546 -0.030259574 -0.059453689 -0.0065725972 -0.040137783 -0.058286242 -0.0069976067 -0.059006006 -0.054720595 -0.022498749 -0.089482926 -0.057404857 -0.019988064 -0.10316487 -0.054271478 -0.026505586 -0.10227759 -0.059776802 -0.012509546 -0.030259574 -0.057945702 -0.0098886024 -0.060570523 -0.058103558 -0.01196349 -0.056000438 -0.061946806 -0.0056667048 -0.002830158 -0.059948135 -0.010661966 -0.029969081 -0.062280789 -0.010187956 0.0035854001 -0.059948135 -0.010661966 -0.029969081 -0.059776802 -0.012509546 -0.030259574 -0.062280789 -0.010187956 0.0035854001 -0.051362086 -0.02826301 -0.083495259 -0.052062303 -0.027531506 -0.087110095 -0.050257061 -0.030731305 -0.08804673 -0.052306309 -0.031284019 -0.11305285 -0.053501561 -0.029008171 -0.11787228 -0.051355068 -0.032688089 -0.11528301 -0.059776802 -0.012509546 -0.030259574 -0.062046964 -0.012808802 0.0031458277 -0.062280789 -0.010187956 0.0035854001 -0.061946806 -0.0056667048 -0.002830158 -0.059453689 -0.0065725972 -0.040137783 -0.059948135 -0.010661966 -0.029969081 -0.060206264 -0.015032882 -0.018790128 -0.063091189 -0.013846937 0.01863187 -0.062046964 -0.012808802 0.0031458277 -0.060206264 -0.015032882 -0.018790128 -0.062080245 -0.016366964 0.010662633 -0.063091189 -0.013846937 0.01863187 -0.049143277 -0.035853185 -0.10793836 -0.051053718 -0.033004928 -0.10782862 -0.052306309 -0.031284019 -0.11305285 -0.060206264 -0.015032882 -0.018790128 -0.059511319 -0.018742118 -0.016669746 -0.062080245 -0.016366964 0.010662633 -0.052062303 -0.027531506 -0.087110095 -0.054720595 -0.022498749 -0.089482926 -0.054271478 -0.026505586 -0.10227759 -0.059511319 -0.018742118 -0.016669746 -0.061707173 -0.018037157 0.010822831 -0.062080245 -0.016366964 0.010662633 -0.057404857 -0.019988064 -0.10316487 -0.054720595 -0.022498749 -0.089482926 -0.05611347 -0.018412441 -0.087156698 -0.060206264 -0.015032882 -0.018790128 -0.057652205 -0.015529821 -0.054171585 -0.059885267 -0.016657842 -0.018756177 -0.060206264 -0.015032882 -0.018790128 -0.059885267 -0.016657842 -0.018756177 -0.059511319 -0.018742118 -0.016669746 -0.054732479 -0.021355627 -0.083957784 -0.054720595 -0.022498749 -0.089482926 -0.053844158 -0.023488604 -0.084215134 -0.053844158 -0.023488604 -0.084215134 -0.054720595 -0.022498749 -0.089482926 -0.052062303 -0.027531506 -0.087110095 -0.057666898 0.017511411 -0.021771958 -0.058165587 0.017600073 -0.021044185 -0.058111001 0.017588157 -0.021805121 -0.057432849 0.023223294 -0.001367682 -0.057050504 0.026303561 0.0014589108 -0.057879776 0.02330072 -0.001401201 -0.057432849 0.023223294 -0.001367682 -0.056599464 0.02622702 0.0014937669 -0.057050504 0.026303561 0.0014589108 -0.057830807 0.01754747 -0.019472985 -0.058186281 0.016113376 -0.019874839 -0.05834784 0.017639849 -0.018482031 -0.052557677 -0.025774606 -0.078540459 -0.052062303 -0.027531506 -0.087110095 -0.051362086 -0.02826301 -0.083495259 -0.053302385 -0.02428164 -0.075097784 -0.052062303 -0.027531506 -0.087110095 -0.052557677 -0.025774606 -0.078540459 -0.05611347 -0.018412441 -0.087156698 -0.054720595 -0.022498749 -0.089482926 -0.055987787 -0.017547857 -0.081594542 -0.055987787 -0.017547857 -0.081594542 -0.054720595 -0.022498749 -0.089482926 -0.054732479 -0.021355627 -0.083957784 -0.05834784 0.017639849 -0.018482031 -0.058186281 0.016113376 -0.019874839 -0.05863104 0.016189951 -0.019908095 -0.058797363 0.013878324 -0.019369155 -0.058284197 0.015586756 -0.020401362 -0.059240654 0.013954947 -0.019402299 -0.057365116 0.015922716 -0.031194102 -0.057504505 0.015953189 -0.029301576 -0.058108781 0.015411398 -0.02933635 -0.057873495 0.019305378 -0.018551912 -0.057428587 0.01922855 -0.01851867 -0.055883415 0.02603746 -0.015793908 -0.046662848 -0.038680155 -0.10259208 -0.049283247 -0.035196044 -0.10327861 -0.049143277 -0.035853185 -0.10793836 -0.057428587 0.01922855 -0.01851867 -0.055433959 0.025960041 -0.015760444 -0.055883415 0.02603746 -0.015793908 -0.057404857 -0.019988064 -0.10316487 -0.05611347 -0.018412441 -0.087156698 -0.057728413 -0.011916479 -0.081582248 -0.057539947 0.017483175 -0.023542926 -0.058043685 0.017572111 -0.022815669 -0.057989635 0.017558426 -0.023576532 -0.05831974 0.01377024 -0.026008438 -0.058266424 0.013758483 -0.026741248 -0.058709983 0.013835145 -0.026774582 -0.057644188 0.016616181 -0.025255769 -0.05831974 0.01377024 -0.026008438 -0.058709983 0.013835145 -0.026774582 -0.057135995 0.017389534 -0.029155208 -0.057596065 0.016813518 -0.031224605 -0.05758068 0.017466387 -0.029188458 -0.057135995 0.017389534 -0.029155208 -0.057365116 0.015922716 -0.031194102 -0.057596065 0.016813518 -0.031224605 -0.02494894 -0.044539873 -0.1065319 -0.044908009 -0.041217025 -0.10884711 -0.023509322 -0.045252446 -0.10901082 -0.023509322 -0.045252446 -0.10901082 -0.044908009 -0.041217025 -0.10884711 -0.044148691 -0.042038843 -0.11141893 -0.057465371 0.016638033 -0.027478922 -0.058211952 0.013746775 -0.027487537 -0.058709983 0.013835145 -0.026774582 -0.043497629 -0.025356954 -0.069299653 -0.054219898 -0.02253635 -0.070373058 -0.041652836 -0.02711983 -0.074259505 -0.026028369 -0.043868747 -0.10463414 -0.045488004 -0.04052043 -0.10694616 -0.02494894 -0.044539873 -0.1065319 -0.036135472 -0.032948449 -0.085523054 -0.051362086 -0.02826301 -0.083495259 -0.050257061 -0.030731305 -0.08804673 -0.02494894 -0.044539873 -0.1065319 -0.045488004 -0.04052043 -0.10694616 -0.044908009 -0.041217025 -0.10884711 -0.021472439 -0.045981281 -0.11243901 -0.042384848 -0.043229368 -0.11707186 -0.019425498 -0.04640732 -0.11580545 -0.038867746 -0.029987469 -0.080318682 -0.051362086 -0.02826301 -0.083495259 -0.036135472 -0.032948449 -0.085523054 -0.044329599 -0.024640579 -0.066685155 -0.05494111 -0.021312783 -0.066144332 -0.043497629 -0.025356954 -0.069299653 -0.027290255 -0.042948768 -0.10237733 -0.046110857 -0.03958106 -0.10460748 -0.026028369 -0.043868747 -0.10463414 -0.038867746 -0.029987469 -0.080318682 -0.052557677 -0.025774606 -0.078540459 -0.051362086 -0.02826301 -0.083495259 -0.043497629 -0.025356954 -0.069299653 -0.05494111 -0.021312783 -0.066144332 -0.054219898 -0.02253635 -0.070373058 -0.026028369 -0.043868747 -0.10463414 -0.046110857 -0.03958106 -0.10460748 -0.045488004 -0.04052043 -0.10694616 -0.027290255 -0.042948768 -0.10237733 -0.046662848 -0.038680155 -0.10259208 -0.046110857 -0.03958106 -0.10460748 -0.028431853 -0.041949004 -0.10028771 -0.046662848 -0.038680155 -0.10259208 -0.027290255 -0.042948768 -0.10237733 -0.058692977 0.021154789 0.0088349916 -0.058550596 0.021121269 0.0060545569 -0.059138816 0.021231906 0.0088016912 -0.059138816 0.021231906 0.0088016912 -0.058550596 0.021121269 0.0060545569 -0.058996294 0.021198494 0.0060213483 -0.045444719 -0.023784285 -0.062603772 -0.055667762 -0.020256842 -0.061148655 -0.044329599 -0.024640579 -0.066685155 -0.044329599 -0.024640579 -0.066685155 -0.055667762 -0.020256842 -0.061148655 -0.05494111 -0.021312783 -0.066144332 -0.040406808 -0.028388955 -0.077153988 -0.052557677 -0.025774606 -0.078540459 -0.038867746 -0.029987469 -0.080318682 -0.021472439 -0.045981281 -0.11243901 -0.042975083 -0.042932406 -0.11519285 -0.042384848 -0.043229368 -0.11707186 -0.030138897 -0.040191863 -0.097089961 -0.047508486 -0.037087556 -0.099364668 -0.028431853 -0.041949004 -0.10028771 -0.057694316 0.022659916 -0.00023587784 -0.0579747 0.021522513 -0.0013811837 -0.058152817 0.022738464 -0.00027007872 -0.054384343 0.025717953 -0.031675901 -0.055148982 0.025865238 -0.026946152 -0.054845698 0.02579313 -0.031710587 -0.028431853 -0.041949004 -0.10028771 -0.047508486 -0.037087556 -0.099364668 -0.046662848 -0.038680155 -0.10259208 -0.054384343 0.025717953 -0.031675901 -0.054697335 0.0257864 -0.02691233 -0.055148982 0.025865238 -0.026946152 -0.046634473 -0.023062008 -0.056937411 -0.056252141 -0.019601375 -0.056233972 -0.045444719 -0.023784285 -0.062603772 -0.045444719 -0.023784285 -0.062603772 -0.056252141 -0.019601375 -0.056233972 -0.055667762 -0.020256842 -0.061148655 -0.040406808 -0.028388955 -0.077153988 -0.053302385 -0.02428164 -0.075097784 -0.052557677 -0.025774606 -0.078540459 -0.041652836 -0.02711983 -0.074259505 -0.053302385 -0.02428164 -0.075097784 -0.040406808 -0.028388955 -0.077153988 -0.021472439 -0.045981281 -0.11243901 -0.043517359 -0.042572949 -0.11351112 -0.042975083 -0.042932406 -0.11519285 -0.058374159 0.013781775 -0.025260041 -0.057644188 0.016616181 -0.025255769 -0.058872651 0.013871286 -0.02458448 -0.022398591 -0.045689669 -0.11089139 -0.043517359 -0.042572949 -0.11351112 -0.021472439 -0.045981281 -0.11243901 -0.030138897 -0.040191863 -0.097089961 -0.050257061 -0.030731305 -0.08804673 -0.047508486 -0.037087556 -0.099364668 -0.023509322 -0.045252446 -0.10901082 -0.044148691 -0.042038843 -0.11141893 -0.022398591 -0.045689669 -0.11089139 -0.036135472 -0.032948449 -0.085523054 -0.050257061 -0.030731305 -0.08804673 -0.030138897 -0.040191863 -0.097089961 -0.022398591 -0.045689669 -0.11089139 -0.044148691 -0.042038843 -0.11141893 -0.043517359 -0.042572949 -0.11351112 -0.041652836 -0.02711983 -0.074259505 -0.054219898 -0.02253635 -0.070373058 -0.053302385 -0.02428164 -0.075097784 -0.049243983 -0.022266624 -0.028260391 -0.047143225 -0.021292113 -0.051422525 -0.051819049 -0.021579193 0.0053115701 -0.047381334 -0.022770422 -0.051819153 -0.046634473 -0.023062008 -0.056937411 -0.046443164 -0.021564044 -0.056613628 -0.056252141 -0.019601375 -0.056233972 -0.057379972 -0.01694373 -0.053280123 -0.055667762 -0.020256842 -0.061148655 -0.05672729 -0.01476271 -0.068277948 -0.057945702 -0.0098886024 -0.060570523 -0.056825079 -0.013856304 -0.071783632 -0.057945702 -0.0098886024 -0.060570523 -0.058056038 -0.0076247966 -0.065071747 -0.056825079 -0.013856304 -0.071783632 -0.057379972 -0.01694373 -0.053280123 -0.056076318 -0.018306045 -0.064435661 -0.055667762 -0.020256842 -0.061148655 -0.056825079 -0.013856304 -0.071783632 -0.058056038 -0.0076247966 -0.065071747 -0.057889748 -0.0088465773 -0.071399368 -0.047381334 -0.022770422 -0.051819153 -0.046443164 -0.021564044 -0.056613628 -0.047143225 -0.021292113 -0.051422525 -0.049243983 -0.022266624 -0.028260391 -0.047381334 -0.022770422 -0.051819153 -0.047143225 -0.021292113 -0.051422525 -0.051819049 -0.021579193 0.0053115701 -0.047143225 -0.021292113 -0.051422525 -0.05168514 -0.020138955 0.0090695759 -0.056076318 -0.018306045 -0.064435661 -0.057652205 -0.015529821 -0.054171585 -0.056657586 -0.016122021 -0.064342074 -0.05412389 0.0010100787 0.092629239 -0.062163603 0.0040659155 0.084765531 -0.054509901 -0.0015853783 0.091805428 -0.057379972 -0.01694373 -0.053280123 -0.057652205 -0.015529821 -0.054171585 -0.056076318 -0.018306045 -0.064435661 -0.061076678 0.01054123 0.085629568 -0.061536975 0.0078385612 0.085448831 -0.052874941 0.0087231547 0.093791626 -0.054219898 -0.02253635 -0.070373058 -0.056076318 -0.018306045 -0.064435661 -0.054488301 -0.021536767 -0.074268274 -0.056657586 -0.016122021 -0.064342074 -0.058103558 -0.01196349 -0.056000438 -0.05672729 -0.01476271 -0.068277948 -0.05511912 -0.0059937867 0.089778982 -0.054509901 -0.0015853783 0.091805428 -0.062844165 -0.00020914534 0.083172575 -0.061536975 0.0078385612 0.085448831 -0.062163603 0.0040659155 0.084765531 -0.05412389 0.0010100787 0.092629239 -0.053420786 0.0054525412 0.093510568 -0.061536975 0.0078385612 0.085448831 -0.05412389 0.0010100787 0.092629239 -0.056076318 -0.018306045 -0.064435661 -0.055746015 -0.018030982 -0.071692914 -0.054488301 -0.021536767 -0.074268274 -0.05672729 -0.01476271 -0.068277948 -0.058103558 -0.01196349 -0.056000438 -0.057945702 -0.0098886024 -0.060570523 -0.057652205 -0.015529821 -0.054171585 -0.057883963 -0.013759343 -0.055641003 -0.056657586 -0.016122021 -0.064342074 -0.05494111 -0.021312783 -0.066144332 -0.055667762 -0.020256842 -0.061148655 -0.054219898 -0.02253635 -0.070373058 -0.052874941 0.0087231547 0.093791626 -0.061536975 0.0078385612 0.085448831 -0.053420786 0.0054525412 0.093510568 -0.063420735 -0.0040110615 0.080686025 -0.05511912 -0.0059937867 0.089778982 -0.063119285 -0.0019722511 0.082152113 -0.055887435 -0.012744447 0.084582381 -0.063420735 -0.0040110615 0.080686025 -0.063679114 -0.0058630123 0.078928806 -0.057883963 -0.013759343 -0.055641003 -0.058103558 -0.01196349 -0.056000438 -0.056657586 -0.016122021 -0.064342074 -0.055667762 -0.020256842 -0.061148655 -0.056076318 -0.018306045 -0.064435661 -0.054219898 -0.02253635 -0.070373058 -0.063119285 -0.0019722511 0.082152113 -0.05511912 -0.0059937867 0.089778982 -0.062844165 -0.00020914534 0.083172575 -0.05511912 -0.0059937867 0.089778982 -0.063420735 -0.0040110615 0.080686025 -0.055724781 -0.011114785 0.086139217 -0.063420735 -0.0040110615 0.080686025 -0.055887435 -0.012744447 0.084582381 -0.055724781 -0.011114785 0.086139217 -0.062163603 0.0040659155 0.084765531 -0.062844165 -0.00020914534 0.083172575 -0.054509901 -0.0015853783 0.091805428 -0.057945702 -0.0098886024 -0.060570523 -0.058286242 -0.0069976067 -0.059006006 -0.058056038 -0.0076247966 -0.065071747 -0.034815498 -0.042338178 -0.13677037 -0.012059619 -0.045435283 -0.12740237 -0.035784572 -0.042919841 -0.13442746 0.0074355835 -0.025407616 -0.15310761 -0.021295039 -0.021334996 -0.16326013 0.0085375933 -0.023157546 -0.15425977 -0.033785935 -0.041593622 -0.13916786 -0.010437699 -0.044785373 -0.12982741 -0.034815498 -0.042338178 -0.13677037 0.0074355835 -0.025407616 -0.15310761 0.0058345878 -0.028320756 -0.15135969 -0.022586407 -0.024568789 -0.16126797 -0.016503414 -0.0054646456 -0.16879016 -0.015771227 -0.0021216122 -0.16923623 -0.010178399 -0.0042208908 -0.16705957 -0.015210591 0.0008506903 -0.16943985 -0.010178399 -0.0042208908 -0.16705957 -0.015771227 -0.0021216122 -0.16923623 -0.010437699 -0.044785373 -0.12982741 -0.033785935 -0.041593622 -0.13916786 -0.0082340185 -0.043645654 -0.1330529 -0.0031570494 -0.039836448 -0.14014485 -0.030048722 -0.037775751 -0.14736733 -0.029090237 -0.036521517 -0.14934953 0.0098788347 -0.020164292 -0.15556057 -0.019342039 -0.015759984 -0.16592683 -0.018779414 -0.013999727 -0.16659315 -0.056076318 -0.018306045 -0.064435661 -0.056657586 -0.016122021 -0.064342074 -0.055746015 -0.018030982 -0.071692914 -0.056825079 -0.013856304 -0.071783632 -0.057889748 -0.0088465773 -0.071399368 -0.056800179 -0.014162435 -0.077148579 -0.055746015 -0.018030982 -0.071692914 -0.056657586 -0.016122021 -0.064342074 -0.05672729 -0.01476271 -0.068277948 0.0032816541 -0.032345206 -0.14838712 -0.025778554 -0.03120934 -0.15578975 -0.023854122 -0.027366741 -0.15921451 -0.022586407 -0.024568789 -0.16126797 -0.021295039 -0.021334996 -0.16326013 0.0074355835 -0.025407616 -0.15310761 0.011846812 -0.01491856 -0.15727842 -0.018199049 -0.011933086 -0.16728348 -0.017515713 -0.0095465966 -0.16793941 -0.042987615 0.040781066 -0.072211437 -0.043819651 0.040062301 -0.069219686 -0.031437684 0.03987705 -0.071731076 -0.044568196 0.03946764 -0.066184223 -0.032866318 0.039296996 -0.068383463 -0.043819651 0.040062301 -0.069219686 -0.0031570494 -0.039836448 -0.14014485 -0.029090237 -0.036521517 -0.14934953 -0.0011478136 -0.037859872 -0.14282002 -0.045847796 0.038617834 -0.059663817 -0.033989057 0.038915809 -0.065263465 -0.044568196 0.03946764 -0.066184223 -0.044568196 0.03946764 -0.066184223 -0.033989057 0.038915809 -0.065263465 -0.032866318 0.039296996 -0.068383463 -0.021295039 -0.021334996 -0.16326013 -0.020600937 -0.01949686 -0.16423713 0.0085375933 -0.023157546 -0.15425977 -0.045847796 0.038617834 -0.059663817 -0.035358075 0.038566686 -0.060530551 -0.033989057 0.038915809 -0.065263465 0.0085375933 -0.023157546 -0.15425977 -0.020600937 -0.01949686 -0.16423713 -0.019342039 -0.015759984 -0.16592683 -0.036602128 0.038455311 -0.054204557 -0.035358075 0.038566686 -0.060530551 -0.0463298 0.038406461 -0.056414098 -0.0463298 0.038406461 -0.056414098 -0.035358075 0.038566686 -0.060530551 -0.045847796 0.038617834 -0.059663817 -0.026706444 -0.032837428 -0.15406848 0.0019357027 -0.034194216 -0.14674172 0.00035461597 -0.036166079 -0.14475751 -0.0068301358 0.051304858 -0.10960867 -0.014433816 0.051973611 -0.10662843 -0.0086286804 0.051095292 -0.10680627 -0.0086286804 0.051095292 -0.10680627 -0.014433816 0.051973611 -0.10662843 -0.010881617 0.050566051 -0.10336284 0.0085375933 -0.023157546 -0.15425977 -0.019342039 -0.015759984 -0.16592683 0.0098788347 -0.020164292 -0.15556057 -0.027593229 0.055062152 -0.11159778 -0.014433816 0.051973611 -0.10662843 -0.0068301358 0.051304858 -0.10960867 -0.042384848 -0.043229368 -0.11707186 -0.027085846 -0.045384608 -0.11751012 -0.019425498 -0.04640732 -0.11580545 -0.010881617 0.050566051 -0.10336284 -0.017842621 0.051222283 -0.10247133 -0.013300623 0.049609728 -0.099764191 -0.017842621 0.051222283 -0.10247133 -0.018310506 0.050319213 -0.099929653 -0.013300623 0.049609728 -0.099764191 -0.013300623 0.049609728 -0.099764191 -0.018310506 0.050319213 -0.099929653 -0.015456872 0.048476651 -0.096625291 -0.018310506 0.050319213 -0.099929653 -0.022130655 0.049473964 -0.09709999 -0.015456872 0.048476651 -0.096625291 -0.015456872 0.048476651 -0.096625291 -0.022130655 0.049473964 -0.09709999 -0.021449711 0.04491182 -0.087992311 -0.03823451 0.045352027 -0.085272066 -0.021449711 0.04491182 -0.087992311 -0.036274511 0.047413845 -0.090064503 -0.021449711 0.04491182 -0.087992311 -0.03823451 0.045352027 -0.085272066 -0.025657374 0.0426386 -0.081849247 0.012675334 -0.012358756 -0.15789221 -0.017515713 -0.0095465966 -0.16793941 -0.016503414 -0.0054646456 -0.16879016 -0.03823451 0.045352027 -0.085272066 -0.040570401 0.04305416 -0.079424717 -0.025657374 0.0426386 -0.081849247 -0.040570401 0.04305416 -0.079424717 -0.027336426 0.041808367 -0.079299979 -0.025657374 0.0426386 -0.081849247 -0.041704886 0.041965757 -0.076240376 -0.027336426 0.041808367 -0.079299979 -0.040570401 0.04305416 -0.079424717 -0.017515713 -0.0095465966 -0.16793941 0.012675334 -0.012358756 -0.15789221 0.011846812 -0.01491856 -0.15727842 -0.041704886 0.041965757 -0.076240376 -0.042987615 0.040781066 -0.072211437 -0.027336426 0.041808367 -0.079299979 -0.027336426 0.041808367 -0.079299979 -0.042987615 0.040781066 -0.072211437 -0.031437684 0.03987705 -0.071731076 -0.027085846 -0.045384608 -0.11751012 -0.040315997 -0.04387863 -0.12285253 -0.039297551 -0.043929845 -0.12555805 -0.031437684 0.03987705 -0.071731076 -0.043819651 0.040062301 -0.069219686 -0.032866318 0.039296996 -0.068383463 -0.04111645 -0.043721911 -0.12063542 -0.040315997 -0.04387863 -0.12285253 -0.027085846 -0.045384608 -0.11751012 -0.023172136 -0.045476027 -0.1237589 -0.03830231 -0.043823313 -0.12815329 -0.037387338 -0.04357972 -0.13051826 -0.0011478136 -0.037859872 -0.14282002 -0.028164398 -0.035191726 -0.15120843 0.00035461597 -0.036166079 -0.14475751 -0.039297551 -0.043929845 -0.12555805 -0.03830231 -0.043823313 -0.12815329 -0.023172136 -0.045476027 -0.1237589 -0.023172136 -0.045476027 -0.1237589 -0.016866179 -0.046457589 -0.11994258 -0.039297551 -0.043929845 -0.12555805 -0.025360117 0.055598948 -0.11761442 -0.0043561617 0.051217701 -0.11355776 -0.0028558671 0.050977927 -0.11600351 -0.019425498 -0.04640732 -0.11580545 -0.027085846 -0.045384608 -0.11751012 -0.016866179 -0.046457589 -0.11994258 -0.026767651 0.055367783 -0.1137687 -0.0068301358 0.051304858 -0.10960867 -0.025360117 0.055598948 -0.11761442 -0.026706444 -0.032837428 -0.15406848 -0.025778554 -0.03120934 -0.15578975 0.0019357027 -0.034194216 -0.14674172 0.0019357027 -0.034194216 -0.14674172 -0.025778554 -0.03120934 -0.15578975 0.0032816541 -0.032345206 -0.14838712 -0.025360117 0.055598948 -0.11761442 -0.0068301358 0.051304858 -0.10960867 -0.0043561617 0.051217701 -0.11355776 -0.021449711 0.04491182 -0.087992311 -0.022130655 0.049473964 -0.09709999 -0.036274511 0.047413845 -0.090064503 -0.0136352 -0.045938578 -0.12500857 -0.020823015 -0.045449633 -0.1252109 -0.037387338 -0.04357972 -0.13051826 -0.022130655 0.049473964 -0.09709999 -0.03344259 0.050480641 -0.096957959 -0.036274511 0.047413845 -0.090064503 -0.027593229 0.055062152 -0.11159778 -0.0068301358 0.051304858 -0.10960867 -0.026767651 0.055367783 -0.1137687 0.0032816541 -0.032345206 -0.14838712 -0.023854122 -0.027366741 -0.15921451 0.0047231689 -0.030162711 -0.15008906 -0.010437699 -0.044785373 -0.12982741 -0.012059619 -0.045435283 -0.12740237 -0.034815498 -0.042338178 -0.13677037 0.013598708 -0.0090889987 -0.15847242 -0.016503414 -0.0054646456 -0.16879016 -0.010178399 -0.0042208908 -0.16705957 -0.028757567 0.054452449 -0.10854499 -0.014433816 0.051973611 -0.10662843 -0.027593229 0.055062152 -0.11159778 -0.029898813 0.053694271 -0.10564139 -0.010881617 0.050566051 -0.10336284 -0.028757567 0.054452449 -0.10854499 -0.028757567 0.054452449 -0.10854499 -0.010881617 0.050566051 -0.10336284 -0.014433816 0.051973611 -0.10662843 0.013598708 -0.0090889987 -0.15847242 0.012675334 -0.012358756 -0.15789221 -0.016503414 -0.0054646456 -0.16879016 -0.031240767 0.052620623 -0.10228891 -0.017842621 0.051222283 -0.10247133 -0.029898813 0.053694271 -0.10564139 -0.029898813 0.053694271 -0.10564139 -0.017842621 0.051222283 -0.10247133 -0.010881617 0.050566051 -0.10336284 0.011846812 -0.01491856 -0.15727842 -0.018779414 -0.013999727 -0.16659315 -0.018199049 -0.011933086 -0.16728348 -0.005766666 -0.042005412 -0.13655691 -0.0082340185 -0.043645654 -0.1330529 -0.032379061 -0.040337738 -0.14237925 -0.031240767 0.052620623 -0.10228891 -0.018310506 0.050319213 -0.099929653 -0.017842621 0.051222283 -0.10247133 -0.03344259 0.050480641 -0.096957959 -0.022130655 0.049473964 -0.09709999 -0.031240767 0.052620623 -0.10228891 -0.031240767 0.052620623 -0.10228891 -0.022130655 0.049473964 -0.09709999 -0.018310506 0.050319213 -0.099929653 0.014316542 -0.0061641014 -0.15881774 -0.010178399 -0.0042208908 -0.16705957 -0.015210591 0.0008506903 -0.16943985 -0.0028558671 0.050977927 -0.11600351 -0.0043561617 0.051217701 -0.11355776 0.0052550216 0.044769324 -0.13041797 -0.030048722 -0.037775751 -0.14736733 -0.0031570494 -0.039836448 -0.14014485 -0.005766666 -0.042005412 -0.13655691 -0.0043561617 0.051217701 -0.11355776 -0.0068301358 0.051304858 -0.10960867 0.0052550216 0.044769324 -0.13041797 0.0052550216 0.044769324 -0.13041797 -0.0068301358 0.051304858 -0.10960867 -0.016063806 0.046815407 -0.096128985 -0.0068301358 0.051304858 -0.10960867 -0.0086286804 0.051095292 -0.10680627 -0.016063806 0.046815407 -0.096128985 0.014316542 -0.0061641014 -0.15881774 0.013598708 -0.0090889987 -0.15847242 -0.010178399 -0.0042208908 -0.16705957 -0.0086286804 0.051095292 -0.10680627 -0.010881617 0.050566051 -0.10336284 -0.016063806 0.046815407 -0.096128985 0.014316542 -0.0061641014 -0.15881774 -0.015210591 0.0008506903 -0.16943985 0.015012 -0.0027686779 -0.15900406 -0.042384848 -0.043229368 -0.11707186 -0.04111645 -0.043721911 -0.12063542 -0.027085846 -0.045384608 -0.11751012 -0.010881617 0.050566051 -0.10336284 -0.013300623 0.049609728 -0.099764191 -0.016063806 0.046815407 -0.096128985 -0.013300623 0.049609728 -0.099764191 -0.015456872 0.048476651 -0.096625291 -0.016063806 0.046815407 -0.096128985 0.015012 -0.0027686779 -0.15900406 -0.015210591 0.0008506903 -0.16943985 -0.014704397 0.0036467034 -0.16947497 -0.015456872 0.048476651 -0.096625291 -0.021449711 0.04491182 -0.087992311 -0.016063806 0.046815407 -0.096128985 -0.016063806 0.046815407 -0.096128985 -0.021449711 0.04491182 -0.087992311 -0.027490353 0.040386204 -0.079511918 -0.016866179 -0.046457589 -0.11994258 -0.027085846 -0.045384608 -0.11751012 -0.039297551 -0.043929845 -0.12555805 -0.021449711 0.04491182 -0.087992311 -0.025657374 0.0426386 -0.081849247 -0.027490353 0.040386204 -0.079511918 -0.037387338 -0.04357972 -0.13051826 -0.020823015 -0.045449633 -0.1252109 -0.023172136 -0.045476027 -0.1237589 -0.025657374 0.0426386 -0.081849247 -0.027336426 0.041808367 -0.079299979 -0.027490353 0.040386204 -0.079511918 -0.016866179 -0.046457589 -0.11994258 -0.023172136 -0.045476027 -0.1237589 -0.020823015 -0.045449633 -0.1252109 -0.027490353 0.040386204 -0.079511918 -0.027336426 0.041808367 -0.079299979 -0.031224234 0.038612582 -0.072779484 -0.027336426 0.041808367 -0.079299979 -0.031437684 0.03987705 -0.071731076 -0.031224234 0.038612582 -0.072779484 0.0058345878 -0.028320756 -0.15135969 0.0047231689 -0.030162711 -0.15008906 -0.022586407 -0.024568789 -0.16126797 -0.005766666 -0.042005412 -0.13655691 -0.032379061 -0.040337738 -0.14237925 -0.030048722 -0.037775751 -0.14736733 -0.020823015 -0.045449633 -0.1252109 -0.0136352 -0.045938578 -0.12500857 -0.016866179 -0.046457589 -0.11994258 -0.031437684 0.03987705 -0.071731076 -0.032866318 0.039296996 -0.068383463 -0.031224234 0.038612582 -0.072779484 -0.031224234 0.038612582 -0.072779484 -0.032866318 0.039296996 -0.068383463 -0.034990665 0.037209079 -0.062927648 -0.032866318 0.039296996 -0.068383463 -0.033989057 0.038915809 -0.065263465 -0.034990665 0.037209079 -0.062927648 -0.032379061 -0.040337738 -0.14237925 -0.0082340185 -0.043645654 -0.1330529 -0.033785935 -0.041593622 -0.13916786 -0.033989057 0.038915809 -0.065263465 -0.035358075 0.038566686 -0.060530551 -0.034990665 0.037209079 -0.062927648 -0.034990665 0.037209079 -0.062927648 -0.035358075 0.038566686 -0.060530551 -0.036619391 0.036976252 -0.055700269 -0.0011478136 -0.037859872 -0.14282002 -0.029090237 -0.036521517 -0.14934953 -0.028164398 -0.035191726 -0.15120843 -0.026706444 -0.032837428 -0.15406848 0.00035461597 -0.036166079 -0.14475751 -0.028164398 -0.035191726 -0.15120843 0.0098788347 -0.020164292 -0.15556057 -0.018779414 -0.013999727 -0.16659315 0.011846812 -0.01491856 -0.15727842 -0.035358075 0.038566686 -0.060530551 -0.036602128 0.038455311 -0.054204557 -0.036619391 0.036976252 -0.055700269 0.0047231689 -0.030162711 -0.15008906 -0.023854122 -0.027366741 -0.15921451 -0.022586407 -0.024568789 -0.16126797 -0.058284197 0.015586756 -0.020401362 -0.058679119 0.013852357 -0.021022875 -0.059122607 0.013928947 -0.021056127 -0.0136352 -0.045938578 -0.12500857 -0.037387338 -0.04357972 -0.13051826 -0.035784572 -0.042919841 -0.13442746 -0.012059619 -0.045435283 -0.12740237 -0.0136352 -0.045938578 -0.12500857 -0.035784572 -0.042919841 -0.13442746 -0.056349009 0.026145454 -0.0089156348 -0.058082949 0.021753829 -0.0061148782 -0.056538053 0.02618693 -0.0060717012 -0.0525674 0.027126487 -0.056583486 -0.053243835 0.02719125 -0.046577424 -0.051004186 0.030930737 -0.056191381 -0.057457145 0.026400568 0.0081909541 -0.056844492 0.03162539 0.023743803 -0.057176296 0.026330965 0.0033464993 -0.058497634 0.026971551 0.025249591 -0.056844492 0.03162539 0.023743803 -0.057457145 0.026400568 0.0081909541 -0.052472979 0.039325025 0.018021112 -0.051573884 0.039231218 0.0067109843 -0.053442929 0.037539538 0.016186742 -0.057879776 0.02330072 -0.001401201 -0.057050504 0.026303561 0.0014589108 -0.056859121 0.026261503 -0.0013740394 -0.054536566 0.035798088 0.017593067 -0.053442929 0.037539538 0.016186742 -0.054064382 0.034152899 0.0028117583 -0.058043685 0.017572111 -0.022815669 -0.058111001 0.017588157 -0.021805121 -0.058449127 0.019439524 -0.010333261 -0.056844492 0.03162539 0.023743803 -0.055075444 0.031891949 0.0032221184 -0.057176296 0.026330965 0.0033464993 -0.057989635 0.017558426 -0.023576532 -0.057719454 0.019266007 -0.020771261 -0.057495967 0.019216994 -0.023936609 -0.057989635 0.017558426 -0.023576532 -0.058449127 0.019439524 -0.010333261 -0.057719454 0.019266007 -0.020771261 -0.057989635 0.017558426 -0.023576532 -0.058043685 0.017572111 -0.022815669 -0.058449127 0.019439524 -0.010333261 -0.055853263 0.023107735 -0.03033126 -0.05526191 0.02589581 -0.02528882 -0.055325754 0.024690282 -0.030317185 -0.059122607 0.013928947 -0.021056127 -0.059240654 0.013954947 -0.019402299 -0.058284197 0.015586756 -0.020401362 -0.054536566 0.035798088 0.017593067 -0.054064382 0.034152899 0.0028117583 -0.056249447 0.03337431 0.0249923 -0.056249447 0.03337431 0.0249923 -0.054064382 0.034152899 0.0028117583 -0.055075444 0.031891949 0.0032221184 -0.056047022 0.023149507 -0.027430933 -0.05526191 0.02589581 -0.02528882 -0.055853263 0.023107735 -0.03033126 -0.055802882 0.026046379 -0.010245511 -0.056349009 0.026145454 -0.0089156348 -0.056252614 0.026123982 -0.010279052 -0.059134085 0.01120776 -0.029834772 -0.059336092 0.013979535 -0.018140895 -0.059240654 0.013954947 -0.019402299 -0.059072811 0.013919422 -0.02181761 -0.058111001 0.017588157 -0.021805121 -0.058043685 0.017572111 -0.022815669 -0.055802882 0.026046379 -0.010245511 -0.055895198 0.026067041 -0.0088806255 -0.056349009 0.026145454 -0.0089156348 -0.056213006 0.021970879 -0.030339736 -0.057405774 0.019197503 -0.025339052 -0.056406271 0.022017034 -0.027439244 -0.025013087 8.9023801e-05 -0.1663413 -0.028469121 0.0029721577 -0.16495392 -0.025888208 0.0043125669 -0.16599816 -0.043881062 0.002689539 -0.1561559 -0.048128542 0.0033323867 -0.15305966 -0.043130729 0.0056836857 -0.15664719 -0.059212159 0.019611839 0.0016225325 -0.059027772 0.019569553 -0.0014261027 -0.058938626 0.01954972 -0.0028286655 -0.057989635 0.017558426 -0.023576532 -0.057495967 0.019216994 -0.023936609 -0.057405774 0.019197503 -0.025339052 -0.057989635 0.017558426 -0.023576532 -0.057913166 0.017541014 -0.024574142 -0.058872651 0.013871286 -0.02458448 -0.059134085 0.01120776 -0.029834772 -0.059240654 0.013954947 -0.019402299 -0.059122607 0.013928947 -0.021056127 -0.01929502 -0.0046068546 -0.16804372 -0.025013087 8.9023801e-05 -0.1663413 -0.021463277 -0.0011172957 -0.16758251 -0.057405774 0.019197503 -0.025339052 -0.05783084 0.017522948 -0.025716195 -0.057913166 0.017541014 -0.024574142 -0.057405774 0.019197503 -0.025339052 -0.057913166 0.017541014 -0.024574142 -0.057989635 0.017558426 -0.023576532 -0.058108781 0.015411398 -0.02933635 -0.058607228 0.013812756 -0.028228058 -0.05758068 0.017466387 -0.029188458 -0.025888208 0.0043125669 -0.16599816 -0.028469121 0.0029721577 -0.16495392 -0.031328205 0.0052870279 -0.16359301 -0.057937533 0.014337926 -0.029093133 -0.058607228 0.013812756 -0.028228058 -0.058108781 0.015411398 -0.02933635 -0.043130729 0.0056836857 -0.15664719 -0.048128542 0.0033323867 -0.15305966 -0.0467005 0.01150839 -0.15332985 -0.059212159 0.019611839 0.0016225325 -0.058938626 0.01954972 -0.0028286655 -0.058810368 0.019515658 -0.0048213177 -0.059072811 0.013919422 -0.02181761 -0.058043685 0.017572111 -0.022815669 -0.058995336 0.013900658 -0.022827137 -0.058607228 0.013812756 -0.028228058 -0.057649992 0.017483674 -0.028216301 -0.05758068 0.017466387 -0.029188458 -0.055983379 0.026058597 -0.01431008 -0.056349009 0.026145454 -0.0089156348 -0.055883415 0.02603746 -0.015793908 -0.055983379 0.026058597 -0.01431008 -0.056252614 0.026123982 -0.010279052 -0.056349009 0.026145454 -0.0089156348 -0.059134085 0.01120776 -0.029834772 -0.059122607 0.013928947 -0.021056127 -0.059072811 0.013919422 -0.02181761 -0.03996193 0.0067285425 -0.1587029 -0.043881062 0.002689539 -0.1561559 -0.043130729 0.0056836857 -0.15664719 -0.058449127 0.019439524 -0.010333261 -0.061833266 0.01178305 0.0092248973 -0.059212159 0.019611839 0.0016225325 -0.039256401 0.0009181893 -0.15920712 -0.043881062 0.002689539 -0.1561559 -0.03996193 0.0067285425 -0.1587029 -0.059707023 0.019732188 0.010928834 -0.058497634 0.026971551 0.025249591 -0.057457145 0.026400568 0.0081909541 -0.058716748 0.019495137 -0.0062292637 -0.057183091 0.023824576 -0.0089989677 -0.058532462 0.019455137 -0.009031551 -0.059134085 0.01120776 -0.029834772 -0.059072811 0.013919422 -0.02181761 -0.058995336 0.013900658 -0.022827137 -0.057996076 0.014932983 -0.026367746 -0.05783084 0.017522948 -0.025716195 -0.057732563 0.01750128 -0.027076438 -0.057732563 0.01750128 -0.027076438 -0.05783084 0.017522948 -0.025716195 -0.057405774 0.019197503 -0.025339052 -0.058449127 0.019439524 -0.010333261 -0.058810368 0.019515658 -0.0048213177 -0.058716748 0.019495137 -0.0062292637 -0.058449127 0.019439524 -0.010333261 -0.059212159 0.019611839 0.0016225325 -0.058810368 0.019515658 -0.0048213177 -0.053243835 0.02719125 -0.046577424 -0.054845698 0.02579313 -0.031710587 -0.055148982 0.025865238 -0.026946152 -0.058872651 0.013871286 -0.02458448 -0.058941163 0.013888814 -0.023588054 -0.057989635 0.017558426 -0.023576532 -0.058355145 0.019411232 -0.011581151 -0.056252614 0.026123982 -0.010279052 -0.055983379 0.026058597 -0.01431008 -0.057405774 0.019197503 -0.025339052 -0.057649992 0.017483674 -0.028216301 -0.057732563 0.01750128 -0.027076438 -0.057041343 0.019114651 -0.030354183 -0.057405774 0.019197503 -0.025339052 -0.056213006 0.021970879 -0.030339736 -0.058635745 0.01225194 -0.032972746 -0.058995336 0.013900658 -0.022827137 -0.058941163 0.013888814 -0.023588054 -0.058635745 0.01225194 -0.032972746 -0.059134085 0.01120776 -0.029834772 -0.058995336 0.013900658 -0.022827137 -0.058355145 0.019411232 -0.011581151 -0.058449127 0.019439524 -0.010333261 -0.056252614 0.026123982 -0.010279052 -0.058635745 0.01225194 -0.032972746 -0.058941163 0.013888814 -0.023588054 -0.058872651 0.013871286 -0.02458448 -0.055883415 0.02603746 -0.015793908 -0.056349009 0.026145454 -0.0089156348 -0.05526191 0.02589581 -0.02528882 -0.057649992 0.017483674 -0.028216301 -0.057405774 0.019197503 -0.025339052 -0.05758068 0.017466387 -0.029188458 -0.058709983 0.013835145 -0.026774582 -0.058872651 0.013871286 -0.02458448 -0.057644188 0.016616181 -0.025255769 -0.021463277 -0.0011172957 -0.16758251 -0.025013087 8.9023801e-05 -0.1663413 -0.022398492 0.004012451 -0.1672757 -0.05758068 0.017466387 -0.029188458 -0.057405774 0.019197503 -0.025339052 -0.057041343 0.019114651 -0.030354183 -0.058449127 0.019439524 -0.010333261 -0.058716748 0.019495137 -0.0062292637 -0.058532462 0.019455137 -0.009031551 -0.036381528 0.00021952829 -0.16088617 -0.039256401 0.0009181893 -0.15920712 -0.03996193 0.0067285425 -0.1587029 -0.022398492 0.004012451 -0.1672757 -0.025013087 8.9023801e-05 -0.1663413 -0.025888208 0.0043125669 -0.16599816 -0.061656572 0.013265171 0.012528684 -0.058497634 0.026971551 0.025249591 -0.059707023 0.019732188 0.010928834 -0.054150973 0.025110148 -0.044497233 -0.056941774 0.01909253 -0.031757399 -0.054845698 0.02579313 -0.031710587 -0.058635745 0.01225194 -0.032972746 -0.058872651 0.013871286 -0.02458448 -0.058709983 0.013835145 -0.026774582 -0.036381528 0.00021952829 -0.16088617 -0.03996193 0.0067285425 -0.1587029 -0.037582759 0.0066636042 -0.16015719 -0.01929502 -0.0046068546 -0.16804372 -0.021463277 -0.0011172957 -0.16758251 -0.015771227 -0.0021216122 -0.16923623 -0.03360403 0.0041739489 -0.16249073 -0.036381528 0.00021952829 -0.16088617 -0.037582759 0.0066636042 -0.16015719 -0.05758068 0.017466387 -0.029188458 -0.057041343 0.019114651 -0.030354183 -0.056941774 0.01909253 -0.031757399 -0.015771227 -0.0021216122 -0.16923623 -0.021463277 -0.0011172957 -0.16758251 -0.022398492 0.004012451 -0.1672757 -0.033702046 0.00014177064 -0.16237025 -0.036381528 0.00021952829 -0.16088617 -0.03360403 0.0041739489 -0.16249073 -0.016503414 -0.0054646456 -0.16879016 -0.01929502 -0.0046068546 -0.16804372 -0.015771227 -0.0021216122 -0.16923623 -0.058108781 0.015411398 -0.02933635 -0.05758068 0.017466387 -0.029188458 -0.057596065 0.016813518 -0.031224605 -0.054150973 0.025110148 -0.044497233 -0.054845698 0.02579313 -0.031710587 -0.053243835 0.02719125 -0.046577424 -0.058635745 0.01225194 -0.032972746 -0.058709983 0.013835145 -0.026774582 -0.058607228 0.013812756 -0.028228058 -0.015771227 -0.0021216122 -0.16923623 -0.022398492 0.004012451 -0.1672757 -0.019364912 0.0036210699 -0.16826056 -0.058108781 0.015411398 -0.02933635 -0.057596065 0.016813518 -0.031224605 -0.057365116 0.015922716 -0.031194102 -0.015210591 0.0008506903 -0.16943985 -0.015771227 -0.0021216122 -0.16923623 -0.019364912 0.0036210699 -0.16826056 -0.057377584 0.017421866 -0.031983465 -0.05758068 0.017466387 -0.029188458 -0.056941774 0.01909253 -0.031757399 -0.057782393 0.01430401 -0.031199178 -0.057937533 0.014337926 -0.029093133 -0.058108781 0.015411398 -0.02933635 -0.057782393 0.01430401 -0.031199178 -0.058108781 0.015411398 -0.02933635 -0.057525486 0.015304265 -0.031195642 -0.056941774 0.01909253 -0.031757399 -0.054150973 0.025110148 -0.044497233 -0.056879248 0.01753024 -0.037792422 -0.057176296 0.026330965 0.0033464993 -0.057382613 0.026382513 0.0067039961 -0.057457145 0.026400568 0.0081909541 -0.014704397 0.0036467034 -0.16947497 -0.015210591 0.0008506903 -0.16943985 -0.019364912 0.0036210699 -0.16826056 -0.02963151 -0.0041368259 -0.16400442 -0.033702046 0.00014177064 -0.16237025 -0.028469121 0.0029721577 -0.16495392 -0.028469121 0.0029721577 -0.16495392 -0.033702046 0.00014177064 -0.16237025 -0.03360403 0.0041739489 -0.16249073 -0.031328205 0.0052870279 -0.16359301 -0.03360403 0.0041739489 -0.16249073 -0.037582759 0.0066636042 -0.16015719 -0.028469121 0.0029721577 -0.16495392 -0.03360403 0.0041739489 -0.16249073 -0.031328205 0.0052870279 -0.16359301 -0.025013087 8.9023801e-05 -0.1663413 -0.02963151 -0.0041368259 -0.16400442 -0.028469121 0.0029721577 -0.16495392 -0.059536979 0.023519266 0.047897577 -0.059897669 0.02593974 0.042225849 -0.05875314 0.025338516 0.038852651 -0.060571235 0.024427887 0.048902277 -0.059897669 0.02593974 0.042225849 -0.059536979 0.023519266 0.047897577 -0.058449127 0.019439524 -0.010333261 -0.058355145 0.019411232 -0.011581151 -0.058251124 0.019387381 -0.013107479 -0.058635745 0.01225194 -0.032972746 -0.058607228 0.013812756 -0.028228058 -0.058330882 0.013750347 -0.031995885 -0.056879248 0.01753024 -0.037792422 -0.057377584 0.017421866 -0.031983465 -0.056941774 0.01909253 -0.031757399 -0.062946066 0.015874669 0.057093188 -0.06201883 0.019646402 0.055880148 -0.061246805 0.017660918 0.054993566 -0.06127096 0.022307221 0.053452671 -0.060571235 0.024427887 0.048902277 -0.059822958 0.022671156 0.050157364 -0.056512747 0.02342012 -0.019739777 -0.055883415 0.02603746 -0.015793908 -0.055714838 0.025601346 -0.020334924 -0.059822958 0.022671156 0.050157364 -0.060571235 0.024427887 0.048902277 -0.059536979 0.023519266 0.047897577 -0.058497634 0.026971551 0.025249591 -0.057890896 0.026147425 0.024954693 -0.059409313 0.026606197 0.036905594 -0.059409313 0.026606197 0.036905594 -0.057890896 0.026147425 0.024954693 -0.05875314 0.025338516 0.038852651 -0.058330882 0.013750347 -0.031995885 -0.056879248 0.01753024 -0.037792422 -0.058635745 0.01225194 -0.032972746 -0.060396649 0.020806219 0.053025223 -0.06127096 0.022307221 0.053452671 -0.059822958 0.022671156 0.050157364 -0.056879248 0.01753024 -0.037792422 -0.058330882 0.013750347 -0.031995885 -0.057377584 0.017421866 -0.031983465 -0.06201883 0.019646402 0.055880148 -0.06127096 0.022307221 0.053452671 -0.060396649 0.020806219 0.053025223 -0.062946066 0.015874669 0.057093188 -0.061246805 0.017660918 0.054993566 -0.062407989 0.012280572 0.055821981 -0.057914328 0.023696298 0.00070684857 -0.057382613 0.026382513 0.0067039961 -0.057176296 0.026330965 0.0033464993 -0.058251124 0.019387381 -0.013107479 -0.057754051 0.020904966 -0.013705475 -0.057564124 0.020863252 -0.016482094 -0.05526191 0.02589581 -0.02528882 -0.055714838 0.025601346 -0.020334924 -0.055883415 0.02603746 -0.015793908 -0.059897669 0.02593974 0.042225849 -0.059409313 0.026606197 0.036905594 -0.05875314 0.025338516 0.038852651 -0.058538094 0.01768337 -0.015855599 -0.061833266 0.01178305 0.0092248973 -0.058449127 0.019439524 -0.010333261 -0.057977457 0.019327937 -0.017064152 -0.058251124 0.019387381 -0.013107479 -0.057564124 0.020863252 -0.016482094 -0.059134085 0.01120776 -0.029834772 -0.061833266 0.01178305 0.0092248973 -0.05959636 0.014035506 -0.014357092 -0.061246805 0.017660918 0.054993566 -0.06201883 0.019646402 0.055880148 -0.060396649 0.020806219 0.053025223 -0.059622027 0.019712014 0.0094008008 -0.059138816 0.021231906 0.0088016912 -0.058996294 0.021198494 0.0060213483 -0.056859121 0.026261503 -0.0013740394 -0.057050504 0.026303561 0.0014589108 -0.057176296 0.026330965 0.0033464993 -0.056776602 0.0222196 -0.02147324 -0.055883415 0.02603746 -0.015793908 -0.056512747 0.02342012 -0.019739777 -0.057914328 0.023696298 0.00070684857 -0.059347235 0.019651359 0.0039499253 -0.057382613 0.026382513 0.0067039961 -0.057873495 0.019305378 -0.018551912 -0.055883415 0.02603746 -0.015793908 -0.056776602 0.0222196 -0.02147324 -0.058449127 0.019439524 -0.010333261 -0.058251124 0.019387381 -0.013107479 -0.057977457 0.019327937 -0.017064152 -0.05827146 0.019418232 -0.0061959238 -0.056707647 0.023748815 -0.0089662047 -0.058716748 0.019495137 -0.0062292637 -0.059416823 0.019664278 0.0054387012 -0.059622027 0.019712014 0.0094008008 -0.058996294 0.021198494 0.0060213483 -0.058449127 0.019439524 -0.010333261 -0.058477473 0.017671047 -0.016660988 -0.058538094 0.01768337 -0.015855599 -0.058716748 0.019495137 -0.0062292637 -0.056707647 0.023748815 -0.0089662047 -0.057183091 0.023824576 -0.0089989677 -0.059212159 0.019611839 0.0016225325 -0.059707023 0.019732188 0.010928834 -0.059622027 0.019712014 0.0094008008 -0.05959636 0.014035506 -0.014357092 -0.061833266 0.01178305 0.0092248973 -0.058538094 0.01768337 -0.015855599 -0.045763362 0.04028251 -0.11884023 -0.0467005 0.01150839 -0.15332985 -0.048128542 0.0033323867 -0.15305966 -0.045763362 0.04028251 -0.11884023 -0.048128542 0.0033323867 -0.15305966 -0.048855804 -0.00037016207 -0.15224588 -0.058449127 0.019439524 -0.010333261 -0.057977457 0.019327937 -0.017064152 -0.057873495 0.019305378 -0.018551912 -0.05834784 0.017639849 -0.018482031 -0.058477473 0.017671047 -0.016660988 -0.058449127 0.019439524 -0.010333261 -0.04573549 0.04147356 -0.11696089 -0.04522964 0.041633852 -0.12142804 -0.045763362 0.04028251 -0.11884023 -0.05526191 0.02589581 -0.02528882 -0.055148982 0.025865238 -0.026946152 -0.055547014 0.024738308 -0.026957355 -0.059212159 0.019611839 0.0016225325 -0.059622027 0.019712014 0.0094008008 -0.059416823 0.019664278 0.0054387012 -0.05676939 0.026239501 -0.0027762982 -0.056859121 0.026261503 -0.0013740394 -0.057176296 0.026330965 0.0033464993 -0.05676939 0.026239501 -0.0027762982 -0.057176296 0.026330965 0.0033464993 -0.056349009 0.026145454 -0.0089156348 -0.045763362 0.04028251 -0.11884023 -0.048855804 -0.00037016207 -0.15224588 -0.056420371 -0.022050351 -0.11884869 -0.056420371 -0.022050351 -0.11884869 -0.048855804 -0.00037016207 -0.15224588 -0.049902491 -0.0052577103 -0.1504124 -0.058449127 0.019439524 -0.010333261 -0.058275383 0.017624252 -0.019506328 -0.05834784 0.017639849 -0.018482031 -0.04522964 0.041633852 -0.12142804 -0.044730015 0.041088864 -0.12656951 -0.045763362 0.04028251 -0.11884023 -0.061656572 0.013265171 0.012528684 -0.059707023 0.019732188 0.010928834 -0.059212159 0.019611839 0.0016225325 -0.056420371 -0.022050351 -0.11884869 -0.055899248 -0.023326049 -0.12518153 -0.05662863 -0.023317145 -0.11896765 -0.05863104 0.016189951 -0.019908095 -0.059336092 0.013979535 -0.018140895 -0.058477473 0.017671047 -0.016660988 -0.056627218 0.026205663 -0.0047679418 -0.05676939 0.026239501 -0.0027762982 -0.056349009 0.026145454 -0.0089156348 -0.059212159 0.019611839 0.0016225325 -0.059416823 0.019664278 0.0054387012 -0.059347235 0.019651359 0.0039499253 -0.058449127 0.019439524 -0.010333261 -0.057873495 0.019305378 -0.018551912 -0.057719454 0.019266007 -0.020771261 -0.05676939 0.026239501 -0.0027762982 -0.056627218 0.026205663 -0.0047679418 -0.058810368 0.019515658 -0.0048213177 -0.058165587 0.017600073 -0.021044185 -0.058275383 0.017624252 -0.019506328 -0.058449127 0.019439524 -0.010333261 -0.056420371 -0.022050351 -0.11884869 -0.049902491 -0.0052577103 -0.1504124 -0.050750863 -0.008883005 -0.14842999 -0.058152817 0.022738464 -0.00027007872 -0.0579747 0.021522513 -0.0013811837 -0.059027772 0.019569553 -0.0014261027 -0.056538053 0.02618693 -0.0060717012 -0.056627218 0.026205663 -0.0047679418 -0.056349009 0.026145454 -0.0089156348 -0.044730015 0.041088864 -0.12656951 -0.04439323 0.039723266 -0.13151263 -0.045763362 0.04028251 -0.11884023 -0.055325754 0.024690282 -0.030317185 -0.05526191 0.02589581 -0.02528882 -0.055547014 0.024738308 -0.026957355 -0.059336092 0.013979535 -0.018140895 -0.058861975 0.014775881 -0.015479758 -0.058755763 0.014752747 -0.016987028 -0.059336092 0.013979535 -0.018140895 -0.05959636 0.014035506 -0.014357092 -0.058861975 0.014775881 -0.015479758 -0.058275383 0.017624252 -0.019506328 -0.058165587 0.017600073 -0.021044185 -0.058156949 0.015895274 -0.021016998 -0.058449127 0.019439524 -0.010333261 -0.058111001 0.017588157 -0.021805121 -0.058165587 0.017600073 -0.021044185 -0.058810368 0.019515658 -0.0048213177 -0.058938626 0.01954972 -0.0028286655 -0.05676939 0.026239501 -0.0027762982 -0.05863104 0.016189951 -0.019908095 -0.058477473 0.017671047 -0.016660988 -0.05834784 0.017639849 -0.018482031 -0.056420371 -0.022050351 -0.11884869 -0.055504628 -0.022923132 -0.12801194 -0.055899248 -0.023326049 -0.12518153 -0.056406271 0.022017034 -0.027439244 -0.057405774 0.019197503 -0.025339052 -0.05526191 0.02589581 -0.02528882 -0.057719454 0.019266007 -0.020771261 -0.056414034 0.021641545 -0.022475684 -0.05666019 0.022034761 -0.023920039 -0.059212159 0.019611839 0.0016225325 -0.058152817 0.022738464 -0.00027007872 -0.059027772 0.019569553 -0.0014261027 -0.059134085 0.01120776 -0.029834772 -0.05959636 0.014035506 -0.014357092 -0.059336092 0.013979535 -0.018140895 -0.053243835 0.02719125 -0.046577424 -0.055148982 0.025865238 -0.026946152 -0.05526191 0.02589581 -0.02528882 -0.061833266 0.01178305 0.0092248973 -0.061656572 0.013265171 0.012528684 -0.059212159 0.019611839 0.0016225325 -0.056406271 0.022017034 -0.027439244 -0.05526191 0.02589581 -0.02528882 -0.056047022 0.023149507 -0.027430933 -0.057495967 0.019216994 -0.023936609 -0.057719454 0.019266007 -0.020771261 -0.05666019 0.022034761 -0.023920039 -0.04439323 0.039723266 -0.13151263 -0.044213492 0.037493907 -0.13637698 -0.045763362 0.04028251 -0.11884023 -0.058211952 0.013746775 -0.027487537 -0.058607228 0.013812756 -0.028228058 -0.058709983 0.013835145 -0.026774582 -0.057386525 0.01744622 -0.025683042 -0.057468917 0.017464302 -0.024541069 -0.057913166 0.017541014 -0.024574142 -0.057386525 0.01744622 -0.025683042 -0.057913166 0.017541014 -0.024574142 -0.05783084 0.017522948 -0.025716195 -0.056420371 -0.022050351 -0.11884869 -0.050750863 -0.008883005 -0.14842999 -0.051907014 -0.013329759 -0.14499351 -0.058893215 0.019569268 0.0039825123 -0.057382613 0.026382513 0.0067039961 -0.059347235 0.019651359 0.0039499253 -0.058893215 0.019569268 0.0039825123 -0.056922097 0.026304837 0.0067390194 -0.057382613 0.026382513 0.0067039961 -0.056420371 -0.022050351 -0.11884869 -0.054974031 -0.022059442 -0.13133223 -0.055504628 -0.022923132 -0.12801194 -0.057457145 0.026400568 0.0081909541 -0.05925997 0.019655297 0.010961868 -0.059707023 0.019732188 0.010928834 -0.057010893 0.026323631 0.00822361 -0.05925997 0.019655297 0.010961868 -0.057457145 0.026400568 0.0081909541 -0.044213492 0.037493907 -0.13637698 -0.044191167 0.035400353 -0.13967329 -0.045763362 0.04028251 -0.11884023 -0.056420371 -0.022050351 -0.11884869 -0.051907014 -0.013329759 -0.14499351 -0.052426536 -0.015140985 -0.14317268 -0.044191167 0.035400353 -0.13967329 -0.044246305 0.033460934 -0.1420726 -0.045763362 0.04028251 -0.11884023 -0.056420371 -0.022050351 -0.11884869 -0.054239471 -0.020465428 -0.13534226 -0.054974031 -0.022059442 -0.13133223 -0.056177553 0.026127711 -0.0047344016 -0.058365054 0.019438704 -0.0047880937 -0.058810368 0.019515658 -0.0048213177 -0.044246305 0.033460934 -0.1420726 -0.044383999 0.030858258 -0.14473601 -0.045763362 0.04028251 -0.11884023 -0.056420371 -0.022050351 -0.11884869 -0.052426536 -0.015140985 -0.14317268 -0.053201992 -0.01762541 -0.14012966 -0.056627218 0.026205663 -0.0047679418 -0.056177553 0.026127711 -0.0047344016 -0.058810368 0.019515658 -0.0048213177 -0.044383999 0.030858258 -0.14473601 -0.04464912 0.027489586 -0.14742894 -0.045763362 0.04028251 -0.11884023 -0.056420371 -0.022050351 -0.11884869 -0.053201992 -0.01762541 -0.14012966 -0.054239471 -0.020465428 -0.13534226 -0.04464912 0.027489586 -0.14742894 -0.044902414 0.024918338 -0.14904569 -0.045763362 0.04028251 -0.11884023 -0.05666019 0.022034761 -0.023920039 -0.056414034 0.021641545 -0.022475684 -0.05621412 0.021945337 -0.023887467 -0.044902414 0.024918338 -0.14904569 -0.045281287 0.021554979 -0.15074477 -0.045763362 0.04028251 -0.11884023 -0.057274438 0.019189158 -0.020737993 -0.056414034 0.021641545 -0.022475684 -0.057719454 0.019266007 -0.020771261 -0.045763362 0.04028251 -0.11884023 -0.045281287 0.021554979 -0.15074477 -0.045822222 0.017396228 -0.15221918 -0.055714838 0.025601346 -0.020334924 -0.054804973 0.025814552 -0.025254449 -0.055578232 0.024770064 -0.019699132 -0.045763362 0.04028251 -0.11884023 -0.045822222 0.017396228 -0.15221918 -0.0467005 0.01150839 -0.15332985 -0.060871437 0.01943038 0.077852555 -0.060186747 0.025017854 0.070499428 -0.062089041 0.017550977 0.072054818 -0.059012808 0.029420624 0.065096237 -0.058984257 0.030050427 0.054160096 -0.060313448 0.026158765 0.059484687 -0.060186747 0.025017854 0.070499428 -0.059012298 0.028487269 0.070047952 -0.059012808 0.029420624 0.065096237 -0.056512747 0.02342012 -0.019739777 -0.055714838 0.025601346 -0.020334924 -0.055578232 0.024770064 -0.019699132 -0.061407473 0.012754806 0.082670785 -0.060506348 0.0178285 0.081962906 -0.061623316 0.015573569 0.078623533 -0.05985935 0.027479362 0.053466078 -0.058984257 0.030050427 0.054160096 -0.058586542 0.030092414 0.042664871 -0.058586542 0.030092414 0.042664871 -0.056249447 0.03337431 0.0249923 -0.056844492 0.03162539 0.023743803 -0.054804973 0.025814552 -0.025254449 -0.055714838 0.025601346 -0.020334924 -0.05526191 0.02589581 -0.02528882 -0.058586542 0.030092414 0.042664871 -0.057275131 0.032977648 0.038461316 -0.056249447 0.03337431 0.0249923 -0.056461483 0.034241714 0.070032045 -0.056144636 0.035354245 0.06683366 -0.057872377 0.032376647 0.062557928 -0.060939595 0.012867552 0.012629473 -0.057890896 0.026147425 0.024954693 -0.061656572 0.013265171 0.012528684 -0.057890896 0.026147425 0.024954693 -0.058497634 0.026971551 0.025249591 -0.061656572 0.013265171 0.012528684 -0.060571235 0.024427887 0.048902277 -0.05985935 0.027479362 0.053466078 -0.059897669 0.02593974 0.042225849 -0.060313448 0.026158765 0.059484687 -0.058984257 0.030050427 0.054160096 -0.05985935 0.027479362 0.053466078 -0.060531486 0.025136601 0.06450358 -0.059012808 0.029420624 0.065096237 -0.060313448 0.026158765 0.059484687 -0.0525674 0.027126487 -0.056583486 -0.052810263 0.026226349 -0.04587033 -0.053243835 0.02719125 -0.046577424 -0.051592436 0.026340326 -0.062383793 -0.052810263 0.026226349 -0.04587033 -0.0525674 0.027126487 -0.056583486 -0.055148982 0.025865238 -0.026946152 -0.055098735 0.024660651 -0.026923925 -0.055547014 0.024738308 -0.026957355 -0.054697335 0.0257864 -0.02691233 -0.055098735 0.024660651 -0.026923925 -0.055148982 0.025865238 -0.026946152 -0.055547014 0.024738308 -0.026957355 -0.054876573 0.024612976 -0.030283794 -0.055325754 0.024690282 -0.030317185 -0.055098735 0.024660651 -0.026923925 -0.054876573 0.024612976 -0.030283794 -0.055547014 0.024738308 -0.026957355 -0.057754051 0.020904966 -0.013705475 -0.058251124 0.019387381 -0.013107479 -0.057805844 0.01931054 -0.013074022 -0.05730832 0.020827677 -0.013672072 -0.057754051 0.020904966 -0.013705475 -0.057805844 0.01931054 -0.013074022 -0.057977457 0.019327937 -0.017064152 -0.057428587 0.01922855 -0.01851867 -0.057873495 0.019305378 -0.018551912 -0.057532448 0.019251032 -0.017030945 -0.057428587 0.01922855 -0.01851867 -0.057977457 0.019327937 -0.017064152 -0.0579747 0.021522513 -0.0013811837 -0.058582671 0.019492695 -0.0013927504 -0.059027772 0.019569553 -0.0014261027 -0.058038216 0.032316457 0.056440804 -0.057191841 0.033908471 0.046561904 -0.058984257 0.030050427 0.054160096 -0.058722589 0.023814075 0.082844511 -0.058430206 0.025371978 0.081880547 -0.060015369 0.02285024 0.077427201 -0.062089041 0.017550977 0.072054818 -0.060186747 0.025017854 0.070499428 -0.061335064 0.021726083 0.06847243 -0.058861975 0.014775881 -0.015479758 -0.05959636 0.014035506 -0.014357092 -0.059152443 0.013958854 -0.014323977 -0.062802292 0.016529938 0.064323567 -0.060313448 0.026158765 0.059484687 -0.06201883 0.019646402 0.055880148 -0.058984257 0.030050427 0.054160096 -0.057191841 0.033908471 0.046561904 -0.057275131 0.032977648 0.038461316 -0.058586542 0.030092414 0.042664871 -0.056844492 0.03162539 0.023743803 -0.058497634 0.026971551 0.025249591 -0.057873495 0.019305378 -0.018551912 -0.057274438 0.019189158 -0.020737993 -0.057719454 0.019266007 -0.020771261 -0.057390019 0.019232899 -0.019062199 -0.057274438 0.019189158 -0.020737993 -0.057873495 0.019305378 -0.018551912 -0.057176296 0.026330965 0.0033464993 -0.057448827 0.023618523 0.00073910633 -0.057914328 0.023696298 0.00070684857 -0.060506348 0.0178285 0.081962906 -0.059306934 0.020659644 0.084227122 -0.058722589 0.023814075 0.082844511 -0.056723326 0.026253974 0.0033811748 -0.057448827 0.023618523 0.00073910633 -0.057176296 0.026330965 0.0033464993 -0.058765825 0.019534692 0.0016561396 -0.057694316 0.022659916 -0.00023587784 -0.058152817 0.022738464 -0.00027007872 -0.058765825 0.019534692 0.0016561396 -0.058152817 0.022738464 -0.00027007872 -0.059212159 0.019611839 0.0016225325 -0.060024083 0.016625129 0.085241139 -0.059306934 0.020659644 0.084227122 -0.060506348 0.0178285 0.081962906 -0.062351879 0.011774655 0.078644611 -0.061407473 0.012754806 0.082670785 -0.061623316 0.015573569 0.078623533 -0.056898531 0.032558214 0.073709555 -0.056461483 0.034241714 0.070032045 -0.059012808 0.029420624 0.065096237 -0.056088358 0.026109448 -0.00603793 -0.056177553 0.026127711 -0.0047344016 -0.056627218 0.026205663 -0.0047679418 -0.056088358 0.026109448 -0.00603793 -0.056627218 0.026205663 -0.0047679418 -0.056538053 0.02618693 -0.0060717012 -0.056707647 0.023748815 -0.0089662047 -0.058082301 0.019377168 -0.0089975204 -0.058532462 0.019455137 -0.009031551 -0.057183091 0.023824576 -0.0089989677 -0.056707647 0.023748815 -0.0089662047 -0.058532462 0.019455137 -0.009031551 -0.059012808 0.029420624 0.065096237 -0.056461483 0.034241714 0.070032045 -0.057872377 0.032376647 0.062557928 -0.063617229 0.012543985 0.064019047 -0.063406348 0.011731044 0.070675239 -0.062802292 0.016529938 0.064323567 -0.060186747 0.025017854 0.070499428 -0.059012808 0.029420624 0.065096237 -0.060531486 0.025136601 0.06450358 -0.060015369 0.02285024 0.077427201 -0.059012298 0.028487269 0.070047952 -0.060186747 0.025017854 0.070499428 -0.057405774 0.019197503 -0.025339052 -0.054804973 0.025814552 -0.025254449 -0.05526191 0.02589581 -0.02528882 -0.060313448 0.026158765 0.059484687 -0.06127096 0.022307221 0.053452671 -0.06201883 0.019646402 0.055880148 -0.056951895 0.01911854 -0.025305046 -0.054804973 0.025814552 -0.025254449 -0.057405774 0.019197503 -0.025339052 -0.056349009 0.026145454 -0.0089156348 -0.057602759 0.021651486 -0.006077515 -0.058082949 0.021753829 -0.0061148782 -0.062946066 0.015874669 0.057093188 -0.062802292 0.016529938 0.064323567 -0.06201883 0.019646402 0.055880148 -0.055895198 0.026067041 -0.0088806255 -0.057602759 0.021651486 -0.006077515 -0.056349009 0.026145454 -0.0089156348 -0.059012808 0.029420624 0.065096237 -0.057872377 0.032376647 0.062557928 -0.058038216 0.032316457 0.056440804 -0.057996076 0.014932983 -0.026367746 -0.057386525 0.01744622 -0.025683042 -0.05783084 0.017522948 -0.025716195 -0.059409313 0.026606197 0.036905594 -0.058586542 0.030092414 0.042664871 -0.058497634 0.026971551 0.025249591 -0.057041343 0.019114651 -0.030354183 -0.056496371 0.019015668 -0.031724036 -0.056941774 0.01909253 -0.031757399 -0.056596622 0.019037805 -0.030320985 -0.056496371 0.019015668 -0.031724036 -0.057041343 0.019114651 -0.030354183 -0.057468917 0.017464302 -0.024541069 -0.058374159 0.013781775 -0.025260041 -0.058872651 0.013871286 -0.02458448 -0.057913166 0.017541014 -0.024574142 -0.057468917 0.017464302 -0.024541069 -0.058872651 0.013871286 -0.02458448 -0.061623316 0.015573569 0.078623533 -0.060871437 0.01943038 0.077852555 -0.062089041 0.017550977 0.072054818 -0.059336092 0.013979535 -0.018140895 -0.058797363 0.013878324 -0.019369155 -0.059240654 0.013954947 -0.019402299 -0.058867492 0.013893614 -0.018383959 -0.058797363 0.013878324 -0.019369155 -0.059336092 0.013979535 -0.018140895 -0.056496371 0.019015668 -0.031724036 -0.054384343 0.025717953 -0.031675901 -0.054845698 0.02579313 -0.031710587 -0.056941774 0.01909253 -0.031757399 -0.056496371 0.019015668 -0.031724036 -0.054845698 0.02579313 -0.031710587 -0.057228755 0.031151606 0.076017991 -0.056898531 0.032558214 0.073709555 -0.059012298 0.028487269 0.070047952 -0.059012298 0.028487269 0.070047952 -0.056898531 0.032558214 0.073709555 -0.059012808 0.029420624 0.065096237 -0.058722589 0.023814075 0.082844511 -0.060015369 0.02285024 0.077427201 -0.060871437 0.01943038 0.077852555 -0.059012808 0.029420624 0.065096237 -0.058038216 0.032316457 0.056440804 -0.058984257 0.030050427 0.054160096 -0.058156949 0.015895274 -0.021016998 -0.057830807 0.01754747 -0.019472985 -0.058275383 0.017624252 -0.019506328 -0.058984257 0.030050427 0.054160096 -0.057275131 0.032977648 0.038461316 -0.058586542 0.030092414 0.042664871 -0.058043685 0.017572111 -0.022815669 -0.058551837 0.013824078 -0.022793883 -0.058995336 0.013900658 -0.022827137 -0.063617229 0.012543985 0.064019047 -0.062802292 0.016529938 0.064323567 -0.062946066 0.015874669 0.057093188 -0.057539947 0.017483175 -0.023542926 -0.058551837 0.013824078 -0.022793883 -0.058043685 0.017572111 -0.022815669 -0.055433959 0.025960041 -0.015760444 -0.055533726 0.025980702 -0.014276483 -0.055983379 0.026058597 -0.01431008 -0.055433959 0.025960041 -0.015760444 -0.055983379 0.026058597 -0.01431008 -0.055883415 0.02603746 -0.015793908 -0.059347235 0.019651359 0.0039499253 -0.058765825 0.019534692 0.0016561396 -0.059212159 0.019611839 0.0016225325 -0.058867231 0.019557942 0.0034731722 -0.058765825 0.019534692 0.0016561396 -0.059347235 0.019651359 0.0039499253 -0.055405341 0.02303051 -0.030297814 -0.055599995 0.023072554 -0.027397472 -0.056047022 0.023149507 -0.027430933 -0.055405341 0.02303051 -0.030297814 -0.056047022 0.023149507 -0.027430933 -0.055853263 0.023107735 -0.03033126 -0.058532462 0.019455137 -0.009031551 -0.057993859 0.019357715 -0.010299274 -0.058449127 0.019439524 -0.010333261 -0.058082301 0.019377168 -0.0089975204 -0.057993859 0.019357715 -0.010299274 -0.058532462 0.019455137 -0.009031551 -0.059707023 0.019732188 0.010928834 -0.059177093 0.019635167 0.0094341729 -0.059622027 0.019712014 0.0094008008 -0.05925997 0.019655297 0.010961868 -0.059177093 0.019635167 0.0094341729 -0.059707023 0.019732188 0.010928834 -0.059138816 0.021231906 0.0088016912 -0.059622027 0.019712014 0.0094008008 -0.059177093 0.019635167 0.0094341729 -0.058692977 0.021154789 0.0088349916 -0.059138816 0.021231906 0.0088016912 -0.059177093 0.019635167 0.0094341729 -0.055325754 0.024690282 -0.030317185 -0.055405341 0.02303051 -0.030297814 -0.055853263 0.023107735 -0.03033126 -0.054876573 0.024612976 -0.030283794 -0.055405341 0.02303051 -0.030297814 -0.055325754 0.024690282 -0.030317185 -0.062351879 0.011774655 0.078644611 -0.061623316 0.015573569 0.078623533 -0.062872894 0.012053945 0.07494235 -0.057504505 0.015953189 -0.029301576 -0.057525486 0.015304265 -0.031195642 -0.058108781 0.015411398 -0.02933635 -0.057937533 0.014337926 -0.029093133 -0.058095179 0.013718944 -0.029094657 -0.058607228 0.013812756 -0.028228058 -0.056028254 0.036338218 0.053619839 -0.057191841 0.033908471 0.046561904 -0.058038216 0.032316457 0.056440804 -0.05863104 0.016189951 -0.019908095 -0.058867492 0.013893614 -0.018383959 -0.059336092 0.013979535 -0.018140895 -0.058186281 0.016113376 -0.019874839 -0.058867492 0.013893614 -0.018383959 -0.05863104 0.016189951 -0.019908095 -0.062872894 0.012053945 0.07494235 -0.061623316 0.015573569 0.078623533 -0.062089041 0.017550977 0.072054818 -0.058430206 0.025371978 0.081880547 -0.057904534 0.027999869 0.079783037 -0.057690509 0.029041391 0.078708984 -0.058030982 0.017594058 -0.016627472 -0.058087513 0.017605875 -0.015822101 -0.058538094 0.01768337 -0.015855599 -0.058030982 0.017594058 -0.016627472 -0.058538094 0.01768337 -0.015855599 -0.058477473 0.017671047 -0.016660988 -0.057377584 0.017421866 -0.031983465 -0.057135995 0.017389534 -0.029155208 -0.05758068 0.017466387 -0.029188458 -0.056932125 0.017345006 -0.0319499 -0.057135995 0.017389534 -0.029155208 -0.057377584 0.017421866 -0.031983465 -0.052810263 0.026226349 -0.04587033 -0.054150973 0.025110148 -0.044497233 -0.053243835 0.02719125 -0.046577424 -0.059897669 0.02593974 0.042225849 -0.058586542 0.030092414 0.042664871 -0.059409313 0.026606197 0.036905594 -0.054545686 0.038647886 0.047248561 -0.053909425 0.039130319 0.038218167 -0.054949757 0.037380088 0.036531635 -0.052810263 0.026226349 -0.04587033 -0.057721652 0.012391028 -0.033620842 -0.054150973 0.025110148 -0.044497233 -0.057721652 0.012391028 -0.033620842 -0.056879248 0.01753024 -0.037792422 -0.054150973 0.025110148 -0.044497233 -0.060535718 0.013694702 0.085579202 -0.060024083 0.016625129 0.085241139 -0.061407473 0.012754806 0.082670785 -0.057721652 0.012391028 -0.033620842 -0.058635745 0.01225194 -0.032972746 -0.056879248 0.01753024 -0.037792422 -0.061407473 0.012754806 0.082670785 -0.060024083 0.016625129 0.085241139 -0.060506348 0.0178285 0.081962906 -0.062089041 0.017550977 0.072054818 -0.061335064 0.021726083 0.06847243 -0.062802292 0.016529938 0.064323567 -0.060313448 0.026158765 0.059484687 -0.05985935 0.027479362 0.053466078 -0.060571235 0.024427887 0.048902277 -0.058938626 0.01954972 -0.0028286655 -0.056311518 0.026162744 -0.0027421506 -0.05676939 0.026239501 -0.0027762982 -0.056257542 0.035570227 0.043311 -0.054545686 0.038647886 0.047248561 -0.054949757 0.037380088 0.036531635 -0.060506348 0.0178285 0.081962906 -0.058722589 0.023814075 0.082844511 -0.060871437 0.01943038 0.077852555 -0.05985935 0.027479362 0.053466078 -0.058586542 0.030092414 0.042664871 -0.059897669 0.02593974 0.042225849 -0.058493529 0.019472787 -0.0027954341 -0.056311518 0.026162744 -0.0027421506 -0.058938626 0.01954972 -0.0028286655 -0.056311518 0.026162744 -0.0027421506 -0.056407258 0.026184028 -0.001340167 -0.056859121 0.026261503 -0.0013740394 -0.056311518 0.026162744 -0.0027421506 -0.056859121 0.026261503 -0.0013740394 -0.05676939 0.026239501 -0.0027762982 -0.056599464 0.02622702 0.0014937669 -0.056723326 0.026253974 0.0033811748 -0.057176296 0.026330965 0.0033464993 -0.056599464 0.02622702 0.0014937669 -0.057176296 0.026330965 0.0033464993 -0.057050504 0.026303561 0.0014589108 -0.059122607 0.013928947 -0.021056127 -0.058679119 0.013852357 -0.021022875 -0.059072811 0.013919422 -0.02181761 -0.054545686 0.038647886 0.047248561 -0.056028254 0.036338218 0.053619839 -0.055115927 0.037851974 0.054963555 -0.057690509 0.029041391 0.078708984 -0.057228755 0.031151606 0.076017991 -0.059012298 0.028487269 0.070047952 -0.057666898 0.017511411 -0.021771958 -0.058111001 0.017588157 -0.021805121 -0.059072811 0.013919422 -0.02181761 -0.058679119 0.013852357 -0.021022875 -0.057666898 0.017511411 -0.021771958 -0.059072811 0.013919422 -0.02181761 -0.058551837 0.013824078 -0.022793883 -0.058496866 0.013812099 -0.023554781 -0.058941163 0.013888814 -0.023588054 -0.058551837 0.013824078 -0.022793883 -0.058941163 0.013888814 -0.023588054 -0.058995336 0.013900658 -0.022827137 -0.057448827 0.023618523 0.00073910633 -0.058867231 0.019557942 0.0034731722 -0.059347235 0.019651359 0.0039499253 -0.057914328 0.023696298 0.00070684857 -0.057448827 0.023618523 0.00073910633 -0.059347235 0.019651359 0.0039499253 -0.056028254 0.036338218 0.053619839 -0.054545686 0.038647886 0.047248561 -0.056257542 0.035570227 0.043311 -0.058538094 0.01768337 -0.015855599 -0.059152443 0.013958854 -0.014323977 -0.05959636 0.014035506 -0.014357092 -0.058087513 0.017605875 -0.015822101 -0.059152443 0.013958854 -0.014323977 -0.058538094 0.01768337 -0.015855599 -0.058430206 0.025371978 0.081880547 -0.057690509 0.029041391 0.078708984 -0.060015369 0.02285024 0.077427201 -0.058095179 0.013718944 -0.029094657 -0.057884581 0.013673097 -0.031961422 -0.058330882 0.013750347 -0.031995885 -0.058095179 0.013718944 -0.029094657 -0.058330882 0.013750347 -0.031995885 -0.058607228 0.013812756 -0.028228058 -0.056922097 0.026304837 0.0067390194 -0.057010893 0.026323631 0.00822361 -0.057457145 0.026400568 0.0081909541 -0.056922097 0.026304837 0.0067390194 -0.057457145 0.026400568 0.0081909541 -0.057382613 0.026382513 0.0067039961 -0.057495967 0.019216994 -0.023936609 -0.056951895 0.01911854 -0.025305046 -0.057405774 0.019197503 -0.025339052 -0.057051074 0.019140163 -0.023903247 -0.056951895 0.01911854 -0.025305046 -0.057495967 0.019216994 -0.023936609 -0.057564124 0.020863252 -0.016482094 -0.057532448 0.019251032 -0.017030945 -0.057977457 0.019327937 -0.017064152 -0.057118151 0.020786304 -0.016449016 -0.057532448 0.019251032 -0.017030945 -0.057564124 0.020863252 -0.016482094 -0.056859121 0.026261503 -0.0013740394 -0.057432849 0.023223294 -0.001367682 -0.057879776 0.02330072 -0.001401201 -0.056257542 0.035570227 0.043311 -0.054949757 0.037380088 0.036531635 -0.056063697 0.034496665 0.029476926 -0.056407258 0.026184028 -0.001340167 -0.057432849 0.023223294 -0.001367682 -0.056859121 0.026261503 -0.0013740394 -0.056213006 0.021970879 -0.030339736 -0.056596622 0.019037805 -0.030320985 -0.057041343 0.019114651 -0.030354183 -0.055762004 0.021897245 -0.030306067 -0.056596622 0.019037805 -0.030320985 -0.056213006 0.021970879 -0.030339736 -0.055493318 0.037104785 0.059672829 -0.055115927 0.037851974 0.054963555 -0.056028254 0.036338218 0.053619839 -0.056063697 0.034496665 0.029476926 -0.054536566 0.035798088 0.017593067 -0.056249447 0.03337431 0.0249923 -0.060871437 0.01943038 0.077852555 -0.060015369 0.02285024 0.077427201 -0.060186747 0.025017854 0.070499428 -0.054669298 0.036833931 0.026878448 -0.054536566 0.035798088 0.017593067 -0.056063697 0.034496665 0.029476926 -0.057191841 0.033908471 0.046561904 -0.056028254 0.036338218 0.053619839 -0.056257542 0.035570227 0.043311 -0.054949757 0.037380088 0.036531635 -0.053909425 0.039130319 0.038218167 -0.053380791 0.039308768 0.030666266 -0.062802292 0.016529938 0.064323567 -0.061335064 0.021726083 0.06847243 -0.060531486 0.025136601 0.06450358 -0.054949757 0.037380088 0.036531635 -0.053380791 0.039308768 0.030666266 -0.054669298 0.036833931 0.026878448 -0.054669298 0.036833931 0.026878448 -0.053442929 0.037539538 0.016186742 -0.054536566 0.035798088 0.017593067 -0.052472979 0.039325025 0.018021112 -0.054669298 0.036833931 0.026878448 -0.053380791 0.039308768 0.030666266 -0.061335064 0.021726083 0.06847243 -0.060186747 0.025017854 0.070499428 -0.060531486 0.025136601 0.06450358 -0.054669298 0.036833931 0.026878448 -0.052472979 0.039325025 0.018021112 -0.053442929 0.037539538 0.016186742 -0.056844492 0.03162539 0.023743803 -0.056249447 0.03337431 0.0249923 -0.055075444 0.031891949 0.0032221184 -0.057872377 0.032376647 0.062557928 -0.055865042 0.036148988 0.064052872 -0.055493318 0.037104785 0.059672829 -0.062872894 0.012053945 0.07494235 -0.062089041 0.017550977 0.072054818 -0.063406348 0.011731044 0.070675239 -0.056257542 0.035570227 0.043311 -0.056063697 0.034496665 0.029476926 -0.057275131 0.032977648 0.038461316 -0.054949757 0.037380088 0.036531635 -0.054669298 0.036833931 0.026878448 -0.056063697 0.034496665 0.029476926 -0.062802292 0.016529938 0.064323567 -0.060531486 0.025136601 0.06450358 -0.060313448 0.026158765 0.059484687 -0.056249447 0.03337431 0.0249923 -0.057275131 0.032977648 0.038461316 -0.056063697 0.034496665 0.029476926 -0.057993859 0.019357715 -0.010299274 -0.055802882 0.026046379 -0.010245511 -0.056252614 0.026123982 -0.010279052 -0.058449127 0.019439524 -0.010333261 -0.057993859 0.019357715 -0.010299274 -0.056252614 0.026123982 -0.010279052 -0.061623316 0.015573569 0.078623533 -0.060506348 0.0178285 0.081962906 -0.060871437 0.01943038 0.077852555 -0.056144636 0.035354245 0.06683366 -0.055865042 0.036148988 0.064052872 -0.057872377 0.032376647 0.062557928 -0.057465371 0.016638033 -0.027478922 -0.058709983 0.013835145 -0.026774582 -0.058266424 0.013758483 -0.026741248 -0.055493318 0.037104785 0.059672829 -0.056028254 0.036338218 0.053619839 -0.058038216 0.032316457 0.056440804 -0.060015369 0.02285024 0.077427201 -0.057690509 0.029041391 0.078708984 -0.059012298 0.028487269 0.070047952 -0.059027772 0.019569553 -0.0014261027 -0.058493529 0.019472787 -0.0027954341 -0.058938626 0.01954972 -0.0028286655 -0.058582671 0.019492695 -0.0013927504 -0.058493529 0.019472787 -0.0027954341 -0.059027772 0.019569553 -0.0014261027 -0.058810368 0.019515658 -0.0048213177 -0.05827146 0.019418232 -0.0061959238 -0.058716748 0.019495137 -0.0062292637 -0.058365054 0.019438704 -0.0047880937 -0.05827146 0.019418232 -0.0061959238 -0.058810368 0.019515658 -0.0048213177 -0.058755763 0.014752747 -0.016987028 -0.058886364 0.01390062 -0.018107848 -0.059336092 0.013979535 -0.018140895 -0.057191841 0.033908471 0.046561904 -0.056257542 0.035570227 0.043311 -0.057275131 0.032977648 0.038461316 -0.036602128 0.038455311 -0.054204557 -0.046853222 0.038463265 -0.051495463 -0.037132557 0.038505334 -0.04940756 -0.0463298 0.038406461 -0.056414098 -0.046853222 0.038463265 -0.051495463 -0.036602128 0.038455311 -0.054204557 -0.046853222 0.038463265 -0.051495463 -0.049476121 0.038970865 -0.018621422 -0.037132557 0.038505334 -0.04940756 -0.049476121 0.038970865 -0.018621422 -0.041406609 0.039277811 0.0053214063 -0.037132557 0.038505334 -0.04940756 -0.049476121 0.038970865 -0.018621422 -0.051573884 0.039231218 0.0067109843 -0.041406609 0.039277811 0.0053214063 -0.060313448 0.026158765 0.059484687 -0.060571235 0.024427887 0.048902277 -0.06127096 0.022307221 0.053452671 -0.058173906 0.011210878 -0.031662297 -0.058635745 0.01225194 -0.032972746 -0.057721652 0.012391028 -0.033620842 -0.061076678 0.01054123 0.085629568 -0.060535718 0.013694702 0.085579202 -0.061407473 0.012754806 0.082670785 -0.057872377 0.032376647 0.062557928 -0.055493318 0.037104785 0.059672829 -0.058038216 0.032316457 0.056440804 -0.058173906 0.011210878 -0.031662297 -0.059134085 0.01120776 -0.029834772 -0.058635745 0.01225194 -0.032972746 -0.058366116 0.010879103 -0.030227922 -0.059134085 0.01120776 -0.029834772 -0.058173906 0.011210878 -0.031662297 -0.063406348 0.011731044 0.070675239 -0.062089041 0.017550977 0.072054818 -0.062802292 0.016529938 0.064323567 -0.055599995 0.023072554 -0.027397472 -0.055959828 0.021939706 -0.027405787 -0.056047022 0.023149507 -0.027430933 -0.061090074 0.011423532 0.0089916717 -0.061656572 0.013265171 0.012528684 -0.061833266 0.01178305 0.0092248973 -0.060939595 0.012867552 0.012629473 -0.061656572 0.013265171 0.012528684 -0.061090074 0.011423532 0.0089916717 -0.056047022 0.023149507 -0.027430933 -0.055959828 0.021939706 -0.027405787 -0.056406271 0.022017034 -0.027439244 -0.056776602 0.0222196 -0.02147324 -0.056264982 0.02262022 -0.020228092 -0.056334808 0.02213913 -0.021395439 -0.056776602 0.0222196 -0.02147324 -0.056512747 0.02342012 -0.019739777 -0.056264982 0.02262022 -0.020228092 -0.052874941 0.0087231547 0.093791626 -0.051055152 0.017008534 0.091661066 -0.052306022 0.012034885 0.093748942 -0.056512747 0.02342012 -0.019739777 -0.055578232 0.024770064 -0.019699132 -0.056264982 0.02262022 -0.020228092 -0.052306022 0.012034885 0.093748942 -0.051055152 0.017008534 0.091661066 -0.051118862 0.018630244 0.092768051 -0.061090074 0.011423532 0.0089916717 -0.061833266 0.01178305 0.0092248973 -0.059134085 0.01120776 -0.029834772 -0.058366116 0.010879103 -0.030227922 -0.061090074 0.011423532 0.0089916717 -0.059134085 0.01120776 -0.029834772 -0.051118862 0.018630244 0.092768051 -0.051055152 0.017008534 0.091661066 -0.050668977 0.020992475 0.09208326 -0.057884581 0.013673097 -0.031961422 -0.057377584 0.017421866 -0.031983465 -0.058330882 0.013750347 -0.031995885 -0.050668977 0.020992475 0.09208326 -0.051055152 0.017008534 0.091661066 -0.050068915 0.02399257 0.090873927 -0.051055152 0.017008534 0.091661066 -0.04922954 0.026296148 0.087963961 -0.050068915 0.02399257 0.090873927 -0.050068915 0.02399257 0.090873927 -0.04922954 0.026296148 0.087963961 -0.049436055 0.027000519 0.089269266 -0.057884581 0.013673097 -0.031961422 -0.056932125 0.017345006 -0.0319499 -0.057377584 0.017421866 -0.031983465 -0.049436055 0.027000519 0.089269266 -0.04922954 0.026296148 0.087963961 -0.048913628 0.029363386 0.087633483 -0.064799905 0.0027817546 0.065455183 -0.064017445 0.0094822058 0.066577598 -0.064462103 0.0066773575 0.062749036 -0.048913628 0.029363386 0.087633483 -0.04922954 0.026296148 0.087963961 -0.048501048 0.031128515 0.086156093 -0.048501048 0.031128515 0.086156093 -0.04922954 0.026296148 0.087963961 -0.048083615 0.032838002 0.084505036 -0.063679114 -0.0058630123 0.078928806 -0.063420735 -0.0040110615 0.080686025 -0.063905329 -0.0033542344 0.07767801 -0.04922954 0.026296148 0.087963961 -0.046532124 0.036910128 0.075111344 -0.048083615 0.032838002 0.084505036 -0.048083615 0.032838002 0.084505036 -0.046532124 0.036910128 0.075111344 -0.047497116 0.03504245 0.081762359 -0.047497116 0.03504245 0.081762359 -0.046532124 0.036910128 0.075111344 -0.04705916 0.036522996 0.079380997 -0.064738333 -0.012374097 0.057742052 -0.064345643 -0.012903971 0.065803155 -0.065062784 -0.0094403466 0.059520997 -0.04705916 0.036522996 0.079380997 -0.046532124 0.036910128 0.075111344 -0.046412475 0.038375437 0.075212315 -0.06387262 -0.0071815411 0.077344537 -0.063905329 -0.0033542344 0.07767801 -0.064520232 -0.0035767888 0.072919257 -0.065132864 -0.009272499 0.054342885 -0.065282792 -0.0061372174 0.057947624 -0.065173842 -0.0076273968 0.049642172 -0.064738333 -0.012374097 0.057742052 -0.065062784 -0.0094403466 0.059520997 -0.065132864 -0.009272499 0.054342885 -0.046412475 0.038375437 0.075212315 -0.046532124 0.036910128 0.075111344 -0.045998279 0.039289266 0.071891852 -0.065132864 -0.009272499 0.054342885 -0.065173842 -0.0076273968 0.049642172 -0.064713456 -0.0098723127 0.03966162 -0.045998279 0.039289266 0.071891852 -0.046532124 0.036910128 0.075111344 -0.045671307 0.039812248 0.068861142 -0.046532124 0.036910128 0.075111344 -0.045534104 0.038750276 0.065440819 -0.045671307 0.039812248 0.068861142 -0.063905329 -0.0033542344 0.07767801 -0.063153662 0.0039201556 0.080079004 -0.064447701 0.00049064605 0.072567202 -0.045534104 0.038750276 0.065440819 -0.04501022 0.040412284 0.060699753 -0.045671307 0.039812248 0.068861142 -0.064966798 -0.008314006 0.064711839 -0.064651951 -0.0069417255 0.070602007 -0.065282792 -0.0061372174 0.057947624 -0.064519361 -0.0080562066 0.034929145 -0.063854598 -0.0044141328 0.025932366 -0.063960217 -0.0091458634 0.025998056 -0.045534104 0.038750276 0.065440819 -0.04436443 0.04037087 0.050983667 -0.04501022 0.040412284 0.060699753 -0.065111004 -0.0058731749 0.047328092 -0.064519361 -0.0080562066 0.034929145 -0.064713456 -0.0098723127 0.03966162 -0.065251477 -0.0038522359 0.054156717 -0.064900614 -0.0010528134 0.048399881 -0.065111004 -0.0058731749 0.047328092 -0.065173842 -0.0076273968 0.049642172 -0.065111004 -0.0058731749 0.047328092 -0.064713456 -0.0098723127 0.03966162 -0.045534104 0.038750276 0.065440819 -0.042363521 0.039576344 0.019775756 -0.04436443 0.04037087 0.050983667 -0.045534104 0.038750276 0.065440819 -0.041808102 0.037919078 0.0098329317 -0.042363521 0.039576344 0.019775756 -0.063420735 -0.0040110615 0.080686025 -0.063119285 -0.0019722511 0.082152113 -0.063905329 -0.0033542344 0.07767801 -0.041808102 0.037919078 0.0098329317 -0.041406609 0.039277811 0.0053214063 -0.042363521 0.039576344 0.019775756 -0.064447701 0.00049064605 0.072567202 -0.063750148 0.0077191442 0.073014878 -0.064574912 0.0027631125 0.069530599 -0.052874941 0.0087231547 0.093791626 -0.053449031 0.0029816369 0.091617107 -0.051055152 0.017008534 0.091661066 -0.053420786 0.0054525412 0.093510568 -0.053449031 0.0029816369 0.091617107 -0.052874941 0.0087231547 0.093791626 -0.05412389 0.0010100787 0.092629239 -0.053449031 0.0029816369 0.091617107 -0.053420786 0.0054525412 0.093510568 -0.064932495 0.0019637814 0.060947224 -0.0643709 0.0072423923 0.056964841 -0.064821273 0.001997401 0.054245885 -0.064017445 0.0094822058 0.066577598 -0.063406348 0.011731044 0.070675239 -0.063617229 0.012543985 0.064019047 -0.065173842 -0.0076273968 0.049642172 -0.065282792 -0.0061372174 0.057947624 -0.065251477 -0.0038522359 0.054156717 -0.054509901 -0.0015853783 0.091805428 -0.053449031 0.0029816369 0.091617107 -0.05412389 0.0010100787 0.092629239 -0.054509901 -0.0015853783 0.091805428 -0.054807272 -0.0063378466 0.087921977 -0.053449031 0.0029816369 0.091617107 -0.05511912 -0.0059937867 0.089778982 -0.054807272 -0.0063378466 0.087921977 -0.054509901 -0.0015853783 0.091805428 -0.064932495 0.0019637814 0.060947224 -0.064462103 0.0066773575 0.062749036 -0.0643709 0.0072423923 0.056964841 -0.063854598 -0.0044141328 0.025932366 -0.064519361 -0.0080562066 0.034929145 -0.064697027 -0.0029344016 0.040164679 -0.065111004 -0.0058731749 0.047328092 -0.064697027 -0.0029344016 0.040164679 -0.064519361 -0.0080562066 0.034929145 -0.062163603 0.0040659155 0.084765531 -0.061536975 0.0078385612 0.085448831 -0.062351879 0.011774655 0.078644611 -0.055724781 -0.011114785 0.086139217 -0.054807272 -0.0063378466 0.087921977 -0.05511912 -0.0059937867 0.089778982 -0.062163603 0.0040659155 0.084765531 -0.062351879 0.011774655 0.078644611 -0.063153662 0.0039201556 0.080079004 -0.064017445 0.0094822058 0.066577598 -0.063617229 0.012543985 0.064019047 -0.064462103 0.0066773575 0.062749036 -0.055887435 -0.012744447 0.084582381 -0.054807272 -0.0063378466 0.087921977 -0.055724781 -0.011114785 0.086139217 -0.063185096 -0.017356548 0.03235488 -0.06441351 -0.013767376 0.04374665 -0.063309103 -0.015300557 0.025779428 -0.06362921 -0.016911494 0.040072426 -0.06441351 -0.013767376 0.04374665 -0.063185096 -0.017356548 0.03235488 -0.064651951 -0.0069417255 0.070602007 -0.064881146 -0.00085436465 0.068144895 -0.065282792 -0.0061372174 0.057947624 -0.056089148 -0.015341694 0.081423089 -0.054807272 -0.0063378466 0.087921977 -0.055887435 -0.012744447 0.084582381 -0.056089148 -0.015341694 0.081423089 -0.055786896 -0.016834274 0.075945996 -0.054807272 -0.0063378466 0.087921977 -0.05616916 -0.017336812 0.078092262 -0.055786896 -0.016834274 0.075945996 -0.056089148 -0.015341694 0.081423089 -0.064651951 -0.0069417255 0.070602007 -0.064520232 -0.0035767888 0.072919257 -0.064881146 -0.00085436465 0.068144895 -0.064335346 -0.014263352 0.060604338 -0.064345643 -0.012903971 0.065803155 -0.064738333 -0.012374097 0.057742052 -0.056168459 -0.018285178 0.07601285 -0.055786896 -0.016834274 0.075945996 -0.05616916 -0.017336812 0.078092262 -0.056127634 -0.019035762 0.073879257 -0.055786896 -0.016834274 0.075945996 -0.056168459 -0.018285178 0.07601285 -0.064574912 0.0027631125 0.069530599 -0.064017445 0.0094822058 0.066577598 -0.064799905 0.0027817546 0.065455183 -0.055947069 -0.020184809 0.069008358 -0.055786896 -0.016834274 0.075945996 -0.056127634 -0.019035762 0.073879257 -0.055947069 -0.020184809 0.069008358 -0.055316154 -0.019507959 0.0626131 -0.055786896 -0.016834274 0.075945996 -0.065251477 -0.0038522359 0.054156717 -0.064932495 0.0019637814 0.060947224 -0.064821273 0.001997401 0.054245885 -0.065173842 -0.0076273968 0.049642172 -0.065251477 -0.0038522359 0.054156717 -0.065111004 -0.0058731749 0.047328092 -0.064447701 0.00049064605 0.072567202 -0.064574912 0.0027631125 0.069530599 -0.064881146 -0.00085436465 0.068144895 -0.055535186 -0.021011535 0.060945384 -0.055316154 -0.019507959 0.0626131 -0.055947069 -0.020184809 0.069008358 -0.064462103 0.0066773575 0.062749036 -0.063617229 0.012543985 0.064019047 -0.0643709 0.0072423923 0.056964841 -0.055016555 -0.021254078 0.052576311 -0.055316154 -0.019507959 0.0626131 -0.055535186 -0.021011535 0.060945384 -0.063119285 -0.0019722511 0.082152113 -0.062844165 -0.00020914534 0.083172575 -0.062163603 0.0040659155 0.084765531 -0.061536975 0.0078385612 0.085448831 -0.061076678 0.01054123 0.085629568 -0.061407473 0.012754806 0.082670785 -0.063153662 0.0039201556 0.080079004 -0.063575357 0.0055821519 0.0763864 -0.064447701 0.00049064605 0.072567202 -0.065111004 -0.0058731749 0.047328092 -0.064900614 -0.0010528134 0.048399881 -0.064697027 -0.0029344016 0.040164679 -0.05293218 -0.021414898 0.0216936 -0.051819049 -0.021579193 0.0053115701 -0.05168514 -0.020138955 0.0090695759 -0.063617229 0.012543985 0.064019047 -0.062946066 0.015874669 0.057093188 -0.0643709 0.0072423923 0.056964841 -0.05293218 -0.021414898 0.0216936 -0.055316154 -0.019507959 0.0626131 -0.055016555 -0.021254078 0.052576311 -0.05168514 -0.020138955 0.0090695759 -0.055316154 -0.019507959 0.0626131 -0.05293218 -0.021414898 0.0216936 -0.041808102 0.037919078 0.0098329317 -0.037224043 0.037016775 -0.050814584 -0.041406609 0.039277811 0.0053214063 -0.037224043 0.037016775 -0.050814584 -0.036602128 0.038455311 -0.054204557 -0.037132557 0.038505334 -0.04940756 -0.036619391 0.036976252 -0.055700269 -0.036602128 0.038455311 -0.054204557 -0.037224043 0.037016775 -0.050814584 -0.037132557 0.038505334 -0.04940756 -0.041406609 0.039277811 0.0053214063 -0.037224043 0.037016775 -0.050814584 -0.062351879 0.011774655 0.078644611 -0.062872894 0.012053945 0.07494235 -0.063575357 0.0055821519 0.0763864 -0.057904534 0.027999869 0.079783037 -0.058430206 0.025371978 0.081880547 -0.048913628 0.029363386 0.087633483 -0.063119285 -0.0019722511 0.082152113 -0.062163603 0.0040659155 0.084765531 -0.063153662 0.0039201556 0.080079004 -0.065282792 -0.0061372174 0.057947624 -0.064881146 -0.00085436465 0.068144895 -0.065246053 -0.0031067829 0.060454056 -0.063575357 0.0055821519 0.0763864 -0.062872894 0.012053945 0.07494235 -0.063750148 0.0077191442 0.073014878 -0.063750148 0.0077191442 0.073014878 -0.063406348 0.011731044 0.070675239 -0.064574912 0.0027631125 0.069530599 -0.045671307 0.039812248 0.068861142 -0.055493318 0.037104785 0.059672829 -0.045998279 0.039289266 0.071891852 -0.048083615 0.032838002 0.084505036 -0.057228755 0.031151606 0.076017991 -0.057690509 0.029041391 0.078708984 -0.063119285 -0.0019722511 0.082152113 -0.063153662 0.0039201556 0.080079004 -0.063905329 -0.0033542344 0.07767801 -0.061536975 0.0078385612 0.085448831 -0.061407473 0.012754806 0.082670785 -0.062351879 0.011774655 0.078644611 -0.047497116 0.03504245 0.081762359 -0.04705916 0.036522996 0.079380997 -0.056898531 0.032558214 0.073709555 -0.047263358 0.039926399 0.052496411 -0.051054578 0.039299469 0.047685441 -0.048408546 0.039512299 0.059916742 -0.064881146 -0.00085436465 0.068144895 -0.064799905 0.0027817546 0.065455183 -0.065246053 -0.0031067829 0.060454056 -0.047007572 0.039861571 0.042501558 -0.050976895 0.039449658 0.036438677 -0.053909425 0.039130319 0.038218167 -0.063153662 0.0039201556 0.080079004 -0.062351879 0.011774655 0.078644611 -0.063575357 0.0055821519 0.0763864 -0.064520232 -0.0035767888 0.072919257 -0.063905329 -0.0033542344 0.07767801 -0.064447701 0.00049064605 0.072567202 -0.052874941 0.0087231547 0.093791626 -0.052306022 0.012034885 0.093748942 -0.060535718 0.013694702 0.085579202 -0.046412475 0.038375437 0.075212315 -0.055865042 0.036148988 0.064052872 -0.056144636 0.035354245 0.06683366 -0.052306022 0.012034885 0.093748942 -0.060024083 0.016625129 0.085241139 -0.060535718 0.013694702 0.085579202 -0.064345643 -0.012903971 0.065803155 -0.064240173 -0.010905304 0.071160361 -0.064966798 -0.008314006 0.064711839 -0.064345643 -0.012903971 0.065803155 -0.064966798 -0.008314006 0.064711839 -0.065062784 -0.0094403466 0.059520997 -0.056461483 0.034241714 0.070032045 -0.046412475 0.038375437 0.075212315 -0.056144636 0.035354245 0.06683366 -0.064240173 -0.010905304 0.071160361 -0.064016528 -0.008633839 0.075378783 -0.064651951 -0.0069417255 0.070602007 -0.064240173 -0.010905304 0.071160361 -0.064651951 -0.0069417255 0.070602007 -0.064966798 -0.008314006 0.064711839 -0.048408546 0.039512299 0.059916742 -0.045671307 0.039812248 0.068861142 -0.04501022 0.040412284 0.060699753 -0.045998279 0.039289266 0.071891852 -0.055493318 0.037104785 0.059672829 -0.055865042 0.036148988 0.064052872 -0.063750148 0.0077191442 0.073014878 -0.062872894 0.012053945 0.07494235 -0.063406348 0.011731044 0.070675239 -0.064881146 -0.00085436465 0.068144895 -0.064574912 0.0027631125 0.069530599 -0.064799905 0.0027817546 0.065455183 -0.064574912 0.0027631125 0.069530599 -0.063406348 0.011731044 0.070675239 -0.064017445 0.0094822058 0.066577598 -0.047497116 0.03504245 0.081762359 -0.057228755 0.031151606 0.076017991 -0.048083615 0.032838002 0.084505036 -0.065246053 -0.0031067829 0.060454056 -0.064932495 0.0019637814 0.060947224 -0.065251477 -0.0038522359 0.054156717 -0.049833614 0.0395374 0.044345804 -0.047007572 0.039861571 0.042501558 -0.053909425 0.039130319 0.038218167 -0.064246148 -0.015238026 0.055378791 -0.064797968 -0.012107607 0.049918041 -0.064045228 -0.016038386 0.049725574 -0.04436443 0.04037087 0.050983667 -0.042363521 0.039576344 0.019775756 -0.047007572 0.039861571 0.042501558 -0.064651951 -0.0069417255 0.070602007 -0.064016528 -0.008633839 0.075378783 -0.06387262 -0.0071815411 0.077344537 -0.048230994 0.039630938 0.032510914 -0.052472979 0.039325025 0.018021112 -0.053380791 0.039308768 0.030666266 -0.064797968 -0.012107607 0.049918041 -0.06441351 -0.013767376 0.04374665 -0.064045228 -0.016038386 0.049725574 -0.064713456 -0.0098723127 0.03966162 -0.063856423 -0.011656187 0.026289295 -0.06441351 -0.013767376 0.04374665 -0.042363521 0.039576344 0.019775756 -0.041406609 0.039277811 0.0053214063 -0.051573884 0.039231218 0.0067109843 -0.06441351 -0.013767376 0.04374665 -0.064797968 -0.012107607 0.049918041 -0.064713456 -0.0098723127 0.03966162 -0.064797968 -0.012107607 0.049918041 -0.064246148 -0.015238026 0.055378791 -0.064738333 -0.012374097 0.057742052 -0.064799905 0.0027817546 0.065455183 -0.064462103 0.0066773575 0.062749036 -0.064932495 0.0019637814 0.060947224 -0.065282792 -0.0061372174 0.057947624 -0.065246053 -0.0031067829 0.060454056 -0.065251477 -0.0038522359 0.054156717 -0.051118862 0.018630244 0.092768051 -0.060024083 0.016625129 0.085241139 -0.052306022 0.012034885 0.093748942 -0.057228755 0.031151606 0.076017991 -0.047497116 0.03504245 0.081762359 -0.056898531 0.032558214 0.073709555 -0.064713456 -0.0098723127 0.03966162 -0.064797968 -0.012107607 0.049918041 -0.065132864 -0.009272499 0.054342885 -0.064738333 -0.012374097 0.057742052 -0.065132864 -0.009272499 0.054342885 -0.064797968 -0.012107607 0.049918041 -0.064520232 -0.0035767888 0.072919257 -0.064447701 0.00049064605 0.072567202 -0.064881146 -0.00085436465 0.068144895 -0.06362921 -0.016911494 0.040072426 -0.063848332 -0.01653498 0.044914581 -0.064045228 -0.016038386 0.049725574 -0.064447701 0.00049064605 0.072567202 -0.063575357 0.0055821519 0.0763864 -0.063750148 0.0077191442 0.073014878 -0.049436055 0.027000519 0.089269266 -0.048913628 0.029363386 0.087633483 -0.058430206 0.025371978 0.081880547 -0.06362921 -0.016911494 0.040072426 -0.064045228 -0.016038386 0.049725574 -0.06441351 -0.013767376 0.04374665 -0.048501048 0.031128515 0.086156093 -0.057690509 0.029041391 0.078708984 -0.057904534 0.027999869 0.079783037 -0.063309103 -0.015300557 0.025779428 -0.06441351 -0.013767376 0.04374665 -0.063856423 -0.011656187 0.026289295 -0.046412475 0.038375437 0.075212315 -0.056898531 0.032558214 0.073709555 -0.04705916 0.036522996 0.079380997 -0.052874941 0.0087231547 0.093791626 -0.060535718 0.013694702 0.085579202 -0.061076678 0.01054123 0.085629568 -0.056461483 0.034241714 0.070032045 -0.056898531 0.032558214 0.073709555 -0.046412475 0.038375437 0.075212315 -0.065062784 -0.0094403466 0.059520997 -0.065282792 -0.0061372174 0.057947624 -0.065132864 -0.009272499 0.054342885 -0.055115927 0.037851974 0.054963555 -0.055493318 0.037104785 0.059672829 -0.045671307 0.039812248 0.068861142 -0.045998279 0.039289266 0.071891852 -0.055865042 0.036148988 0.064052872 -0.046412475 0.038375437 0.075212315 -0.065062784 -0.0094403466 0.059520997 -0.064966798 -0.008314006 0.064711839 -0.065282792 -0.0061372174 0.057947624 -0.04501022 0.040412284 0.060699753 -0.047263358 0.039926399 0.052496411 -0.048408546 0.039512299 0.059916742 -0.055115927 0.037851974 0.054963555 -0.045671307 0.039812248 0.068861142 -0.048408546 0.039512299 0.059916742 -0.064246148 -0.015238026 0.055378791 -0.064335346 -0.014263352 0.060604338 -0.064738333 -0.012374097 0.057742052 -0.048230994 0.039630938 0.032510914 -0.047007572 0.039861571 0.042501558 -0.042363521 0.039576344 0.019775756 -0.064713456 -0.0098723127 0.03966162 -0.063960217 -0.0091458634 0.025998056 -0.063856423 -0.011656187 0.026289295 -0.048230994 0.039630938 0.032510914 -0.042363521 0.039576344 0.019775756 -0.052472979 0.039325025 0.018021112 -0.052472979 0.039325025 0.018021112 -0.042363521 0.039576344 0.019775756 -0.051573884 0.039231218 0.0067109843 -0.064651951 -0.0069417255 0.070602007 -0.06387262 -0.0071815411 0.077344537 -0.064520232 -0.0035767888 0.072919257 -0.063679114 -0.0058630123 0.078928806 -0.063905329 -0.0033542344 0.07767801 -0.06387262 -0.0071815411 0.077344537 -0.04436443 0.04037087 0.050983667 -0.047263358 0.039926399 0.052496411 -0.04501022 0.040412284 0.060699753 -0.065251477 -0.0038522359 0.054156717 -0.064821273 0.001997401 0.054245885 -0.064900614 -0.0010528134 0.048399881 -0.065246053 -0.0031067829 0.060454056 -0.064799905 0.0027817546 0.065455183 -0.064932495 0.0019637814 0.060947224 -0.048408546 0.039512299 0.059916742 -0.054545686 0.038647886 0.047248561 -0.055115927 0.037851974 0.054963555 -0.064713456 -0.0098723127 0.03966162 -0.064519361 -0.0080562066 0.034929145 -0.063960217 -0.0091458634 0.025998056 -0.051054578 0.039299469 0.047685441 -0.054545686 0.038647886 0.047248561 -0.048408546 0.039512299 0.059916742 -0.051054578 0.039299469 0.047685441 -0.04436443 0.04037087 0.050983667 -0.049833614 0.0395374 0.044345804 -0.047263358 0.039926399 0.052496411 -0.04436443 0.04037087 0.050983667 -0.051054578 0.039299469 0.047685441 0.0077349218 0.043386895 -0.13509417 0.010296779 0.037829082 -0.14013802 0.0098580942 0.040107943 -0.1393742 -0.04436443 0.04037087 0.050983667 -0.047007572 0.039861571 0.042501558 -0.049833614 0.0395374 0.044345804 0.01592065 0.012649923 -0.1555012 0.016203109 0.010067736 -0.15749548 0.016207686 0.013063884 -0.15670198 -0.0012829824 0.050507315 -0.11867049 -0.0028558671 0.050977927 -0.11600351 0.0052550216 0.044769324 -0.13041797 -0.051054578 0.039299469 0.047685441 -0.049833614 0.0395374 0.044345804 -0.054545686 0.038647886 0.047248561 -0.060024083 0.016625129 0.085241139 -0.051118862 0.018630244 0.092768051 -0.059306934 0.020659644 0.084227122 -0.050668977 0.020992475 0.09208326 -0.059306934 0.020659644 0.084227122 -0.051118862 0.018630244 0.092768051 -0.054545686 0.038647886 0.047248561 -0.049833614 0.0395374 0.044345804 -0.053909425 0.039130319 0.038218167 0.0014897551 0.049203645 -0.12349346 -0.0012829824 0.050507315 -0.11867049 0.0052550216 0.044769324 -0.13041797 -0.050068915 0.02399257 0.090873927 -0.049436055 0.027000519 0.089269266 -0.058722589 0.023814075 0.082844511 -0.053909425 0.039130319 0.038218167 -0.050976895 0.039449658 0.036438677 -0.053380791 0.039308768 0.030666266 0.003236291 0.048016734 -0.12662311 0.0014897551 0.049203645 -0.12349346 0.0052550216 0.044769324 -0.13041797 -0.048230994 0.039630938 0.032510914 -0.053380791 0.039308768 0.030666266 -0.050976895 0.039449658 0.036438677 0.0056869127 0.045825195 -0.13115312 0.003236291 0.048016734 -0.12662311 0.0052550216 0.044769324 -0.13041797 -0.058722589 0.023814075 0.082844511 -0.049436055 0.027000519 0.089269266 -0.058430206 0.025371978 0.081880547 0.0066143279 0.04479244 -0.13292027 0.0056869127 0.045825195 -0.13115312 0.0052550216 0.044769324 -0.13041797 -0.048230994 0.039630938 0.032510914 -0.050976895 0.039449658 0.036438677 -0.047007572 0.039861571 0.042501558 0.010296779 0.037829082 -0.14013802 0.0066143279 0.04479244 -0.13292027 0.0052550216 0.044769324 -0.13041797 -0.059306934 0.020659644 0.084227122 -0.050668977 0.020992475 0.09208326 -0.050068915 0.02399257 0.090873927 0.0077349218 0.043386895 -0.13509417 0.0066143279 0.04479244 -0.13292027 0.010296779 0.037829082 -0.14013802 0.010685841 0.038558517 -0.14111561 0.0098580942 0.040107943 -0.1393742 0.010296779 0.037829082 -0.14013802 -0.048083615 0.032838002 0.084505036 -0.057690509 0.029041391 0.078708984 -0.048501048 0.031128515 0.086156093 -0.059306934 0.020659644 0.084227122 -0.050068915 0.02399257 0.090873927 -0.058722589 0.023814075 0.082844511 0.011397087 0.037075318 -0.14264378 0.010685841 0.038558517 -0.14111561 0.010296779 0.037829082 -0.14013802 0.012822871 0.033500351 -0.14587659 0.011397087 0.037075318 -0.14264378 0.010296779 0.037829082 -0.14013802 -0.057904534 0.027999869 0.079783037 -0.048913628 0.029363386 0.087633483 -0.048501048 0.031128515 0.086156093 0.013426358 0.03005611 -0.14705841 0.012822871 0.033500351 -0.14587659 0.010296779 0.037829082 -0.14013802 -0.047381334 -0.022770422 -0.051819153 -0.056252141 -0.019601375 -0.056233972 -0.046634473 -0.023062008 -0.056937411 -0.049243983 -0.022266624 -0.028260391 -0.056252141 -0.019601375 -0.056233972 -0.047381334 -0.022770422 -0.051819153 -0.049243983 -0.022266624 -0.028260391 -0.059511319 -0.018742118 -0.016669746 -0.056252141 -0.019601375 -0.056233972 0.01405331 0.029477997 -0.14892013 0.012822871 0.033500351 -0.14587659 0.013426358 0.03005611 -0.14705841 -0.049243983 -0.022266624 -0.028260391 -0.051819049 -0.021579193 0.0053115701 -0.059511319 -0.018742118 -0.016669746 -0.051819049 -0.021579193 0.0053115701 -0.061707173 -0.018037157 0.010822831 -0.059511319 -0.018742118 -0.016669746 0.014544846 0.02746865 -0.15023582 0.01405331 0.029477997 -0.14892013 0.013426358 0.03005611 -0.14705841 0.01551054 0.019523837 -0.15305924 0.014544846 0.02746865 -0.15023582 0.013426358 0.03005611 -0.14705841 0.015252804 0.023879634 -0.15230957 0.014544846 0.02746865 -0.15023582 0.01551054 0.019523837 -0.15305924 -0.060080722 -0.017797031 0.060523868 -0.064246148 -0.015238026 0.055378791 -0.059056394 -0.018740106 0.057964627 -0.059056394 -0.018740106 0.057964627 -0.060477704 -0.018175887 0.050831676 -0.055535186 -0.021011535 0.060945384 0.015647363 0.021134613 -0.15366863 0.015252804 0.023879634 -0.15230957 0.01551054 0.019523837 -0.15305924 -0.064045228 -0.016038386 0.049725574 -0.059056394 -0.018740106 0.057964627 -0.064246148 -0.015238026 0.055378791 -0.055535186 -0.021011535 0.060945384 -0.060477704 -0.018175887 0.050831676 -0.055016555 -0.021254078 0.052576311 -0.060477704 -0.018175887 0.050831676 -0.063848332 -0.01653498 0.044914581 -0.055016555 -0.021254078 0.052576311 -0.055016555 -0.021254078 0.052576311 -0.063848332 -0.01653498 0.044914581 -0.05710379 -0.020089947 0.04700828 -0.064045228 -0.016038386 0.049725574 -0.060477704 -0.018175887 0.050831676 -0.059056394 -0.018740106 0.057964627 -0.063848332 -0.01653498 0.044914581 -0.060477704 -0.018175887 0.050831676 -0.064045228 -0.016038386 0.049725574 0.015910191 0.018671446 -0.15474701 0.015647363 0.021134613 -0.15366863 0.01551054 0.019523837 -0.15305924 -0.05710379 -0.020089947 0.04700828 -0.056804772 -0.020089159 0.035544608 -0.055016555 -0.021254078 0.052576311 -0.055016555 -0.021254078 0.052576311 -0.056804772 -0.020089159 0.035544608 -0.05293218 -0.021414898 0.0216936 0.016120579 0.015598951 -0.15589438 0.015910191 0.018671446 -0.15474701 0.01551054 0.019523837 -0.15305924 -0.063848332 -0.01653498 0.044914581 -0.06362921 -0.016911494 0.040072426 -0.05710379 -0.020089947 0.04700828 0.016207686 0.013063884 -0.15670198 0.016120579 0.015598951 -0.15589438 0.01592065 0.012649923 -0.1555012 0.01592065 0.012649923 -0.1555012 0.016120579 0.015598951 -0.15589438 0.01551054 0.019523837 -0.15305924 -0.056089148 -0.015341694 0.081423089 -0.06387262 -0.0071815411 0.077344537 -0.064016528 -0.008633839 0.075378783 0.016146036 0.0080597401 -0.15793344 0.016203109 0.010067736 -0.15749548 0.01592065 0.012649923 -0.1555012 -0.056127634 -0.019035762 0.073879257 -0.056168459 -0.018285178 0.07601285 -0.064345643 -0.012903971 0.065803155 -0.064335346 -0.014263352 0.060604338 -0.060403626 -0.017125469 0.063791759 -0.055947069 -0.020184809 0.069008358 -0.056168459 -0.018285178 0.07601285 -0.064240173 -0.010905304 0.071160361 -0.064345643 -0.012903971 0.065803155 -0.055947069 -0.020184809 0.069008358 -0.056127634 -0.019035762 0.073879257 -0.064335346 -0.014263352 0.060604338 0.015984209 0.0052463934 -0.15842341 0.016146036 0.0080597401 -0.15793344 0.01592065 0.012649923 -0.1555012 0.015330806 0.0017731049 -0.1574228 0.015984209 0.0052463934 -0.15842341 0.01592065 0.012649923 -0.1555012 -0.063185096 -0.017356548 0.03235488 -0.05710379 -0.020089947 0.04700828 -0.06362921 -0.016911494 0.040072426 0.015755773 0.0027117359 -0.15873332 0.015984209 0.0052463934 -0.15842341 0.015330806 0.0017731049 -0.1574228 -0.060403626 -0.017125469 0.063791759 -0.060080722 -0.017797031 0.060523868 -0.055947069 -0.020184809 0.069008358 -0.05710379 -0.020089947 0.04700828 -0.063185096 -0.017356548 0.03235488 -0.056804772 -0.020089159 0.035544608 0.015417421 -0.00014205511 -0.1589485 0.015755773 0.0027117359 -0.15873332 0.015330806 0.0017731049 -0.1574228 -0.064345643 -0.012903971 0.065803155 -0.064335346 -0.014263352 0.060604338 -0.056127634 -0.019035762 0.073879257 0.015012 -0.0027686779 -0.15900406 0.015417421 -0.00014205511 -0.1589485 0.015330806 0.0017731049 -0.1574228 -0.058787122 -0.019230668 0.028716981 -0.05293218 -0.021414898 0.0216936 -0.056804772 -0.020089159 0.035544608 0.012123654 -0.013139021 -0.15635629 0.0098788347 -0.020164292 -0.15556057 0.011846812 -0.01491856 -0.15727842 -0.060080722 -0.017797031 0.060523868 -0.059056394 -0.018740106 0.057964627 -0.055947069 -0.020184809 0.069008358 -0.063185096 -0.017356548 0.03235488 -0.058787122 -0.019230668 0.028716981 -0.056804772 -0.020089159 0.035544608 -0.055947069 -0.020184809 0.069008358 -0.059056394 -0.018740106 0.057964627 -0.055535186 -0.021011535 0.060945384 0.009101483 -0.021159438 -0.15376763 0.0098788347 -0.020164292 -0.15556057 0.012123654 -0.013139021 -0.15635629 0.012675334 -0.012358756 -0.15789221 0.012123654 -0.013139021 -0.15635629 0.011846812 -0.01491856 -0.15727842 -0.010790333 -0.043750629 -0.12868708 -0.019425498 -0.04640732 -0.11580545 -0.016866179 -0.046457589 -0.11994258 -0.010790333 -0.043750629 -0.12868708 -0.016866179 -0.046457589 -0.11994258 -0.0136352 -0.045938578 -0.12500857 -0.060403626 -0.017125469 0.063791759 -0.064246148 -0.015238026 0.055378791 -0.060080722 -0.017797031 0.060523868 -0.064335346 -0.014263352 0.060604338 -0.064246148 -0.015238026 0.055378791 -0.060403626 -0.017125469 0.063791759 -0.062613562 -0.01769717 0.023259757 -0.061707173 -0.018037157 0.010822831 -0.058787122 -0.019230668 0.028716981 -0.055887435 -0.012744447 0.084582381 -0.063679114 -0.0058630123 0.078928806 -0.06387262 -0.0071815411 0.077344537 -0.010790333 -0.043750629 -0.12868708 -0.0136352 -0.045938578 -0.12500857 -0.012059619 -0.045435283 -0.12740237 -0.010790333 -0.043750629 -0.12868708 -0.012059619 -0.045435283 -0.12740237 -0.010437699 -0.044785373 -0.12982741 -0.010790333 -0.043750629 -0.12868708 -0.010437699 -0.044785373 -0.12982741 -0.0051373704 -0.040505875 -0.13668163 -0.0051373704 -0.040505875 -0.13668163 -0.010437699 -0.044785373 -0.12982741 -0.0082340185 -0.043645654 -0.1330529 -0.062613562 -0.01769717 0.023259757 -0.058787122 -0.019230668 0.028716981 -0.063185096 -0.017356548 0.03235488 -0.058787122 -0.019230668 0.028716981 -0.051819049 -0.021579193 0.0053115701 -0.05293218 -0.021414898 0.0216936 -0.0051373704 -0.040505875 -0.13668163 -0.0082340185 -0.043645654 -0.1330529 -0.005766666 -0.042005412 -0.13655691 -0.061707173 -0.018037157 0.010822831 -0.051819049 -0.021579193 0.0053115701 -0.058787122 -0.019230668 0.028716981 -0.0051373704 -0.040505875 -0.13668163 -0.005766666 -0.042005412 -0.13655691 -0.0031570494 -0.039836448 -0.14014485 -0.0051373704 -0.040505875 -0.13668163 -0.0031570494 -0.039836448 -0.14014485 -0.0011478136 -0.037859872 -0.14282002 -0.055887435 -0.012744447 0.084582381 -0.06387262 -0.0071815411 0.077344537 -0.056089148 -0.015341694 0.081423089 0.0044307224 -0.029864693 -0.14879878 -0.0011478136 -0.037859872 -0.14282002 0.00035461597 -0.036166079 -0.14475751 -0.0051373704 -0.040505875 -0.13668163 -0.0011478136 -0.037859872 -0.14282002 0.0044307224 -0.029864693 -0.14879878 0.0044307224 -0.029864693 -0.14879878 0.00035461597 -0.036166079 -0.14475751 0.0019357027 -0.034194216 -0.14674172 0.0044307224 -0.029864693 -0.14879878 0.0019357027 -0.034194216 -0.14674172 0.0032816541 -0.032345206 -0.14838712 0.0044307224 -0.029864693 -0.14879878 0.0032816541 -0.032345206 -0.14838712 0.0047231689 -0.030162711 -0.15008906 0.0044307224 -0.029864693 -0.14879878 0.0047231689 -0.030162711 -0.15008906 0.0058345878 -0.028320756 -0.15135969 0.0044307224 -0.029864693 -0.14879878 0.0058345878 -0.028320756 -0.15135969 0.0074355835 -0.025407616 -0.15310761 0.0044307224 -0.029864693 -0.14879878 0.0074355835 -0.025407616 -0.15310761 0.009101483 -0.021159438 -0.15376763 0.009101483 -0.021159438 -0.15376763 0.0074355835 -0.025407616 -0.15310761 0.0085375933 -0.023157546 -0.15425977 -0.05616916 -0.017336812 0.078092262 -0.064240173 -0.010905304 0.071160361 -0.056168459 -0.018285178 0.07601285 -0.064240173 -0.010905304 0.071160361 -0.05616916 -0.017336812 0.078092262 -0.064016528 -0.008633839 0.075378783 -0.064016528 -0.008633839 0.075378783 -0.05616916 -0.017336812 0.078092262 -0.056089148 -0.015341694 0.081423089 0.009101483 -0.021159438 -0.15376763 0.0085375933 -0.023157546 -0.15425977 0.0098788347 -0.020164292 -0.15556057 -0.062407989 0.012280572 0.055821981 -0.0643709 0.0072423923 0.056964841 -0.062946066 0.015874669 0.057093188 -0.063274495 0.0058781775 0.055076513 -0.0643709 0.0072423923 0.056964841 -0.062407989 0.012280572 0.055821981 0.012123654 -0.013139021 -0.15635629 0.012675334 -0.012358756 -0.15789221 0.013598708 -0.0090889987 -0.15847242 0.012123654 -0.013139021 -0.15635629 0.013598708 -0.0090889987 -0.15847242 0.013901403 -0.0065193423 -0.15737538 0.013901403 -0.0065193423 -0.15737538 0.013598708 -0.0090889987 -0.15847242 0.014316542 -0.0061641014 -0.15881774 -0.063448869 0.0037660426 0.054084137 -0.0643709 0.0072423923 0.056964841 -0.063274495 0.0058781775 0.055076513 -0.063448869 0.0037660426 0.054084137 -0.064821273 0.001997401 0.054245885 -0.0643709 0.0072423923 0.056964841 0.013901403 -0.0065193423 -0.15737538 0.014316542 -0.0061641014 -0.15881774 0.015012 -0.0027686779 -0.15900406 0.013901403 -0.0065193423 -0.15737538 0.015012 -0.0027686779 -0.15900406 0.015330806 0.0017731049 -0.1574228 -0.063576892 0.0013955879 0.051697478 -0.064821273 0.001997401 0.054245885 -0.063448869 0.0037660426 0.054084137 -0.057390019 0.019232899 -0.019062199 -0.057873495 0.019305378 -0.018551912 -0.056334808 0.02213913 -0.021395439 -0.057873495 0.019305378 -0.018551912 -0.056776602 0.0222196 -0.02147324 -0.056334808 0.02213913 -0.021395439 -0.063625745 -8.4415646e-05 0.048747506 -0.064821273 0.001997401 0.054245885 -0.063576892 0.0013955879 0.051697478 -0.063625745 -8.4415646e-05 0.048747506 -0.064900614 -0.0010528134 0.048399881 -0.064821273 0.001997401 0.054245885 -0.057830807 0.01754747 -0.019472985 -0.05834784 0.017639849 -0.018482031 -0.058275383 0.017624252 -0.019506328 -0.055983379 0.026058597 -0.01431008 -0.055533726 0.025980702 -0.014276483 -0.058355145 0.019411232 -0.011581151 -0.063547991 -0.0020402691 0.041046601 -0.064900614 -0.0010528134 0.048399881 -0.063625745 -8.4415646e-05 0.048747506 -0.055533726 0.025980702 -0.014276483 -0.05790998 0.019334307 -0.011547719 -0.058355145 0.019411232 -0.011581151 -0.063547991 -0.0020402691 0.041046601 -0.064697027 -0.0029344016 0.040164679 -0.064900614 -0.0010528134 0.048399881 -0.057666898 0.017511411 -0.021771958 -0.058156949 0.015895274 -0.021016998 -0.058165587 0.017600073 -0.021044185 -0.057732563 0.01750128 -0.027076438 -0.057288382 0.01742458 -0.027043134 -0.057996076 0.014932983 -0.026367746 -0.031280305 -0.025644345 -0.15573607 -0.036958858 -0.023405911 -0.15296763 -0.034465704 -0.020314042 -0.15647553 -0.03830231 -0.043823313 -0.12815329 -0.043505006 -0.039051808 -0.12729338 -0.037387338 -0.04357972 -0.13051826 -0.062929831 -0.0039862795 0.023663927 -0.064697027 -0.0029344016 0.040164679 -0.063547991 -0.0020402691 0.041046601 -0.026706444 -0.032837428 -0.15406848 -0.031328216 -0.033495072 -0.15018098 -0.02898366 -0.029186675 -0.15506169 -0.062929831 -0.0039862795 0.023663927 -0.063854598 -0.0044141328 0.025932366 -0.064697027 -0.0029344016 0.040164679 -0.028164398 -0.035191726 -0.15120843 -0.031328216 -0.033495072 -0.15018098 -0.026706444 -0.032837428 -0.15406848 -0.04794186 -0.018341467 -0.14608677 -0.052426536 -0.015140985 -0.14317268 -0.051907014 -0.013329759 -0.14499351 -0.062929831 -0.0039862795 0.023663927 -0.061946806 -0.0056667048 -0.002830158 -0.063854598 -0.0044141328 0.025932366 -0.030975252 -0.019925088 -0.15889575 -0.034465704 -0.020314042 -0.15647553 -0.035691574 -0.015151052 -0.15793082 -0.048912164 -0.021681292 -0.14231716 -0.052426536 -0.015140985 -0.14317268 -0.04794186 -0.018341467 -0.14608677 -0.047622412 0.038125772 -0.10125235 -0.048172999 0.035460636 -0.096370816 -0.048931811 0.034943312 -0.091876887 -0.045763362 0.04028251 -0.11884023 -0.048172999 0.035460636 -0.096370816 -0.04573549 0.04147356 -0.11696089 -0.034364391 -0.012232441 -0.15976255 -0.03924286 -0.012834021 -0.15639119 -0.0412663 -0.0091057792 -0.1561691 -0.040043119 -0.03955815 -0.13330957 -0.043933474 -0.03576985 -0.13278042 -0.040150035 -0.037546508 -0.13630842 -0.04573549 0.04147356 -0.11696089 -0.048172999 0.035460636 -0.096370816 -0.046519093 0.040445495 -0.10976573 -0.035691574 -0.015151052 -0.15793082 -0.03924286 -0.012834021 -0.15639119 -0.034364391 -0.012232441 -0.15976255 -0.048172999 0.035460636 -0.096370816 -0.047071129 0.039348487 -0.10538535 -0.046519093 0.040445495 -0.10976573 -0.041054171 -0.003536562 -0.15756071 -0.039034147 -0.0069785835 -0.15825045 -0.044048641 -0.0031810941 -0.15550362 -0.048172999 0.035460636 -0.096370816 -0.047622412 0.038125772 -0.10125235 -0.047071129 0.039348487 -0.10538535 -0.043881062 0.002689539 -0.1561559 -0.043236274 -0.00031052949 -0.15645884 -0.048128542 0.0033323867 -0.15305966 -0.048128542 0.0033323867 -0.15305966 -0.043236274 -0.00031052949 -0.15645884 -0.048855804 -0.00037016207 -0.15224588 -0.061946806 -0.0056667048 -0.002830158 -0.062280789 -0.010187956 0.0035854001 -0.063960217 -0.0091458634 0.025998056 -0.063091189 -0.013846937 0.01863187 -0.063309103 -0.015300557 0.025779428 -0.063856423 -0.011656187 0.026289295 -0.02898366 -0.029186675 -0.15506169 -0.032980904 -0.029067174 -0.1522994 -0.031280305 -0.025644345 -0.15573607 -0.062613562 -0.01769717 0.023259757 -0.063309103 -0.015300557 0.025779428 -0.062080245 -0.016366964 0.010662633 -0.031328216 -0.033495072 -0.15018098 -0.034056295 -0.0342809 -0.14713798 -0.037353121 -0.028394381 -0.14918098 -0.040150035 -0.037546508 -0.13630842 -0.043933474 -0.03576985 -0.13278042 -0.044079062 -0.032374274 -0.13753508 -0.029090237 -0.036521517 -0.14934953 -0.034056295 -0.0342809 -0.14713798 -0.031328216 -0.033495072 -0.15018098 -0.062080245 -0.016366964 0.010662633 -0.063309103 -0.015300557 0.025779428 -0.063091189 -0.013846937 0.01863187 -0.041054171 -0.003536562 -0.15756071 -0.044048641 -0.0031810941 -0.15550362 -0.043236274 -0.00031052949 -0.15645884 -0.034465704 -0.020314042 -0.15647553 -0.030975252 -0.019925088 -0.15889575 -0.028577974 -0.024604421 -0.15802732 -0.026706444 -0.032837428 -0.15406848 -0.02898366 -0.029186675 -0.15506169 -0.025778554 -0.03120934 -0.15578975 -0.02571604 -0.023334932 -0.16027005 -0.028577974 -0.024604421 -0.15802732 -0.030975252 -0.019925088 -0.15889575 -0.063856423 -0.011656187 0.026289295 -0.062046964 -0.012808802 0.0031458277 -0.063091189 -0.013846937 0.01863187 -0.028577974 -0.024604421 -0.15802732 -0.02571604 -0.023334932 -0.16027005 -0.023854122 -0.027366741 -0.15921451 -0.063960217 -0.0091458634 0.025998056 -0.062280789 -0.010187956 0.0035854001 -0.063856423 -0.011656187 0.026289295 -0.030975252 -0.019925088 -0.15889575 -0.027805669 -0.01739168 -0.16167974 -0.02571604 -0.023334932 -0.16027005 -0.04794186 -0.018341467 -0.14608677 -0.051907014 -0.013329759 -0.14499351 -0.0472227 -0.014203678 -0.14927088 -0.062046964 -0.012808802 0.0031458277 -0.063856423 -0.011656187 0.026289295 -0.062280789 -0.010187956 0.0035854001 -0.062613562 -0.01769717 0.023259757 -0.063185096 -0.017356548 0.03235488 -0.063309103 -0.015300557 0.025779428 -0.021295039 -0.021334996 -0.16326013 -0.02571604 -0.023334932 -0.16027005 -0.027805669 -0.01739168 -0.16167974 -0.02571604 -0.023334932 -0.16027005 -0.021295039 -0.021334996 -0.16326013 -0.022586407 -0.024568789 -0.16126797 -0.041586362 -0.027642908 -0.14568201 -0.045907509 -0.025783254 -0.14238268 -0.048912164 -0.021681292 -0.14231716 -0.028577974 -0.024604421 -0.15802732 -0.031280305 -0.025644345 -0.15573607 -0.034465704 -0.020314042 -0.15647553 -0.026209636 -0.0052910633 -0.16540068 -0.026288752 -0.012269762 -0.16400109 -0.02965524 -0.0067916228 -0.16359836 -0.062080245 -0.016366964 0.010662633 -0.061707173 -0.018037157 0.010822831 -0.062613562 -0.01769717 0.023259757 -0.063960217 -0.0091458634 0.025998056 -0.063854598 -0.0044141328 0.025932366 -0.061946806 -0.0056667048 -0.002830158 -0.058996294 0.021198494 0.0060213483 -0.058971565 0.019587379 0.0054721548 -0.059416823 0.019664278 0.0054387012 -0.058550596 0.021121269 0.0060545569 -0.058971565 0.019587379 0.0054721548 -0.058996294 0.021198494 0.0060213483 -0.022156436 -0.012903225 -0.16561337 -0.02293206 -0.016370676 -0.16432504 -0.026288752 -0.012269762 -0.16400109 -0.059453689 -0.0065725972 -0.040137783 -0.059771821 -0.0056773848 -0.023935435 -0.058286242 -0.0069976067 -0.059006006 -0.026288752 -0.012269762 -0.16400109 -0.02293206 -0.016370676 -0.16432504 -0.027805669 -0.01739168 -0.16167974 -0.059453689 -0.0065725972 -0.040137783 -0.061946806 -0.0056667048 -0.002830158 -0.059771821 -0.0056773848 -0.023935435 -0.061946806 -0.0056667048 -0.002830158 -0.062929831 -0.0039862795 0.023663927 -0.059771821 -0.0056773848 -0.023935435 -0.059771821 -0.0056773848 -0.023935435 -0.057221092 -0.0064978758 -0.062182087 -0.058286242 -0.0069976067 -0.059006006 -0.04357909 -0.030976556 -0.13994926 -0.045907509 -0.025783254 -0.14238268 -0.041586362 -0.027642908 -0.14568201 -0.056088358 0.026109448 -0.00603793 -0.056538053 0.02618693 -0.0060717012 -0.058082949 0.021753829 -0.0061148782 -0.030975252 -0.019925088 -0.15889575 -0.035691574 -0.015151052 -0.15793082 -0.03065143 -0.013963565 -0.16134869 -0.057602759 0.021651486 -0.006077515 -0.056088358 0.026109448 -0.00603793 -0.058082949 0.021753829 -0.0061148782 -0.057205912 0.017420948 -0.028183112 -0.057649992 0.017483674 -0.028216301 -0.058607228 0.013812756 -0.028228058 -0.058211952 0.013746775 -0.027487537 -0.057205912 0.017420948 -0.028183112 -0.058607228 0.013812756 -0.028228058 -0.039710931 -0.03251129 -0.1430732 -0.044079062 -0.032374274 -0.13753508 -0.04357909 -0.030976556 -0.13994926 -0.019342039 -0.015759984 -0.16592683 -0.02293206 -0.016370676 -0.16432504 -0.022156436 -0.012903225 -0.16561337 -0.010705451 0.052330632 -0.12416337 -0.022512034 0.055241261 -0.12543175 -0.0012829824 0.050507315 -0.11867049 -0.02898366 -0.029186675 -0.15506169 -0.031280305 -0.025644345 -0.15573607 -0.028577974 -0.024604421 -0.15802732 -0.0012829824 0.050507315 -0.11867049 -0.023711028 0.055561937 -0.12206502 -0.0028558671 0.050977927 -0.11600351 -0.022512034 0.055241261 -0.12543175 -0.023711028 0.055561937 -0.12206502 -0.0012829824 0.050507315 -0.11867049 -0.026288752 -0.012269762 -0.16400109 -0.026209636 -0.0052910633 -0.16540068 -0.022162799 -0.009683216 -0.16630559 -0.022156436 -0.012903225 -0.16561337 -0.026288752 -0.012269762 -0.16400109 -0.022162799 -0.009683216 -0.16630559 -0.022162799 -0.009683216 -0.16630559 -0.018199049 -0.011933086 -0.16728348 -0.022156436 -0.012903225 -0.16561337 -0.017515713 -0.0095465966 -0.16793941 -0.018199049 -0.011933086 -0.16728348 -0.022162799 -0.009683216 -0.16630559 -0.016503414 -0.0054646456 -0.16879016 -0.017515713 -0.0095465966 -0.16793941 -0.01929502 -0.0046068546 -0.16804372 -0.034364391 -0.012232441 -0.15976255 -0.0412663 -0.0091057792 -0.1561691 -0.035890613 -0.0077492897 -0.16005169 -0.021413296 0.05470635 -0.12854463 -0.010705451 0.052330632 -0.12416337 0.0014897551 0.049203645 -0.12349346 -0.0028558671 0.050977927 -0.11600351 -0.01482375 0.053473283 -0.11778776 -0.025360117 0.055598948 -0.11761442 -0.035890613 -0.0077492897 -0.16005169 -0.0412663 -0.0091057792 -0.1561691 -0.039034147 -0.0069785835 -0.15825045 -0.023711028 0.055561937 -0.12206502 -0.01482375 0.053473283 -0.11778776 -0.0028558671 0.050977927 -0.11600351 -0.03065143 -0.013963565 -0.16134869 -0.035691574 -0.015151052 -0.15793082 -0.034364391 -0.012232441 -0.15976255 -0.040150035 -0.037546508 -0.13630842 -0.044079062 -0.032374274 -0.13753508 -0.03846949 -0.036998447 -0.13938501 -0.01987572 0.053510446 -0.13318485 0.0014897551 0.049203645 -0.12349346 -0.007603711 0.05002794 -0.13174999 -0.023854122 -0.027366741 -0.15921451 -0.02898366 -0.029186675 -0.15506169 -0.028577974 -0.024604421 -0.15802732 -0.007603711 0.05002794 -0.13174999 0.003236291 0.048016734 -0.12662311 0.0056869127 0.045825195 -0.13115312 -0.019093791 0.05267911 -0.13561417 -0.01987572 0.053510446 -0.13318485 -0.007603711 0.05002794 -0.13174999 -0.025778554 -0.03120934 -0.15578975 -0.02898366 -0.029186675 -0.15506169 -0.023854122 -0.027366741 -0.15921451 -0.0472227 -0.014203678 -0.14927088 -0.051907014 -0.013329759 -0.14499351 -0.050750863 -0.008883005 -0.14842999 -0.055899248 -0.023326049 -0.12518153 -0.052623726 -0.028735749 -0.12432832 -0.052829728 -0.029564483 -0.12047902 -0.037686449 -0.0041299923 -0.159637 -0.039034147 -0.0069785835 -0.15825045 -0.041054171 -0.003536562 -0.15756071 -0.007603711 0.05002794 -0.13174999 0.0014897551 0.049203645 -0.12349346 0.003236291 0.048016734 -0.12662311 -0.019093791 0.05267911 -0.13561417 -0.007603711 0.05002794 -0.13174999 0.0056869127 0.045825195 -0.13115312 -0.052623726 -0.028735749 -0.12432832 -0.055899248 -0.023326049 -0.12518153 -0.055504628 -0.022923132 -0.12801194 -0.01482375 0.053473283 -0.11778776 -0.023711028 0.055561937 -0.12206502 -0.025360117 0.055598948 -0.11761442 -0.045657083 -0.022370717 -0.14562976 -0.048912164 -0.021681292 -0.14231716 -0.04794186 -0.018341467 -0.14608677 -0.041586362 -0.027642908 -0.14568201 -0.048912164 -0.021681292 -0.14231716 -0.045657083 -0.022370717 -0.14562976 0.0014897551 0.049203645 -0.12349346 -0.010705451 0.052330632 -0.12416337 -0.0012829824 0.050507315 -0.11867049 -0.041054171 -0.003536562 -0.15756071 -0.043236274 -0.00031052949 -0.15645884 -0.039256401 0.0009181893 -0.15920712 -0.033606593 -0.0095761269 -0.1609357 -0.034364391 -0.012232441 -0.15976255 -0.035890613 -0.0077492897 -0.16005169 -0.050183803 -0.032100249 -0.12469975 -0.052829728 -0.029564483 -0.12047902 -0.052623726 -0.028735749 -0.12432832 -0.051362302 -0.027507026 -0.13095838 -0.055504628 -0.022923132 -0.12801194 -0.054974031 -0.022059442 -0.13133223 -0.021413296 0.05470635 -0.12854463 -0.022512034 0.055241261 -0.12543175 -0.010705451 0.052330632 -0.12416337 -0.035890613 -0.0077492897 -0.16005169 -0.039034147 -0.0069785835 -0.15825045 -0.037686449 -0.0041299923 -0.159637 -0.01987572 0.053510446 -0.13318485 -0.021413296 0.05470635 -0.12854463 0.0014897551 0.049203645 -0.12349346 -0.048178047 -0.035330269 -0.12292238 -0.052829728 -0.029564483 -0.12047902 -0.050183803 -0.032100249 -0.12469975 -0.050183803 -0.032100249 -0.12469975 -0.052623726 -0.028735749 -0.12432832 -0.055504628 -0.022923132 -0.12801194 -0.027805669 -0.01739168 -0.16167974 -0.030975252 -0.019925088 -0.15889575 -0.03065143 -0.013963565 -0.16134869 -0.023711028 0.055561937 -0.12206502 -0.027303871 0.054231264 -0.12032091 -0.025360117 0.055598948 -0.11761442 -0.037584882 -0.036037326 -0.14164536 -0.044079062 -0.032374274 -0.13753508 -0.039710931 -0.03251129 -0.1430732 -0.03846949 -0.036998447 -0.13938501 -0.044079062 -0.032374274 -0.13753508 -0.037584882 -0.036037326 -0.14164536 -0.021411628 0.0088449428 -0.16705908 -0.017628906 0.015862297 -0.16669513 -0.016992031 0.010543772 -0.16811493 -0.039256401 0.0009181893 -0.15920712 -0.043236274 -0.00031052949 -0.15645884 -0.043881062 0.002689539 -0.1561559 -0.037387338 -0.04357972 -0.13051826 -0.040043119 -0.03955815 -0.13330957 -0.035784572 -0.042919841 -0.13442746 -0.040027283 -0.024487456 -0.14968541 -0.041586362 -0.027642908 -0.14568201 -0.045657083 -0.022370717 -0.14562976 -0.034815498 -0.042338178 -0.13677037 -0.040043119 -0.03955815 -0.13330957 -0.040150035 -0.037546508 -0.13630842 -0.02313515 0.011989885 -0.1658892 -0.02786505 0.010835222 -0.16429037 -0.025784576 0.015341097 -0.16403702 -0.037686449 -0.0041299923 -0.159637 -0.041054171 -0.003536562 -0.15756071 -0.036381528 0.00021952829 -0.16088617 -0.052829728 -0.029564483 -0.12047902 -0.048178047 -0.035330269 -0.12292238 -0.049781755 -0.034652472 -0.117626 -0.042977951 -0.022431763 -0.14835446 -0.045657083 -0.022370717 -0.14562976 -0.04794186 -0.018341467 -0.14608677 -0.031328205 0.0052870279 -0.16359301 -0.030776238 0.010932594 -0.16298793 -0.02786505 0.010835222 -0.16429037 -0.039710931 -0.03251129 -0.1430732 -0.04357909 -0.030976556 -0.13994926 -0.041586362 -0.027642908 -0.14568201 -0.048274122 -0.032968163 -0.12844864 -0.050183803 -0.032100249 -0.12469975 -0.055504628 -0.022923132 -0.12801194 -0.029914588 0.049177147 -0.13200387 -0.033073716 0.04863283 -0.12878278 -0.028052945 0.052653026 -0.12518519 -0.03065143 -0.013963565 -0.16134869 -0.034364391 -0.012232441 -0.15976255 -0.033606593 -0.0095761269 -0.1609357 -0.051154532 -0.02626496 -0.1334473 -0.054974031 -0.022059442 -0.13133223 -0.054239471 -0.020465428 -0.13534226 -0.031328205 0.0052870279 -0.16359301 -0.037582759 0.0066636042 -0.16015719 -0.035511609 0.0091760177 -0.16094472 -0.036381528 0.00021952829 -0.16088617 -0.041054171 -0.003536562 -0.15756071 -0.039256401 0.0009181893 -0.15920712 -0.033073716 0.04863283 -0.12878278 -0.032872494 0.050148964 -0.12441159 -0.028052945 0.052653026 -0.12518519 -0.047424871 -0.037184779 -0.11980544 -0.049781755 -0.034652472 -0.117626 -0.048178047 -0.035330269 -0.12292238 -0.035511609 0.0091760177 -0.16094472 -0.030776238 0.010932594 -0.16298793 -0.031328205 0.0052870279 -0.16359301 -0.035784572 -0.042919841 -0.13442746 -0.040043119 -0.03955815 -0.13330957 -0.034815498 -0.042338178 -0.13677037 -0.025150966 0.023682851 -0.16112745 -0.021803256 0.020407937 -0.1638263 -0.026310025 0.018692072 -0.16273591 -0.037584882 -0.036037326 -0.14164536 -0.039710931 -0.03251129 -0.1430732 -0.036647733 -0.034905057 -0.14394529 -0.01406147 0.0079254871 -0.1692363 -0.014704397 0.0036467034 -0.16947497 -0.019364912 0.0036210699 -0.16826056 -0.051154532 -0.02626496 -0.1334473 -0.051362302 -0.027507026 -0.13095838 -0.054974031 -0.022059442 -0.13133223 -0.04794186 -0.018341467 -0.14608677 -0.0472227 -0.014203678 -0.14927088 -0.044117987 -0.016000779 -0.15119962 -0.019364912 0.0036210699 -0.16826056 -0.021411628 0.0088449428 -0.16705908 -0.01406147 0.0079254871 -0.1692363 -0.033606593 -0.0095761269 -0.1609357 -0.035890613 -0.0077492897 -0.16005169 -0.037686449 -0.0041299923 -0.159637 -0.048274122 -0.032968163 -0.12844864 -0.055504628 -0.022923132 -0.12801194 -0.051362302 -0.027507026 -0.13095838 -0.021803256 0.020407937 -0.1638263 -0.025150966 0.023682851 -0.16112745 -0.021771152 0.023994561 -0.16231909 -0.021411628 0.0088449428 -0.16705908 -0.016992031 0.010543772 -0.16811493 -0.01406147 0.0079254871 -0.1692363 -0.019364912 0.0036210699 -0.16826056 -0.022398492 0.004012451 -0.1672757 -0.021411628 0.0088449428 -0.16705908 -0.013737692 0.010526847 -0.16892253 -0.016992031 0.010543772 -0.16811493 -0.013404437 0.013760203 -0.16835797 -0.039710931 -0.03251129 -0.1430732 -0.041586362 -0.027642908 -0.14568201 -0.03665233 -0.032562569 -0.14626695 -0.043130729 0.0056836857 -0.15664719 -0.04127422 0.011630677 -0.15701833 -0.03996193 0.0067285425 -0.1587029 -0.032248627 -0.004036969 -0.16272612 -0.037686449 -0.0041299923 -0.159637 -0.036381528 0.00021952829 -0.16088617 -0.0472227 -0.014203678 -0.14927088 -0.050750863 -0.008883005 -0.14842999 -0.046244394 -0.010333129 -0.15186387 -0.048178047 -0.035330269 -0.12292238 -0.050183803 -0.032100249 -0.12469975 -0.048274122 -0.032968163 -0.12844864 -0.022586407 -0.024568789 -0.16126797 -0.023854122 -0.027366741 -0.15921451 -0.02571604 -0.023334932 -0.16027005 -0.034815498 -0.042338178 -0.13677037 -0.040150035 -0.037546508 -0.13630842 -0.033785935 -0.041593622 -0.13916786 -0.026288752 -0.012269762 -0.16400109 -0.03065143 -0.013963565 -0.16134869 -0.033606593 -0.0095761269 -0.1609357 -0.044730015 0.041088864 -0.12656951 -0.038775254 0.047328603 -0.11870478 -0.038940646 0.045931272 -0.12495343 -0.013404437 0.013760203 -0.16835797 -0.016992031 0.010543772 -0.16811493 -0.017628906 0.015862297 -0.16669513 -0.035845302 0.013481365 -0.15980993 -0.03870922 0.01118573 -0.15872297 -0.03889443 0.015982874 -0.15729792 -0.044730015 0.041088864 -0.12656951 -0.04522964 0.041633852 -0.12142804 -0.038775254 0.047328603 -0.11870478 -0.022398492 0.004012451 -0.1672757 -0.025888208 0.0043125669 -0.16599816 -0.021411628 0.0088449428 -0.16705908 -0.040027283 -0.024487456 -0.14968541 -0.045657083 -0.022370717 -0.14562976 -0.042977951 -0.022431763 -0.14835446 -0.033606593 -0.0095761269 -0.1609357 -0.037686449 -0.0041299923 -0.159637 -0.032248627 -0.004036969 -0.16272612 -0.025888208 0.0043125669 -0.16599816 -0.02313515 0.011989885 -0.1658892 -0.021411628 0.0088449428 -0.16705908 -0.042977951 -0.022431763 -0.14835446 -0.04794186 -0.018341467 -0.14608677 -0.044117987 -0.016000779 -0.15119962 -0.026288752 -0.012269762 -0.16400109 -0.033606593 -0.0095761269 -0.1609357 -0.02965524 -0.0067916228 -0.16359836 -0.033785935 -0.041593622 -0.13916786 -0.040150035 -0.037546508 -0.13630842 -0.03846949 -0.036998447 -0.13938501 -0.04522964 0.041633852 -0.12142804 -0.040837679 0.045862261 -0.11667155 -0.038775254 0.047328603 -0.11870478 -0.03889443 0.015982874 -0.15729792 -0.035786591 0.016670726 -0.15887259 -0.035845302 0.013481365 -0.15980993 -0.027805669 -0.01739168 -0.16167974 -0.03065143 -0.013963565 -0.16134869 -0.026288752 -0.012269762 -0.16400109 -0.032248627 -0.004036969 -0.16272612 -0.036381528 0.00021952829 -0.16088617 -0.033702046 0.00014177064 -0.16237025 -0.047838386 -0.037208792 -0.11735234 -0.047424871 -0.037184779 -0.11980544 -0.044005815 -0.04129827 -0.11860798 -0.021411628 0.0088449428 -0.16705908 -0.02313515 0.011989885 -0.1658892 -0.017628906 0.015862297 -0.16669513 -0.036647733 -0.034905057 -0.14394529 -0.039710931 -0.03251129 -0.1430732 -0.03665233 -0.032562569 -0.14626695 -0.047424871 -0.037184779 -0.11980544 -0.048178047 -0.035330269 -0.12292238 -0.044169568 -0.039665435 -0.12390506 -0.044169568 -0.039665435 -0.12390506 -0.048178047 -0.035330269 -0.12292238 -0.048274122 -0.032968163 -0.12844864 -0.017628906 0.015862297 -0.16669513 -0.021207234 0.017577972 -0.16504292 -0.021803256 0.020407937 -0.1638263 -0.017628906 0.015862297 -0.16669513 -0.02313515 0.011989885 -0.1658892 -0.021207234 0.017577972 -0.16504292 -0.021295039 -0.021334996 -0.16326013 -0.027805669 -0.01739168 -0.16167974 -0.02293206 -0.016370676 -0.16432504 -0.051154532 -0.02626496 -0.1334473 -0.054239471 -0.020465428 -0.13534226 -0.050489899 -0.024950324 -0.13654561 -0.031102397 0.016455231 -0.161359 -0.03601402 0.021554824 -0.15675479 -0.028838336 0.021678545 -0.16042864 -0.02965524 -0.0067916228 -0.16359836 -0.033606593 -0.0095761269 -0.1609357 -0.032248627 -0.004036969 -0.16272612 -0.03665233 -0.032562569 -0.14626695 -0.041586362 -0.027642908 -0.14568201 -0.037353121 -0.028394381 -0.14918098 -0.037353121 -0.028394381 -0.14918098 -0.041586362 -0.027642908 -0.14568201 -0.040027283 -0.024487456 -0.14968541 -0.033785935 -0.041593622 -0.13916786 -0.03846949 -0.036998447 -0.13938501 -0.032379061 -0.040337738 -0.14237925 -0.04127422 0.011630677 -0.15701833 -0.037582759 0.0066636042 -0.16015719 -0.03996193 0.0067285425 -0.1587029 -0.035511609 0.0091760177 -0.16094472 -0.035845302 0.013481365 -0.15980993 -0.030776238 0.010932594 -0.16298793 -0.044117987 -0.016000779 -0.15119962 -0.0472227 -0.014203678 -0.14927088 -0.043453578 -0.014043228 -0.15270141 -0.02965524 -0.0067916228 -0.16359836 -0.032248627 -0.004036969 -0.16272612 -0.02963151 -0.0041368259 -0.16400442 -0.046778761 -0.033667568 -0.1306594 -0.048274122 -0.032968163 -0.12844864 -0.051362302 -0.027507026 -0.13095838 -0.032379061 -0.040337738 -0.14237925 -0.03846949 -0.036998447 -0.13938501 -0.037584882 -0.036037326 -0.14164536 -0.040027283 -0.024487456 -0.14968541 -0.042977951 -0.022431763 -0.14835446 -0.044117987 -0.016000779 -0.15119962 -0.025784576 0.015341097 -0.16403702 -0.021207234 0.017577972 -0.16504292 -0.02313515 0.011989885 -0.1658892 -0.028838336 0.021678545 -0.16042864 -0.03601402 0.021554824 -0.15675479 -0.03057144 0.025206931 -0.15785053 -0.035845302 0.013481365 -0.15980993 -0.031102397 0.016455231 -0.161359 -0.030776238 0.010932594 -0.16298793 -0.017628906 0.015862297 -0.16669513 -0.021803256 0.020407937 -0.1638263 -0.012900298 0.022582974 -0.16571823 -0.020600937 -0.01949686 -0.16423713 -0.021295039 -0.021334996 -0.16326013 -0.02293206 -0.016370676 -0.16432504 -0.037582759 0.0066636042 -0.16015719 -0.03870922 0.01118573 -0.15872297 -0.035511609 0.0091760177 -0.16094472 -0.028838336 0.021678545 -0.16042864 -0.03057144 0.025206931 -0.15785053 -0.024952963 0.026536128 -0.15975241 -0.034056295 -0.0342809 -0.14713798 -0.036647733 -0.034905057 -0.14394529 -0.03665233 -0.032562569 -0.14626695 -0.02963151 -0.0041368259 -0.16400442 -0.032248627 -0.004036969 -0.16272612 -0.033702046 0.00014177064 -0.16237025 -0.026209636 -0.0052910633 -0.16540068 -0.02965524 -0.0067916228 -0.16359836 -0.02963151 -0.0041368259 -0.16400442 -0.044169568 -0.039665435 -0.12390506 -0.044005815 -0.04129827 -0.11860798 -0.047424871 -0.037184779 -0.11980544 -0.03870922 0.01118573 -0.15872297 -0.035845302 0.013481365 -0.15980993 -0.035511609 0.0091760177 -0.16094472 -0.046778761 -0.033667568 -0.1306594 -0.051362302 -0.027507026 -0.13095838 -0.051154532 -0.02626496 -0.1334473 -0.012900298 0.022582974 -0.16571823 -0.021803256 0.020407937 -0.1638263 -0.017313758 0.023243327 -0.16419351 -0.04127422 0.011630677 -0.15701833 -0.03870922 0.01118573 -0.15872297 -0.037582759 0.0066636042 -0.16015719 -0.044169568 -0.039665435 -0.12390506 -0.048274122 -0.032968163 -0.12844864 -0.045972072 -0.035995953 -0.1279432 -0.020600937 -0.01949686 -0.16423713 -0.02293206 -0.016370676 -0.16432504 -0.019342039 -0.015759984 -0.16592683 -0.02786505 0.010835222 -0.16429037 -0.030776238 0.010932594 -0.16298793 -0.025784576 0.015341097 -0.16403702 -0.049902491 -0.0052577103 -0.1504124 -0.046244394 -0.010333129 -0.15186387 -0.050750863 -0.008883005 -0.14842999 -0.038231939 -0.019995138 -0.15394218 -0.040027283 -0.024487456 -0.14968541 -0.044117987 -0.016000779 -0.15119962 -0.026310025 0.018692072 -0.16273591 -0.021207234 0.017577972 -0.16504292 -0.025784576 0.015341097 -0.16403702 -0.050489899 -0.024950324 -0.13654561 -0.054239471 -0.020465428 -0.13534226 -0.049721565 -0.023735939 -0.13917348 -0.034394626 0.026143197 -0.15525012 -0.03057144 0.025206931 -0.15785053 -0.03601402 0.021554824 -0.15675479 -0.026209636 -0.0052910633 -0.16540068 -0.02963151 -0.0041368259 -0.16400442 -0.025013087 8.9023801e-05 -0.1663413 -0.031102397 0.016455231 -0.161359 -0.035845302 0.013481365 -0.15980993 -0.035786591 0.016670726 -0.15887259 -0.04751737 -0.027863134 -0.13788591 -0.051154532 -0.02626496 -0.1334473 -0.050489899 -0.024950324 -0.13654561 -0.045972072 -0.035995953 -0.1279432 -0.048274122 -0.032968163 -0.12844864 -0.046778761 -0.033667568 -0.1306594 -0.043453578 -0.014043228 -0.15270141 -0.0472227 -0.014203678 -0.14927088 -0.046244394 -0.010333129 -0.15186387 -0.032379061 -0.040337738 -0.14237925 -0.037584882 -0.036037326 -0.14164536 -0.036647733 -0.034905057 -0.14394529 -0.044859689 -0.0071753236 -0.15402192 -0.046244394 -0.010333129 -0.15186387 -0.049902491 -0.0052577103 -0.1504124 -0.03870922 0.01118573 -0.15872297 -0.04127422 0.011630677 -0.15701833 -0.03889443 0.015982874 -0.15729792 -0.035786591 0.016670726 -0.15887259 -0.03601402 0.021554824 -0.15675479 -0.031102397 0.016455231 -0.161359 -0.034056295 -0.0342809 -0.14713798 -0.03665233 -0.032562569 -0.14626695 -0.037353121 -0.028394381 -0.14918098 -0.046073407 -0.032282822 -0.1343535 -0.046778761 -0.033667568 -0.1306594 -0.051154532 -0.02626496 -0.1334473 -0.012893413 0.027245337 -0.16361812 -0.017313758 0.023243327 -0.16419351 -0.021771152 0.023994561 -0.16231909 -0.047838386 -0.037208792 -0.11735234 -0.044005815 -0.04129827 -0.11860798 -0.042975083 -0.042932406 -0.11519285 -0.026310025 0.018692072 -0.16273591 -0.021803256 0.020407937 -0.1638263 -0.021207234 0.017577972 -0.16504292 -0.04127422 0.011630677 -0.15701833 -0.0467005 0.01150839 -0.15332985 -0.045822222 0.017396228 -0.15221918 -0.012893413 0.027245337 -0.16361812 -0.016093068 0.028690254 -0.1619148 -0.012957633 0.029401958 -0.1624572 -0.04127422 0.011630677 -0.15701833 -0.045822222 0.017396228 -0.15221918 -0.03889443 0.015982874 -0.15729792 -0.018779414 -0.013999727 -0.16659315 -0.019342039 -0.015759984 -0.16592683 -0.022156436 -0.012903225 -0.16561337 -0.022162799 -0.009683216 -0.16630559 -0.026209636 -0.0052910633 -0.16540068 -0.01929502 -0.0046068546 -0.16804372 -0.040892389 0.019128378 -0.15484889 -0.037633929 0.023306899 -0.15491833 -0.03601402 0.021554824 -0.15675479 -0.021771152 0.023994561 -0.16231909 -0.017313758 0.023243327 -0.16419351 -0.021803256 0.020407937 -0.1638263 -0.031102397 0.016455231 -0.161359 -0.026310025 0.018692072 -0.16273591 -0.025784576 0.015341097 -0.16403702 -0.03889443 0.015982874 -0.15729792 -0.03601402 0.021554824 -0.15675479 -0.035786591 0.016670726 -0.15887259 -0.03057144 0.025206931 -0.15785053 -0.030461282 0.027749555 -0.15644208 -0.024952963 0.026536128 -0.15975241 -0.038416017 0.031300958 -0.14901192 -0.044383999 0.030858258 -0.14473601 -0.038096737 0.035413567 -0.14532468 -0.024952963 0.026536128 -0.15975241 -0.030461282 0.027749555 -0.15644208 -0.025612127 0.029026246 -0.1580309 -0.018779414 -0.013999727 -0.16659315 -0.022156436 -0.012903225 -0.16561337 -0.018199049 -0.011933086 -0.16728348 -0.044859689 -0.0071753236 -0.15402192 -0.049902491 -0.0052577103 -0.1504124 -0.048855804 -0.00037016207 -0.15224588 -0.03889443 0.015982874 -0.15729792 -0.040892389 0.019128378 -0.15484889 -0.03601402 0.021554824 -0.15675479 -0.044383999 0.030858258 -0.14473601 -0.044246305 0.033460934 -0.1420726 -0.038096737 0.035413567 -0.14532468 -0.01929502 -0.0046068546 -0.16804372 -0.026209636 -0.0052910633 -0.16540068 -0.025013087 8.9023801e-05 -0.1663413 -0.044246305 0.033460934 -0.1420726 -0.044191167 0.035400353 -0.13967329 -0.038127102 0.037049033 -0.14342998 -0.039666761 -0.016801646 -0.15444402 -0.044117987 -0.016000779 -0.15119962 -0.043453578 -0.014043228 -0.15270141 -0.021771152 0.023994561 -0.16231909 -0.021186182 0.029053921 -0.15987654 -0.016093068 0.028690254 -0.1619148 -0.017515713 -0.0095465966 -0.16793941 -0.022162799 -0.009683216 -0.16630559 -0.01929502 -0.0046068546 -0.16804372 -0.043505006 -0.039051808 -0.12729338 -0.044169568 -0.039665435 -0.12390506 -0.045972072 -0.035995953 -0.1279432 -0.038786311 0.040276464 -0.13832824 -0.044213492 0.037493907 -0.13637698 -0.038534593 0.042307254 -0.13509852 -0.044191167 0.035400353 -0.13967329 -0.044213492 0.037493907 -0.13637698 -0.038786311 0.040276464 -0.13832824 -0.024952963 0.026536128 -0.15975241 -0.021771152 0.023994561 -0.16231909 -0.025150966 0.023682851 -0.16112745 -0.038231939 -0.019995138 -0.15394218 -0.044117987 -0.016000779 -0.15119962 -0.039666761 -0.016801646 -0.15444402 -0.026310025 0.018692072 -0.16273591 -0.028838336 0.021678545 -0.16042864 -0.025150966 0.023682851 -0.16112745 -0.04439323 0.039723266 -0.13151263 -0.038534593 0.042307254 -0.13509852 -0.044213492 0.037493907 -0.13637698 -0.034394626 0.026143197 -0.15525012 -0.030461282 0.027749555 -0.15644208 -0.03057144 0.025206931 -0.15785053 -0.032379061 -0.040337738 -0.14237925 -0.036647733 -0.034905057 -0.14394529 -0.030048722 -0.037775751 -0.14736733 -0.036854368 0.046726488 -0.12728004 -0.032872494 0.050148964 -0.12441159 -0.033073716 0.04863283 -0.12878278 -0.045822222 0.017396228 -0.15221918 -0.040892389 0.019128378 -0.15484889 -0.03889443 0.015982874 -0.15729792 -0.024952963 0.026536128 -0.15975241 -0.021186182 0.029053921 -0.15987654 -0.021771152 0.023994561 -0.16231909 -0.036958858 -0.023405911 -0.15296763 -0.040027283 -0.024487456 -0.14968541 -0.038231939 -0.019995138 -0.15394218 -0.04439323 0.039723266 -0.13151263 -0.038955931 0.043644674 -0.13163406 -0.038534593 0.042307254 -0.13509852 -0.037633929 0.023306899 -0.15491833 -0.034394626 0.026143197 -0.15525012 -0.03601402 0.021554824 -0.15675479 -0.016093068 0.028690254 -0.1619148 -0.021186182 0.029053921 -0.15987654 -0.016833274 0.031685766 -0.15989375 -0.025612127 0.029026246 -0.1580309 -0.030461282 0.027749555 -0.15644208 -0.02588148 0.031465553 -0.15630068 -0.042975083 -0.042932406 -0.11519285 -0.044005815 -0.04129827 -0.11860798 -0.042384848 -0.043229368 -0.11707186 -0.049721565 -0.023735939 -0.13917348 -0.054239471 -0.020465428 -0.13534226 -0.053201992 -0.01762541 -0.14012966 -0.043130729 0.0056836857 -0.15664719 -0.0467005 0.01150839 -0.15332985 -0.04127422 0.011630677 -0.15701833 -0.037353121 -0.028394381 -0.14918098 -0.040027283 -0.024487456 -0.14968541 -0.036958858 -0.023405911 -0.15296763 -0.025612127 0.029026246 -0.1580309 -0.021186182 0.029053921 -0.15987654 -0.024952963 0.026536128 -0.15975241 -0.030048722 -0.037775751 -0.14736733 -0.036647733 -0.034905057 -0.14394529 -0.034056295 -0.0342809 -0.14713798 -0.046073407 -0.032282822 -0.1343535 -0.051154532 -0.02626496 -0.1334473 -0.04751737 -0.027863134 -0.13788591 -0.036854368 0.046726488 -0.12728004 -0.035471592 0.049234562 -0.12134465 -0.032872494 0.050148964 -0.12441159 -0.04111645 -0.043721911 -0.12063542 -0.044005815 -0.04129827 -0.11860798 -0.044169568 -0.039665435 -0.12390506 -0.042384848 -0.043229368 -0.11707186 -0.044005815 -0.04129827 -0.11860798 -0.04111645 -0.043721911 -0.12063542 -0.038955931 0.043644674 -0.13163406 -0.04439323 0.039723266 -0.13151263 -0.036854368 0.046726488 -0.12728004 -0.044859689 -0.0071753236 -0.15402192 -0.048855804 -0.00037016207 -0.15224588 -0.044048641 -0.0031810941 -0.15550362 -0.036854368 0.046726488 -0.12728004 -0.038940646 0.045931272 -0.12495343 -0.035471592 0.049234562 -0.12134465 -0.01406147 0.0079254871 -0.1692363 -0.016992031 0.010543772 -0.16811493 -0.013737692 0.010526847 -0.16892253 -0.043453578 -0.014043228 -0.15270141 -0.046244394 -0.010333129 -0.15186387 -0.0412663 -0.0091057792 -0.1561691 -0.024952963 0.026536128 -0.15975241 -0.025150966 0.023682851 -0.16112745 -0.028838336 0.021678545 -0.16042864 -0.021186182 0.029053921 -0.15987654 -0.021025769 0.031880967 -0.1581694 -0.016833274 0.031685766 -0.15989375 -0.030461282 0.027749555 -0.15644208 -0.030441992 0.03250891 -0.15314735 -0.02588148 0.031465553 -0.15630068 -0.045972072 -0.035995953 -0.1279432 -0.046778761 -0.033667568 -0.1306594 -0.043933474 -0.03576985 -0.13278042 -0.043933474 -0.03576985 -0.13278042 -0.046778761 -0.033667568 -0.1306594 -0.046073407 -0.032282822 -0.1343535 -0.049721565 -0.023735939 -0.13917348 -0.053201992 -0.01762541 -0.14012966 -0.048912164 -0.021681292 -0.14231716 -0.031328216 -0.033495072 -0.15018098 -0.037353121 -0.028394381 -0.14918098 -0.032980904 -0.029067174 -0.1522994 -0.04751737 -0.027863134 -0.13788591 -0.050489899 -0.024950324 -0.13654561 -0.049721565 -0.023735939 -0.13917348 -0.0412663 -0.0091057792 -0.1561691 -0.046244394 -0.010333129 -0.15186387 -0.044859689 -0.0071753236 -0.15402192 -0.04111645 -0.043721911 -0.12063542 -0.044169568 -0.039665435 -0.12390506 -0.040315997 -0.04387863 -0.12285253 -0.032980904 -0.029067174 -0.1522994 -0.037353121 -0.028394381 -0.14918098 -0.036958858 -0.023405911 -0.15296763 -0.021400025 0.034662597 -0.15602474 -0.013524919 0.036150757 -0.15796173 -0.016833274 0.031685766 -0.15989375 -0.03924286 -0.012834021 -0.15639119 -0.043453578 -0.014043228 -0.15270141 -0.0412663 -0.0091057792 -0.1561691 -0.039666761 -0.016801646 -0.15444402 -0.043453578 -0.014043228 -0.15270141 -0.03924286 -0.012834021 -0.15639119 -0.04439323 0.039723266 -0.13151263 -0.038940646 0.045931272 -0.12495343 -0.036854368 0.046726488 -0.12728004 -0.044730015 0.041088864 -0.12656951 -0.038940646 0.045931272 -0.12495343 -0.04439323 0.039723266 -0.13151263 -0.034529984 0.029690066 -0.15284713 -0.030441992 0.03250891 -0.15314735 -0.034394626 0.026143197 -0.15525012 -0.034394626 0.026143197 -0.15525012 -0.030441992 0.03250891 -0.15314735 -0.030461282 0.027749555 -0.15644208 -0.02588148 0.031465553 -0.15630068 -0.030441992 0.03250891 -0.15314735 -0.026332444 0.034050401 -0.15417549 -0.044079062 -0.032374274 -0.13753508 -0.046073407 -0.032282822 -0.1343535 -0.04751737 -0.027863134 -0.13788591 -0.038940646 0.045931272 -0.12495343 -0.038775254 0.047328603 -0.11870478 -0.03599079 0.049504951 -0.11776145 -0.044048641 -0.0031810941 -0.15550362 -0.048855804 -0.00037016207 -0.15224588 -0.043236274 -0.00031052949 -0.15645884 -0.014098395 0.039927565 -0.15469955 -0.013900342 0.038666815 -0.15585966 -0.021400025 0.034662597 -0.15602474 -0.021400025 0.034662597 -0.15602474 -0.013900342 0.038666815 -0.15585966 -0.013524919 0.036150757 -0.15796173 -0.040043119 -0.03955815 -0.13330957 -0.045972072 -0.035995953 -0.1279432 -0.043933474 -0.03576985 -0.13278042 -0.034465704 -0.020314042 -0.15647553 -0.038231939 -0.019995138 -0.15394218 -0.039666761 -0.016801646 -0.15444402 -0.013404437 0.013760203 -0.16835797 -0.017628906 0.015862297 -0.16669513 -0.013184375 0.016844297 -0.16762425 -0.02588148 0.031465553 -0.15630068 -0.021025769 0.031880967 -0.1581694 -0.025612127 0.029026246 -0.1580309 -0.025612127 0.029026246 -0.1580309 -0.021025769 0.031880967 -0.1581694 -0.021186182 0.029053921 -0.15987654 -0.043505006 -0.039051808 -0.12729338 -0.045972072 -0.035995953 -0.1279432 -0.040043119 -0.03955815 -0.13330957 -0.045281287 0.021554979 -0.15074477 -0.040892389 0.019128378 -0.15484889 -0.045822222 0.017396228 -0.15221918 -0.039297551 -0.043929845 -0.12555805 -0.044169568 -0.039665435 -0.12390506 -0.043505006 -0.039051808 -0.12729338 -0.040315997 -0.04387863 -0.12285253 -0.044169568 -0.039665435 -0.12390506 -0.039297551 -0.043929845 -0.12555805 -0.030048722 -0.037775751 -0.14736733 -0.034056295 -0.0342809 -0.14713798 -0.029090237 -0.036521517 -0.14934953 -0.026310025 0.018692072 -0.16273591 -0.031102397 0.016455231 -0.161359 -0.028838336 0.021678545 -0.16042864 -0.021025769 0.031880967 -0.1581694 -0.021400025 0.034662597 -0.15602474 -0.016833274 0.031685766 -0.15989375 -0.02898366 -0.029186675 -0.15506169 -0.031328216 -0.033495072 -0.15018098 -0.032980904 -0.029067174 -0.1522994 -0.031328205 0.0052870279 -0.16359301 -0.02786505 0.010835222 -0.16429037 -0.025888208 0.0043125669 -0.16599816 -0.040177468 0.024956791 -0.15235347 -0.044902414 0.024918338 -0.14904569 -0.037695523 0.029166298 -0.15118325 -0.037695523 0.029166298 -0.15118325 -0.044902414 0.024918338 -0.14904569 -0.04464912 0.027489586 -0.14742894 -0.048912164 -0.021681292 -0.14231716 -0.053201992 -0.01762541 -0.14012966 -0.052426536 -0.015140985 -0.14317268 -0.039297551 -0.043929845 -0.12555805 -0.043505006 -0.039051808 -0.12729338 -0.03830231 -0.043823313 -0.12815329 -0.013184375 0.016844297 -0.16762425 -0.017628906 0.015862297 -0.16669513 -0.012986558 0.019796668 -0.16672772 -0.036958858 -0.023405911 -0.15296763 -0.038231939 -0.019995138 -0.15394218 -0.034465704 -0.020314042 -0.15647553 -0.037695523 0.029166298 -0.15118325 -0.034394626 0.026143197 -0.15525012 -0.037633929 0.023306899 -0.15491833 -0.038416017 0.031300958 -0.14901192 -0.04464912 0.027489586 -0.14742894 -0.044383999 0.030858258 -0.14473601 -0.044246305 0.033460934 -0.1420726 -0.038127102 0.037049033 -0.14342998 -0.038096737 0.035413567 -0.14532468 -0.032980904 -0.029067174 -0.1522994 -0.036958858 -0.023405911 -0.15296763 -0.031280305 -0.025644345 -0.15573607 -0.040892389 0.019128378 -0.15484889 -0.045281287 0.021554979 -0.15074477 -0.037633929 0.023306899 -0.15491833 -0.025888208 0.0043125669 -0.16599816 -0.02786505 0.010835222 -0.16429037 -0.02313515 0.011989885 -0.1658892 -0.034465704 -0.020314042 -0.15647553 -0.039666761 -0.016801646 -0.15444402 -0.035691574 -0.015151052 -0.15793082 -0.04357909 -0.030976556 -0.13994926 -0.04751737 -0.027863134 -0.13788591 -0.045907509 -0.025783254 -0.14238268 -0.038940646 0.045931272 -0.12495343 -0.03599079 0.049504951 -0.11776145 -0.035471592 0.049234562 -0.12134465 -0.045907509 -0.025783254 -0.14238268 -0.04751737 -0.027863134 -0.13788591 -0.049721565 -0.023735939 -0.13917348 -0.02588148 0.031465553 -0.15630068 -0.021400025 0.034662597 -0.15602474 -0.021025769 0.031880967 -0.1581694 -0.026332444 0.034050401 -0.15417549 -0.021400025 0.034662597 -0.15602474 -0.02588148 0.031465553 -0.15630068 -0.035691574 -0.015151052 -0.15793082 -0.039666761 -0.016801646 -0.15444402 -0.03924286 -0.012834021 -0.15639119 -0.017628906 0.015862297 -0.16669513 -0.012900298 0.022582974 -0.16571823 -0.012986558 0.019796668 -0.16672772 -0.038416017 0.031300958 -0.14901192 -0.037695523 0.029166298 -0.15118325 -0.04464912 0.027489586 -0.14742894 -0.021400025 0.034662597 -0.15602474 -0.021914436 0.037188128 -0.1537599 -0.014098395 0.039927565 -0.15469955 -0.0412663 -0.0091057792 -0.1561691 -0.044859689 -0.0071753236 -0.15402192 -0.039034147 -0.0069785835 -0.15825045 -0.034529984 0.029690066 -0.15284713 -0.034394626 0.026143197 -0.15525012 -0.037695523 0.029166298 -0.15118325 -0.026332444 0.034050401 -0.15417549 -0.021914436 0.037188128 -0.1537599 -0.021400025 0.034662597 -0.15602474 -0.027992554 0.0369079 -0.1508214 -0.021914436 0.037188128 -0.1537599 -0.026332444 0.034050401 -0.15417549 -0.026332444 0.034050401 -0.15417549 -0.030441992 0.03250891 -0.15314735 -0.027992554 0.0369079 -0.1508214 -0.044079062 -0.032374274 -0.13753508 -0.04751737 -0.027863134 -0.13788591 -0.04357909 -0.030976556 -0.13994926 -0.037633929 0.023306899 -0.15491833 -0.040177468 0.024956791 -0.15235347 -0.037695523 0.029166298 -0.15118325 -0.012900298 0.022582974 -0.16571823 -0.017313758 0.023243327 -0.16419351 -0.012867888 0.025036953 -0.16467533 -0.021914436 0.037188128 -0.1537599 -0.022200171 0.039869912 -0.15116672 -0.014098395 0.039927565 -0.15469955 -0.017313758 0.023243327 -0.16419351 -0.012893413 0.027245337 -0.16361812 -0.012867888 0.025036953 -0.16467533 -0.034927733 0.035061155 -0.14809056 -0.030441992 0.03250891 -0.15314735 -0.034529984 0.029690066 -0.15284713 -0.028164398 -0.035191726 -0.15120843 -0.029090237 -0.036521517 -0.14934953 -0.031328216 -0.033495072 -0.15018098 -0.045281287 0.021554979 -0.15074477 -0.040177468 0.024956791 -0.15235347 -0.037633929 0.023306899 -0.15491833 -0.043933474 -0.03576985 -0.13278042 -0.046073407 -0.032282822 -0.1343535 -0.044079062 -0.032374274 -0.13753508 -0.022200171 0.039869912 -0.15116672 -0.021914436 0.037188128 -0.1537599 -0.027992554 0.0369079 -0.1508214 -0.039034147 -0.0069785835 -0.15825045 -0.044859689 -0.0071753236 -0.15402192 -0.044048641 -0.0031810941 -0.15550362 -0.037387338 -0.04357972 -0.13051826 -0.043505006 -0.039051808 -0.12729338 -0.040043119 -0.03955815 -0.13330957 -0.045907509 -0.025783254 -0.14238268 -0.049721565 -0.023735939 -0.13917348 -0.048912164 -0.021681292 -0.14231716 -0.05526191 0.02589581 -0.02528882 -0.052371349 0.031239741 -0.036040943 -0.053243835 0.02719125 -0.046577424 -0.053243835 0.02719125 -0.046577424 -0.052371349 0.031239741 -0.036040943 -0.051004186 0.030930737 -0.056191381 -0.030776238 0.010932594 -0.16298793 -0.031102397 0.016455231 -0.161359 -0.025784576 0.015341097 -0.16403702 -0.044902414 0.024918338 -0.14904569 -0.040177468 0.024956791 -0.15235347 -0.045281287 0.021554979 -0.15074477 -0.050118502 0.032746717 -0.056333475 -0.051004186 0.030930737 -0.056191381 -0.051488195 0.03421779 -0.029268343 -0.014905911 0.043567277 -0.1508943 -0.022200171 0.039869912 -0.15116672 -0.015378067 0.045199256 -0.14890638 -0.052371349 0.031239741 -0.036040943 -0.057176296 0.026330965 0.0033464993 -0.055075444 0.031891949 0.0032221184 -0.056349009 0.026145454 -0.0089156348 -0.057176296 0.026330965 0.0033464993 -0.052371349 0.031239741 -0.036040943 -0.052371349 0.031239741 -0.036040943 -0.055075444 0.031891949 0.0032221184 -0.054064382 0.034152899 0.0028117583 -0.051488195 0.03421779 -0.029268343 -0.054064382 0.034152899 0.0028117583 -0.053442929 0.037539538 0.016186742 -0.034927733 0.035061155 -0.14809056 -0.027992554 0.0369079 -0.1508214 -0.030441992 0.03250891 -0.15314735 -0.050741684 0.037325289 -0.016674636 -0.053442929 0.037539538 0.016186742 -0.051573884 0.039231218 0.0067109843 -0.012957633 0.029401958 -0.1624572 -0.016093068 0.028690254 -0.1619148 -0.01322709 0.033438276 -0.15994023 -0.051488195 0.03421779 -0.029268343 -0.052371349 0.031239741 -0.036040943 -0.054064382 0.034152899 0.0028117583 -0.050741684 0.037325289 -0.016674636 -0.051488195 0.03421779 -0.029268343 -0.053442929 0.037539538 0.016186742 -0.050741684 0.037325289 -0.016674636 -0.051573884 0.039231218 0.0067109843 -0.049476121 0.038970865 -0.018621422 -0.021771152 0.023994561 -0.16231909 -0.016093068 0.028690254 -0.1619148 -0.012893413 0.027245337 -0.16361812 -0.022200171 0.039869912 -0.15116672 -0.019332914 0.045408033 -0.14667781 -0.015378067 0.045199256 -0.14890638 -0.048496105 0.036072638 -0.052536447 -0.051488195 0.03421779 -0.029268343 -0.050741684 0.037325289 -0.016674636 -0.016093068 0.028690254 -0.1619148 -0.016833274 0.031685766 -0.15989375 -0.01322709 0.033438276 -0.15994023 -0.027992554 0.0369079 -0.1508214 -0.030772449 0.038675036 -0.14730616 -0.026591191 0.040378012 -0.14820702 -0.050118502 0.032746717 -0.056333475 -0.051488195 0.03421779 -0.029268343 -0.049263366 0.034592226 -0.054461919 -0.037695523 0.029166298 -0.15118325 -0.038416017 0.031300958 -0.14901192 -0.034529984 0.029690066 -0.15284713 -0.026591191 0.040378012 -0.14820702 -0.019332914 0.045408033 -0.14667781 -0.022200171 0.039869912 -0.15116672 -0.029642753 0.041651204 -0.14466959 -0.019332914 0.045408033 -0.14667781 -0.026591191 0.040378012 -0.14820702 -0.049263366 0.034592226 -0.054461919 -0.051488195 0.03421779 -0.029268343 -0.048496105 0.036072638 -0.052536447 -0.01322709 0.033438276 -0.15994023 -0.016833274 0.031685766 -0.15989375 -0.013524919 0.036150757 -0.15796173 -0.052371349 0.031239741 -0.036040943 -0.051488195 0.03421779 -0.029268343 -0.051004186 0.030930737 -0.056191381 -0.034927733 0.035061155 -0.14809056 -0.030772449 0.038675036 -0.14730616 -0.027992554 0.0369079 -0.1508214 -0.048496105 0.036072638 -0.052536447 -0.046853222 0.038463265 -0.051495463 -0.0463298 0.038406461 -0.056414098 -0.034529984 0.029690066 -0.15284713 -0.038416017 0.031300958 -0.14901192 -0.034927733 0.035061155 -0.14809056 -0.049476121 0.038970865 -0.018621422 -0.048496105 0.036072638 -0.052536447 -0.050741684 0.037325289 -0.016674636 -0.029642753 0.041651204 -0.14466959 -0.019451149 0.047369029 -0.14406082 -0.019332914 0.045408033 -0.14667781 -0.027348971 0.045020171 -0.14191543 -0.019451149 0.047369029 -0.14406082 -0.029642753 0.041651204 -0.14466959 -0.046853222 0.038463265 -0.051495463 -0.048496105 0.036072638 -0.052536447 -0.049476121 0.038970865 -0.018621422 -0.056349009 0.026145454 -0.0089156348 -0.052371349 0.031239741 -0.036040943 -0.05526191 0.02589581 -0.02528882 -0.05730832 0.020827677 -0.013672072 -0.057118151 0.020786304 -0.016449016 -0.057754051 0.020904966 -0.013705475 -0.029642753 0.041651204 -0.14466959 -0.030772449 0.038675036 -0.14730616 -0.034927733 0.035061155 -0.14809056 -0.030772449 0.038675036 -0.14730616 -0.029642753 0.041651204 -0.14466959 -0.026591191 0.040378012 -0.14820702 -0.057754051 0.020904966 -0.013705475 -0.057118151 0.020786304 -0.016449016 -0.057564124 0.020863252 -0.016482094 -0.027348971 0.045020171 -0.14191543 -0.023858806 0.047064442 -0.14155151 -0.019451149 0.047369029 -0.14406082 -0.057205912 0.017420948 -0.028183112 -0.057288382 0.01742458 -0.027043134 -0.057649992 0.017483674 -0.028216301 -0.038416017 0.031300958 -0.14901192 -0.038096737 0.035413567 -0.14532468 -0.034927733 0.035061155 -0.14809056 -0.023858806 0.047064442 -0.14155151 -0.024462031 0.048335414 -0.13909453 -0.018250847 0.051532436 -0.13840853 -0.057649992 0.017483674 -0.028216301 -0.057288382 0.01742458 -0.027043134 -0.057732563 0.01750128 -0.027076438 -0.028213328 0.046291295 -0.13926402 -0.023858806 0.047064442 -0.14155151 -0.027348971 0.045020171 -0.14191543 -0.058496866 0.013812099 -0.023554781 -0.057539947 0.017483175 -0.023542926 -0.057989635 0.017558426 -0.023576532 -0.058496866 0.013812099 -0.023554781 -0.057989635 0.017558426 -0.023576532 -0.058941163 0.013888814 -0.023588054 -0.05138566 0.028832959 -0.072231516 -0.051957842 0.027735529 -0.065959796 -0.049683396 0.031688727 -0.069253385 -0.039299324 0.047123425 -0.10947157 -0.039835222 0.046294216 -0.1044857 -0.03700139 0.04849178 -0.10253131 -0.014098395 0.039927565 -0.15469955 -0.014905911 0.043567277 -0.1508943 -0.014469273 0.041774213 -0.15286191 -0.028213328 0.046291295 -0.13926402 -0.024462031 0.048335414 -0.13909453 -0.023858806 0.047064442 -0.14155151 -0.031240767 0.052620623 -0.10228891 -0.033727799 0.050954152 -0.10236907 -0.03344259 0.050480641 -0.096957959 -0.039299324 0.047123425 -0.10947157 -0.03700139 0.04849178 -0.10253131 -0.035742275 0.049919132 -0.10919785 -0.024462031 0.048335414 -0.13909453 -0.024584515 0.050054614 -0.13595262 -0.018250847 0.051532436 -0.13840853 -0.042860042 0.04077306 -0.079895154 -0.045324299 0.038123112 -0.070868522 -0.041704886 0.041965757 -0.076240376 -0.034927733 0.035061155 -0.14809056 -0.038127102 0.037049033 -0.14342998 -0.029642753 0.041651204 -0.14466959 -0.038127102 0.037049033 -0.14342998 -0.034927733 0.035061155 -0.14809056 -0.038096737 0.035413567 -0.14532468 -0.038107701 0.048164718 -0.114653 -0.042121124 0.044787169 -0.11257848 -0.039299324 0.047123425 -0.10947157 -0.028213328 0.046291295 -0.13926402 -0.024584515 0.050054614 -0.13595262 -0.024462031 0.048335414 -0.13909453 -0.041704886 0.041965757 -0.076240376 -0.043819651 0.040062301 -0.069219686 -0.042987615 0.040781066 -0.072211437 -0.040837679 0.045862261 -0.11667155 -0.042121124 0.044787169 -0.11257848 -0.038107701 0.048164718 -0.114653 -0.014098395 0.039927565 -0.15469955 -0.022200171 0.039869912 -0.15116672 -0.014905911 0.043567277 -0.1508943 -0.045273244 0.038554538 -0.087033369 -0.047478151 0.035417195 -0.083238281 -0.046114445 0.036923364 -0.080177017 -0.035742275 0.049919132 -0.10919785 -0.03700139 0.04849178 -0.10253131 -0.033727799 0.050954152 -0.10236907 -0.029914588 0.049177147 -0.13200387 -0.024584515 0.050054614 -0.13595262 -0.028213328 0.046291295 -0.13926402 -0.04769041 0.035753928 -0.087903202 -0.047478151 0.035417195 -0.083238281 -0.045573823 0.038696982 -0.090794347 -0.035742275 0.049919132 -0.10919785 -0.033727799 0.050954152 -0.10236907 -0.032762714 0.051945407 -0.10700518 -0.04522964 0.041633852 -0.12142804 -0.04573549 0.04147356 -0.11696089 -0.040837679 0.045862261 -0.11667155 -0.038107701 0.048164718 -0.114653 -0.039299324 0.047123425 -0.10947157 -0.035742275 0.049919132 -0.10919785 -0.038127102 0.037049033 -0.14342998 -0.034896791 0.04083515 -0.1414206 -0.029642753 0.041651204 -0.14466959 -0.015378067 0.045199256 -0.14890638 -0.019332914 0.045408033 -0.14667781 -0.015871771 0.046684895 -0.14691122 -0.027348971 0.045020171 -0.14191543 -0.031664781 0.043818682 -0.14003992 -0.028213328 0.046291295 -0.13926402 -0.029642753 0.041651204 -0.14466959 -0.031664781 0.043818682 -0.14003992 -0.027348971 0.045020171 -0.14191543 -0.045573823 0.038696982 -0.090794347 -0.047478151 0.035417195 -0.083238281 -0.045273244 0.038554538 -0.087033369 -0.03700139 0.04849178 -0.10253131 -0.03827149 0.045717709 -0.089127302 -0.03344259 0.050480641 -0.096957959 -0.045573823 0.038696982 -0.090794347 -0.048931811 0.034943312 -0.091876887 -0.04769041 0.035753928 -0.087903202 -0.038145393 0.038948145 -0.14097755 -0.034896791 0.04083515 -0.1414206 -0.038127102 0.037049033 -0.14342998 -0.044199672 0.041410916 -0.098997697 -0.045573823 0.038696982 -0.090794347 -0.045273244 0.038554538 -0.087033369 -0.044199672 0.041410916 -0.098997697 -0.045273244 0.038554538 -0.087033369 -0.043396112 0.040878024 -0.089103937 -0.034896791 0.04083515 -0.1414206 -0.031664781 0.043818682 -0.14003992 -0.029642753 0.041651204 -0.14466959 -0.024584515 0.050054614 -0.13595262 -0.026463209 0.052557297 -0.12805021 -0.02296792 0.053010646 -0.1312281 -0.03823451 0.045352027 -0.085272066 -0.040224921 0.043890163 -0.088046305 -0.040570401 0.04305416 -0.079424717 -0.015871771 0.046684895 -0.14691122 -0.019451149 0.047369029 -0.14406082 -0.016406132 0.048062485 -0.14485829 -0.019332914 0.045408033 -0.14667781 -0.019451149 0.047369029 -0.14406082 -0.015871771 0.046684895 -0.14691122 -0.040570401 0.04305416 -0.079424717 -0.040224921 0.043890163 -0.088046305 -0.042860042 0.04077306 -0.079895154 -0.038107701 0.048164718 -0.114653 -0.035742275 0.049919132 -0.10919785 -0.035477366 0.050107639 -0.11459856 -0.029914588 0.049177147 -0.13200387 -0.026463209 0.052557297 -0.12805021 -0.024584515 0.050054614 -0.13595262 -0.040478151 0.045089308 -0.099085629 -0.043396112 0.040878024 -0.089103937 -0.041876037 0.042333111 -0.088228725 -0.034967855 0.04335228 -0.13751449 -0.031664781 0.043818682 -0.14003992 -0.034896791 0.04083515 -0.1414206 -0.016406132 0.048062485 -0.14485829 -0.019451149 0.047369029 -0.14406082 -0.017079201 0.049509861 -0.14244032 -0.049119212 0.032979798 -0.065702789 -0.050118502 0.032746717 -0.056333475 -0.047331396 0.035745226 -0.066776767 -0.047331396 0.035745226 -0.066776767 -0.050118502 0.032746717 -0.056333475 -0.049263366 0.034592226 -0.054461919 -0.019451149 0.047369029 -0.14406082 -0.023858806 0.047064442 -0.14155151 -0.017079201 0.049509861 -0.14244032 -0.040478151 0.045089308 -0.099085629 -0.041876037 0.042333111 -0.088228725 -0.040224921 0.043890163 -0.088046305 -0.028052945 0.052653026 -0.12518519 -0.026463209 0.052557297 -0.12805021 -0.029914588 0.049177147 -0.13200387 -0.031664781 0.043818682 -0.14003992 -0.034967855 0.04335228 -0.13751449 -0.028213328 0.046291295 -0.13926402 -0.017079201 0.049509861 -0.14244032 -0.023858806 0.047064442 -0.14155151 -0.01765155 0.050574861 -0.14043035 -0.040478151 0.045089308 -0.099085629 -0.040224921 0.043890163 -0.088046305 -0.03827149 0.045717709 -0.089127302 -0.027992554 0.0369079 -0.1508214 -0.026591191 0.040378012 -0.14820702 -0.022200171 0.039869912 -0.15116672 -0.043819651 0.040062301 -0.069219686 -0.045324299 0.038123112 -0.070868522 -0.048496105 0.036072638 -0.052536447 -0.023858806 0.047064442 -0.14155151 -0.018250847 0.051532436 -0.13840853 -0.01765155 0.050574861 -0.14043035 -0.028213328 0.046291295 -0.13926402 -0.032730736 0.04680926 -0.13359566 -0.029914588 0.049177147 -0.13200387 -0.03302598 0.051849805 -0.1113951 -0.035742275 0.049919132 -0.10919785 -0.032762714 0.051945407 -0.10700518 -0.040570401 0.04305416 -0.079424717 -0.042860042 0.04077306 -0.079895154 -0.041704886 0.041965757 -0.076240376 -0.040478151 0.045089308 -0.099085629 -0.03827149 0.045717709 -0.089127302 -0.03700139 0.04849178 -0.10253131 -0.03344259 0.050480641 -0.096957959 -0.03827149 0.045717709 -0.089127302 -0.036274511 0.047413845 -0.090064503 -0.038127102 0.037049033 -0.14342998 -0.044191167 0.035400353 -0.13967329 -0.038145393 0.038948145 -0.14097755 -0.045273244 0.038554538 -0.087033369 -0.046114445 0.036923364 -0.080177017 -0.043396112 0.040878024 -0.089103937 -0.047386076 0.035123087 -0.073609464 -0.05138566 0.028832959 -0.072231516 -0.049683396 0.031688727 -0.069253385 -0.038145393 0.038948145 -0.14097755 -0.038786311 0.040276464 -0.13832824 -0.034896791 0.04083515 -0.1414206 -0.034967855 0.04335228 -0.13751449 -0.032730736 0.04680926 -0.13359566 -0.028213328 0.046291295 -0.13926402 -0.038534593 0.042307254 -0.13509852 -0.032730736 0.04680926 -0.13359566 -0.034967855 0.04335228 -0.13751449 -0.033727799 0.050954152 -0.10236907 -0.031240767 0.052620623 -0.10228891 -0.032762714 0.051945407 -0.10700518 -0.032762714 0.051945407 -0.10700518 -0.031240767 0.052620623 -0.10228891 -0.029898813 0.053694271 -0.10564139 -0.032762714 0.051945407 -0.10700518 -0.028757567 0.054452449 -0.10854499 -0.03302598 0.051849805 -0.1113951 -0.032414984 0.051446125 -0.12008205 -0.028052945 0.052653026 -0.12518519 -0.032872494 0.050148964 -0.12441159 -0.03302598 0.051849805 -0.1113951 -0.028757567 0.054452449 -0.10854499 -0.03102709 0.052936155 -0.11531714 -0.040224921 0.043890163 -0.088046305 -0.045696404 0.037407819 -0.075689182 -0.042860042 0.04077306 -0.079895154 -0.03102709 0.052936155 -0.11531714 -0.027593229 0.055062152 -0.11159778 -0.026767651 0.055367783 -0.1137687 -0.03102709 0.052936155 -0.11531714 -0.026767651 0.055367783 -0.1137687 -0.032414984 0.051446125 -0.12008205 -0.028052945 0.052653026 -0.12518519 -0.032414984 0.051446125 -0.12008205 -0.027303871 0.054231264 -0.12032091 -0.034896791 0.04083515 -0.1414206 -0.038786311 0.040276464 -0.13832824 -0.034967855 0.04335228 -0.13751449 -0.032414984 0.051446125 -0.12008205 -0.026767651 0.055367783 -0.1137687 -0.027303871 0.054231264 -0.12032091 -0.049683396 0.031688727 -0.069253385 -0.049119212 0.032979798 -0.065702789 -0.047386076 0.035123087 -0.073609464 -0.019093791 0.05267911 -0.13561417 -0.02296792 0.053010646 -0.1312281 -0.01987572 0.053510446 -0.13318485 -0.018250847 0.051532436 -0.13840853 -0.024584515 0.050054614 -0.13595262 -0.019093791 0.05267911 -0.13561417 -0.035477366 0.050107639 -0.11459856 -0.035742275 0.049919132 -0.10919785 -0.03302598 0.051849805 -0.1113951 -0.027303871 0.054231264 -0.12032091 -0.026767651 0.055367783 -0.1137687 -0.025360117 0.055598948 -0.11761442 -0.0463298 0.038406461 -0.056414098 -0.045847796 0.038617834 -0.059663817 -0.048496105 0.036072638 -0.052536447 -0.01987572 0.053510446 -0.13318485 -0.02296792 0.053010646 -0.1312281 -0.021413296 0.05470635 -0.12854463 -0.047622412 0.038125772 -0.10125235 -0.048931811 0.034943312 -0.091876887 -0.045573823 0.038696982 -0.090794347 -0.028757567 0.054452449 -0.10854499 -0.032762714 0.051945407 -0.10700518 -0.029898813 0.053694271 -0.10564139 -0.041876037 0.042333111 -0.088228725 -0.046114445 0.036923364 -0.080177017 -0.045696404 0.037407819 -0.075689182 -0.047386076 0.035123087 -0.073609464 -0.049119212 0.032979798 -0.065702789 -0.047331396 0.035745226 -0.066776767 -0.038145393 0.038948145 -0.14097755 -0.044191167 0.035400353 -0.13967329 -0.038786311 0.040276464 -0.13832824 -0.038786311 0.040276464 -0.13832824 -0.038534593 0.042307254 -0.13509852 -0.034967855 0.04335228 -0.13751449 -0.024584515 0.050054614 -0.13595262 -0.02296792 0.053010646 -0.1312281 -0.019093791 0.05267911 -0.13561417 -0.043819651 0.040062301 -0.069219686 -0.048496105 0.036072638 -0.052536447 -0.045847796 0.038617834 -0.059663817 -0.038955931 0.043644674 -0.13163406 -0.032730736 0.04680926 -0.13359566 -0.038534593 0.042307254 -0.13509852 -0.032730736 0.04680926 -0.13359566 -0.033073716 0.04863283 -0.12878278 -0.029914588 0.049177147 -0.13200387 -0.02296792 0.053010646 -0.1312281 -0.026463209 0.052557297 -0.12805021 -0.021413296 0.05470635 -0.12854463 -0.038775254 0.047328603 -0.11870478 -0.040837679 0.045862261 -0.11667155 -0.038107701 0.048164718 -0.114653 -0.03599079 0.049504951 -0.11776145 -0.038107701 0.048164718 -0.114653 -0.035477366 0.050107639 -0.11459856 -0.032872494 0.050148964 -0.12441159 -0.035471592 0.049234562 -0.12134465 -0.032414984 0.051446125 -0.12008205 -0.035471592 0.049234562 -0.12134465 -0.03599079 0.049504951 -0.11776145 -0.032414984 0.051446125 -0.12008205 -0.021413296 0.05470635 -0.12854463 -0.026463209 0.052557297 -0.12805021 -0.022512034 0.055241261 -0.12543175 -0.047331396 0.035745226 -0.066776767 -0.049263366 0.034592226 -0.054461919 -0.045324299 0.038123112 -0.070868522 -0.041876037 0.042333111 -0.088228725 -0.045696404 0.037407819 -0.075689182 -0.040224921 0.043890163 -0.088046305 -0.05231636 0.027245557 -0.060966842 -0.0525674 0.027126487 -0.056583486 -0.051004186 0.030930737 -0.056191381 -0.036854368 0.046726488 -0.12728004 -0.033073716 0.04863283 -0.12878278 -0.038955931 0.043644674 -0.13163406 -0.038955931 0.043644674 -0.13163406 -0.033073716 0.04863283 -0.12878278 -0.032730736 0.04680926 -0.13359566 -0.038775254 0.047328603 -0.11870478 -0.038107701 0.048164718 -0.114653 -0.03599079 0.049504951 -0.11776145 -0.043396112 0.040878024 -0.089103937 -0.046114445 0.036923364 -0.080177017 -0.041876037 0.042333111 -0.088228725 -0.022512034 0.055241261 -0.12543175 -0.028052945 0.052653026 -0.12518519 -0.023711028 0.055561937 -0.12206502 -0.03599079 0.049504951 -0.11776145 -0.035477366 0.050107639 -0.11459856 -0.03302598 0.051849805 -0.1113951 -0.03102709 0.052936155 -0.11531714 -0.028757567 0.054452449 -0.10854499 -0.027593229 0.055062152 -0.11159778 -0.03599079 0.049504951 -0.11776145 -0.03302598 0.051849805 -0.1113951 -0.03102709 0.052936155 -0.11531714 -0.047478151 0.035417195 -0.083238281 -0.05138566 0.028832959 -0.072231516 -0.047386076 0.035123087 -0.073609464 -0.047622412 0.038125772 -0.10125235 -0.045573823 0.038696982 -0.090794347 -0.044199672 0.041410916 -0.098997697 -0.026463209 0.052557297 -0.12805021 -0.028052945 0.052653026 -0.12518519 -0.022512034 0.055241261 -0.12543175 -0.04769041 0.035753928 -0.087903202 -0.050924055 0.029899107 -0.076573201 -0.05138566 0.028832959 -0.072231516 -0.032414984 0.051446125 -0.12008205 -0.03599079 0.049504951 -0.11776145 -0.03102709 0.052936155 -0.11531714 -0.028052945 0.052653026 -0.12518519 -0.027303871 0.054231264 -0.12032091 -0.023711028 0.055561937 -0.12206502 -0.014098395 0.039927565 -0.15469955 0.012822871 0.033500351 -0.14587659 -0.013900342 0.038666815 -0.15585966 -0.03827149 0.045717709 -0.089127302 -0.040224921 0.043890163 -0.088046305 -0.03823451 0.045352027 -0.085272066 0.0077349218 0.043386895 -0.13509417 0.0098580942 0.040107943 -0.1393742 -0.015871771 0.046684895 -0.14691122 0.012822871 0.033500351 -0.14587659 -0.014469273 0.041774213 -0.15286191 0.011397087 0.037075318 -0.14264378 -0.04769041 0.035753928 -0.087903202 -0.05138566 0.028832959 -0.072231516 -0.047478151 0.035417195 -0.083238281 -0.047071129 0.039348487 -0.10538535 -0.047622412 0.038125772 -0.10125235 -0.044199672 0.041410916 -0.098997697 -0.03827149 0.045717709 -0.089127302 -0.03823451 0.045352027 -0.085272066 -0.036274511 0.047413845 -0.090064503 -0.040478151 0.045089308 -0.099085629 -0.044199672 0.041410916 -0.098997697 -0.043396112 0.040878024 -0.089103937 -0.047071129 0.039348487 -0.10538535 -0.044199672 0.041410916 -0.098997697 -0.040478151 0.045089308 -0.099085629 -0.047478151 0.035417195 -0.083238281 -0.047386076 0.035123087 -0.073609464 -0.046114445 0.036923364 -0.080177017 -0.046519093 0.040445495 -0.10976573 -0.047071129 0.039348487 -0.10538535 -0.042519879 0.044118382 -0.10752419 -0.014469273 0.041774213 -0.15286191 0.012822871 0.033500351 -0.14587659 -0.014098395 0.039927565 -0.15469955 -0.051957842 0.027735529 -0.065959796 -0.05231636 0.027245557 -0.060966842 -0.049119212 0.032979798 -0.065702789 0.01405331 0.029477997 -0.14892013 0.014544846 0.02746865 -0.15023582 -0.013524919 0.036150757 -0.15796173 -0.044568196 0.03946764 -0.066184223 -0.043819651 0.040062301 -0.069219686 -0.045847796 0.038617834 -0.059663817 -0.012986558 0.019796668 -0.16672772 -0.012867888 0.025036953 -0.16467533 -0.0053951046 0.020905444 -0.16313191 -0.012900298 0.022582974 -0.16571823 -0.012867888 0.025036953 -0.16467533 -0.012986558 0.019796668 -0.16672772 0.014544846 0.02746865 -0.15023582 -0.0040909746 0.033043832 -0.15554403 -0.013524919 0.036150757 -0.15796173 -0.042519879 0.044118382 -0.10752419 -0.047071129 0.039348487 -0.10538535 -0.040478151 0.045089308 -0.099085629 -0.045696404 0.037407819 -0.075689182 -0.047386076 0.035123087 -0.073609464 -0.047331396 0.035745226 -0.066776767 -0.042519879 0.044118382 -0.10752419 -0.040478151 0.045089308 -0.099085629 -0.039835222 0.046294216 -0.1044857 -0.039835222 0.046294216 -0.1044857 -0.040478151 0.045089308 -0.099085629 -0.03700139 0.04849178 -0.10253131 -0.049119212 0.032979798 -0.065702789 -0.05231636 0.027245557 -0.060966842 -0.051004186 0.030930737 -0.056191381 0.015252804 0.023879634 -0.15230957 -0.0070419931 0.03002388 -0.15922178 0.014544846 0.02746865 -0.15023582 -0.042121124 0.044787169 -0.11257848 -0.046519093 0.040445495 -0.10976573 -0.042519879 0.044118382 -0.10752419 -0.0070419931 0.03002388 -0.15922178 -0.0040909746 0.033043832 -0.15554403 0.014544846 0.02746865 -0.15023582 -0.049119212 0.032979798 -0.065702789 -0.051004186 0.030930737 -0.056191381 -0.050118502 0.032746717 -0.056333475 -0.049683396 0.031688727 -0.069253385 -0.051957842 0.027735529 -0.065959796 -0.049119212 0.032979798 -0.065702789 -0.04573549 0.04147356 -0.11696089 -0.046519093 0.040445495 -0.10976573 -0.042121124 0.044787169 -0.11257848 -0.042121124 0.044787169 -0.11257848 -0.042519879 0.044118382 -0.10752419 -0.039299324 0.047123425 -0.10947157 -0.039299324 0.047123425 -0.10947157 -0.042519879 0.044118382 -0.10752419 -0.039835222 0.046294216 -0.1044857 -0.016406132 0.048062485 -0.14485829 0.0066143279 0.04479244 -0.13292027 0.0077349218 0.043386895 -0.13509417 -0.046114445 0.036923364 -0.080177017 -0.047386076 0.035123087 -0.073609464 -0.045696404 0.037407819 -0.075689182 -0.033727799 0.050954152 -0.10236907 -0.03700139 0.04849178 -0.10253131 -0.03344259 0.050480641 -0.096957959 -0.045696404 0.037407819 -0.075689182 -0.047331396 0.035745226 -0.066776767 -0.042860042 0.04077306 -0.079895154 -0.042860042 0.04077306 -0.079895154 -0.047331396 0.035745226 -0.066776767 -0.045324299 0.038123112 -0.070868522 -0.048931811 0.034943312 -0.091876887 -0.050924055 0.029899107 -0.076573201 -0.04769041 0.035753928 -0.087903202 -0.01406147 0.0079254871 -0.1692363 0.015417421 -0.00014205511 -0.1589485 -0.014704397 0.0036467034 -0.16947497 -0.01406147 0.0079254871 -0.1692363 0.015755773 0.0027117359 -0.15873332 0.015417421 -0.00014205511 -0.1589485 -0.013737692 0.010526847 -0.16892253 0.015755773 0.0027117359 -0.15873332 -0.01406147 0.0079254871 -0.1692363 0.0098580942 0.040107943 -0.1393742 0.010685841 0.038558517 -0.14111561 -0.015378067 0.045199256 -0.14890638 -0.013737692 0.010526847 -0.16892253 0.015984209 0.0052463934 -0.15842341 0.015755773 0.0027117359 -0.15873332 -0.013404437 0.013760203 -0.16835797 0.015984209 0.0052463934 -0.15842341 -0.013737692 0.010526847 -0.16892253 0.015984209 0.0052463934 -0.15842341 -0.013404437 0.013760203 -0.16835797 0.016146036 0.0080597401 -0.15793344 0.0066143279 0.04479244 -0.13292027 -0.016406132 0.048062485 -0.14485829 -0.017079201 0.049509861 -0.14244032 -0.013184375 0.016844297 -0.16762425 0.016146036 0.0080597401 -0.15793344 -0.013404437 0.013760203 -0.16835797 -0.013184375 0.016844297 -0.16762425 0.016203109 0.010067736 -0.15749548 0.016146036 0.0080597401 -0.15793344 -0.012986558 0.019796668 -0.16672772 0.016207686 0.013063884 -0.15670198 -0.013184375 0.016844297 -0.16762425 -0.013184375 0.016844297 -0.16762425 0.016207686 0.013063884 -0.15670198 0.016203109 0.010067736 -0.15749548 -0.012986558 0.019796668 -0.16672772 0.016120579 0.015598951 -0.15589438 0.016207686 0.013063884 -0.15670198 -0.0053951046 0.020905444 -0.16313191 0.016120579 0.015598951 -0.15589438 -0.012986558 0.019796668 -0.16672772 0.016120579 0.015598951 -0.15589438 -0.0053951046 0.020905444 -0.16313191 0.015910191 0.018671446 -0.15474701 -0.01765155 0.050574861 -0.14043035 0.0066143279 0.04479244 -0.13292027 -0.017079201 0.049509861 -0.14244032 -0.012867888 0.025036953 -0.16467533 0.015910191 0.018671446 -0.15474701 -0.0053951046 0.020905444 -0.16313191 0.015910191 0.018671446 -0.15474701 -0.012867888 0.025036953 -0.16467533 0.015647363 0.021134613 -0.15366863 -0.019093791 0.05267911 -0.13561417 0.0056869127 0.045825195 -0.13115312 -0.018250847 0.051532436 -0.13840853 -0.012893413 0.027245337 -0.16361812 0.015647363 0.021134613 -0.15366863 -0.012867888 0.025036953 -0.16467533 -0.045324299 0.038123112 -0.070868522 -0.049263366 0.034592226 -0.054461919 -0.048496105 0.036072638 -0.052536447 -0.040837679 0.045862261 -0.11667155 -0.04573549 0.04147356 -0.11696089 -0.042121124 0.044787169 -0.11257848 -0.014704397 0.0036467034 -0.16947497 0.015417421 -0.00014205511 -0.1589485 0.015012 -0.0027686779 -0.15900406 0.015647363 0.021134613 -0.15366863 -0.012893413 0.027245337 -0.16361812 0.015252804 0.023879634 -0.15230957 -0.012893413 0.027245337 -0.16361812 -0.012957633 0.029401958 -0.1624572 0.015252804 0.023879634 -0.15230957 -0.041704886 0.041965757 -0.076240376 -0.045324299 0.038123112 -0.070868522 -0.043819651 0.040062301 -0.069219686 -0.049781755 -0.034652472 -0.117626 -0.053501561 -0.029008171 -0.11787228 -0.052829728 -0.029564483 -0.12047902 -0.012957633 0.029401958 -0.1624572 -0.0070419931 0.03002388 -0.15922178 0.015252804 0.023879634 -0.15230957 0.010685841 0.038558517 -0.14111561 0.011397087 0.037075318 -0.14264378 -0.014905911 0.043567277 -0.1508943 -0.0040909746 0.033043832 -0.15554403 -0.01322709 0.033438276 -0.15994023 -0.013524919 0.036150757 -0.15796173 -0.047838386 -0.037208792 -0.11735234 -0.049781755 -0.034652472 -0.117626 -0.047424871 -0.037184779 -0.11980544 -0.013900342 0.038666815 -0.15585966 0.012822871 0.033500351 -0.14587659 -0.013524919 0.036150757 -0.15796173 -0.053501561 -0.029008171 -0.11787228 -0.05662863 -0.023317145 -0.11896765 -0.055899248 -0.023326049 -0.12518153 -0.052829728 -0.029564483 -0.12047902 -0.053501561 -0.029008171 -0.11787228 -0.055899248 -0.023326049 -0.12518153 0.0066143279 0.04479244 -0.13292027 -0.01765155 0.050574861 -0.14043035 0.0056869127 0.045825195 -0.13115312 -0.058971565 0.019587379 0.0054721548 -0.058893215 0.019569268 0.0039825123 -0.059416823 0.019664278 0.0054387012 -0.059416823 0.019664278 0.0054387012 -0.058893215 0.019569268 0.0039825123 -0.059347235 0.019651359 0.0039499253 -0.018250847 0.051532436 -0.13840853 0.0056869127 0.045825195 -0.13115312 -0.01765155 0.050574861 -0.14043035 -0.016406132 0.048062485 -0.14485829 0.0077349218 0.043386895 -0.13509417 -0.015871771 0.046684895 -0.14691122 0.012822871 0.033500351 -0.14587659 0.01405331 0.029477997 -0.14892013 -0.013524919 0.036150757 -0.15796173 -0.0070419931 0.03002388 -0.15922178 -0.01322709 0.033438276 -0.15994023 -0.0040909746 0.033043832 -0.15554403 -0.015378067 0.045199256 -0.14890638 0.010685841 0.038558517 -0.14111561 -0.014905911 0.043567277 -0.1508943 -0.0070419931 0.03002388 -0.15922178 -0.012957633 0.029401958 -0.1624572 -0.01322709 0.033438276 -0.15994023 -0.015378067 0.045199256 -0.14890638 -0.015871771 0.046684895 -0.14691122 0.0098580942 0.040107943 -0.1393742 0.011397087 0.037075318 -0.14264378 -0.014469273 0.041774213 -0.15286191 -0.014905911 0.043567277 -0.1508943 + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934

+
+
+
+
+ + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + + + + + + + + + + + + + +
diff --git a/external/rlbench/urdfs/panda/meshes/Pandalink5visual_vis_2.dae b/external/rlbench/urdfs/panda/meshes/Pandalink5visual_vis_2.dae new file mode 100644 index 0000000000000000000000000000000000000000..377f638c57eab54a4e6ec879874389e6394707cd --- /dev/null +++ b/external/rlbench/urdfs/panda/meshes/Pandalink5visual_vis_2.dae @@ -0,0 +1,84 @@ + + + + + Assimp + Assimp Exporter + + 2023-09-26T11:24:21 + 2023-09-26T11:24:21 + + Y_UP + + + + + + + + 0 0 0 4.5895327e-41 + + + 0.98000002 0.98000002 0.98000002 4.5893926e-41 + + + 0.98000002 0.98000002 0.98000002 4.5893926e-41 + + + 0.25 0.25 0.25 -3.0261091e+37 + + + + + + + + + + + + + + + + -0.054477666 -0.015064656 -0.058764473 -0.05654256 -0.010543193 -0.058648437 -0.052092098 -0.018557999 -0.073712587 0.046418209 -0.038604379 0.10874795 0.054143656 -0.030947762 0.11330907 0.049128331 -0.03840299 0.11445285 0.046418209 -0.038604379 0.10874795 0.049128331 -0.03840299 0.11445285 0.043327592 -0.043343198 0.11238042 0.035344798 -0.046930708 0.10611063 0.042343862 -0.039726831 0.10352091 0.043327592 -0.043343198 0.11238042 0.043280128 -0.034218576 0.097604774 0.046418209 -0.038604379 0.10874795 0.042343862 -0.039726831 0.10352091 0.062511988 -0.017315775 0.1214685 0.062645659 -0.010194906 0.11415696 0.064310879 -0.0060262061 0.11852339 0.042343862 -0.039726831 0.10352091 0.036936637 -0.035893884 0.091833338 0.043280128 -0.034218576 0.097604774 0.033038918 -0.042279191 0.095437594 0.042343862 -0.039726831 0.10352091 0.035344798 -0.046930708 0.10611063 0.0086783506 0.055511806 0.15463206 0.049985781 -0.027753571 0.16860457 0.054455154 -0.018497972 0.16927627 0.014794391 -0.041478693 0.08158841 0.02130392 -0.041105226 0.084450051 0.015197546 -0.044917788 0.086386919 0.060153726 -0.014902347 0.10994688 0.057253379 -0.027269088 0.1164239 0.055210624 -0.02577614 0.10848603 0.0012409219 0.055487569 0.1528075 -0.0094957482 0.053548291 0.15026179 0.0086783506 0.055511806 0.15463206 0.053689141 -0.019682121 0.10014275 0.060153726 -0.014902347 0.10994688 0.055210624 -0.02577614 0.10848603 0.032538231 -0.028609205 0.081660375 0.030378714 -0.035616696 0.085350759 0.026597992 -0.031181883 0.078756772 0.04934318 -0.017007019 0.092624478 0.05638063 -0.0097832279 0.09975744 0.053689141 -0.019682121 0.10014275 0.0086783506 0.055511806 0.15463206 0.044579141 -0.035293233 0.16762508 0.049985781 -0.027753571 0.16860457 -0.0094957482 0.053548291 0.15026179 -0.015141557 0.051537801 0.14896865 0.0086783506 0.055511806 0.15463206 0.053373788 -0.0070702564 0.09458486 0.05638063 -0.0097832279 0.09975744 0.048249733 -0.011276213 0.089359157 0.040491365 -0.013422061 0.082164697 0.040362388 -0.02169683 0.084940769 0.033647288 -0.017374622 0.077408545 0.042343862 -0.039726831 0.10352091 0.046418209 -0.038604379 0.10874795 0.043327592 -0.043343198 0.11238042 0.049367718 -0.030249838 0.10234307 0.046418209 -0.038604379 0.10874795 0.043280128 -0.034218576 0.097604774 0.0086783506 0.055511806 0.15463206 0.032586105 -0.04579597 0.1651659 0.044579141 -0.035293233 0.16762508 -0.015141557 0.051537801 0.14896865 -0.02691639 0.044717789 0.14639267 0.0086783506 0.055511806 0.15463206 0.062645659 -0.010194906 0.11415696 0.062511988 -0.017315775 0.1214685 0.060153726 -0.014902347 0.10994688 0.060153726 -0.014902347 0.10994688 0.062511988 -0.017315775 0.1214685 0.060598817 -0.022762433 0.1223153 0.060598817 -0.022762433 0.1223153 0.057253379 -0.027269088 0.1164239 0.060153726 -0.014902347 0.10994688 0.030378714 -0.035616696 0.085350759 0.02130392 -0.041105226 0.084450051 0.017466817 -0.036055516 0.077159382 0.02130392 -0.041105226 0.084450051 0.014794391 -0.041478693 0.08158841 0.017466817 -0.036055516 0.077159382 -0.02691639 0.044717789 0.14639267 -0.036847506 0.034941066 0.14440534 0.0086783506 0.055511806 0.15463206 0.036936637 -0.035893884 0.091833338 0.042343862 -0.039726831 0.10352091 0.033038918 -0.042279191 0.095437594 0.049367718 -0.030249838 0.10234307 0.054143656 -0.030947762 0.11330907 0.046418209 -0.038604379 0.10874795 0.053689141 -0.019682121 0.10014275 0.05638063 -0.0097832279 0.09975744 0.060153726 -0.014902347 0.10994688 0.0086783506 0.055511806 0.15463206 0.019196264 -0.052008219 0.16216528 0.032586105 -0.04579597 0.1651659 0.033038918 -0.042279191 0.095437594 0.035344798 -0.046930708 0.10611063 0.030707458 -0.048166327 0.10283265 0.033647288 -0.017374622 0.077408545 0.040362388 -0.02169683 0.084940769 0.032538231 -0.028609205 0.081660375 0.047191158 -0.027732693 0.096597366 0.043280128 -0.034218576 0.097604774 0.036936637 -0.035893884 0.091833338 0.049367718 -0.030249838 0.10234307 0.043280128 -0.034218576 0.097604774 0.047191158 -0.027732693 0.096597366 0.033038918 -0.042279191 0.095437594 0.030707458 -0.048166327 0.10283265 0.024820456 -0.049435556 0.099917904 -0.036847506 0.034941066 0.14440534 -0.040207438 0.030166026 0.14380039 0.0086783506 0.055511806 0.15463206 0.030378714 -0.035616696 0.085350759 0.017466817 -0.036055516 0.077159382 0.019597257 -0.032086138 0.074972898 0.017140726 0.054225896 0.15676828 0.0086783506 0.055511806 0.15463206 0.031799048 0.048275758 0.1606402 0.047191158 -0.027732693 0.096597366 0.036936637 -0.035893884 0.091833338 0.032538231 -0.028609205 0.081660375 0.0086783506 0.055511806 0.15463206 0.0029095293 -0.054263785 0.15827116 0.019196264 -0.052008219 0.16216528 0.040362388 -0.02169683 0.084940769 0.040491365 -0.013422061 0.082164697 0.048249733 -0.011276213 0.089359157 -0.040207438 0.030166026 0.14380039 -0.045096319 0.020358965 0.14305235 0.0086783506 0.055511806 0.15463206 0.030378714 -0.035616696 0.085350759 0.036936637 -0.035893884 0.091833338 0.033038918 -0.042279191 0.095437594 0.026597992 -0.031181883 0.078756772 0.030378714 -0.035616696 0.085350759 0.019597257 -0.032086138 0.074972898 0.055210624 -0.02577614 0.10848603 0.057253379 -0.027269088 0.1164239 0.054143656 -0.030947762 0.11330907 0.033647288 -0.017374622 0.077408545 0.032538231 -0.028609205 0.081660375 0.02474883 -0.024203453 0.07322225 0.02130392 -0.041105226 0.084450051 0.033038918 -0.042279191 0.095437594 0.024820456 -0.049435556 0.099917904 0.055210624 -0.02577614 0.10848603 0.054143656 -0.030947762 0.11330907 0.049367718 -0.030249838 0.10234307 0.032538231 -0.028609205 0.081660375 0.026597992 -0.031181883 0.078756772 0.02474883 -0.024203453 0.07322225 0.040362388 -0.02169683 0.084940769 0.047191158 -0.027732693 0.096597366 0.032538231 -0.028609205 0.081660375 -0.045096319 0.020358965 0.14305235 -0.047481246 0.012541981 0.14282688 0.0086783506 0.055511806 0.15463206 0.0086783506 0.055511806 0.15463206 -0.0070407926 -0.053089727 0.15577538 0.0029095293 -0.054263785 0.15827116 0.055210624 -0.02577614 0.10848603 0.049367718 -0.030249838 0.10234307 0.053689141 -0.019682121 0.10014275 0.015197546 -0.044917788 0.086386919 0.024820456 -0.049435556 0.099917904 0.019587297 -0.0497813 0.097504407 0.032538231 -0.028609205 0.081660375 0.036936637 -0.035893884 0.091833338 0.030378714 -0.035616696 0.085350759 0.015197546 -0.044917788 0.086386919 0.019587297 -0.0497813 0.097504407 0.013534137 -0.048976578 0.093756378 -0.047481246 0.012541981 0.14282688 -0.048854757 4.0252267e-05 0.14306566 0.0086783506 0.055511806 0.15463206 0.031799048 0.048275758 0.1606402 0.0086783506 0.055511806 0.15463206 0.03742376 0.044381958 0.16219954 0.047191158 -0.027732693 0.096597366 0.053689141 -0.019682121 0.10014275 0.049367718 -0.030249838 0.10234307 0.048249733 -0.011276213 0.089359157 0.05638063 -0.0097832279 0.09975744 0.04934318 -0.017007019 0.092624478 0.04934318 -0.017007019 0.092624478 0.053689141 -0.019682121 0.10014275 0.047191158 -0.027732693 0.096597366 0.02130392 -0.041105226 0.084450051 0.024820456 -0.049435556 0.099917904 0.015197546 -0.044917788 0.086386919 -0.048854757 4.0252267e-05 0.14306566 -0.047627397 -0.011650926 0.14390524 0.0086783506 0.055511806 0.15463206 0.030378714 -0.035616696 0.085350759 0.033038918 -0.042279191 0.095437594 0.02130392 -0.041105226 0.084450051 0.0086783506 0.055511806 0.15463206 -0.021112066 -0.04779502 0.15207811 -0.0070407926 -0.053089727 0.15577538 0.04934318 -0.017007019 0.092624478 0.047191158 -0.027732693 0.096597366 0.040362388 -0.02169683 0.084940769 0.03742376 0.044381958 0.16219954 0.0086783506 0.055511806 0.15463206 0.04795254 0.033258229 0.16529666 0.048249733 -0.011276213 0.089359157 0.04934318 -0.017007019 0.092624478 0.040362388 -0.02169683 0.084940769 0.033647288 -0.017374622 0.077408545 0.02474883 -0.024203453 0.07322225 0.0075668483 -0.017376276 0.059643079 0.0075668483 -0.017376276 0.059643079 0.02474883 -0.024203453 0.07322225 -0.0079824701 -0.024300519 0.052831162 0.02474883 -0.024203453 0.07322225 0.026597992 -0.031181883 0.078756772 0.019597257 -0.032086138 0.074972898 0.019597257 -0.032086138 0.074972898 0.017466817 -0.036055516 0.077159382 0.0006015884 -0.028734874 0.062140085 0.017466817 -0.036055516 0.077159382 -0.0074925399 -0.036138326 0.066115461 0.0006015884 -0.028734874 0.062140085 0.02474883 -0.024203453 0.07322225 0.0006015884 -0.028734874 0.062140085 -0.0079824701 -0.024300519 0.052831162 0.015197546 -0.044917788 0.086386919 -0.011571456 -0.037487302 0.066935934 0.014794391 -0.041478693 0.08158841 0.04795254 0.033258229 0.16529666 0.0086783506 0.055511806 0.15463206 0.054200105 0.02159841 0.16736594 -0.0074925399 -0.036138326 0.066115461 -0.011571456 -0.037487302 0.066935934 -0.02501699 -0.030195238 0.048817836 0.0075668483 -0.017376276 0.059643079 -0.0079824701 -0.024300519 0.052831162 -0.0048259813 -0.018267881 0.051568996 0.013534137 -0.048976578 0.093756378 0.0078557888 -0.047510069 0.089556329 -0.011571456 -0.037487302 0.066935934 -0.0079824701 -0.024300519 0.052831162 -0.014496119 -0.019096361 0.044059098 -0.0048259813 -0.018267881 0.051568996 0.0086783506 0.055511806 0.15463206 -0.031246144 -0.040494338 0.14925449 -0.021112066 -0.04779502 0.15207811 -0.047627397 -0.011650926 0.14390524 -0.04312491 -0.024662422 0.14560981 0.0086783506 0.055511806 0.15463206 0.054200105 0.02159841 0.16736594 0.0086783506 0.055511806 0.15463206 0.056932282 0.012170442 0.16847192 0.015197546 -0.044917788 0.086386919 0.013534137 -0.048976578 0.093756378 -0.011571456 -0.037487302 0.066935934 0.0006015884 -0.028734874 0.062140085 -0.0068201548 -0.029727001 0.058599234 -0.0079824701 -0.024300519 0.052831162 0.0075668483 -0.017376276 0.059643079 -0.0048259813 -0.018267881 0.051568996 -0.0015049252 -0.012988658 0.052339677 0.056932282 0.012170442 0.16847192 0.0086783506 0.055511806 0.15463206 0.0579179 -0.0018341874 0.16935878 0.019597257 -0.032086138 0.074972898 0.0006015884 -0.028734874 0.062140085 0.02474883 -0.024203453 0.07322225 0.0006015884 -0.028734874 0.062140085 -0.0074925399 -0.036138326 0.066115461 -0.0068201548 -0.029727001 0.058599234 0.014794391 -0.041478693 0.08158841 -0.0074925399 -0.036138326 0.066115461 0.017466817 -0.036055516 0.077159382 0.0579179 -0.0018341874 0.16935878 0.0086783506 0.055511806 0.15463206 0.056909889 -0.0097496016 0.16947579 0.056909889 -0.0097496016 0.16947579 0.0086783506 0.055511806 0.15463206 0.054455154 -0.018497972 0.16927627 0.014794391 -0.041478693 0.08158841 -0.011571456 -0.037487302 0.066935934 -0.0074925399 -0.036138326 0.066115461 -0.033655398 -0.026325367 0.035286784 -0.041656755 -0.023618555 0.016089145 -0.035896089 -0.022063345 0.017427886 -0.021062085 -0.016051531 0.035363507 -0.02034492 -0.02037861 0.039226003 -0.026741749 -0.019845316 0.030584509 0.0086783506 0.055511806 0.15463206 -0.0364714 -0.03497038 0.14771745 -0.031246144 -0.040494338 0.14925449 -0.029920485 -0.016618466 0.017735669 -0.03370405 -0.020057883 0.014122564 -0.02964926 -0.014727502 0.0070328661 -0.031384829 -0.021549577 0.025549997 -0.035896089 -0.022063345 0.017427886 -0.03370405 -0.020057883 0.014122564 -0.02034492 -0.02037861 0.039226003 -0.019382097 -0.024646822 0.044114545 -0.026741749 -0.019845316 0.030584509 -0.019382097 -0.024646822 0.044114545 -0.02547691 -0.026515754 0.041645534 -0.029967804 -0.024271276 0.033417486 -0.02547691 -0.026515754 0.041645534 -0.02501699 -0.030195238 0.048817836 -0.033655398 -0.026325367 0.035286784 -0.04312491 -0.024662422 0.14560981 -0.0364714 -0.03497038 0.14771745 0.0086783506 0.055511806 0.15463206 -0.019382097 -0.024646822 0.044114545 -0.029967804 -0.024271276 0.033417486 -0.026741749 -0.019845316 0.030584509 -0.021062085 -0.016051531 0.035363507 -0.026741749 -0.019845316 0.030584509 -0.022854114 -0.01229387 0.030491052 -0.02501699 -0.030195238 0.048817836 -0.011571456 -0.037487302 0.066935934 -0.032308698 -0.029875724 0.046290617 -0.02501699 -0.030195238 0.048817836 -0.032308698 -0.029875724 0.046290617 -0.033655398 -0.026325367 0.035286784 -0.02964926 -0.014727502 0.0070328661 -0.03370405 -0.020057883 0.014122564 -0.032460075 -0.018456129 0.0073442487 -0.025049012 -0.01179941 0.025860332 -0.022854114 -0.01229387 0.030491052 -0.029920485 -0.016618466 0.017735669 -0.03370405 -0.020057883 0.014122564 -0.035896089 -0.022063345 0.017427886 -0.03766527 -0.022033243 0.0070428392 -0.02547691 -0.026515754 0.041645534 -0.033655398 -0.026325367 0.035286784 -0.029967804 -0.024271276 0.033417486 -0.026741749 -0.019845316 0.030584509 -0.031384829 -0.021549577 0.025549997 -0.022854114 -0.01229387 0.030491052 -0.025049012 -0.01179941 0.025860332 -0.029920485 -0.016618466 0.017735669 -0.0273221 -0.011544808 0.018631484 -0.026741749 -0.019845316 0.030584509 -0.029967804 -0.024271276 0.033417486 -0.031384829 -0.021549577 0.025549997 -0.03370405 -0.020057883 0.014122564 -0.03766527 -0.022033243 0.0070428392 -0.032460075 -0.018456129 0.0073442487 -0.0048259813 -0.018267881 0.051568996 -0.012805033 -0.0027655105 0.040230736 -0.0015049252 -0.012988658 0.052339677 -0.0048259813 -0.018267881 0.051568996 -0.014496119 -0.019096361 0.044059098 -0.012805033 -0.0027655105 0.040230736 -0.0079824701 -0.024300519 0.052831162 -0.019382097 -0.024646822 0.044114545 -0.014496119 -0.019096361 0.044059098 -0.0079824701 -0.024300519 0.052831162 -0.0068201548 -0.029727001 0.058599234 -0.019382097 -0.024646822 0.044114545 -0.014496119 -0.019096361 0.044059098 -0.021062085 -0.016051531 0.035363507 -0.012805033 -0.0027655105 0.040230736 -0.022854114 -0.01229387 0.030491052 -0.03370405 -0.020057883 0.014122564 -0.029920485 -0.016618466 0.017735669 -0.022854114 -0.01229387 0.030491052 -0.031384829 -0.021549577 0.025549997 -0.03370405 -0.020057883 0.014122564 -0.035896089 -0.022063345 0.017427886 -0.041656755 -0.023618555 0.016089145 -0.03766527 -0.022033243 0.0070428392 -0.014496119 -0.019096361 0.044059098 -0.019382097 -0.024646822 0.044114545 -0.02034492 -0.02037861 0.039226003 -0.03766527 -0.022033243 0.0070428392 -0.041656755 -0.023618555 0.016089145 -0.043770231 -0.023128336 0.0096801519 -0.0273221 -0.011544808 0.018631484 -0.029920485 -0.016618466 0.017735669 -0.02964926 -0.014727502 0.0070328661 -0.0068201548 -0.029727001 0.058599234 -0.0074925399 -0.036138326 0.066115461 -0.02501699 -0.030195238 0.048817836 -0.014496119 -0.019096361 0.044059098 -0.02034492 -0.02037861 0.039226003 -0.021062085 -0.016051531 0.035363507 -0.032086954 0.038838338 0.13981833 -0.036847506 0.034941066 0.14440534 -0.02691639 0.044717789 0.14639267 -0.029967804 -0.024271276 0.033417486 -0.033655398 -0.026325367 0.035286784 -0.031384829 -0.021549577 0.025549997 -0.0068201548 -0.029727001 0.058599234 -0.02547691 -0.026515754 0.041645534 -0.019382097 -0.024646822 0.044114545 -0.031384829 -0.021549577 0.025549997 -0.033655398 -0.026325367 0.035286784 -0.035896089 -0.022063345 0.017427886 -0.0068201548 -0.029727001 0.058599234 -0.02501699 -0.030195238 0.048817836 -0.02547691 -0.026515754 0.041645534 -0.043770231 -0.023128336 0.0096801519 -0.039007396 -0.02415037 -0.055604056 -0.034234874 -0.023414705 -0.056381907 -0.043770231 -0.023128336 0.0096801519 -0.051373344 -0.020502804 0.015170842 -0.045601267 -0.02198009 -0.057548344 -0.051373344 -0.020502804 0.015170842 -0.047530562 -0.020930478 -0.058888908 -0.045601267 -0.02198009 -0.057548344 -0.051373344 -0.020502804 0.015170842 -0.052943598 -0.019883158 0.024339484 -0.047530562 -0.020930478 -0.058888908 -0.052943598 -0.019883158 0.024339484 -0.052238908 -0.017436624 -0.058204647 -0.047530562 -0.020930478 -0.058888908 -0.052943598 -0.019883158 0.024339484 -0.056396771 -0.016668521 0.0068097604 -0.052238908 -0.017436624 -0.058204647 -0.043770231 -0.023128336 0.0096801519 -0.045601267 -0.02198009 -0.057548344 -0.039007396 -0.02415037 -0.055604056 -0.060624663 -0.0085055791 0.073806219 -0.061573025 -0.0028826192 0.075195253 -0.062461492 -0.0093940562 0.061484758 -0.056061029 -0.00038242311 0.086304396 -0.059901297 0.0083988551 0.078227356 -0.061573025 -0.0028826192 0.075195253 -0.061573025 -0.0028826192 0.075195253 -0.059056371 0.013843497 0.078077018 -0.060940541 0.010445172 0.07382448 -0.063676842 -0.004263462 0.05310354 -0.063374072 0.00042200196 0.062331598 -0.062999748 0.0091175437 0.043485239 -0.061749518 -0.01173185 0.040793773 -0.061462484 -0.0081924172 0.0081926761 -0.059644889 -0.013221882 0.0085112853 -0.062287327 0.0023488454 0.071529932 -0.062061179 0.01003408 0.067036815 -0.063374072 0.00042200196 0.062331598 -0.059901297 0.0083988551 0.078227356 -0.059056371 0.013843497 0.078077018 -0.061573025 -0.0028826192 0.075195253 -0.063362405 -0.0046641207 0.035395142 -0.062017228 -0.0044336575 0.0078614708 -0.062614895 -0.0081535801 0.030978715 0.055844739 0.025079466 0.15329421 0.059391808 0.017708262 0.15144779 0.05732825 0.026701212 0.1417938 -0.062017228 -0.0044336575 0.0078614708 -0.061462484 -0.0081924172 0.0081926761 -0.062614895 -0.0081535801 0.030978715 -0.062350217 0.012529321 0.056322809 -0.063374072 0.00042200196 0.062331598 -0.062061179 0.01003408 0.067036815 -0.060940541 0.010445172 0.07382448 -0.062061179 0.01003408 0.067036815 -0.062287327 0.0023488454 0.071529932 -0.060940541 0.010445172 0.07382448 -0.062287327 0.0023488454 0.071529932 -0.061573025 -0.0028826192 0.075195253 -0.062287327 0.0023488454 0.071529932 -0.063374072 0.00042200196 0.062331598 -0.061573025 -0.0028826192 0.075195253 -0.061573025 -0.0028826192 0.075195253 -0.063374072 0.00042200196 0.062331598 -0.062461492 -0.0093940562 0.061484758 -0.062461492 -0.0093940562 0.061484758 -0.063374072 0.00042200196 0.062331598 -0.063676842 -0.004263462 0.05310354 -0.062461492 -0.0093940562 0.061484758 -0.063676842 -0.004263462 0.05310354 -0.062614895 -0.0081535801 0.030978715 -0.062461492 -0.0093940562 0.061484758 -0.062614895 -0.0081535801 0.030978715 -0.061493274 -0.012179894 0.050420884 -0.061493274 -0.012179894 0.050420884 -0.062614895 -0.0081535801 0.030978715 -0.061749518 -0.01173185 0.040793773 -0.062614895 -0.0081535801 0.030978715 -0.061462484 -0.0081924172 0.0081926761 -0.061749518 -0.01173185 0.040793773 -0.063374072 0.00042200196 0.062331598 -0.062350217 0.012529321 0.056322809 -0.062999748 0.0091175437 0.043485239 -0.063676842 -0.004263462 0.05310354 -0.063362405 -0.0046641207 0.035395142 -0.062614895 -0.0081535801 0.030978715 -0.063362405 -0.0046641207 0.035395142 -0.062999748 0.0091175437 0.043485239 -0.062905274 0.0061877053 0.027941154 -0.063676842 -0.004263462 0.05310354 -0.062999748 0.0091175437 0.043485239 -0.063362405 -0.0046641207 0.035395142 -0.062009145 0.0039585121 0.0082045821 -0.062905274 0.0061877053 0.027941154 -0.060931444 0.012654565 0.0086282054 -0.063362405 -0.0046641207 0.035395142 -0.062009145 0.0039585121 0.0082045821 -0.062017228 -0.0044336575 0.0078614708 -0.063362405 -0.0046641207 0.035395142 -0.062905274 0.0061877053 0.027941154 -0.062009145 0.0039585121 0.0082045821 -0.059644889 -0.013221882 0.0085112853 -0.05654256 -0.010543193 -0.058648437 -0.054477666 -0.015064656 -0.058764473 -0.059644889 -0.013221882 0.0085112853 -0.061462484 -0.0081924172 0.0081926761 -0.05654256 -0.010543193 -0.058648437 -0.061462484 -0.0081924172 0.0081926761 -0.057215843 -0.0074604442 -0.059276734 -0.05654256 -0.010543193 -0.058648437 -0.061462484 -0.0081924172 0.0081926761 -0.062017228 -0.0044336575 0.0078614708 -0.057215843 -0.0074604442 -0.059276734 -0.056507099 -0.010495565 -0.073223747 -0.052092098 -0.018557999 -0.073712587 -0.05654256 -0.010543193 -0.058648437 0.031393249 -0.01075047 0.074281789 0.0078914296 -0.0057009603 0.057433199 0.024160331 0.005592586 0.067208827 0.031393249 -0.01075047 0.074281789 0.024160331 0.005592586 0.067208827 0.032140967 -0.0014827676 0.073478557 -0.021007828 0.0072614388 0.02526097 -0.025049012 -0.01179941 0.025860332 -0.0273221 -0.011544808 0.018631484 0.061590344 0.020106427 0.12539946 0.05732825 0.026701212 0.1417938 0.061402109 0.019348456 0.13603009 -0.021007828 0.0072614388 0.02526097 -0.023900317 0.0061734393 0.01545577 -0.022139661 0.013457607 0.019317305 -0.042252306 0.039940722 0.072173491 -0.035010621 0.042694338 0.072281778 -0.037595913 0.041902792 0.062431552 -0.021007828 0.0072614388 0.02526097 -0.0273221 -0.011544808 0.018631484 -0.023900317 0.0061734393 0.01545577 -0.017803377 0.0041305153 0.032249562 -0.022854114 -0.01229387 0.030491052 -0.025049012 -0.01179941 0.025860332 0.053878754 0.03224558 0.11690871 0.05826921 0.026931228 0.12580745 0.059631865 0.023080658 0.11607531 0.031393249 -0.01075047 0.074281789 0.033647288 -0.017374622 0.077408545 0.020866418 -0.013167835 0.067387991 0.012142788 0.053302113 0.12718165 0.021549014 0.051071238 0.12050685 0.014191155 0.051505346 0.11486824 0.031393249 -0.01075047 0.074281789 0.020866418 -0.013167835 0.067387991 0.0078914296 -0.0057009603 0.057433199 0.0078914296 -0.0057009603 0.057433199 0.0061071562 0.0035336297 0.054979637 0.024160331 0.005592586 0.067208827 0.020866418 -0.013167835 0.067387991 0.033647288 -0.017374622 0.077408545 0.0075668483 -0.017376276 0.059643079 -0.026989404 -0.006875766 0.0067403391 -0.025319727 0.0004181735 0.0067077563 -0.023900317 0.0061734393 0.01545577 0.0078914296 -0.0057009603 0.057433199 0.020866418 -0.013167835 0.067387991 -0.0015049252 -0.012988658 0.052339677 -0.023900317 0.0061734393 0.01545577 -0.0273221 -0.011544808 0.018631484 -0.026989404 -0.006875766 0.0067403391 0.020866418 -0.013167835 0.067387991 0.0075668483 -0.017376276 0.059643079 -0.0015049252 -0.012988658 0.052339677 0.0078914296 -0.0057009603 0.057433199 -0.0015049252 -0.012988658 0.052339677 -0.0012628471 -0.0022218416 0.050305963 -0.045096319 0.020358965 0.14305235 -0.040207438 0.030166026 0.14380039 -0.040030029 0.027289463 0.13474689 -0.0012628471 -0.0022218416 0.050305963 -0.012805033 -0.0027655105 0.040230736 -0.010364057 0.0098717613 0.040535416 -0.0012628471 -0.0022218416 0.050305963 -0.0015049252 -0.012988658 0.052339677 -0.012805033 -0.0027655105 0.040230736 -0.0273221 -0.011544808 0.018631484 -0.02964926 -0.014727502 0.0070328661 -0.026989404 -0.006875766 0.0067403391 -0.026989404 -0.006875766 0.0067403391 -0.02964926 -0.014727502 0.0070328661 -0.028867401 -0.013039367 0.0076106722 -0.010364057 0.0098717613 0.040535416 -0.022854114 -0.01229387 0.030491052 -0.017803377 0.0041305153 0.032249562 -0.010364057 0.0098717613 0.040535416 -0.012805033 -0.0027655105 0.040230736 -0.022854114 -0.01229387 0.030491052 0.031393249 -0.01075047 0.074281789 0.040491365 -0.013422061 0.082164697 0.033647288 -0.017374622 0.077408545 -0.017803377 0.0041305153 0.032249562 -0.025049012 -0.01179941 0.025860332 -0.021007828 0.0072614388 0.02526097 -0.012805033 -0.0027655105 0.040230736 -0.021062085 -0.016051531 0.035363507 -0.022854114 -0.01229387 0.030491052 -0.032460075 -0.018456129 0.0073442487 -0.027941689 -0.02016516 -0.060240865 -0.026546363 -0.017659957 -0.05653267 -0.032460075 -0.018456129 0.0073442487 -0.03766527 -0.022033243 0.0070428392 -0.027941689 -0.02016516 -0.060240865 -0.03766527 -0.022033243 0.0070428392 -0.034234874 -0.023414705 -0.056381907 -0.027941689 -0.02016516 -0.060240865 -0.028867401 -0.013039367 0.0076106722 -0.02964926 -0.014727502 0.0070328661 -0.024230031 -0.014087361 -0.058998864 -0.02964926 -0.014727502 0.0070328661 -0.026546363 -0.017659957 -0.05653267 -0.024230031 -0.014087361 -0.058998864 -0.02964926 -0.014727502 0.0070328661 -0.032460075 -0.018456129 0.0073442487 -0.026546363 -0.017659957 -0.05653267 -0.03766527 -0.022033243 0.0070428392 -0.043770231 -0.023128336 0.0096801519 -0.034234874 -0.023414705 -0.056381907 -0.018732356 -0.031014534 -0.077282943 -0.029424584 -0.029121472 -0.074860536 -0.02215378 -0.032044459 -0.079068936 -0.0075122667 -0.035660572 -0.080598749 -0.0058937226 -0.031817615 -0.075942487 -0.018732356 -0.031014534 -0.077282943 -0.026687687 -0.023997955 -0.067822129 -0.034736346 -0.026216215 -0.067952678 -0.028443415 -0.026635643 -0.070497945 -0.018732356 -0.031014534 -0.077282943 -0.028443415 -0.026635643 -0.070497945 -0.029424584 -0.029121472 -0.074860536 -0.018732356 -0.031014534 -0.077282943 -0.026687687 -0.023997955 -0.067822129 -0.028443415 -0.026635643 -0.070497945 -0.02215378 -0.032044459 -0.079068936 -0.029424584 -0.029121472 -0.074860536 -0.015226854 -0.041012879 -0.092962138 -0.015226854 -0.041012879 -0.092962138 -0.0075122667 -0.035660572 -0.080598749 -0.02215378 -0.032044459 -0.079068936 -0.028443415 -0.026635643 -0.070497945 -0.034736346 -0.026216215 -0.067952678 -0.029424584 -0.029121472 -0.074860536 -0.0075122667 -0.035660572 -0.080598749 -0.018732356 -0.031014534 -0.077282943 -0.02215378 -0.032044459 -0.079068936 -0.013589057 -0.01746814 -0.06824889 -0.010220387 -0.0098178862 -0.065612808 -0.018408183 -0.0092189424 -0.064108014 -0.023794621 -0.017340327 -0.063604273 -0.017643811 0.0019007437 -0.061055683 -0.024230031 -0.014087361 -0.058998864 -0.02026315 -0.018508727 -0.067146204 -0.018408183 -0.0092189424 -0.064108014 -0.023794621 -0.017340327 -0.063604273 -0.0058937226 -0.031817615 -0.075942487 -0.0058544376 -0.02687189 -0.072021984 -0.013589057 -0.01746814 -0.06824889 -0.027941689 -0.02016516 -0.060240865 -0.023794621 -0.017340327 -0.063604273 -0.024230031 -0.014087361 -0.058998864 -0.026687687 -0.023997955 -0.067822129 -0.023794621 -0.017340327 -0.063604273 -0.030680288 -0.023254622 -0.0629353 -0.0058544376 -0.02687189 -0.072021984 -0.0058692256 -0.022371704 -0.069309667 -0.0053292755 -0.017501634 -0.066934817 -0.035992678 0.038939856 0.021512453 -0.02968047 0.038942792 0.02654567 -0.034919377 0.03819178 0.0072041349 -0.018408183 -0.0092189424 -0.064108014 -0.013334058 0.0021615576 -0.063398957 -0.017643811 0.0019007437 -0.061055683 -0.017014068 0.0052073649 -0.061117362 -0.019078543 0.011873178 -0.055358253 -0.021557076 -0.0029731956 -0.055685971 -0.024230031 -0.014087361 -0.058998864 -0.017643811 0.0019007437 -0.061055683 -0.017014068 0.0052073649 -0.061117362 -0.027941689 -0.02016516 -0.060240865 -0.024230031 -0.014087361 -0.058998864 -0.026546363 -0.017659957 -0.05653267 -0.0049572377 -0.0057186852 -0.063988693 -0.0027630934 0.0042987713 -0.063492775 -0.010220387 -0.0098178862 -0.065612808 0.012142788 0.053302113 0.12718165 0.013871079 0.054276593 0.13861746 0.021549014 0.051071238 0.12050685 -0.0049298028 -0.012447441 -0.065203264 -0.0049572377 -0.0057186852 -0.063988693 -0.010220387 -0.0098178862 -0.065612808 -0.030680288 -0.023254622 -0.0629353 -0.027941689 -0.02016516 -0.060240865 -0.034234874 -0.023414705 -0.056381907 -0.010220387 -0.0098178862 -0.065612808 -0.0027630934 0.0042987713 -0.063492775 -0.013334058 0.0021615576 -0.063398957 -0.023794621 -0.017340327 -0.063604273 -0.018408183 -0.0092189424 -0.064108014 -0.017643811 0.0019007437 -0.061055683 -0.018732356 -0.031014534 -0.077282943 -0.02026315 -0.018508727 -0.067146204 -0.026687687 -0.023997955 -0.067822129 -0.0058937226 -0.031817615 -0.075942487 -0.013589057 -0.01746814 -0.06824889 -0.02026315 -0.018508727 -0.067146204 -0.034736346 -0.026216215 -0.067952678 -0.030680288 -0.023254622 -0.0629353 -0.034234874 -0.023414705 -0.056381907 -0.026687687 -0.023997955 -0.067822129 -0.030680288 -0.023254622 -0.0629353 -0.034736346 -0.026216215 -0.067952678 -0.026687687 -0.023997955 -0.067822129 -0.02026315 -0.018508727 -0.067146204 -0.023794621 -0.017340327 -0.063604273 -0.02026315 -0.018508727 -0.067146204 -0.013589057 -0.01746814 -0.06824889 -0.018408183 -0.0092189424 -0.064108014 -0.039007396 -0.02415037 -0.055604056 -0.034736346 -0.026216215 -0.067952678 -0.034234874 -0.023414705 -0.056381907 -0.013589057 -0.01746814 -0.06824889 -0.0049298028 -0.012447441 -0.065203264 -0.010220387 -0.0098178862 -0.065612808 -0.030680288 -0.023254622 -0.0629353 -0.023794621 -0.017340327 -0.063604273 -0.027941689 -0.02016516 -0.060240865 -0.0053292755 -0.017501634 -0.066934817 -0.0049298028 -0.012447441 -0.065203264 -0.013589057 -0.01746814 -0.06824889 -0.010220387 -0.0098178862 -0.065612808 -0.013334058 0.0021615576 -0.063398957 -0.018408183 -0.0092189424 -0.064108014 -0.0058544376 -0.02687189 -0.072021984 -0.0053292755 -0.017501634 -0.066934817 -0.013589057 -0.01746814 -0.06824889 -0.018732356 -0.031014534 -0.077282943 -0.0058937226 -0.031817615 -0.075942487 -0.02026315 -0.018508727 -0.067146204 -0.021557076 -0.0029731956 -0.055685971 -0.024230031 -0.014087361 -0.058998864 -0.017014068 0.0052073649 -0.061117362 -0.05105764 -0.027562862 -0.10321703 -0.046899352 -0.033292174 -0.11146653 -0.043878756 -0.034847327 -0.10696211 -0.056507099 -0.010495565 -0.073223747 -0.050768703 -0.022507917 -0.085459642 -0.052092098 -0.018557999 -0.073712587 -0.05105764 -0.027562862 -0.10321703 -0.043878756 -0.034847327 -0.10696211 -0.04756777 -0.025499586 -0.085525304 -0.050768703 -0.022507917 -0.085459642 -0.054848768 -0.023675868 -0.10616655 -0.05105764 -0.027562862 -0.10321703 -0.043878756 -0.034847327 -0.10696211 -0.041567065 -0.034762312 -0.10097846 -0.04756777 -0.025499586 -0.085525304 -0.050768703 -0.022507917 -0.085459642 -0.04756777 -0.025499586 -0.085525304 -0.052092098 -0.018557999 -0.073712587 -0.05105764 -0.027562862 -0.10321703 -0.04756777 -0.025499586 -0.085525304 -0.050768703 -0.022507917 -0.085459642 -0.054848768 -0.023675868 -0.10616655 -0.055110842 -0.024519406 -0.11314452 -0.05105764 -0.027562862 -0.10321703 -0.054848768 -0.023675868 -0.10616655 -0.050768703 -0.022507917 -0.085459642 -0.056507099 -0.010495565 -0.073223747 -0.062461492 -0.0093940562 0.061484758 -0.059365842 -0.01381537 0.067928158 -0.060624663 -0.0085055791 0.073806219 0.056677632 0.029356625 0.13356641 0.05732825 0.026701212 0.1417938 0.061590344 0.020106427 0.12539946 -0.027932707 -0.040913627 -0.13065438 -0.025881829 -0.037299942 -0.13975792 -0.019145792 -0.039785046 -0.13706148 -0.015918521 -0.033795752 -0.14652669 -0.021270391 -0.024749435 -0.15461965 -0.013203801 -0.027244784 -0.15293863 -0.021462465 -0.042461213 -0.12968615 -0.027932707 -0.040913627 -0.13065438 -0.019145792 -0.039785046 -0.13706148 -0.023542617 -0.03336902 -0.14613952 -0.015918521 -0.033795752 -0.14652669 -0.01800571 -0.037066311 -0.14199542 -0.013345175 -0.0037647567 -0.16332297 -0.0058789128 -0.00022436466 -0.16268311 -0.007835757 -0.0086127268 -0.16169962 -0.059644889 -0.013221882 0.0085112853 -0.054477666 -0.015064656 -0.058764473 -0.056396771 -0.016668521 0.0068097604 -0.061749518 -0.01173185 0.040793773 -0.059644889 -0.013221882 0.0085112853 -0.056396771 -0.016668521 0.0068097604 -0.056914434 -0.017782575 0.057752956 -0.061749518 -0.01173185 0.040793773 -0.056396771 -0.016668521 0.0068097604 -0.025881829 -0.037299942 -0.13975792 -0.023542617 -0.03336902 -0.14613952 -0.01800571 -0.037066311 -0.14199542 -0.021270391 -0.024749435 -0.15461965 -0.011297273 -0.022412805 -0.15623459 -0.013203801 -0.027244784 -0.15293863 -0.052238908 -0.017436624 -0.058204647 -0.054477666 -0.015064656 -0.058764473 -0.052092098 -0.018557999 -0.073712587 -0.019145792 -0.039785046 -0.13706148 -0.025881829 -0.037299942 -0.13975792 -0.01800571 -0.037066311 -0.14199542 -0.054477666 -0.015064656 -0.058764473 -0.052238908 -0.017436624 -0.058204647 -0.056396771 -0.016668521 0.0068097604 -0.041567065 -0.034762312 -0.10097846 -0.043878756 -0.034847327 -0.10696211 -0.0367603 -0.039487932 -0.10875181 -0.062461492 -0.0093940562 0.061484758 -0.061493274 -0.012179894 0.050420884 -0.059365842 -0.01381537 0.067928158 -0.029424584 -0.029121472 -0.074860536 -0.036294114 -0.030008562 -0.082173422 -0.015226854 -0.041012879 -0.092962138 -0.047530562 -0.020930478 -0.058888908 -0.04716206 -0.021971943 -0.069895566 -0.045601267 -0.02198009 -0.057548344 -0.036294114 -0.030008562 -0.082173422 -0.029424584 -0.029121472 -0.074860536 -0.035976801 -0.027749859 -0.074975714 -0.035976801 -0.027749859 -0.074975714 -0.034736346 -0.026216215 -0.067952678 -0.045601267 -0.02198009 -0.057548344 -0.042923048 -0.028119458 -0.084289931 -0.036294114 -0.030008562 -0.082173422 -0.04716206 -0.021971943 -0.069895566 -0.04716206 -0.021971943 -0.069895566 -0.035976801 -0.027749859 -0.074975714 -0.045601267 -0.02198009 -0.057548344 -0.052092098 -0.018557999 -0.073712587 -0.04716206 -0.021971943 -0.069895566 -0.052238908 -0.017436624 -0.058204647 -0.052238908 -0.017436624 -0.058204647 -0.04716206 -0.021971943 -0.069895566 -0.047530562 -0.020930478 -0.058888908 -0.04716206 -0.021971943 -0.069895566 -0.036294114 -0.030008562 -0.082173422 -0.035976801 -0.027749859 -0.074975714 -0.035992678 0.038939856 0.021512453 -0.026801394 0.039720744 0.034544054 -0.02968047 0.038942792 0.02654567 -0.035992678 0.038939856 0.021512453 -0.031794414 0.040358156 0.036299996 -0.026801394 0.039720744 0.034544054 -0.04756777 -0.025499586 -0.085525304 -0.042923048 -0.028119458 -0.084289931 -0.052092098 -0.018557999 -0.073712587 -0.045601267 -0.02198009 -0.057548344 -0.034736346 -0.026216215 -0.067952678 -0.039007396 -0.02415037 -0.055604056 -0.035976801 -0.027749859 -0.074975714 -0.029424584 -0.029121472 -0.074860536 -0.034736346 -0.026216215 -0.067952678 -0.052092098 -0.018557999 -0.073712587 -0.042923048 -0.028119458 -0.084289931 -0.04716206 -0.021971943 -0.069895566 -0.036294114 -0.030008562 -0.082173422 -0.028944552 -0.039457165 -0.098181494 -0.015226854 -0.041012879 -0.092962138 -0.042923048 -0.028119458 -0.084289931 -0.032408699 -0.039972279 -0.10288852 -0.028944552 -0.039457165 -0.098181494 -0.041567065 -0.034762312 -0.10097846 -0.032408699 -0.039972279 -0.10288852 -0.042923048 -0.028119458 -0.084289931 -0.028944552 -0.039457165 -0.098181494 -0.036294114 -0.030008562 -0.082173422 -0.042923048 -0.028119458 -0.084289931 -0.04756777 -0.025499586 -0.085525304 -0.041567065 -0.034762312 -0.10097846 -0.042923048 -0.028119458 -0.084289931 -0.033655398 -0.026325367 0.035286784 -0.038562156 -0.026171368 0.032661602 -0.041656755 -0.023618555 0.016089145 0.064310879 -0.0060262061 0.11852339 0.063558459 -0.014037079 0.12433229 0.062511988 -0.017315775 0.1214685 0.0078557888 -0.047510069 0.089556329 -0.0068394425 -0.042270459 0.077330343 -0.011571456 -0.037487302 0.066935934 0.062511988 -0.017315775 0.1214685 0.063558459 -0.014037079 0.12433229 0.060598817 -0.022762433 0.1223153 0.060598817 -0.022762433 0.1223153 0.057016741 -0.029729355 0.12538637 0.057253379 -0.027269088 0.1164239 0.057253379 -0.027269088 0.1164239 0.057016741 -0.029729355 0.12538637 0.049128331 -0.03840299 0.11445285 0.057253379 -0.027269088 0.1164239 0.049128331 -0.03840299 0.11445285 0.054143656 -0.030947762 0.11330907 -0.0068394425 -0.042270459 0.077330343 -0.032308698 -0.029875724 0.046290617 -0.011571456 -0.037487302 0.066935934 -0.033655398 -0.026325367 0.035286784 -0.032308698 -0.029875724 0.046290617 -0.038562156 -0.026171368 0.032661602 0.056677632 0.029356625 0.13356641 0.061590344 0.020106427 0.12539946 0.05826921 0.026931228 0.12580745 -0.033037402 -0.035378326 0.09586183 -0.040970728 -0.029893823 0.082829297 -0.034085471 -0.034310568 0.085576683 -0.041656755 -0.023618555 0.016089145 -0.038562156 -0.026171368 0.032661602 -0.043770231 -0.023128336 0.0096801519 -0.047661871 -0.025948312 0.067584701 -0.045862824 -0.024957623 0.04164296 -0.038623109 -0.030615939 0.063000888 0.057021249 -0.027170667 0.14040805 0.052881714 -0.033821557 0.14084741 0.055003226 -0.032491278 0.13143381 -0.023607871 -0.043396384 0.12193441 -0.04084805 -0.029285258 0.091141343 -0.033037402 -0.035378326 0.09586183 -0.0073666587 -0.045948207 0.094028711 -0.0068394425 -0.042270459 0.077330343 0.0078557888 -0.047510069 0.089556329 0.00018462546 -0.053283371 0.13045919 -0.0024089422 -0.050842341 0.11444749 0.0043362346 -0.05051009 0.10566559 0.055003226 -0.032491278 0.13143381 0.053934015 -0.034280766 0.12642431 0.057016741 -0.029729355 0.12538637 -0.047627397 -0.011650926 0.14390524 -0.047144063 -0.00026619813 0.13412085 -0.044507418 -0.015942628 0.13031618 -0.044507418 -0.015942628 0.13031618 -0.047144063 -0.00026619813 0.13412085 -0.046407547 -0.0061210371 0.12938412 0.049985781 -0.027753571 0.16860457 0.050315976 -0.03302025 0.15447512 0.056135599 -0.022892501 0.15531778 0.057016741 -0.029729355 0.12538637 0.053934015 -0.034280766 0.12642431 0.049128331 -0.03840299 0.11445285 -0.046860993 0.031134896 0.086566627 -0.040419053 0.034963194 0.093251131 -0.045296639 0.03687916 0.078160554 0.044579141 -0.035293233 0.16762508 0.050315976 -0.03302025 0.15447512 0.049985781 -0.027753571 0.16860457 -0.044943418 0.020007562 0.10647131 -0.042450219 0.021741016 0.11709795 -0.038560759 0.029816808 0.1152955 -0.017402649 -0.045002177 0.10631322 -0.034085471 -0.034310568 0.085576683 -0.038623109 -0.030615939 0.063000888 0.056135599 -0.022892501 0.15531778 0.050315976 -0.03302025 0.15447512 0.053731143 -0.029752072 0.1499701 0.010381433 -0.053560972 0.12321208 0.00018462546 -0.053283371 0.13045919 0.0043362346 -0.05051009 0.10566559 -0.047348343 -0.013268394 0.10578249 -0.056061029 -0.00038242311 0.086304396 -0.049344577 -0.016115498 0.094878055 0.056135599 -0.022892501 0.15531778 0.053731143 -0.029752072 0.1499701 0.057021249 -0.027170667 0.14040805 0.0036037106 -0.05443874 0.14041863 0.00018462546 -0.053283371 0.13045919 0.010381433 -0.053560972 0.12321208 0.0029095293 -0.054263785 0.15827116 -0.0070407926 -0.053089727 0.15577538 0.0036037106 -0.05443874 0.14041863 0.0043362346 -0.05051009 0.10566559 -0.0073666587 -0.045948207 0.094028711 0.013534137 -0.048976578 0.093756378 0.013534137 -0.048976578 0.093756378 -0.0073666587 -0.045948207 0.094028711 0.0078557888 -0.047510069 0.089556329 -0.051474102 -0.022568339 0.073060632 -0.051875971 -0.022672227 0.067754924 -0.047661871 -0.025948312 0.067584701 0.056135599 -0.022892501 0.15531778 0.057021249 -0.027170667 0.14040805 0.059291061 -0.019164601 0.14699553 0.050742637 0.034957938 0.14626212 0.04795254 0.033258229 0.16529666 0.055844739 0.025079466 0.15329421 0.060963031 -0.021422859 0.12815709 0.055003226 -0.032491278 0.13143381 0.057016741 -0.029729355 0.12538637 -0.045670457 -0.01448239 0.11349417 -0.046839274 -0.0090085119 0.11321088 -0.048519094 -0.0049855281 0.1064855 0.0045659519 0.049570918 0.099134296 0.014191155 0.051505346 0.11486824 0.016645566 0.048590157 0.10074782 -0.023607871 -0.043396384 0.12193441 -0.033037402 -0.035378326 0.09586183 -0.021816764 -0.043517865 0.11124536 -0.030937523 -0.038053375 0.12748975 -0.033386003 -0.035240855 0.11321814 -0.023607871 -0.043396384 0.12193441 -0.046407547 -0.0061210371 0.12938412 -0.046839274 -0.0090085119 0.11321088 -0.044507418 -0.015942628 0.13031618 0.060963031 -0.021422859 0.12815709 0.057016741 -0.029729355 0.12538637 0.060598817 -0.022762433 0.1223153 -0.023607871 -0.043396384 0.12193441 -0.033386003 -0.035240855 0.11321814 -0.04084805 -0.029285258 0.091141343 0.012807433 -0.054338269 0.13167042 0.0036037106 -0.05443874 0.14041863 0.010381433 -0.053560972 0.12321208 0.049985781 -0.027753571 0.16860457 0.056135599 -0.022892501 0.15531778 0.054455154 -0.018497972 0.16927627 0.010381433 -0.053560972 0.12321208 0.0043362346 -0.05051009 0.10566559 0.013708287 -0.051332369 0.10625719 -0.031246144 -0.040494338 0.14925449 -0.030937523 -0.038053375 0.12748975 -0.026860313 -0.042452306 0.13645141 0.0092167174 0.048036259 0.093403459 0.016645566 0.048590157 0.10074782 0.022661215 0.044532184 0.088425085 0.058138687 -0.018388456 0.15427253 0.056135599 -0.022892501 0.15531778 0.059291061 -0.019164601 0.14699553 -0.017402649 -0.045002177 0.10631322 -0.038623109 -0.030615939 0.063000888 -0.023644635 -0.0372805 0.0725784 0.0029095293 -0.054263785 0.15827116 0.0036037106 -0.05443874 0.14041863 0.0091654221 -0.054609939 0.14930785 -0.021816764 -0.043517865 0.11124536 -0.033037402 -0.035378326 0.09586183 -0.034085471 -0.034310568 0.085576683 0.013708287 -0.051332369 0.10625719 0.0043362346 -0.05051009 0.10566559 0.013534137 -0.048976578 0.093756378 0.058138687 -0.018388456 0.15427253 0.054455154 -0.018497972 0.16927627 0.056135599 -0.022892501 0.15531778 -0.045670457 -0.01448239 0.11349417 -0.048519094 -0.0049855281 0.1064855 -0.047348343 -0.013268394 0.10578249 0.0091654221 -0.054609939 0.14930785 0.0036037106 -0.05443874 0.14041863 0.012807433 -0.054338269 0.13167042 -0.04312491 -0.024662422 0.14560981 -0.047627397 -0.011650926 0.14390524 -0.044507418 -0.015942628 0.13031618 -0.021112066 -0.04779502 0.15207811 -0.031246144 -0.040494338 0.14925449 -0.026860313 -0.042452306 0.13645141 -0.049786221 -0.020648688 0.086016767 -0.051474102 -0.022568339 0.073060632 -0.04084805 -0.029285258 0.091141343 -0.026860313 -0.042452306 0.13645141 -0.030937523 -0.038053375 0.12748975 -0.023607871 -0.043396384 0.12193441 -0.026252966 0.043934703 0.063852184 -0.02173361 0.045749899 0.086922251 -0.012982503 0.046638563 0.082315482 -0.038623109 -0.030615939 0.063000888 -0.045862824 -0.024957623 0.04164296 -0.042522795 -0.025755506 0.036610883 -0.032308698 -0.029875724 0.046290617 -0.042522795 -0.025755506 0.036610883 -0.038562156 -0.026171368 0.032661602 -0.040970728 -0.029893823 0.082829297 -0.051474102 -0.022568339 0.073060632 -0.047661871 -0.025948312 0.067584701 0.0091654221 -0.054609939 0.14930785 0.012807433 -0.054338269 0.13167042 0.015535038 -0.054400578 0.14183161 0.061007954 -0.012484052 0.14778417 0.059291061 -0.019164601 0.14699553 0.061971929 -0.016949318 0.13311069 -0.04084805 -0.029285258 0.091141343 -0.051474102 -0.022568339 0.073060632 -0.040970728 -0.029893823 0.082829297 0.012807433 -0.054338269 0.13167042 0.010381433 -0.053560972 0.12321208 0.017093811 -0.054036725 0.13054474 0.063558459 -0.014037079 0.12433229 0.060963031 -0.021422859 0.12815709 0.060598817 -0.022762433 0.1223153 -0.041551247 0.03237268 0.096156873 -0.040419053 0.034963194 0.093251131 -0.046860993 0.031134896 0.086566627 0.061007954 -0.012484052 0.14778417 0.061971929 -0.016949318 0.13311069 0.064269908 -0.0062717865 0.13187285 0.054455154 -0.018497972 0.16927627 0.058138687 -0.018388456 0.15427253 0.056909889 -0.0097496016 0.16947579 0.015535038 -0.054400578 0.14183161 0.012807433 -0.054338269 0.13167042 0.017093811 -0.054036725 0.13054474 -0.044507418 -0.015942628 0.13031618 -0.046839274 -0.0090085119 0.11321088 -0.045670457 -0.01448239 0.11349417 0.064269908 -0.0062717865 0.13187285 0.061971929 -0.016949318 0.13311069 0.063558459 -0.014037079 0.12433229 -0.04312491 -0.024662422 0.14560981 -0.044507418 -0.015942628 0.13031618 -0.040272325 -0.026515936 0.13410664 -0.028246731 0.042012658 0.10745943 -0.01929377 0.046956182 0.12166016 -0.021459943 0.045824125 0.11186982 0.010381433 -0.053560972 0.12321208 0.013708287 -0.051332369 0.10625719 0.019114027 -0.051959872 0.11175536 0.017093811 -0.054036725 0.13054474 0.010381433 -0.053560972 0.12321208 0.019114027 -0.051959872 0.11175536 -0.047348343 -0.013268394 0.10578249 -0.049344577 -0.016115498 0.094878055 -0.038134489 -0.029659972 0.11599709 -0.044583183 -0.023740793 0.097322203 -0.049344577 -0.016115498 0.094878055 -0.049786221 -0.020648688 0.086016767 0.013708287 -0.051332369 0.10625719 0.013534137 -0.048976578 0.093756378 0.019587297 -0.0497813 0.097504407 0.015535038 -0.054400578 0.14183161 0.017093811 -0.054036725 0.13054474 0.023385299 -0.053248532 0.13597216 0.0029095293 -0.054263785 0.15827116 0.0091654221 -0.054609939 0.14930785 0.01706991 -0.053619422 0.1514353 -0.021816764 -0.043517865 0.11124536 -0.034085471 -0.034310568 0.085576683 -0.017402649 -0.045002177 0.10631322 0.024118753 -0.052904744 0.12877776 0.017093811 -0.054036725 0.13054474 0.019114027 -0.051959872 0.11175536 0.054473378 0.030928735 0.14300439 0.055844739 0.025079466 0.15329421 0.05732825 0.026701212 0.1417938 -0.023644635 -0.0372805 0.0725784 -0.038623109 -0.030615939 0.063000888 -0.042522795 -0.025755506 0.036610883 0.01706991 -0.053619422 0.1514353 0.0091654221 -0.054609939 0.14930785 0.015535038 -0.054400578 0.14183161 0.052881714 -0.033821557 0.14084741 0.057021249 -0.027170667 0.14040805 0.053731143 -0.029752072 0.1499701 0.060963031 -0.021422859 0.12815709 0.057021249 -0.027170667 0.14040805 0.055003226 -0.032491278 0.13143381 0.060963031 -0.021422859 0.12815709 0.059291061 -0.019164601 0.14699553 0.057021249 -0.027170667 0.14040805 0.059291061 -0.019164601 0.14699553 0.060963031 -0.021422859 0.12815709 0.061971929 -0.016949318 0.13311069 0.023385299 -0.053248532 0.13597216 0.017093811 -0.054036725 0.13054474 0.024118753 -0.052904744 0.12877776 0.059291061 -0.019164601 0.14699553 0.061007954 -0.012484052 0.14778417 0.058138687 -0.018388456 0.15427253 -0.04259954 0.02093678 0.13008167 -0.045096319 0.020358965 0.14305235 -0.040030029 0.027289463 0.13474689 -0.034085471 -0.034310568 0.085576683 -0.040970728 -0.029893823 0.082829297 -0.047661871 -0.025948312 0.067584701 0.063558459 -0.014037079 0.12433229 0.061971929 -0.016949318 0.13311069 0.060963031 -0.021422859 0.12815709 0.019114027 -0.051959872 0.11175536 0.013708287 -0.051332369 0.10625719 0.019587297 -0.0497813 0.097504407 0.061007954 -0.012484052 0.14778417 0.056909889 -0.0097496016 0.16947579 0.058138687 -0.018388456 0.15427253 -0.059056371 0.013843497 0.078077018 -0.059901297 0.0083988551 0.078227356 -0.05380239 0.0057650642 0.090275511 -0.052126341 -0.0026421731 0.095019221 -0.05380239 0.0057650642 0.090275511 -0.059901297 0.0083988551 0.078227356 0.024118753 -0.052904744 0.12877776 0.019114027 -0.051959872 0.11175536 0.028017154 -0.050344955 0.11063909 0.01706991 -0.053619422 0.1514353 0.015535038 -0.054400578 0.14183161 0.023385299 -0.053248532 0.13597216 -0.056396771 -0.016668521 0.0068097604 -0.056327228 -0.017291702 0.023421274 -0.056914434 -0.017782575 0.057752956 -0.061493274 -0.012179894 0.050420884 -0.061749518 -0.01173185 0.040793773 -0.056914434 -0.017782575 0.057752956 -0.053351872 -0.021192512 0.055554163 -0.056914434 -0.017782575 0.057752956 -0.056327228 -0.017291702 0.023421274 -0.040272325 -0.026515936 0.13410664 -0.044507418 -0.015942628 0.13031618 -0.045670457 -0.01448239 0.11349417 0.0029095293 -0.054263785 0.15827116 0.01706991 -0.053619422 0.1514353 0.019196264 -0.052008219 0.16216528 -0.061493274 -0.012179894 0.050420884 -0.056914434 -0.017782575 0.057752956 -0.055162273 -0.019117959 0.070489034 -0.04084805 -0.029285258 0.091141343 -0.044583183 -0.023740793 0.097322203 -0.049786221 -0.020648688 0.086016767 -0.026860313 -0.042452306 0.13645141 -0.023607871 -0.043396384 0.12193441 -0.017668374 -0.047406122 0.12836909 -0.055162273 -0.019117959 0.070489034 -0.059365842 -0.01381537 0.067928158 -0.061493274 -0.012179894 0.050420884 -0.052126341 -0.0026421731 0.095019221 -0.059901297 0.0083988551 0.078227356 -0.056061029 -0.00038242311 0.086304396 0.023385299 -0.053248532 0.13597216 0.024118753 -0.052904744 0.12877776 0.033211406 -0.050209459 0.13331828 0.053878754 0.03224558 0.11690871 0.05276709 0.034433626 0.12540662 0.05826921 0.026931228 0.12580745 0.01706991 -0.053619422 0.1514353 0.023385299 -0.053248532 0.13597216 0.02733692 -0.05180316 0.14295647 -0.023935903 0.044894777 0.13475612 -0.019823913 0.048063647 0.13993821 -0.01929377 0.046956182 0.12166016 -0.010974517 -0.04662279 0.1023502 -0.017402649 -0.045002177 0.10631322 -0.023644635 -0.0372805 0.0725784 -0.021112066 -0.04779502 0.15207811 -0.026860313 -0.042452306 0.13645141 -0.017668374 -0.047406122 0.12836909 -0.041515514 -0.023890832 0.11854464 -0.045670457 -0.01448239 0.11349417 -0.047348343 -0.013268394 0.10578249 -0.052943598 -0.019883158 0.024339484 -0.056327228 -0.017291702 0.023421274 -0.056396771 -0.016668521 0.0068097604 -0.041515514 -0.023890832 0.11854464 -0.047348343 -0.013268394 0.10578249 -0.038134489 -0.029659972 0.11599709 -0.053513467 -0.0069079692 0.090613522 -0.061573025 -0.0028826192 0.075195253 -0.060624663 -0.0085055791 0.073806219 -0.023607871 -0.043396384 0.12193441 -0.021816764 -0.043517865 0.11124536 -0.017668374 -0.047406122 0.12836909 0.024820456 -0.049435556 0.099917904 0.019114027 -0.051959872 0.11175536 0.019587297 -0.0497813 0.097504407 -0.050050192 0.024173401 0.088361353 -0.044216082 0.027105127 0.098405547 -0.041551247 0.03237268 0.096156873 0.05276709 0.034433626 0.12540662 0.056677632 0.029356625 0.13356641 0.05826921 0.026931228 0.12580745 -0.053513467 -0.0069079692 0.090613522 -0.056061029 -0.00038242311 0.086304396 -0.061573025 -0.0028826192 0.075195253 0.028017154 -0.050344955 0.11063909 0.019114027 -0.051959872 0.11175536 0.024820456 -0.049435556 0.099917904 -0.016414773 -0.04945555 0.14345896 -0.021112066 -0.04779502 0.15207811 -0.017668374 -0.047406122 0.12836909 0.02733692 -0.05180316 0.14295647 0.023385299 -0.053248532 0.13597216 0.033211406 -0.050209459 0.13331828 0.027265275 -0.05042164 0.15378295 0.01706991 -0.053619422 0.1514353 0.02733692 -0.05180316 0.14295647 0.033211406 -0.050209459 0.13331828 0.024118753 -0.052904744 0.12877776 0.03136351 -0.050435636 0.12162267 0.024118753 -0.052904744 0.12877776 0.028017154 -0.050344955 0.11063909 0.03136351 -0.050435636 0.12162267 0.019196264 -0.052008219 0.16216528 0.01706991 -0.053619422 0.1514353 0.027265275 -0.05042164 0.15378295 0.012142788 0.053302113 0.12718165 0.014191155 0.051505346 0.11486824 0.0045659519 0.049570918 0.099134296 -0.048165333 -7.9702135e-05 0.10854638 -0.047771703 0.012423694 0.10378474 -0.051168613 0.0060180509 0.096575864 -0.057354558 -0.014880561 0.074802935 -0.060624663 -0.0085055791 0.073806219 -0.059365842 -0.01381537 0.067928158 0.050742637 0.034957938 0.14626212 0.055844739 0.025079466 0.15329421 0.054473378 0.030928735 0.14300439 -0.034085471 -0.034310568 0.085576683 -0.047661871 -0.025948312 0.067584701 -0.038623109 -0.030615939 0.063000888 -0.016414773 -0.04945555 0.14345896 -0.017668374 -0.047406122 0.12836909 -0.01124095 -0.049332313 0.12158707 0.030707458 -0.048166327 0.10283265 0.028017154 -0.050344955 0.11063909 0.024820456 -0.049435556 0.099917904 -0.017668374 -0.047406122 0.12836909 -0.021816764 -0.043517865 0.11124536 -0.017402649 -0.045002177 0.10631322 -0.0073666587 -0.045948207 0.094028711 -0.023644635 -0.0372805 0.0725784 -0.032308698 -0.029875724 0.046290617 -0.047661871 -0.025948312 0.067584701 -0.053351872 -0.021192512 0.055554163 -0.056327228 -0.017291702 0.023421274 0.038405377 -0.047170531 0.13965665 0.02733692 -0.05180316 0.14295647 0.033211406 -0.050209459 0.13331828 0.033211406 -0.050209459 0.13331828 0.03136351 -0.050435636 0.12162267 0.038434803 -0.047693267 0.1293252 -0.055162273 -0.019117959 0.070489034 -0.056914434 -0.017782575 0.057752956 -0.051875971 -0.022672227 0.067754924 0.027265275 -0.05042164 0.15378295 0.02733692 -0.05180316 0.14295647 0.038405377 -0.047170531 0.13965665 -0.040272325 -0.026515936 0.13410664 -0.045670457 -0.01448239 0.11349417 -0.041515514 -0.023890832 0.11854464 -0.04312491 -0.024662422 0.14560981 -0.040272325 -0.026515936 0.13410664 -0.0364714 -0.03497038 0.14771745 -0.048854757 4.0252267e-05 0.14306566 -0.047481246 0.012541981 0.14282688 -0.046708263 0.0058633061 0.13335955 0.034965102 -0.046739958 0.15352236 0.027265275 -0.05042164 0.15378295 0.038405377 -0.047170531 0.13965665 -0.045643039 0.011844915 0.11495637 -0.048165333 -7.9702135e-05 0.10854638 -0.046583068 0.0029633963 0.11853894 -0.057354558 -0.014880561 0.074802935 -0.059365842 -0.01381537 0.067928158 -0.055162273 -0.019117959 0.070489034 -0.045862824 -0.024957623 0.04164296 -0.047661871 -0.025948312 0.067584701 -0.056327228 -0.017291702 0.023421274 -0.02737 0.04169099 0.12485135 -0.023935903 0.044894777 0.13475612 -0.01929377 0.046956182 0.12166016 0.019196264 -0.052008219 0.16216528 0.027265275 -0.05042164 0.15378295 0.032586105 -0.04579597 0.1651659 -0.044583183 -0.023740793 0.097322203 -0.038134489 -0.029659972 0.11599709 -0.049344577 -0.016115498 0.094878055 -0.048519094 -0.0049855281 0.1064855 -0.051168613 0.0060180509 0.096575864 -0.05380239 0.0057650642 0.090275511 -0.0073666587 -0.045948207 0.094028711 -0.032308698 -0.029875724 0.046290617 -0.0068394425 -0.042270459 0.077330343 0.038434803 -0.047693267 0.1293252 0.03136351 -0.050435636 0.12162267 0.036449548 -0.048325125 0.12115292 -0.0070407926 -0.053089727 0.15577538 -0.021112066 -0.04779502 0.15207811 -0.016414773 -0.04945555 0.14345896 0.03136351 -0.050435636 0.12162267 0.028017154 -0.050344955 0.11063909 0.030707458 -0.048166327 0.10283265 -0.051875971 -0.022672227 0.067754924 -0.056914434 -0.017782575 0.057752956 -0.053351872 -0.021192512 0.055554163 0.054473378 0.030928735 0.14300439 0.05732825 0.026701212 0.1417938 0.056677632 0.029356625 0.13356641 -0.046427142 0.0031023279 0.1271839 -0.045643039 0.011844915 0.11495637 -0.046583068 0.0029633963 0.11853894 -0.0073666587 -0.045948207 0.094028711 -0.010974517 -0.04662279 0.1023502 -0.023644635 -0.0372805 0.0725784 0.038405377 -0.047170531 0.13965665 0.033211406 -0.050209459 0.13331828 0.038434803 -0.047693267 0.1293252 -0.045862824 -0.024957623 0.04164296 -0.056327228 -0.017291702 0.023421274 -0.052943598 -0.019883158 0.024339484 0.038434803 -0.047693267 0.1293252 0.036449548 -0.048325125 0.12115292 0.042889591 -0.044773817 0.12368287 0.036449548 -0.048325125 0.12115292 0.03136351 -0.050435636 0.12162267 0.030707458 -0.048166327 0.10283265 0.032586105 -0.04579597 0.1651659 0.027265275 -0.05042164 0.15378295 0.034965102 -0.046739958 0.15352236 -0.01124095 -0.049332313 0.12158707 -0.017668374 -0.047406122 0.12836909 -0.017402649 -0.045002177 0.10631322 -0.048519094 -0.0049855281 0.1064855 -0.048165333 -7.9702135e-05 0.10854638 -0.051168613 0.0060180509 0.096575864 -0.040272325 -0.026515936 0.13410664 -0.041515514 -0.023890832 0.11854464 -0.037587401 -0.030158112 0.12561883 -0.045862824 -0.024957623 0.04164296 -0.052943598 -0.019883158 0.024339484 -0.051373344 -0.020502804 0.015170842 -0.0070407926 -0.053089727 0.15577538 -0.016414773 -0.04945555 0.14345896 -0.0091504045 -0.052157402 0.14317833 0.036449548 -0.048325125 0.12115292 0.030707458 -0.048166327 0.10283265 0.035344798 -0.046930708 0.10611063 -0.037371855 -0.031433009 0.10588641 -0.044583183 -0.023740793 0.097322203 -0.04084805 -0.029285258 0.091141343 0.047445904 0.03874401 0.1449367 0.04795254 0.033258229 0.16529666 0.050742637 0.034957938 0.14626212 -0.048519094 -0.0049855281 0.1064855 -0.05380239 0.0057650642 0.090275511 -0.052126341 -0.0026421731 0.095019221 -0.0091504045 -0.052157402 0.14317833 -0.016414773 -0.04945555 0.14345896 -0.01124095 -0.049332313 0.12158707 -0.01124095 -0.049332313 0.12158707 -0.017402649 -0.045002177 0.10631322 -0.010974517 -0.04662279 0.1023502 0.034965102 -0.046739958 0.15352236 0.038405377 -0.047170531 0.13965665 0.046309169 -0.040310528 0.14487824 -0.042522795 -0.025755506 0.036610883 -0.045862824 -0.024957623 0.04164296 -0.051373344 -0.020502804 0.015170842 0.038434803 -0.047693267 0.1293252 0.042889591 -0.044773817 0.12368287 0.048337717 -0.040449906 0.13036123 0.038405377 -0.047170531 0.13965665 0.038434803 -0.047693267 0.1293252 0.048337717 -0.040449906 0.13036123 -0.038134489 -0.029659972 0.11599709 -0.044583183 -0.023740793 0.097322203 -0.037371855 -0.031433009 0.10588641 -0.048854757 4.0252267e-05 0.14306566 -0.046708263 0.0058633061 0.13335955 -0.047144063 -0.00026619813 0.13412085 0.032586105 -0.04579597 0.1651659 0.034965102 -0.046739958 0.15352236 0.042534012 -0.041283485 0.1540814 0.036449548 -0.048325125 0.12115292 0.035344798 -0.046930708 0.10611063 0.043327592 -0.043343198 0.11238042 0.046309169 -0.040310528 0.14487824 0.038405377 -0.047170531 0.13965665 0.046962738 -0.041087374 0.13764895 0.042534012 -0.041283485 0.1540814 0.034965102 -0.046739958 0.15352236 0.046309169 -0.040310528 0.14487824 0.046962738 -0.041087374 0.13764895 0.038405377 -0.047170531 0.13965665 0.048337717 -0.040449906 0.13036123 -0.047144063 -0.00026619813 0.13412085 -0.046708263 0.0058633061 0.13335955 -0.046427142 0.0031023279 0.1271839 -0.033037402 -0.035378326 0.09586183 -0.04084805 -0.029285258 0.091141343 -0.040970728 -0.029893823 0.082829297 -0.0364714 -0.03497038 0.14771745 -0.040272325 -0.026515936 0.13410664 -0.037587401 -0.030158112 0.12561883 -0.042522795 -0.025755506 0.036610883 -0.051373344 -0.020502804 0.015170842 -0.038562156 -0.026171368 0.032661602 -0.0057006762 -0.051287666 0.12378193 -0.01124095 -0.049332313 0.12158707 -0.010974517 -0.04662279 0.1023502 0.042889591 -0.044773817 0.12368287 0.036449548 -0.048325125 0.12115292 0.043327592 -0.043343198 0.11238042 -0.049344577 -0.016115498 0.094878055 -0.053513467 -0.0069079692 0.090613522 -0.060624663 -0.0085055791 0.073806219 -0.037587401 -0.030158112 0.12561883 -0.041515514 -0.023890832 0.11854464 -0.038134489 -0.029659972 0.11599709 -0.049786221 -0.020648688 0.086016767 -0.057354558 -0.014880561 0.074802935 -0.055162273 -0.019117959 0.070489034 -0.047348343 -0.013268394 0.10578249 -0.052126341 -0.0026421731 0.095019221 -0.056061029 -0.00038242311 0.086304396 -0.0091504045 -0.052157402 0.14317833 -0.01124095 -0.049332313 0.12158707 -0.0057006762 -0.051287666 0.12378193 -0.046839274 -0.0090085119 0.11321088 -0.046583068 0.0029633963 0.11853894 -0.048165333 -7.9702135e-05 0.10854638 0.052055705 0.035401728 0.13245459 0.056677632 0.029356625 0.13356641 0.05276709 0.034433626 0.12540662 -0.0057006762 -0.051287666 0.12378193 -0.010974517 -0.04662279 0.1023502 -0.0024089422 -0.050842341 0.11444749 -0.051474102 -0.022568339 0.073060632 -0.055162273 -0.019117959 0.070489034 -0.051875971 -0.022672227 0.067754924 0.04656763 -0.037965003 0.15261693 0.042534012 -0.041283485 0.1540814 0.046309169 -0.040310528 0.14487824 -0.049344577 -0.016115498 0.094878055 -0.060624663 -0.0085055791 0.073806219 -0.057354558 -0.014880561 0.074802935 0.04889334 0.03702357 0.113767 0.049989246 0.037099227 0.12298962 0.053878754 0.03224558 0.11690871 0.052881714 -0.033821557 0.14084741 0.046962738 -0.041087374 0.13764895 0.048337717 -0.040449906 0.13036123 -0.0024089422 -0.050842341 0.11444749 -0.010974517 -0.04662279 0.1023502 -0.0073666587 -0.045948207 0.094028711 0.0092167174 0.048036259 0.093403459 0.0045659519 0.049570918 0.099134296 0.016645566 0.048590157 0.10074782 0.04889334 0.03702357 0.113767 0.053878754 0.03224558 0.11690871 0.048624132 0.035541408 0.10523172 -0.030937523 -0.038053375 0.12748975 -0.0364714 -0.03497038 0.14771745 -0.037587401 -0.030158112 0.12561883 0.050315976 -0.03302025 0.15447512 0.046309169 -0.040310528 0.14487824 0.046962738 -0.041087374 0.13764895 0.048337717 -0.040449906 0.13036123 0.042889591 -0.044773817 0.12368287 0.053934015 -0.034280766 0.12642431 -0.038562156 -0.026171368 0.032661602 -0.051373344 -0.020502804 0.015170842 -0.043770231 -0.023128336 0.0096801519 -0.049344577 -0.016115498 0.094878055 -0.057354558 -0.014880561 0.074802935 -0.049786221 -0.020648688 0.086016767 0.032586105 -0.04579597 0.1651659 0.042534012 -0.041283485 0.1540814 0.044579141 -0.035293233 0.16762508 -0.049344577 -0.016115498 0.094878055 -0.056061029 -0.00038242311 0.086304396 -0.053513467 -0.0069079692 0.090613522 -0.046427142 0.0031023279 0.1271839 -0.046583068 0.0029633963 0.11853894 -0.046407547 -0.0061210371 0.12938412 -0.051875971 -0.022672227 0.067754924 -0.053351872 -0.021192512 0.055554163 -0.047661871 -0.025948312 0.067584701 0.050315976 -0.03302025 0.15447512 0.046962738 -0.041087374 0.13764895 0.052881714 -0.033821557 0.14084741 -0.047144063 -0.00026619813 0.13412085 -0.046427142 0.0031023279 0.1271839 -0.046407547 -0.0061210371 0.12938412 -0.047627397 -0.011650926 0.14390524 -0.048854757 4.0252267e-05 0.14306566 -0.047144063 -0.00026619813 0.13412085 -0.049786221 -0.020648688 0.086016767 -0.055162273 -0.019117959 0.070489034 -0.051474102 -0.022568339 0.073060632 -0.033386003 -0.035240855 0.11321814 -0.037587401 -0.030158112 0.12561883 -0.038134489 -0.029659972 0.11599709 0.050315976 -0.03302025 0.15447512 0.04656763 -0.037965003 0.15261693 0.046309169 -0.040310528 0.14487824 -0.033386003 -0.035240855 0.11321814 -0.037371855 -0.031433009 0.10588641 -0.04084805 -0.029285258 0.091141343 -0.048519094 -0.0049855281 0.1064855 -0.052126341 -0.0026421731 0.095019221 -0.047348343 -0.013268394 0.10578249 -0.0024089422 -0.050842341 0.11444749 -0.0073666587 -0.045948207 0.094028711 0.0043362346 -0.05051009 0.10566559 0.052881714 -0.033821557 0.14084741 0.048337717 -0.040449906 0.13036123 0.055003226 -0.032491278 0.13143381 0.055003226 -0.032491278 0.13143381 0.048337717 -0.040449906 0.13036123 0.053934015 -0.034280766 0.12642431 -0.02737 0.04169099 0.12485135 -0.01929377 0.046956182 0.12166016 -0.029674701 0.040192064 0.11451451 0.044579141 -0.035293233 0.16762508 0.042534012 -0.041283485 0.1540814 0.04656763 -0.037965003 0.15261693 -0.031246144 -0.040494338 0.14925449 -0.0364714 -0.03497038 0.14771745 -0.030937523 -0.038053375 0.12748975 -0.046407547 -0.0061210371 0.12938412 -0.046583068 0.0029633963 0.11853894 -0.046839274 -0.0090085119 0.11321088 -0.033386003 -0.035240855 0.11321814 -0.038134489 -0.029659972 0.11599709 -0.037371855 -0.031433009 0.10588641 0.0036037106 -0.05443874 0.14041863 -0.0091504045 -0.052157402 0.14317833 -0.0057006762 -0.051287666 0.12378193 0.053934015 -0.034280766 0.12642431 0.042889591 -0.044773817 0.12368287 0.049128331 -0.03840299 0.11445285 0.042889591 -0.044773817 0.12368287 0.043327592 -0.043343198 0.11238042 0.049128331 -0.03840299 0.11445285 0.044579141 -0.035293233 0.16762508 0.04656763 -0.037965003 0.15261693 0.050315976 -0.03302025 0.15447512 -0.023644635 -0.0372805 0.0725784 -0.042522795 -0.025755506 0.036610883 -0.032308698 -0.029875724 0.046290617 0.0036037106 -0.05443874 0.14041863 -0.0057006762 -0.051287666 0.12378193 0.00018462546 -0.053283371 0.13045919 -0.030937523 -0.038053375 0.12748975 -0.037587401 -0.030158112 0.12561883 -0.033386003 -0.035240855 0.11321814 0.0071379235 0.05428179 0.13398683 0.013871079 0.054276593 0.13861746 0.012142788 0.053302113 0.12718165 0.053731143 -0.029752072 0.1499701 0.050315976 -0.03302025 0.15447512 0.052881714 -0.033821557 0.14084741 -0.044943418 0.020007562 0.10647131 -0.038560759 0.029816808 0.1152955 -0.044216082 0.027105127 0.098405547 -0.0070407926 -0.053089727 0.15577538 -0.0091504045 -0.052157402 0.14317833 0.0036037106 -0.05443874 0.14041863 0.00018462546 -0.053283371 0.13045919 -0.0057006762 -0.051287666 0.12378193 -0.0024089422 -0.050842341 0.11444749 -0.046839274 -0.0090085119 0.11321088 -0.048165333 -7.9702135e-05 0.10854638 -0.048519094 -0.0049855281 0.1064855 -0.015156924 0.020404354 0.033615947 -0.017803377 0.0041305153 0.032249562 -0.021007828 0.0072614388 0.02526097 0.03642343 0.010712368 0.076118976 0.032140967 -0.0014827676 0.073478557 0.024160331 0.005592586 0.067208827 0.025026003 0.01353643 0.067632444 0.03642343 0.010712368 0.076118976 0.024160331 0.005592586 0.067208827 -0.015156924 0.020404354 0.033615947 -0.021007828 0.0072614388 0.02526097 -0.01961023 0.021130471 0.025186663 0.025026003 0.01353643 0.067632444 0.024160331 0.005592586 0.067208827 0.0061071562 0.0035336297 0.054979637 -0.01961023 0.021130471 0.025186663 -0.021007828 0.0072614388 0.02526097 -0.022139661 0.013457607 0.019317305 0.0061071562 0.0035336297 0.054979637 0.0078914296 -0.0057009603 0.057433199 -0.0012628471 -0.0022218416 0.050305963 -0.021155402 0.021373726 0.02050115 -0.01961023 0.021130471 0.025186663 -0.022139661 0.013457607 0.019317305 0.025026003 0.01353643 0.067632444 0.0061071562 0.0035336297 0.054979637 0.0017108823 0.018011389 0.051005673 -0.037595913 0.041902792 0.062431552 -0.033089321 0.042850547 0.061100513 -0.04098364 0.038962629 0.03077448 0.049989246 0.037099227 0.12298962 0.05276709 0.034433626 0.12540662 0.053878754 0.03224558 0.11690871 -0.023900317 0.0061734393 0.01545577 -0.025319727 0.0004181735 0.0067077563 -0.023002582 0.015819397 0.0066150893 0.052055705 0.035401728 0.13245459 0.054473378 0.030928735 0.14300439 0.056677632 0.029356625 0.13356641 0.0061071562 0.0035336297 0.054979637 -0.0012628471 -0.0022218416 0.050305963 0.0017108823 0.018011389 0.051005673 0.0017108823 0.018011389 0.051005673 -0.0012628471 -0.0022218416 0.050305963 -0.010364057 0.0098717613 0.040535416 -0.022527648 0.023178315 0.0068146726 -0.023900317 0.0061734393 0.01545577 -0.023002582 0.015819397 0.0066150893 -0.02249502 0.027101694 0.016432414 -0.022139661 0.013457607 0.019317305 -0.023900317 0.0061734393 0.01545577 -0.021155402 0.021373726 0.02050115 -0.022139661 0.013457607 0.019317305 -0.02249502 0.027101694 0.016432414 -0.04451561 0.014784971 0.1282485 -0.04259954 0.02093678 0.13008167 -0.042450219 0.021741016 0.11709795 -0.02249502 0.027101694 0.016432414 -0.023900317 0.0061734393 0.01545577 -0.022527648 0.023178315 0.0068146726 -0.0040612891 0.019621771 0.046141837 0.0017108823 0.018011389 0.051005673 -0.010364057 0.0098717613 0.040535416 -0.0040612891 0.019621771 0.046141837 -0.010364057 0.0098717613 0.040535416 -0.010950485 0.019678494 0.039134957 0.047445904 0.03874401 0.1449367 0.03742376 0.044381958 0.16219954 0.04795254 0.033258229 0.16529666 0.042535499 -0.0014305975 0.081936039 0.040491365 -0.013422061 0.082164697 0.031393249 -0.01075047 0.074281789 0.042535499 -0.0014305975 0.081936039 0.031393249 -0.01075047 0.074281789 0.032140967 -0.0014827676 0.073478557 0.0071379235 0.05428179 0.13398683 0.0086783506 0.055511806 0.15463206 0.013871079 0.054276593 0.13861746 -0.045296639 0.03687916 0.078160554 -0.032324877 0.041918781 0.089148767 -0.042252306 0.039940722 0.072173491 -0.010950485 0.019678494 0.039134957 -0.010364057 0.0098717613 0.040535416 -0.017803377 0.0041305153 0.032249562 -0.010950485 0.019678494 0.039134957 -0.017803377 0.0041305153 0.032249562 -0.015156924 0.020404354 0.033615947 0.042535499 -0.0014305975 0.081936039 0.032140967 -0.0014827676 0.073478557 0.03642343 0.010712368 0.076118976 0.042693783 0.0082113594 0.081680104 0.042535499 -0.0014305975 0.081936039 0.03642343 0.010712368 0.076118976 0.046529911 0.023856213 0.090703674 0.049114168 0.01522287 0.090120211 0.04203444 0.020590829 0.083787531 0.041569181 0.040602177 0.10181594 0.035849389 0.039779168 0.092360228 0.037170306 0.042290293 0.098354012 0.043781631 0.033641793 0.094949156 0.035849389 0.039779168 0.092360228 0.041569181 0.040602177 0.10181594 0.037170306 0.042290293 0.098354012 0.035849389 0.039779168 0.092360228 0.030891107 0.043924529 0.094711408 0.042693783 0.0082113594 0.081680104 0.041155055 0.014418657 0.080975443 0.049114168 0.01522287 0.090120211 0.046529911 0.023856213 0.090703674 0.04203444 0.020590829 0.083787531 0.038915616 0.028165435 0.084479243 -0.041155368 0.038124088 0.012500688 -0.035992678 0.038939856 0.021512453 -0.034919377 0.03819178 0.0072041349 0.043781631 0.033641793 0.094949156 0.038915616 0.028165435 0.084479243 0.03464954 0.032168414 0.083108149 0.043781631 0.033641793 0.094949156 0.03464954 0.032168414 0.083108149 0.035849389 0.039779168 0.092360228 0.030891107 0.043924529 0.094711408 0.035849389 0.039779168 0.092360228 0.026547147 0.041733216 0.08632163 0.041155055 0.014418657 0.080975443 0.042693783 0.0082113594 0.081680104 0.03642343 0.010712368 0.076118976 0.064310879 -0.0060262061 0.11852339 0.062287621 -0.0022263434 0.11019585 0.065282658 -0.0026951891 0.12329827 0.065282658 -0.0026951891 0.12329827 0.062287621 -0.0022263434 0.11019585 0.064777315 0.0052670394 0.11998943 0.06303674 0.0085523399 0.11425158 0.063891239 0.011991482 0.12066803 0.064777315 0.0052670394 0.11998943 0.035849389 0.039779168 0.092360228 0.03464954 0.032168414 0.083108149 0.028055666 0.038294002 0.083131552 0.06303674 0.0085523399 0.11425158 0.058662061 0.01697897 0.10700034 0.063891239 0.011991482 0.12066803 0.056328882 -0.00081696606 0.097971059 0.059792042 -0.0050444482 0.10471174 0.05638063 -0.0097832279 0.09975744 0.053373788 -0.0070702564 0.09458486 0.056328882 -0.00081696606 0.097971059 0.05638063 -0.0097832279 0.09975744 0.058662061 0.01697897 0.10700034 0.059631865 0.023080658 0.11607531 0.063891239 0.011991482 0.12066803 0.06303674 0.0085523399 0.11425158 0.064777315 0.0052670394 0.11998943 0.061348423 0.0033973542 0.10778236 0.04203444 0.020590829 0.083787531 0.034756854 0.025002906 0.078594357 0.038915616 0.028165435 0.084479243 0.062645659 -0.010194906 0.11415696 0.059792042 -0.0050444482 0.10471174 0.062287621 -0.0022263434 0.11019585 0.060153726 -0.014902347 0.10994688 0.059792042 -0.0050444482 0.10471174 0.062645659 -0.010194906 0.11415696 -0.029674701 0.040192064 0.11451451 -0.01929377 0.046956182 0.12166016 -0.028246731 0.042012658 0.10745943 0.026547147 0.041733216 0.08632163 0.035849389 0.039779168 0.092360228 0.028055666 0.038294002 0.083131552 0.059792042 -0.0050444482 0.10471174 0.060153726 -0.014902347 0.10994688 0.05638063 -0.0097832279 0.09975744 0.038915616 0.028165435 0.084479243 0.034756854 0.025002906 0.078594357 0.03464954 0.032168414 0.083108149 0.054509941 0.029864814 0.10989039 0.048884287 0.029058892 0.098017283 0.048624132 0.035541408 0.10523172 0.059792042 -0.0050444482 0.10471174 0.056328882 -0.00081696606 0.097971059 0.061348423 0.0033973542 0.10778236 0.048624132 0.035541408 0.10523172 0.043781631 0.033641793 0.094949156 0.041569181 0.040602177 0.10181594 0.061348423 0.0033973542 0.10778236 0.056328882 -0.00081696606 0.097971059 0.058441706 0.0096666943 0.10292371 0.04203444 0.020590829 0.083787531 0.041155055 0.014418657 0.080975443 0.03108535 0.020936117 0.073723428 0.043781631 0.033641793 0.094949156 0.048624132 0.035541408 0.10523172 0.048884287 0.029058892 0.098017283 0.034756854 0.025002906 0.078594357 0.04203444 0.020590829 0.083787531 0.03108535 0.020936117 0.073723428 0.054212686 0.017527262 0.098561712 0.058662061 0.01697897 0.10700034 0.058441706 0.0096666943 0.10292371 0.058662061 0.01697897 0.10700034 0.054212686 0.017527262 0.098561712 0.056292448 0.024273623 0.10757871 0.058441706 0.0096666943 0.10292371 0.056328882 -0.00081696606 0.097971059 0.053298052 0.0066856435 0.093787253 0.054212686 0.017527262 0.098561712 0.048884287 0.029058892 0.098017283 0.056292448 0.024273623 0.10757871 0.028055666 0.038294002 0.083131552 0.03464954 0.032168414 0.083108149 0.02849992 0.03464631 0.079872996 0.048249733 -0.011276213 0.089359157 0.042535499 -0.0014305975 0.081936039 0.049727108 0.0014221423 0.089032367 0.043781631 0.033641793 0.094949156 0.048884287 0.029058892 0.098017283 0.038915616 0.028165435 0.084479243 0.049727108 0.0014221423 0.089032367 0.056328882 -0.00081696606 0.097971059 0.053373788 -0.0070702564 0.09458486 0.049727108 0.0014221423 0.089032367 0.053298052 0.0066856435 0.093787253 0.056328882 -0.00081696606 0.097971059 0.038915616 0.028165435 0.084479243 0.048884287 0.029058892 0.098017283 0.046529911 0.023856213 0.090703674 0.053373788 -0.0070702564 0.09458486 0.048249733 -0.011276213 0.089359157 0.049727108 0.0014221423 0.089032367 0.046529911 0.023856213 0.090703674 0.048884287 0.029058892 0.098017283 0.054212686 0.017527262 0.098561712 0.046529911 0.023856213 0.090703674 0.054212686 0.017527262 0.098561712 0.049114168 0.01522287 0.090120211 0.042693783 0.0082113594 0.081680104 0.053298052 0.0066856435 0.093787253 0.049727108 0.0014221423 0.089032367 0.042693783 0.0082113594 0.081680104 0.049114168 0.01522287 0.090120211 0.053298052 0.0066856435 0.093787253 0.042693783 0.0082113594 0.081680104 0.049727108 0.0014221423 0.089032367 0.042535499 -0.0014305975 0.081936039 0.03464954 0.032168414 0.083108149 0.034756854 0.025002906 0.078594357 0.02849992 0.03464631 0.079872996 0.049114168 0.01522287 0.090120211 0.041155055 0.014418657 0.080975443 0.04203444 0.020590829 0.083787531 0.034756854 0.025002906 0.078594357 0.03108535 0.020936117 0.073723428 0.030259879 0.025100783 0.074854814 0.062645659 -0.010194906 0.11415696 0.062287621 -0.0022263434 0.11019585 0.064310879 -0.0060262061 0.11852339 0.062287621 -0.0022263434 0.11019585 0.061348423 0.0033973542 0.10778236 0.064777315 0.0052670394 0.11998943 0.041155055 0.014418657 0.080975443 0.03642343 0.010712368 0.076118976 0.03108535 0.020936117 0.073723428 0.062287621 -0.0022263434 0.11019585 0.059792042 -0.0050444482 0.10471174 0.061348423 0.0033973542 0.10778236 0.058662061 0.01697897 0.10700034 0.06303674 0.0085523399 0.11425158 0.058441706 0.0096666943 0.10292371 0.058441706 0.0096666943 0.10292371 0.06303674 0.0085523399 0.11425158 0.061348423 0.0033973542 0.10778236 0.056292448 0.024273623 0.10757871 0.054509941 0.029864814 0.10989039 0.059631865 0.023080658 0.11607531 0.056292448 0.024273623 0.10757871 0.059631865 0.023080658 0.11607531 0.058662061 0.01697897 0.10700034 0.03108535 0.020936117 0.073723428 0.03642343 0.010712368 0.076118976 0.025026003 0.01353643 0.067632444 0.056292448 0.024273623 0.10757871 0.048884287 0.029058892 0.098017283 0.054509941 0.029864814 0.10989039 0.058441706 0.0096666943 0.10292371 0.053298052 0.0066856435 0.093787253 0.054212686 0.017527262 0.098561712 0.049114168 0.01522287 0.090120211 0.054212686 0.017527262 0.098561712 0.053298052 0.0066856435 0.093787253 0.040491365 -0.013422061 0.082164697 0.042535499 -0.0014305975 0.081936039 0.048249733 -0.011276213 0.089359157 0.012508512 0.036076926 0.068940409 0.0028238331 0.032299746 0.057342947 -1.8789437e-05 0.038701899 0.061139312 0.012071894 0.02160817 0.059841517 0.025026003 0.01353643 0.067632444 0.0017108823 0.018011389 0.051005673 0.030259879 0.025100783 0.074854814 0.03108535 0.020936117 0.073723428 0.012071894 0.02160817 0.059841517 0.010679667 0.040205531 0.071990371 0.012508512 0.036076926 0.068940409 -1.8789437e-05 0.038701899 0.061139312 -0.02691639 0.044717789 0.14639267 -0.015141557 0.051537801 0.14896865 -0.019823913 0.048063647 0.13993821 0.012508512 0.036076926 0.068940409 0.030259879 0.025100783 0.074854814 0.015200031 0.029097406 0.065817751 0.012508512 0.036076926 0.068940409 0.015200031 0.029097406 0.065817751 0.0028238331 0.032299746 0.057342947 0.0028238331 0.032299746 0.057342947 0.015200031 0.029097406 0.065817751 0.012071894 0.02160817 0.059841517 0.02849992 0.03464631 0.079872996 0.030259879 0.025100783 0.074854814 0.012508512 0.036076926 0.068940409 0.0012043983 0.025875967 0.052159157 0.012071894 0.02160817 0.059841517 0.0017108823 0.018011389 0.051005673 0.028055666 0.038294002 0.083131552 0.02849992 0.03464631 0.079872996 0.012508512 0.036076926 0.068940409 0.026547147 0.041733216 0.08632163 0.028055666 0.038294002 0.083131552 0.010679667 0.040205531 0.071990371 0.0028238331 0.032299746 0.057342947 0.012071894 0.02160817 0.059841517 0.0012043983 0.025875967 0.052159157 0.022661215 0.044532184 0.088425085 -1.8789437e-05 0.038701899 0.061139312 -0.014700036 0.042269483 0.054900076 0.030891107 0.043924529 0.094711408 0.026547147 0.041733216 0.08632163 0.022661215 0.044532184 0.088425085 0.034756854 0.025002906 0.078594357 0.030259879 0.025100783 0.074854814 0.02849992 0.03464631 0.079872996 -0.014700036 0.042269483 0.054900076 -1.8789437e-05 0.038701899 0.061139312 -0.010908391 0.038590126 0.050558928 0.012508512 0.036076926 0.068940409 0.010679667 0.040205531 0.071990371 0.028055666 0.038294002 0.083131552 0.026547147 0.041733216 0.08632163 -1.8789437e-05 0.038701899 0.061139312 0.022661215 0.044532184 0.088425085 0.026547147 0.041733216 0.08632163 0.010679667 0.040205531 0.071990371 -1.8789437e-05 0.038701899 0.061139312 0.012071894 0.02160817 0.059841517 0.03108535 0.020936117 0.073723428 0.025026003 0.01353643 0.067632444 0.030259879 0.025100783 0.074854814 0.012071894 0.02160817 0.059841517 0.015200031 0.029097406 0.065817751 -0.02968047 0.038942792 0.02654567 -0.028007668 0.037355896 0.022704856 -0.027694255 0.034806825 0.0069316956 -0.02968047 0.038942792 0.02654567 -0.027694255 0.034806825 0.0069316956 -0.034919377 0.03819178 0.0072041349 -0.034919377 0.03819178 0.0072041349 -0.027694255 0.034806825 0.0069316956 -0.031480704 0.037553683 0.0059062284 0.063558459 -0.014037079 0.12433229 0.064310879 -0.0060262061 0.11852339 0.065282658 -0.0026951891 0.12329827 0.053878754 0.03224558 0.11690871 0.054509941 0.029864814 0.10989039 0.048624132 0.035541408 0.10523172 -0.010908391 0.038590126 0.050558928 -1.8789437e-05 0.038701899 0.061139312 -0.015072957 0.032810479 0.03815078 -0.015072957 0.032810479 0.03815078 -0.023011973 0.032694645 0.023195062 -0.028007668 0.037355896 0.022704856 -0.0099457381 0.027210191 0.041291509 -0.010950485 0.019678494 0.039134957 -0.015920745 0.028581938 0.033916973 -0.02968047 0.038942792 0.02654567 -0.015072957 0.032810479 0.03815078 -0.028007668 0.037355896 0.022704856 -0.023011973 0.032694645 0.023195062 -0.021202244 0.027405657 0.022083037 -0.02249502 0.027101694 0.016432414 0.0071379235 0.05428179 0.13398683 0.0012409219 0.055487569 0.1528075 0.0086783506 0.055511806 0.15463206 -0.022969492 0.026292045 0.0075581903 -0.02249502 0.027101694 0.016432414 -0.022527648 0.023178315 0.0068146726 -0.015072957 0.032810479 0.03815078 -0.0099457381 0.027210191 0.041291509 -0.015920745 0.028581938 0.033916973 -0.015920745 0.028581938 0.033916973 -0.015156924 0.020404354 0.033615947 -0.01961023 0.021130471 0.025186663 -0.010908391 0.038590126 0.050558928 -0.015072957 0.032810479 0.03815078 -0.017961914 0.036869828 0.039484099 -0.023011973 0.032694645 0.023195062 -0.02249502 0.027101694 0.016432414 -0.025274644 0.031885251 0.0066242162 -0.028007668 0.037355896 0.022704856 -0.023011973 0.032694645 0.023195062 -0.025274644 0.031885251 0.0066242162 -0.014700036 0.042269483 0.054900076 -0.010908391 0.038590126 0.050558928 -0.026801394 0.039720744 0.034544054 -0.02249502 0.027101694 0.016432414 -0.022969492 0.026292045 0.0075581903 -0.025274644 0.031885251 0.0066242162 -0.015920745 0.028581938 0.033916973 -0.01961023 0.021130471 0.025186663 -0.021202244 0.027405657 0.022083037 -0.026801394 0.039720744 0.034544054 -0.010908391 0.038590126 0.050558928 -0.017961914 0.036869828 0.039484099 0.048466101 0.038951054 0.13409331 0.054473378 0.030928735 0.14300439 0.052055705 0.035401728 0.13245459 -0.021202244 0.027405657 0.022083037 -0.01961023 0.021130471 0.025186663 -0.021155402 0.021373726 0.02050115 -0.028007668 0.037355896 0.022704856 -0.025274644 0.031885251 0.0066242162 -0.027694255 0.034806825 0.0069316956 -0.015072957 0.032810479 0.03815078 -0.015920745 0.028581938 0.033916973 -0.023011973 0.032694645 0.023195062 -0.021202244 0.027405657 0.022083037 -0.021155402 0.021373726 0.02050115 -0.02249502 0.027101694 0.016432414 -0.026801394 0.039720744 0.034544054 -0.017961914 0.036869828 0.039484099 -0.02968047 0.038942792 0.02654567 0.0017108823 0.018011389 0.051005673 -0.0040612891 0.019621771 0.046141837 -0.0099457381 0.027210191 0.041291509 -0.02968047 0.038942792 0.02654567 -0.017961914 0.036869828 0.039484099 -0.015072957 0.032810479 0.03815078 0.0012043983 0.025875967 0.052159157 0.0017108823 0.018011389 0.051005673 -0.0099457381 0.027210191 0.041291509 -0.023011973 0.032694645 0.023195062 -0.015920745 0.028581938 0.033916973 -0.021202244 0.027405657 0.022083037 -0.0099457381 0.027210191 0.041291509 -0.0040612891 0.019621771 0.046141837 -0.010950485 0.019678494 0.039134957 0.0012043983 0.025875967 0.052159157 -0.0083108731 0.032035049 0.04576771 0.0028238331 0.032299746 0.057342947 -0.0083108731 0.032035049 0.04576771 0.0012043983 0.025875967 0.052159157 -0.0099457381 0.027210191 0.041291509 0.0028238331 0.032299746 0.057342947 -0.015072957 0.032810479 0.03815078 -1.8789437e-05 0.038701899 0.061139312 0.0028238331 0.032299746 0.057342947 -0.0083108731 0.032035049 0.04576771 -0.015072957 0.032810479 0.03815078 -0.015920745 0.028581938 0.033916973 -0.010950485 0.019678494 0.039134957 -0.015156924 0.020404354 0.033615947 -0.015072957 0.032810479 0.03815078 -0.0083108731 0.032035049 0.04576771 -0.0099457381 0.027210191 0.041291509 -0.058940053 0.025416946 0.056099605 -0.055923756 0.029987579 0.068287618 -0.055688083 0.031721335 0.049323555 -0.052155301 0.032289855 0.074020118 -0.046860993 0.031134896 0.086566627 -0.045296639 0.03687916 0.078160554 -0.060574189 0.02036825 0.044659652 -0.062350217 0.012529321 0.056322809 -0.060315806 0.020218592 0.061792839 -0.060315806 0.020218592 0.061792839 -0.062350217 0.012529321 0.056322809 -0.062061179 0.01003408 0.067036815 -0.060574189 0.02036825 0.044659652 -0.060315806 0.020218592 0.061792839 -0.058940053 0.025416946 0.056099605 -0.060940541 0.010445172 0.07382448 -0.058997713 0.02344444 0.06651172 -0.062061179 0.01003408 0.067036815 0.049989246 0.037099227 0.12298962 0.052055705 0.035401728 0.13245459 0.05276709 0.034433626 0.12540662 -0.059056371 0.013843497 0.078077018 -0.056762967 0.025067905 0.075383209 -0.058997713 0.02344444 0.06651172 -0.055688083 0.031721335 0.049323555 -0.055923756 0.029987579 0.068287618 -0.054789156 0.032518648 0.060553145 -0.058997713 0.02344444 0.06651172 -0.056762967 0.025067905 0.075383209 -0.055923756 0.029987579 0.068287618 -0.053730257 0.032618973 0.019990543 -0.057582464 0.027481871 0.029509723 -0.055688083 0.031721335 0.049323555 -0.053138353 0.034239143 0.039229464 -0.053730257 0.032618973 0.019990543 -0.055688083 0.031721335 0.049323555 -0.058997713 0.02344444 0.06651172 -0.058940053 0.025416946 0.056099605 -0.060315806 0.020218592 0.061792839 -0.055688083 0.031721335 0.049323555 -0.054789156 0.032518648 0.060553145 -0.053138353 0.034239143 0.039229464 -0.058940053 0.025416946 0.056099605 -0.058997713 0.02344444 0.06651172 -0.055923756 0.029987579 0.068287618 -0.058940053 0.025416946 0.056099605 -0.055688083 0.031721335 0.049323555 -0.057582464 0.027481871 0.029509723 -0.057582464 0.027481871 0.029509723 -0.055081423 0.029513083 0.0068768533 -0.056707941 0.02656012 0.007872317 -0.060315806 0.020218592 0.061792839 -0.062061179 0.01003408 0.067036815 -0.058997713 0.02344444 0.06651172 -0.057582464 0.027481871 0.029509723 -0.053730257 0.032618973 0.019990543 -0.055081423 0.029513083 0.0068768533 -0.060940541 0.010445172 0.07382448 -0.059056371 0.013843497 0.078077018 -0.058997713 0.02344444 0.06651172 -0.053138353 0.034239143 0.039229464 -0.049483631 0.0356046 0.017067574 -0.046663404 0.033270705 -0.057566244 -0.053138353 0.034239143 0.039229464 -0.046663404 0.033270705 -0.057566244 -0.053730257 0.032618973 0.019990543 -0.060729839 0.01611238 0.017311709 -0.059469108 0.021698637 0.023368172 -0.056707941 0.02656012 0.007872317 -0.059469108 0.021698637 0.023368172 -0.060574189 0.02036825 0.044659652 -0.057582464 0.027481871 0.029509723 -0.060574189 0.02036825 0.044659652 -0.060729839 0.01611238 0.017311709 -0.062905274 0.0061877053 0.027941154 -0.062350217 0.012529321 0.056322809 -0.060574189 0.02036825 0.044659652 -0.062999748 0.0091175437 0.043485239 -0.060729839 0.01611238 0.017311709 -0.060574189 0.02036825 0.044659652 -0.059469108 0.021698637 0.023368172 -0.060574189 0.02036825 0.044659652 -0.062905274 0.0061877053 0.027941154 -0.062999748 0.0091175437 0.043485239 -0.060931444 0.012654565 0.0086282054 -0.062905274 0.0061877053 0.027941154 -0.060729839 0.01611238 0.017311709 -0.059469108 0.021698637 0.023368172 -0.057582464 0.027481871 0.029509723 -0.056707941 0.02656012 0.007872317 -0.060574189 0.02036825 0.044659652 -0.058940053 0.025416946 0.056099605 -0.057582464 0.027481871 0.029509723 -0.056707941 0.02656012 0.007872317 -0.055081423 0.029513083 0.0068768533 -0.052027255 0.025821218 -0.058750961 -0.055081423 0.029513083 0.0068768533 -0.049284153 0.03034058 -0.05924169 -0.052027255 0.025821218 -0.058750961 -0.055081423 0.029513083 0.0068768533 -0.053730257 0.032618973 0.019990543 -0.049284153 0.03034058 -0.05924169 -0.053730257 0.032618973 0.019990543 -0.046663404 0.033270705 -0.057566244 -0.049284153 0.03034058 -0.05924169 -0.062017228 -0.0044336575 0.0078614708 -0.062009145 0.0039585121 0.0082045821 -0.057530064 -0.0022273557 -0.059666321 -0.062017228 -0.0044336575 0.0078614708 -0.057530064 -0.0022273557 -0.059666321 -0.057215843 -0.0074604442 -0.059276734 -0.062009145 0.0039585121 0.0082045821 -0.057405893 0.0041226726 -0.057704903 -0.057530064 -0.0022273557 -0.059666321 -0.062009145 0.0039585121 0.0082045821 -0.056924872 0.0078157149 -0.059017144 -0.057405893 0.0041226726 -0.057704903 -0.062009145 0.0039585121 0.0082045821 -0.060931444 0.012654565 0.0086282054 -0.056924872 0.0078157149 -0.059017144 -0.060931444 0.012654565 0.0086282054 -0.055140037 0.016568381 -0.059761975 -0.056924872 0.0078157149 -0.059017144 -0.060931444 0.012654565 0.0086282054 -0.060729839 0.01611238 0.017311709 -0.055140037 0.016568381 -0.059761975 -0.060729839 0.01611238 0.017311709 -0.056707941 0.02656012 0.007872317 -0.055140037 0.016568381 -0.059761975 -0.042252306 0.039940722 0.072173491 -0.037595913 0.041902792 0.062431552 -0.044224974 0.039310195 0.056304574 -0.02691639 0.044717789 0.14639267 -0.019823913 0.048063647 0.13993821 -0.023935903 0.044894777 0.13475612 -0.056707941 0.02656012 0.007872317 -0.052027255 0.025821218 -0.058750961 -0.055140037 0.016568381 -0.059761975 -0.057694014 -0.010428355 -0.13089116 -0.059432503 -0.0068493523 -0.12409181 -0.058117829 -0.0026990073 -0.13110261 -0.055469256 -0.023351157 -0.12165818 -0.058257297 -0.017574973 -0.11687908 -0.058703136 -0.013183865 -0.12384688 -0.054882012 0.0068263351 -0.13910706 -0.056592993 0.011359691 -0.13152769 -0.054321066 0.013945166 -0.13719051 -0.052428853 -0.027963316 -0.1189582 -0.055110842 -0.024519406 -0.11314452 -0.055469256 -0.023351157 -0.12165818 -0.057694014 -0.010428355 -0.13089116 -0.056656383 -0.017327163 -0.12893449 -0.058703136 -0.013183865 -0.12384688 -0.059850227 -0.0102462 -0.1165057 -0.060325351 -0.0020461043 -0.10579949 -0.060297735 0.0025924738 -0.11183027 -0.045643039 0.011844915 0.11495637 -0.04451561 0.014784971 0.1282485 -0.042450219 0.021741016 0.11709795 -0.055469256 -0.023351157 -0.12165818 -0.055110842 -0.024519406 -0.11314452 -0.058257297 -0.017574973 -0.11687908 -0.051043715 0.03223582 -0.12426347 -0.055794757 0.021658558 -0.12286704 -0.052017014 0.032041434 -0.11550643 -0.056592993 0.011359691 -0.13152769 -0.054882012 0.0068263351 -0.13910706 -0.058470555 0.0072911805 -0.12603191 0.048466101 0.038951054 0.13409331 0.050742637 0.034957938 0.14626212 0.054473378 0.030928735 0.14300439 -0.058703136 -0.013183865 -0.12384688 -0.059432503 -0.0068493523 -0.12409181 -0.057694014 -0.010428355 -0.13089116 -0.045026846 0.033039462 -0.13937134 -0.044605959 0.028451188 -0.14480828 -0.051191825 0.025156327 -0.13610782 -0.051043715 0.03223582 -0.12426347 -0.052017014 0.032041434 -0.11550643 -0.04867772 0.036736771 -0.12035973 -0.045643039 0.011844915 0.11495637 -0.042450219 0.021741016 0.11709795 -0.044943418 0.020007562 0.10647131 -0.058117829 -0.0026990073 -0.13110261 -0.059494015 0.0034268289 -0.12235402 -0.058470555 0.0072911805 -0.12603191 -0.052017014 0.032041434 -0.11550643 -0.055794757 0.021658558 -0.12286704 -0.056487322 0.021955803 -0.10963107 -0.055110842 -0.024519406 -0.11314452 -0.056829821 -0.020127639 -0.10579859 -0.058257297 -0.017574973 -0.11687908 -0.040717836 0.025840813 -0.15026134 -0.044605959 0.028451188 -0.14480828 -0.040616475 0.033903934 -0.14333624 -0.056487322 0.021955803 -0.10963107 -0.05277428 0.030450068 -0.10774855 -0.052017014 0.032041434 -0.11550643 -0.058703136 -0.013183865 -0.12384688 -0.059850227 -0.0102462 -0.1165057 -0.059432503 -0.0068493523 -0.12409181 -0.058368314 0.015336637 -0.10937591 -0.058265366 0.013741765 -0.099841729 -0.056487322 0.021955803 -0.10963107 -0.045765202 0.040431682 -0.11586218 -0.038989101 0.045219306 -0.11508645 -0.042584646 0.042748485 -0.1210006 -0.050040822 0.035160258 -0.11160301 -0.045397162 0.040045407 -0.10631995 -0.045765202 0.040431682 -0.11586218 0.041569181 0.040602177 0.10181594 0.04889334 0.03702357 0.113767 0.048624132 0.035541408 0.10523172 -0.05277428 0.030450068 -0.10774855 -0.056487322 0.021955803 -0.10963107 -0.053343471 0.02341152 -0.080102816 -0.045026846 0.033039462 -0.13937134 -0.041215725 0.037293456 -0.13830562 -0.040616475 0.033903934 -0.14333624 -0.05277428 0.030450068 -0.10774855 -0.053343471 0.02341152 -0.080102816 -0.051577814 0.02855435 -0.086960651 -0.056592993 0.011359691 -0.13152769 -0.057760485 0.015401036 -0.12092915 -0.055794757 0.021658558 -0.12286704 -0.059432503 -0.0068493523 -0.12409181 -0.060297735 0.0025924738 -0.11183027 -0.059494015 0.0034268289 -0.12235402 -0.058257297 -0.017574973 -0.11687908 -0.058602311 -0.015485585 -0.10697099 -0.059724271 -0.011233093 -0.11041397 -0.058470555 0.0072911805 -0.12603191 -0.059494015 0.0034268289 -0.12235402 -0.057760485 0.015401036 -0.12092915 -0.059432503 -0.0068493523 -0.12409181 -0.059850227 -0.0102462 -0.1165057 -0.060297735 0.0025924738 -0.11183027 -0.048894864 0.033215445 -0.13071202 -0.051191825 0.025156327 -0.13610782 -0.051043715 0.03223582 -0.12426347 -0.045026846 0.033039462 -0.13937134 -0.043034341 0.039309274 -0.13206375 -0.041215725 0.037293456 -0.13830562 -0.057760485 0.015401036 -0.12092915 -0.059494015 0.0034268289 -0.12235402 -0.060297735 0.0025924738 -0.11183027 -0.059850227 -0.0102462 -0.1165057 -0.059724271 -0.011233093 -0.11041397 -0.060325351 -0.0020461043 -0.10579949 -0.058265366 0.013741765 -0.099841729 -0.059356906 0.0056382986 -0.097442195 -0.055383448 0.017594041 -0.080534637 -0.055383448 0.017594041 -0.080534637 -0.059356906 0.0056382986 -0.097442195 -0.057532821 0.0030216256 -0.075289346 -0.055383448 0.017594041 -0.080534637 -0.057532821 0.0030216256 -0.075289346 -0.055140037 0.016568381 -0.059761975 -0.059724271 -0.011233093 -0.11041397 -0.057393346 -0.010272719 -0.083868541 -0.060325351 -0.0020461043 -0.10579949 -0.057760485 0.015401036 -0.12092915 -0.056487322 0.021955803 -0.10963107 -0.055794757 0.021658558 -0.12286704 -0.057532821 0.0030216256 -0.075289346 -0.056924872 0.0078157149 -0.059017144 -0.055140037 0.016568381 -0.059761975 -0.055383448 0.017594041 -0.080534637 -0.055140037 0.016568381 -0.059761975 -0.053343471 0.02341152 -0.080102816 -0.060297735 0.0025924738 -0.11183027 -0.059356906 0.0056382986 -0.097442195 -0.058368314 0.015336637 -0.10937591 -0.043034341 0.039309274 -0.13206375 -0.042584646 0.042748485 -0.1210006 -0.041029491 0.04239168 -0.12755999 -0.048425686 0.031772159 -0.078288585 -0.051577814 0.02855435 -0.086960651 -0.053343471 0.02341152 -0.080102816 -0.048425686 0.031772159 -0.078288585 -0.053343471 0.02341152 -0.080102816 -0.051431846 0.026500316 -0.065240495 -0.052017014 0.032041434 -0.11550643 -0.050040822 0.035160258 -0.11160301 -0.04867772 0.036736771 -0.12035973 -0.053343471 0.02341152 -0.080102816 -0.055140037 0.016568381 -0.059761975 -0.051431846 0.026500316 -0.065240495 -0.055140037 0.016568381 -0.059761975 -0.052027255 0.025821218 -0.058750961 -0.051431846 0.026500316 -0.065240495 -0.052027255 0.025821218 -0.058750961 -0.049284153 0.03034058 -0.05924169 -0.051431846 0.026500316 -0.065240495 -0.04867772 0.036736771 -0.12035973 -0.050040822 0.035160258 -0.11160301 -0.045765202 0.040431682 -0.11586218 -0.044943418 0.020007562 0.10647131 -0.044216082 0.027105127 0.098405547 -0.047771703 0.012423694 0.10378474 -0.058265366 0.013741765 -0.099841729 -0.053343471 0.02341152 -0.080102816 -0.056487322 0.021955803 -0.10963107 -0.045397162 0.040045407 -0.10631995 -0.038989101 0.045219306 -0.11508645 -0.045765202 0.040431682 -0.11586218 -0.057393346 -0.010272719 -0.083868541 -0.056507099 -0.010495565 -0.073223747 -0.057456385 -0.0033192355 -0.072297394 -0.050040822 0.035160258 -0.11160301 -0.050393432 0.033252385 -0.10036409 -0.045397162 0.040045407 -0.10631995 0.047445904 0.03874401 0.1449367 0.050742637 0.034957938 0.14626212 0.048466101 0.038951054 0.13409331 -0.05277428 0.030450068 -0.10774855 -0.051577814 0.02855435 -0.086960651 -0.050393432 0.033252385 -0.10036409 -0.056829821 -0.020127639 -0.10579859 -0.058602311 -0.015485585 -0.10697099 -0.058257297 -0.017574973 -0.11687908 -0.057456385 -0.0033192355 -0.072297394 -0.057532821 0.0030216256 -0.075289346 -0.060325351 -0.0020461043 -0.10579949 -0.045397162 0.040045407 -0.10631995 -0.050393432 0.033252385 -0.10036409 -0.048425686 0.031772159 -0.078288585 -0.056507099 -0.010495565 -0.073223747 -0.05654256 -0.010543193 -0.058648437 -0.057215843 -0.0074604442 -0.059276734 -0.049113873 -0.0093614394 -0.148376 -0.048860043 -0.016629474 -0.14484172 -0.052361004 -0.016197251 -0.14050311 -0.052361004 -0.016197251 -0.14050311 -0.048860043 -0.016629474 -0.14484172 -0.048657898 -0.021923099 -0.14066486 0.042451005 0.042235631 0.11647434 0.04889334 0.03702357 0.113767 0.041569181 0.040602177 0.10181594 -0.0001929588 0.051388536 0.11092472 0.012142788 0.053302113 0.12718165 0.0045659519 0.049570918 0.099134296 -0.014700036 0.042269483 0.054900076 0.0092167174 0.048036259 0.093403459 0.022661215 0.044532184 0.088425085 -0.048657898 -0.021923099 -0.14066486 -0.054153748 -0.023135139 -0.12836729 -0.052361004 -0.016197251 -0.14050311 -0.056507099 -0.010495565 -0.073223747 -0.057215843 -0.0074604442 -0.059276734 -0.057456385 -0.0033192355 -0.072297394 -0.054153748 -0.023135139 -0.12836729 -0.051291257 -0.027727911 -0.1262504 -0.055469256 -0.023351157 -0.12165818 -0.057530064 -0.0022273557 -0.059666321 -0.057532821 0.0030216256 -0.075289346 -0.057456385 -0.0033192355 -0.072297394 -0.051291257 -0.027727911 -0.1262504 -0.052428853 -0.027963316 -0.1189582 -0.055469256 -0.023351157 -0.12165818 -0.058117829 -0.0026990073 -0.13110261 -0.059432503 -0.0068493523 -0.12409181 -0.059494015 0.0034268289 -0.12235402 -0.051577814 0.02855435 -0.086960651 -0.048425686 0.031772159 -0.078288585 -0.050393432 0.033252385 -0.10036409 -0.055110842 -0.024519406 -0.11314452 -0.054848768 -0.023675868 -0.10616655 -0.056829821 -0.020127639 -0.10579859 -0.057532821 0.0030216256 -0.075289346 -0.057530064 -0.0022273557 -0.059666321 -0.057405893 0.0041226726 -0.057704903 -0.056592993 0.011359691 -0.13152769 -0.058470555 0.0072911805 -0.12603191 -0.057760485 0.015401036 -0.12092915 -0.057405893 0.0041226726 -0.057704903 -0.056924872 0.0078157149 -0.059017144 -0.057532821 0.0030216256 -0.075289346 -0.060297735 0.0025924738 -0.11183027 -0.058368314 0.015336637 -0.10937591 -0.057760485 0.015401036 -0.12092915 -0.051043715 0.03223582 -0.12426347 -0.04867772 0.036736771 -0.12035973 -0.048894864 0.033215445 -0.13071202 -0.04867772 0.036736771 -0.12035973 -0.043034341 0.039309274 -0.13206375 -0.048894864 0.033215445 -0.13071202 -0.058602311 -0.015485585 -0.10697099 -0.057393346 -0.010272719 -0.083868541 -0.059724271 -0.011233093 -0.11041397 -0.048587646 -0.0036857715 -0.15041666 -0.047267981 0.0068130628 -0.15189888 -0.045331925 0.002331567 -0.15393701 -0.056829821 -0.020127639 -0.10579859 -0.056507099 -0.010495565 -0.073223747 -0.058602311 -0.015485585 -0.10697099 -0.058368314 0.015336637 -0.10937591 -0.056487322 0.021955803 -0.10963107 -0.057760485 0.015401036 -0.12092915 0.049989246 0.037099227 0.12298962 0.048466101 0.038951054 0.13409331 0.052055705 0.035401728 0.13245459 -0.056829821 -0.020127639 -0.10579859 -0.054848768 -0.023675868 -0.10616655 -0.056507099 -0.010495565 -0.073223747 -0.047267981 0.0068130628 -0.15189888 -0.048587646 -0.0036857715 -0.15041666 -0.052562654 0.0025468348 -0.1449924 -0.043034341 0.039309274 -0.13206375 -0.04867772 0.036736771 -0.12035973 -0.042584646 0.042748485 -0.1210006 -0.059356906 0.0056382986 -0.097442195 -0.060297735 0.0025924738 -0.11183027 -0.060325351 -0.0020461043 -0.10579949 -0.04867772 0.036736771 -0.12035973 -0.045765202 0.040431682 -0.11586218 -0.042584646 0.042748485 -0.1210006 -0.058265366 0.013741765 -0.099841729 -0.058368314 0.015336637 -0.10937591 -0.059356906 0.0056382986 -0.097442195 -0.058602311 -0.015485585 -0.10697099 -0.056507099 -0.010495565 -0.073223747 -0.057393346 -0.010272719 -0.083868541 -0.052017014 0.032041434 -0.11550643 -0.05277428 0.030450068 -0.10774855 -0.050040822 0.035160258 -0.11160301 -0.05277428 0.030450068 -0.10774855 -0.050393432 0.033252385 -0.10036409 -0.050040822 0.035160258 -0.11160301 0.042998545 0.042340599 0.146909 0.03742376 0.044381958 0.16219954 0.047445904 0.03874401 0.1449367 -0.057456385 -0.0033192355 -0.072297394 -0.060325351 -0.0020461043 -0.10579949 -0.057393346 -0.010272719 -0.083868541 -0.051647335 -0.004240951 -0.14637877 -0.054643031 -0.0017338193 -0.14108944 -0.052562654 0.0025468348 -0.1449924 -0.057532821 0.0030216256 -0.075289346 -0.059356906 0.0056382986 -0.097442195 -0.060325351 -0.0020461043 -0.10579949 -0.058265366 0.013741765 -0.099841729 -0.055383448 0.017594041 -0.080534637 -0.053343471 0.02341152 -0.080102816 -0.057530064 -0.0022273557 -0.059666321 -0.057456385 -0.0033192355 -0.072297394 -0.057215843 -0.0074604442 -0.059276734 -0.047267981 0.0068130628 -0.15189888 -0.050655298 0.011860657 -0.14611027 -0.047448657 0.021752099 -0.1460937 -0.043871175 0.010494131 -0.15432806 -0.045331925 0.002331567 -0.15393701 -0.047267981 0.0068130628 -0.15189888 -0.048587646 -0.0036857715 -0.15041666 -0.049113873 -0.0093614394 -0.148376 -0.051647335 -0.004240951 -0.14637877 -0.052562654 0.0025468348 -0.1449924 -0.048587646 -0.0036857715 -0.15041666 -0.051647335 -0.004240951 -0.14637877 -0.055158503 -0.012004917 -0.1375763 -0.058117829 -0.0026990073 -0.13110261 -0.054643031 -0.0017338193 -0.14108944 -0.049113873 -0.0093614394 -0.148376 -0.052361004 -0.016197251 -0.14050311 -0.051647335 -0.004240951 -0.14637877 -0.050655298 0.011860657 -0.14611027 -0.050988719 0.021598741 -0.1399347 -0.047448657 0.021752099 -0.1460937 -0.052361004 -0.016197251 -0.14050311 -0.055158503 -0.012004917 -0.1375763 -0.051647335 -0.004240951 -0.14637877 -0.047267981 0.0068130628 -0.15189888 -0.052562654 0.0025468348 -0.1449924 -0.050655298 0.011860657 -0.14611027 -0.032086954 0.038838338 0.13981833 -0.02691639 0.044717789 0.14639267 -0.023935903 0.044894777 0.13475612 -0.055158503 -0.012004917 -0.1375763 -0.054643031 -0.0017338193 -0.14108944 -0.051647335 -0.004240951 -0.14637877 -0.055158503 -0.012004917 -0.1375763 -0.052361004 -0.016197251 -0.14050311 -0.054320574 -0.016390659 -0.13663994 -0.052361004 -0.016197251 -0.14050311 -0.054153748 -0.023135139 -0.12836729 -0.054320574 -0.016390659 -0.13663994 -0.047448657 0.021752099 -0.1460937 -0.044605959 0.028451188 -0.14480828 -0.040717836 0.025840813 -0.15026134 -0.0001929588 0.051388536 0.11092472 0.0071379235 0.05428179 0.13398683 0.012142788 0.053302113 0.12718165 -0.052562654 0.0025468348 -0.1449924 -0.054643031 -0.0017338193 -0.14108944 -0.054882012 0.0068263351 -0.13910706 -0.050655298 0.011860657 -0.14611027 -0.052562654 0.0025468348 -0.1449924 -0.054882012 0.0068263351 -0.13910706 -0.032324877 0.041918781 0.089148767 -0.021459943 0.045824125 0.11186982 -0.023920599 0.045179863 0.091667861 -0.050988719 0.021598741 -0.1399347 -0.044605959 0.028451188 -0.14480828 -0.047448657 0.021752099 -0.1460937 -0.043871175 0.010494131 -0.15432806 -0.047267981 0.0068130628 -0.15189888 -0.047448657 0.021752099 -0.1460937 -0.050988719 0.021598741 -0.1399347 -0.051191825 0.025156327 -0.13610782 -0.044605959 0.028451188 -0.14480828 -0.031794414 0.040358156 0.036299996 -0.006393183 0.046650447 0.081325687 -0.014700036 0.042269483 0.054900076 -0.054321066 0.013945166 -0.13719051 -0.051191825 0.025156327 -0.13610782 -0.050988719 0.021598741 -0.1399347 -0.054882012 0.0068263351 -0.13910706 -0.054321066 0.013945166 -0.13719051 -0.050655298 0.011860657 -0.14611027 -0.054321066 0.013945166 -0.13719051 -0.050988719 0.021598741 -0.1399347 -0.050655298 0.011860657 -0.14611027 0.043589175 0.042271536 0.12345216 0.049989246 0.037099227 0.12298962 0.04889334 0.03702357 0.113767 -0.054320574 -0.016390659 -0.13663994 -0.057694014 -0.010428355 -0.13089116 -0.055158503 -0.012004917 -0.1375763 -0.056656383 -0.017327163 -0.12893449 -0.054320574 -0.016390659 -0.13663994 -0.054153748 -0.023135139 -0.12836729 -0.047448657 0.021752099 -0.1460937 -0.040717836 0.025840813 -0.15026134 -0.043871175 0.010494131 -0.15432806 -0.058257297 -0.017574973 -0.11687908 -0.059850227 -0.0102462 -0.1165057 -0.058703136 -0.013183865 -0.12384688 -0.054643031 -0.0017338193 -0.14108944 -0.058117829 -0.0026990073 -0.13110261 -0.054882012 0.0068263351 -0.13910706 -0.057694014 -0.010428355 -0.13089116 -0.054320574 -0.016390659 -0.13663994 -0.056656383 -0.017327163 -0.12893449 -0.056656383 -0.017327163 -0.12893449 -0.054153748 -0.023135139 -0.12836729 -0.055469256 -0.023351157 -0.12165818 -0.055158503 -0.012004917 -0.1375763 -0.057694014 -0.010428355 -0.13089116 -0.058117829 -0.0026990073 -0.13110261 -0.051191825 0.025156327 -0.13610782 -0.048894864 0.033215445 -0.13071202 -0.045026846 0.033039462 -0.13937134 -0.051191825 0.025156327 -0.13610782 -0.054321066 0.013945166 -0.13719051 -0.055794757 0.021658558 -0.12286704 -0.04451561 0.014784971 0.1282485 -0.045096319 0.020358965 0.14305235 -0.04259954 0.02093678 0.13008167 -0.040616475 0.033903934 -0.14333624 -0.044605959 0.028451188 -0.14480828 -0.045026846 0.033039462 -0.13937134 -0.054321066 0.013945166 -0.13719051 -0.056592993 0.011359691 -0.13152769 -0.055794757 0.021658558 -0.12286704 -0.055794757 0.021658558 -0.12286704 -0.051043715 0.03223582 -0.12426347 -0.051191825 0.025156327 -0.13610782 -0.030065663 0.039359231 0.12727843 -0.023935903 0.044894777 0.13475612 -0.02737 0.04169099 0.12485135 -0.059850227 -0.0102462 -0.1165057 -0.058257297 -0.017574973 -0.11687908 -0.059724271 -0.011233093 -0.11041397 -0.058117829 -0.0026990073 -0.13110261 -0.058470555 0.0072911805 -0.12603191 -0.054882012 0.0068263351 -0.13910706 -0.056656383 -0.017327163 -0.12893449 -0.055469256 -0.023351157 -0.12165818 -0.058703136 -0.013183865 -0.12384688 -0.045026846 0.033039462 -0.13937134 -0.048894864 0.033215445 -0.13071202 -0.043034341 0.039309274 -0.13206375 -0.043889157 0.036606133 -0.084154323 -0.048425686 0.031772159 -0.078288585 -0.049284153 0.03034058 -0.05924169 -0.034693703 0.045205127 -0.10113455 -0.038297173 0.044757899 -0.10720578 -0.043889157 0.036606133 -0.084154323 -0.027655303 0.048989091 -0.10826612 -0.034693703 0.045205127 -0.10113455 -0.024293019 0.047417343 -0.099009238 -0.049284153 0.03034058 -0.05924169 -0.048425686 0.031772159 -0.078288585 -0.051431846 0.026500316 -0.065240495 -0.042414755 0.036217827 -0.074759923 -0.043889157 0.036606133 -0.084154323 -0.049284153 0.03034058 -0.05924169 -0.03626363 0.039681289 -0.080892473 -0.024293019 0.047417343 -0.099009238 -0.034693703 0.045205127 -0.10113455 -0.043889157 0.036606133 -0.084154323 -0.038297173 0.044757899 -0.10720578 -0.045397162 0.040045407 -0.10631995 -0.045397162 0.040045407 -0.10631995 -0.048425686 0.031772159 -0.078288585 -0.043889157 0.036606133 -0.084154323 -0.038297173 0.044757899 -0.10720578 -0.038989101 0.045219306 -0.11508645 -0.045397162 0.040045407 -0.10631995 -0.03626363 0.039681289 -0.080892473 -0.034693703 0.045205127 -0.10113455 -0.043889157 0.036606133 -0.084154323 -0.042414755 0.036217827 -0.074759923 -0.049284153 0.03034058 -0.05924169 -0.046663404 0.033270705 -0.057566244 5.4989068e-06 0.054452918 0.14005552 0.0012409219 0.055487569 0.1528075 0.0071379235 0.05428179 0.13398683 -0.034693703 0.045205127 -0.10113455 -0.030031716 0.048878066 -0.11300947 -0.038297173 0.044757899 -0.10720578 -0.030031716 0.048878066 -0.11300947 -0.034693703 0.045205127 -0.10113455 -0.027655303 0.048989091 -0.10826612 -0.03626363 0.039681289 -0.080892473 -0.043889157 0.036606133 -0.084154323 -0.042414755 0.036217827 -0.074759923 -0.042996742 -0.022781566 -0.14600745 -0.048657898 -0.021923099 -0.14066486 -0.048860043 -0.016629474 -0.14484172 -0.026252966 0.043934703 0.063852184 -0.012982503 0.046638563 0.082315482 -0.006393183 0.046650447 0.081325687 -0.040541682 -0.020242013 -0.14994195 -0.048860043 -0.016629474 -0.14484172 -0.042793646 -0.013820225 -0.15200073 -0.030020861 -0.02465271 -0.15247066 -0.040541682 -0.020242013 -0.14994195 -0.035012338 -0.014313816 -0.15641694 0.043589175 0.042271536 0.12345216 0.048466101 0.038951054 0.13409331 0.049989246 0.037099227 0.12298962 -0.030020861 -0.02465271 -0.15247066 -0.035012338 -0.014313816 -0.15641694 -0.030348476 -0.013713649 -0.15852422 -0.029253824 -0.042402454 -0.12295397 -0.038721617 -0.038583126 -0.1225923 -0.034696527 -0.038300857 -0.13124363 -0.0367603 -0.039487932 -0.10875181 -0.046899352 -0.033292174 -0.11146653 -0.044490393 -0.035361797 -0.11874808 -0.02698769 -0.020304291 -0.15634771 -0.030348476 -0.013713649 -0.15852422 -0.024225602 -0.010698569 -0.16114493 -0.036135413 -0.027970519 -0.14644091 -0.040541682 -0.020242013 -0.14994195 -0.030020861 -0.02465271 -0.15247066 -0.030348476 -0.013713649 -0.15852422 -0.038279433 -0.0049343626 -0.1576862 -0.02881653 -0.0043543992 -0.16157974 -0.028246731 0.042012658 0.10745943 -0.021459943 0.045824125 0.11186982 -0.032324877 0.041918781 0.089148767 -0.018753113 -0.018680137 -0.15856396 -0.024225602 -0.010698569 -0.16114493 -0.018663725 -0.0109901 -0.16170833 -0.024225602 -0.010698569 -0.16114493 -0.030348476 -0.013713649 -0.15852422 -0.02881653 -0.0043543992 -0.16157974 -0.032523427 -0.031392194 -0.14486375 -0.030020861 -0.02465271 -0.15247066 -0.023542617 -0.03336902 -0.14613952 -0.0367603 -0.039487932 -0.10875181 -0.043878756 -0.034847327 -0.10696211 -0.046899352 -0.033292174 -0.11146653 -0.013345175 -0.0037647567 -0.16332297 -0.023087414 -0.0013109033 -0.16319406 -0.019297678 0.0039258758 -0.16380307 -0.013345175 -0.0037647567 -0.16332297 -0.019297678 0.0039258758 -0.16380307 -0.0058789128 -0.00022436466 -0.16268311 -0.045773361 -0.026685802 -0.13893493 -0.051291257 -0.027727911 -0.1262504 -0.054153748 -0.023135139 -0.12836729 -0.052428853 -0.027963316 -0.1189582 -0.046899352 -0.033292174 -0.11146653 -0.055110842 -0.024519406 -0.11314452 0.042451005 0.042235631 0.11647434 0.043589175 0.042271536 0.12345216 0.04889334 0.03702357 0.113767 -0.02881653 -0.0043543992 -0.16157974 -0.038279433 -0.0049343626 -0.1576862 -0.038724709 0.0054509598 -0.15817121 -0.029253824 -0.042402454 -0.12295397 -0.032815617 -0.041748561 -0.11472192 -0.038721617 -0.038583126 -0.1225923 -0.02881653 -0.0043543992 -0.16157974 -0.027993049 0.0049875532 -0.16237554 -0.019297678 0.0039258758 -0.16380307 -0.040541682 -0.020242013 -0.14994195 -0.042793646 -0.013820225 -0.15200073 -0.035012338 -0.014313816 -0.15641694 -0.042793646 -0.013820225 -0.15200073 -0.049113873 -0.0093614394 -0.148376 -0.042833179 -0.0054880162 -0.15480477 -0.035012338 -0.014313816 -0.15641694 -0.042793646 -0.013820225 -0.15200073 -0.038279433 -0.0049343626 -0.1576862 -0.04098364 0.038962629 0.03077448 -0.031794414 0.040358156 0.036299996 -0.035992678 0.038939856 0.021512453 -0.03787918 -0.034098234 -0.1368674 -0.045773361 -0.026685802 -0.13893493 -0.036135413 -0.027970519 -0.14644091 -0.018663725 -0.0109901 -0.16170833 -0.024225602 -0.010698569 -0.16114493 -0.023087414 -0.0013109033 -0.16319406 -0.032305777 -0.034735691 -0.14045602 -0.03787918 -0.034098234 -0.1368674 -0.032523427 -0.031392194 -0.14486375 -0.02881653 -0.0043543992 -0.16157974 -0.038724709 0.0054509598 -0.15817121 -0.027993049 0.0049875532 -0.16237554 -0.025881829 -0.037299942 -0.13975792 -0.032523427 -0.031392194 -0.14486375 -0.023542617 -0.03336902 -0.14613952 -0.049113873 -0.0093614394 -0.148376 -0.048587646 -0.0036857715 -0.15041666 -0.042833179 -0.0054880162 -0.15480477 -0.0090433061 -0.013737459 -0.16027498 -0.018663725 -0.0109901 -0.16170833 -0.007835757 -0.0086127268 -0.16169962 -0.027932707 -0.040913627 -0.13065438 -0.034696527 -0.038300857 -0.13124363 -0.025881829 -0.037299942 -0.13975792 -0.03787918 -0.034098234 -0.1368674 -0.041754048 -0.035828475 -0.12691662 -0.045773361 -0.026685802 -0.13893493 -0.029253824 -0.042402454 -0.12295397 -0.034696527 -0.038300857 -0.13124363 -0.027932707 -0.040913627 -0.13065438 -0.045773361 -0.026685802 -0.13893493 -0.048657898 -0.021923099 -0.14066486 -0.042996742 -0.022781566 -0.14600745 -0.041754048 -0.035828475 -0.12691662 -0.044490393 -0.035361797 -0.11874808 -0.051291257 -0.027727911 -0.1262504 0.036102835 0.046496358 0.15280461 0.03742376 0.044381958 0.16219954 0.042998545 0.042340599 0.146909 -0.021270391 -0.024749435 -0.15461965 -0.018753113 -0.018680137 -0.15856396 -0.011297273 -0.022412805 -0.15623459 -0.018663725 -0.0109901 -0.16170833 -0.023087414 -0.0013109033 -0.16319406 -0.013345175 -0.0037647567 -0.16332297 -0.010618832 -0.019408461 -0.15792122 -0.018753113 -0.018680137 -0.15856396 -0.0090433061 -0.013737459 -0.16027498 -0.025881829 -0.037299942 -0.13975792 -0.032305777 -0.034735691 -0.14045602 -0.032523427 -0.031392194 -0.14486375 -0.025881829 -0.037299942 -0.13975792 -0.034696527 -0.038300857 -0.13124363 -0.032305777 -0.034735691 -0.14045602 -0.019297678 0.0039258758 -0.16380307 -0.014842626 0.0075357491 -0.16369183 -0.0058789128 -0.00022436466 -0.16268311 -0.042996742 -0.022781566 -0.14600745 -0.048860043 -0.016629474 -0.14484172 -0.040541682 -0.020242013 -0.14994195 -0.030020861 -0.02465271 -0.15247066 -0.030348476 -0.013713649 -0.15852422 -0.02698769 -0.020304291 -0.15634771 -0.038279433 -0.0049343626 -0.1576862 -0.042833179 -0.0054880162 -0.15480477 -0.038724709 0.0054509598 -0.15817121 -0.018753113 -0.018680137 -0.15856396 -0.018663725 -0.0109901 -0.16170833 -0.0090433061 -0.013737459 -0.16027498 -0.021270391 -0.024749435 -0.15461965 -0.02698769 -0.020304291 -0.15634771 -0.018753113 -0.018680137 -0.15856396 -0.036135413 -0.027970519 -0.14644091 -0.045773361 -0.026685802 -0.13893493 -0.042996742 -0.022781566 -0.14600745 -0.042833179 -0.0054880162 -0.15480477 -0.045331925 0.002331567 -0.15393701 -0.038724709 0.0054509598 -0.15817121 -0.015918521 -0.033795752 -0.14652669 -0.023542617 -0.03336902 -0.14613952 -0.021270391 -0.024749435 -0.15461965 -0.032815617 -0.041748561 -0.11472192 -0.044490393 -0.035361797 -0.11874808 -0.038721617 -0.038583126 -0.1225923 -0.042793646 -0.013820225 -0.15200073 -0.042833179 -0.0054880162 -0.15480477 -0.038279433 -0.0049343626 -0.1576862 -0.046899352 -0.033292174 -0.11146653 -0.05105764 -0.027562862 -0.10321703 -0.055110842 -0.024519406 -0.11314452 -0.032523427 -0.031392194 -0.14486375 -0.03787918 -0.034098234 -0.1368674 -0.036135413 -0.027970519 -0.14644091 -0.036135413 -0.027970519 -0.14644091 -0.042996742 -0.022781566 -0.14600745 -0.040541682 -0.020242013 -0.14994195 -0.044490393 -0.035361797 -0.11874808 -0.052428853 -0.027963316 -0.1189582 -0.051291257 -0.027727911 -0.1262504 -0.032815617 -0.041748561 -0.11472192 -0.0367603 -0.039487932 -0.10875181 -0.044490393 -0.035361797 -0.11874808 -0.032523427 -0.031392194 -0.14486375 -0.036135413 -0.027970519 -0.14644091 -0.030020861 -0.02465271 -0.15247066 -0.042833179 -0.0054880162 -0.15480477 -0.048587646 -0.0036857715 -0.15041666 -0.045331925 0.002331567 -0.15393701 -0.021270391 -0.024749435 -0.15461965 -0.030020861 -0.02465271 -0.15247066 -0.02698769 -0.020304291 -0.15634771 -0.048860043 -0.016629474 -0.14484172 -0.049113873 -0.0093614394 -0.148376 -0.042793646 -0.013820225 -0.15200073 -0.018753113 -0.018680137 -0.15856396 -0.010618832 -0.019408461 -0.15792122 -0.011297273 -0.022412805 -0.15623459 -0.034696527 -0.038300857 -0.13124363 -0.038721617 -0.038583126 -0.1225923 -0.041754048 -0.035828475 -0.12691662 -0.034696527 -0.038300857 -0.13124363 -0.041754048 -0.035828475 -0.12691662 -0.03787918 -0.034098234 -0.1368674 -0.007835757 -0.0086127268 -0.16169962 -0.018663725 -0.0109901 -0.16170833 -0.013345175 -0.0037647567 -0.16332297 -0.034696527 -0.038300857 -0.13124363 -0.03787918 -0.034098234 -0.1368674 -0.032305777 -0.034735691 -0.14045602 -0.044490393 -0.035361797 -0.11874808 -0.046899352 -0.033292174 -0.11146653 -0.052428853 -0.027963316 -0.1189582 -0.045331925 0.002331567 -0.15393701 -0.043871175 0.010494131 -0.15432806 -0.038724709 0.0054509598 -0.15817121 -0.023087414 -0.0013109033 -0.16319406 -0.02881653 -0.0043543992 -0.16157974 -0.019297678 0.0039258758 -0.16380307 -0.030348476 -0.013713649 -0.15852422 -0.035012338 -0.014313816 -0.15641694 -0.038279433 -0.0049343626 -0.1576862 0.042998545 0.042340599 0.146909 0.047445904 0.03874401 0.1449367 0.048466101 0.038951054 0.13409331 -0.024225602 -0.010698569 -0.16114493 -0.02881653 -0.0043543992 -0.16157974 -0.023087414 -0.0013109033 -0.16319406 -0.02698769 -0.020304291 -0.15634771 -0.024225602 -0.010698569 -0.16114493 -0.018753113 -0.018680137 -0.15856396 -0.038721617 -0.038583126 -0.1225923 -0.044490393 -0.035361797 -0.11874808 -0.041754048 -0.035828475 -0.12691662 -0.023542617 -0.03336902 -0.14613952 -0.030020861 -0.02465271 -0.15247066 -0.021270391 -0.024749435 -0.15461965 -0.045773361 -0.026685802 -0.13893493 -0.054153748 -0.023135139 -0.12836729 -0.048657898 -0.021923099 -0.14066486 -0.041754048 -0.035828475 -0.12691662 -0.051291257 -0.027727911 -0.1262504 -0.045773361 -0.026685802 -0.13893493 -0.039531503 0.011846487 -0.15686458 -0.043871175 0.010494131 -0.15432806 -0.03629151 0.019483875 -0.15625584 -0.029578375 0.046828751 -0.13031922 -0.033525847 0.047399152 -0.12170212 -0.025084298 0.049081415 -0.12621561 -0.02592562 0.043990918 -0.13902722 -0.025084298 0.049081415 -0.12621561 -0.013962447 0.04802566 -0.13258633 -0.032023091 0.017395347 -0.15887009 -0.03629151 0.019483875 -0.15625584 -0.027791945 0.023279281 -0.15785952 -0.031489674 0.027103612 -0.15453196 -0.032191627 0.034377668 -0.14857101 -0.025653722 0.033394054 -0.15189885 -0.012494379 0.022671573 -0.15960462 -0.020613017 0.026525605 -0.15757203 -0.018523997 0.032713536 -0.15361197 -0.011141844 0.038875796 -0.14752452 -0.011112978 0.041939359 -0.14365087 -0.004116727 0.039106295 -0.14528902 -0.01027367 0.027261965 -0.15697663 -0.0143553 0.033323538 -0.15316685 -0.0033299737 0.029961213 -0.15357938 -0.043034341 0.039309274 -0.13206375 -0.041029491 0.04239168 -0.12755999 -0.033153076 0.043583706 -0.13521247 -0.020812396 0.020256078 -0.16049699 -0.027791945 0.023279281 -0.15785952 -0.020613017 0.026525605 -0.15757203 -0.02592562 0.043990918 -0.13902722 -0.029578375 0.046828751 -0.13031922 -0.025084298 0.049081415 -0.12621561 -0.0053763767 0.0043847589 -0.16267093 -0.0058789128 -0.00022436466 -0.16268311 -0.014842626 0.0075357491 -0.16369183 -0.014842626 0.0075357491 -0.16369183 -0.0046387785 0.009752349 -0.16203943 -0.0053763767 0.0043847589 -0.16267093 -0.0046387785 0.009752349 -0.16203943 -0.014842626 0.0075357491 -0.16369183 -0.015672356 0.010992906 -0.16325827 -0.03629151 0.019483875 -0.15625584 -0.043871175 0.010494131 -0.15432806 -0.040717836 0.025840813 -0.15026134 -0.019297678 0.0039258758 -0.16380307 -0.015672356 0.010992906 -0.16325827 -0.014842626 0.0075357491 -0.16369183 -0.019297678 0.0039258758 -0.16380307 -0.027993049 0.0049875532 -0.16237554 -0.02187429 0.011804842 -0.16276966 -0.01027367 0.027261965 -0.15697663 -0.018523997 0.032713536 -0.15361197 -0.0143553 0.033323538 -0.15316685 -0.019297678 0.0039258758 -0.16380307 -0.02187429 0.011804842 -0.16276966 -0.015672356 0.010992906 -0.16325827 -0.033525847 0.047399152 -0.12170212 -0.020307494 0.050265253 -0.12350946 -0.025084298 0.049081415 -0.12621561 -0.011141844 0.038875796 -0.14752452 -0.018948866 0.038876068 -0.14777179 -0.011112978 0.041939359 -0.14365087 -0.035010621 0.042694338 0.072281778 -0.023920599 0.045179863 0.091667861 -0.02173361 0.045749899 0.086922251 -0.030582681 0.040788893 -0.14185321 -0.035701029 0.039230939 -0.1406742 -0.033153076 0.043583706 -0.13521247 -0.015672356 0.010992906 -0.16325827 -0.012494379 0.022671573 -0.15960462 -0.0040134666 0.015053493 -0.16079536 -0.027993049 0.0049875532 -0.16237554 -0.024728628 0.015279758 -0.161534 -0.02187429 0.011804842 -0.16276966 -0.038989101 0.045219306 -0.11508645 -0.030031716 0.048878066 -0.11300947 -0.033525847 0.047399152 -0.12170212 -0.0035338164 0.020200742 -0.15895995 -0.0040134666 0.015053493 -0.16079536 -0.012494379 0.022671573 -0.15960462 -0.040717836 0.025840813 -0.15026134 -0.040616475 0.033903934 -0.14333624 -0.032191627 0.034377668 -0.14857101 -0.027791945 0.023279281 -0.15785952 -0.03629151 0.019483875 -0.15625584 -0.031489674 0.027103612 -0.15453196 -0.033525847 0.047399152 -0.12170212 -0.02346883 0.050428528 -0.11809239 -0.020307494 0.050265253 -0.12350946 -0.027993049 0.0049875532 -0.16237554 -0.033847805 0.0095291026 -0.16004197 -0.024728628 0.015279758 -0.161534 -0.03629151 0.019483875 -0.15625584 -0.040717836 0.025840813 -0.15026134 -0.031489674 0.027103612 -0.15453196 -0.046427142 0.0031023279 0.1271839 -0.04451561 0.014784971 0.1282485 -0.045643039 0.011844915 0.11495637 -0.027791945 0.023279281 -0.15785952 -0.031489674 0.027103612 -0.15453196 -0.020613017 0.026525605 -0.15757203 -0.033847805 0.0095291026 -0.16004197 -0.027993049 0.0049875532 -0.16237554 -0.038724709 0.0054509598 -0.15817121 -0.013962447 0.04802566 -0.13258633 -0.020307494 0.050265253 -0.12350946 -0.014612067 0.049931742 -0.1261493 -0.015672356 0.010992906 -0.16325827 -0.02187429 0.011804842 -0.16276966 -0.020812396 0.020256078 -0.16049699 -0.015672356 0.010992906 -0.16325827 -0.020812396 0.020256078 -0.16049699 -0.012494379 0.022671573 -0.15960462 -0.033847805 0.0095291026 -0.16004197 -0.038724709 0.0054509598 -0.15817121 -0.039531503 0.011846487 -0.15686458 -0.032191627 0.034377668 -0.14857101 -0.035701029 0.039230939 -0.1406742 -0.030582681 0.040788893 -0.14185321 -0.030582681 0.040788893 -0.14185321 -0.033153076 0.043583706 -0.13521247 -0.02592562 0.043990918 -0.13902722 -0.033847805 0.0095291026 -0.16004197 -0.032023091 0.017395347 -0.15887009 -0.024728628 0.015279758 -0.161534 -0.0143553 0.033323538 -0.15316685 -0.011141844 0.038875796 -0.14752452 -0.0033299737 0.029961213 -0.15357938 -0.041215725 0.037293456 -0.13830562 -0.043034341 0.039309274 -0.13206375 -0.035701029 0.039230939 -0.1406742 -0.038989101 0.045219306 -0.11508645 -0.038297173 0.044757899 -0.10720578 -0.030031716 0.048878066 -0.11300947 0.031799048 0.048275758 0.1606402 0.03742376 0.044381958 0.16219954 0.036102835 0.046496358 0.15280461 -0.032191627 0.034377668 -0.14857101 -0.030582681 0.040788893 -0.14185321 -0.025653722 0.033394054 -0.15189885 -0.02187429 0.011804842 -0.16276966 -0.024728628 0.015279758 -0.161534 -0.020812396 0.020256078 -0.16049699 -0.025653722 0.033394054 -0.15189885 -0.02592562 0.043990918 -0.13902722 -0.018948866 0.038876068 -0.14777179 -0.0033299737 0.029961213 -0.15357938 -0.011141844 0.038875796 -0.14752452 -0.004116727 0.039106295 -0.14528902 -0.018948866 0.038876068 -0.14777179 -0.017177444 0.045211051 -0.1388879 -0.011112978 0.041939359 -0.14365087 -0.047771703 0.012423694 0.10378474 -0.045643039 0.011844915 0.11495637 -0.044943418 0.020007562 0.10647131 -0.032191627 0.034377668 -0.14857101 -0.040616475 0.033903934 -0.14333624 -0.035701029 0.039230939 -0.1406742 -0.035701029 0.039230939 -0.1406742 -0.043034341 0.039309274 -0.13206375 -0.033153076 0.043583706 -0.13521247 -0.030031716 0.048878066 -0.11300947 -0.02346883 0.050428528 -0.11809239 -0.033525847 0.047399152 -0.12170212 -0.033153076 0.043583706 -0.13521247 -0.041029491 0.04239168 -0.12755999 -0.029578375 0.046828751 -0.13031922 -0.013962447 0.04802566 -0.13258633 -0.025084298 0.049081415 -0.12621561 -0.020307494 0.050265253 -0.12350946 -0.018948866 0.038876068 -0.14777179 -0.02592562 0.043990918 -0.13902722 -0.017177444 0.045211051 -0.1388879 -0.033847805 0.0095291026 -0.16004197 -0.039531503 0.011846487 -0.15686458 -0.032023091 0.017395347 -0.15887009 -0.020613017 0.026525605 -0.15757203 -0.031489674 0.027103612 -0.15453196 -0.025653722 0.033394054 -0.15189885 -0.020613017 0.026525605 -0.15757203 -0.025653722 0.033394054 -0.15189885 -0.018523997 0.032713536 -0.15361197 -0.02592562 0.043990918 -0.13902722 -0.033153076 0.043583706 -0.13521247 -0.029578375 0.046828751 -0.13031922 -0.025653722 0.033394054 -0.15189885 -0.030582681 0.040788893 -0.14185321 -0.02592562 0.043990918 -0.13902722 -0.038724709 0.0054509598 -0.15817121 -0.043871175 0.010494131 -0.15432806 -0.039531503 0.011846487 -0.15686458 -0.039531503 0.011846487 -0.15686458 -0.03629151 0.019483875 -0.15625584 -0.032023091 0.017395347 -0.15887009 -0.017177444 0.045211051 -0.1388879 -0.02592562 0.043990918 -0.13902722 -0.013962447 0.04802566 -0.13258633 -0.041029491 0.04239168 -0.12755999 -0.042584646 0.042748485 -0.1210006 -0.033525847 0.047399152 -0.12170212 -0.024728628 0.015279758 -0.161534 -0.032023091 0.017395347 -0.15887009 -0.027791945 0.023279281 -0.15785952 -0.024728628 0.015279758 -0.161534 -0.027791945 0.023279281 -0.15785952 -0.020812396 0.020256078 -0.16049699 -0.02346883 0.050428528 -0.11809239 -0.017912429 0.050952587 -0.1135764 -0.020307494 0.050265253 -0.12350946 -0.040616475 0.033903934 -0.14333624 -0.041215725 0.037293456 -0.13830562 -0.035701029 0.039230939 -0.1406742 -0.047411062 0.037645306 0.065992899 -0.045296639 0.03687916 0.078160554 -0.042252306 0.039940722 0.072173491 -0.0143553 0.033323538 -0.15316685 -0.018523997 0.032713536 -0.15361197 -0.018948866 0.038876068 -0.14777179 -0.0143553 0.033323538 -0.15316685 -0.018948866 0.038876068 -0.14777179 -0.011141844 0.038875796 -0.14752452 -0.042584646 0.042748485 -0.1210006 -0.038989101 0.045219306 -0.11508645 -0.033525847 0.047399152 -0.12170212 -0.031489674 0.027103612 -0.15453196 -0.040717836 0.025840813 -0.15026134 -0.032191627 0.034377668 -0.14857101 -0.041029491 0.04239168 -0.12755999 -0.033525847 0.047399152 -0.12170212 -0.029578375 0.046828751 -0.13031922 -0.030031716 0.048878066 -0.11300947 -0.027655303 0.048989091 -0.10826612 -0.02346883 0.050428528 -0.11809239 -0.017177444 0.045211051 -0.1388879 -0.013962447 0.04802566 -0.13258633 -0.011112978 0.041939359 -0.14365087 -0.020812396 0.020256078 -0.16049699 -0.020613017 0.026525605 -0.15757203 -0.012494379 0.022671573 -0.15960462 -0.027655303 0.048989091 -0.10826612 -0.017912429 0.050952587 -0.1135764 -0.02346883 0.050428528 -0.11809239 -0.018523997 0.032713536 -0.15361197 -0.025653722 0.033394054 -0.15189885 -0.018948866 0.038876068 -0.14777179 -0.012494379 0.022671573 -0.15960462 -0.018523997 0.032713536 -0.15361197 -0.01027367 0.027261965 -0.15697663 -0.049483631 0.0356046 0.017067574 -0.043126825 0.035059892 -0.058811408 -0.046663404 0.033270705 -0.057566244 -0.0061215223 0.048194565 -0.12884828 -0.0052787322 0.045679703 -0.13518481 -0.013962447 0.04802566 -0.13258633 -0.046663404 0.033270705 -0.057566244 -0.03626363 0.039681289 -0.080892473 -0.042414755 0.036217827 -0.074759923 -0.027655303 0.048989091 -0.10826612 -0.017825812 0.050293937 -0.10769363 -0.017912429 0.050952587 -0.1135764 -0.054789156 0.032518648 0.060553145 -0.055923756 0.029987579 0.068287618 -0.051008429 0.034792397 0.068767592 -0.051008429 0.034792397 0.068767592 -0.055923756 0.029987579 0.068287618 -0.052155301 0.032289855 0.074020118 -0.024293019 0.047417343 -0.099009238 -0.017825812 0.050293937 -0.10769363 -0.027655303 0.048989091 -0.10826612 -0.004116727 0.039106295 -0.14528902 -0.0036118869 0.034088384 -0.15036806 -0.0033299737 0.029961213 -0.15357938 -0.0040943385 0.042264774 -0.14089054 -0.004116727 0.039106295 -0.14528902 -0.011112978 0.041939359 -0.14365087 -0.015672356 0.010992906 -0.16325827 -0.0040134666 0.015053493 -0.16079536 -0.0046387785 0.009752349 -0.16203943 -0.046860993 0.031134896 0.086566627 -0.052155301 0.032289855 0.074020118 -0.055923756 0.029987579 0.068287618 -0.01027367 0.027261965 -0.15697663 -0.0033299737 0.029961213 -0.15357938 -0.0028509719 0.025193762 -0.15640062 -0.046860993 0.031134896 0.086566627 -0.055923756 0.029987579 0.068287618 -0.056762967 0.025067905 0.075383209 -0.0052787322 0.045679703 -0.13518481 -0.0040943385 0.042264774 -0.14089054 -0.011112978 0.041939359 -0.14365087 -0.01027367 0.027261965 -0.15697663 -0.0028509719 0.025193762 -0.15640062 -0.012494379 0.022671573 -0.15960462 -0.013962447 0.04802566 -0.13258633 -0.0052787322 0.045679703 -0.13518481 -0.011112978 0.041939359 -0.14365087 -0.050050192 0.024173401 0.088361353 -0.056762967 0.025067905 0.075383209 -0.059056371 0.013843497 0.078077018 0.039762445 0.045226645 0.14125134 0.042998545 0.042340599 0.146909 0.048466101 0.038951054 0.13409331 -0.050050192 0.024173401 0.088361353 -0.059056371 0.013843497 0.078077018 -0.052340474 0.017204139 0.088770114 -0.01214517 0.041505966 -0.084323004 -0.030617192 0.038498003 -0.072020084 -0.019172141 0.038605109 -0.075087421 -0.031604491 0.040976167 -0.082219012 -0.030617192 0.038498003 -0.072020084 -0.01214517 0.041505966 -0.084323004 -0.019172141 0.038605109 -0.075087421 -0.030617192 0.038498003 -0.072020084 -0.026275139 0.036723129 -0.061667774 -0.013907192 0.047756132 -0.098650485 -0.017825812 0.050293937 -0.10769363 -0.024293019 0.047417343 -0.099009238 -0.039396927 0.036778923 -0.068816312 -0.03626363 0.039681289 -0.080892473 -0.046663404 0.033270705 -0.057566244 -0.031604491 0.040976167 -0.082219012 -0.039396927 0.036778923 -0.068816312 -0.030617192 0.038498003 -0.072020084 -0.039396927 0.036778923 -0.068816312 -0.036893934 0.036893252 -0.058116622 -0.030617192 0.038498003 -0.072020084 -0.039396927 0.036778923 -0.068816312 -0.046663404 0.033270705 -0.057566244 -0.043126825 0.035059892 -0.058811408 -0.039396927 0.036778923 -0.068816312 -0.043126825 0.035059892 -0.058811408 -0.036893934 0.036893252 -0.058116622 -0.024293019 0.047417343 -0.099009238 -0.031604491 0.040976167 -0.082219012 -0.013907192 0.047756132 -0.098650485 -0.047771703 0.012423694 0.10378474 -0.044216082 0.027105127 0.098405547 -0.052340474 0.017204139 0.088770114 -0.032086954 0.038838338 0.13981833 -0.023935903 0.044894777 0.13475612 -0.030065663 0.039359231 0.12727843 -0.01214517 0.041505966 -0.084323004 -0.013907192 0.047756132 -0.098650485 -0.031604491 0.040976167 -0.082219012 -0.024293019 0.047417343 -0.099009238 -0.03626363 0.039681289 -0.080892473 -0.031604491 0.040976167 -0.082219012 -0.030406695 0.037184421 -0.057251152 -0.026275139 0.036723129 -0.061667774 -0.030617192 0.038498003 -0.072020084 -0.030617192 0.038498003 -0.072020084 -0.036893934 0.036893252 -0.058116622 -0.030406695 0.037184421 -0.057251152 0.00064547185 0.043682538 -0.091320619 -0.013907192 0.047756132 -0.098650485 -0.01214517 0.041505966 -0.084323004 -0.031604491 0.040976167 -0.082219012 -0.03626363 0.039681289 -0.080892473 -0.039396927 0.036778923 -0.068816312 -0.031480704 0.037553683 0.0059062284 -0.027694255 0.034806825 0.0069316956 -0.025351375 0.03549942 -0.056628067 -0.025274644 0.031885251 0.0066242162 -0.022969492 0.026292045 0.0075581903 -0.019332636 0.028203692 -0.058106966 -0.027694255 0.034806825 0.0069316956 -0.021912543 0.032166928 -0.055553619 -0.025351375 0.03549942 -0.056628067 -0.022969492 0.026292045 0.0075581903 -0.022527648 0.023178315 0.0068146726 -0.018328158 0.020989569 -0.054733172 -0.022969492 0.026292045 0.0075581903 -0.018328158 0.020989569 -0.054733172 -0.019332636 0.028203692 -0.058106966 -0.027694255 0.034806825 0.0069316956 -0.025274644 0.031885251 0.0066242162 -0.021912543 0.032166928 -0.055553619 -0.025274644 0.031885251 0.0066242162 -0.019332636 0.028203692 -0.058106966 -0.021912543 0.032166928 -0.055553619 -0.022527648 0.023178315 0.0068146726 -0.023002582 0.015819397 0.0066150893 -0.018328158 0.020989569 -0.054733172 -0.023002582 0.015819397 0.0066150893 -0.019078543 0.011873178 -0.055358253 -0.018328158 0.020989569 -0.054733172 -0.046708263 0.0058633061 0.13335955 -0.04451561 0.014784971 0.1282485 -0.046427142 0.0031023279 0.1271839 -0.023002582 0.015819397 0.0066150893 -0.025319727 0.0004181735 0.0067077563 -0.019078543 0.011873178 -0.055358253 -0.025319727 0.0004181735 0.0067077563 -0.021557076 -0.0029731956 -0.055685971 -0.019078543 0.011873178 -0.055358253 0.039762445 0.045226645 0.14125134 0.036102835 0.046496358 0.15280461 0.042998545 0.042340599 0.146909 -0.025319727 0.0004181735 0.0067077563 -0.026989404 -0.006875766 0.0067403391 -0.021557076 -0.0029731956 -0.055685971 -0.026989404 -0.006875766 0.0067403391 -0.024230031 -0.014087361 -0.058998864 -0.021557076 -0.0029731956 -0.055685971 -0.026989404 -0.006875766 0.0067403391 -0.028867401 -0.013039367 0.0076106722 -0.024230031 -0.014087361 -0.058998864 -0.016221602 0.033382252 -0.069495507 -0.0076438426 0.032097381 -0.073415123 -0.011388881 0.036819465 -0.076226287 -0.013334058 0.0021615576 -0.063398957 -0.017014068 0.0052073649 -0.061117362 -0.017643811 0.0019007437 -0.061055683 -0.010457366 0.02276317 -0.067655027 -0.016221602 0.033382252 -0.069495507 -0.019513819 0.031116992 -0.062770993 -0.01873512 0.0086526992 -0.058386862 -0.019078543 0.011873178 -0.055358253 -0.017014068 0.0052073649 -0.061117362 -0.017014068 0.0052073649 -0.061117362 -0.015503686 0.02213099 -0.064085342 -0.01873512 0.0086526992 -0.058386862 -0.017554829 0.022287793 -0.060638607 -0.019332636 0.028203692 -0.058106966 -0.018328158 0.020989569 -0.054733172 -0.019513819 0.031116992 -0.062770993 -0.016221602 0.033382252 -0.069495507 -0.020813737 0.03334121 -0.063643545 -0.017554829 0.022287793 -0.060638607 -0.019513819 0.031116992 -0.062770993 -0.019332636 0.028203692 -0.058106966 -0.016221602 0.033382252 -0.069495507 -0.020396251 0.036087636 -0.068828367 -0.020813737 0.03334121 -0.063643545 0.0049783601 0.032318853 -0.075540766 0.00025860794 0.032856893 -0.075765543 -0.0010880149 0.024727261 -0.070059292 -0.01873512 0.0086526992 -0.058386862 -0.015503686 0.02213099 -0.064085342 -0.017554829 0.022287793 -0.060638607 -0.017554829 0.022287793 -0.060638607 -0.018328158 0.020989569 -0.054733172 -0.019078543 0.011873178 -0.055358253 -0.013334058 0.0021615576 -0.063398957 -0.0027630934 0.0042987713 -0.063492775 -0.0018220101 0.0073942621 -0.063739665 -0.013334058 0.0021615576 -0.063398957 -0.0018220101 0.0073942621 -0.063739665 -0.010002856 0.013611754 -0.065320589 -0.0018220101 0.0073942621 -0.063739665 -0.00099206518 0.015783895 -0.065891229 -0.010002856 0.013611754 -0.065320589 -0.00099206518 0.015783895 -0.065891229 -0.0010880149 0.024727261 -0.070059292 -0.0068508997 0.026629571 -0.0704083 -0.017554829 0.022287793 -0.060638607 -0.019078543 0.011873178 -0.055358253 -0.01873512 0.0086526992 -0.058386862 -0.051008429 0.034792397 0.068767592 -0.045296639 0.03687916 0.078160554 -0.047411062 0.037645306 0.065992899 -0.0010880149 0.024727261 -0.070059292 0.00025860794 0.032856893 -0.075765543 -0.0068508997 0.026629571 -0.0704083 0.03720855 0.046769667 0.13260673 0.048466101 0.038951054 0.13409331 0.043589175 0.042271536 0.12345216 -0.00099206518 0.015783895 -0.065891229 -0.0068508997 0.026629571 -0.0704083 -0.010002856 0.013611754 -0.065320589 -0.010002856 0.013611754 -0.065320589 -0.01416993 0.013061883 -0.063736059 -0.013334058 0.0021615576 -0.063398957 -0.010457366 0.02276317 -0.067655027 -0.0068508997 0.026629571 -0.0704083 -0.016221602 0.033382252 -0.069495507 -0.044224974 0.039310195 0.056304574 -0.037595913 0.041902792 0.062431552 -0.04098364 0.038962629 0.03077448 0.03720855 0.046769667 0.13260673 0.039762445 0.045226645 0.14125134 0.048466101 0.038951054 0.13409331 0.00025860794 0.032856893 -0.075765543 -0.0076438426 0.032097381 -0.073415123 -0.0068508997 0.026629571 -0.0704083 -0.019513819 0.031116992 -0.062770993 -0.021912543 0.032166928 -0.055553619 -0.019332636 0.028203692 -0.058106966 -0.0001929588 0.051388536 0.11092472 5.4989068e-06 0.054452918 0.14005552 0.0071379235 0.05428179 0.13398683 -0.019513819 0.031116992 -0.062770993 -0.025351375 0.03549942 -0.056628067 -0.021912543 0.032166928 -0.055553619 -0.019513819 0.031116992 -0.062770993 -0.020813737 0.03334121 -0.063643545 -0.025351375 0.03549942 -0.056628067 -0.01416993 0.013061883 -0.063736059 -0.017014068 0.0052073649 -0.061117362 -0.013334058 0.0021615576 -0.063398957 -0.0076438426 0.032097381 -0.073415123 -0.016221602 0.033382252 -0.069495507 -0.0068508997 0.026629571 -0.0704083 -0.01416993 0.013061883 -0.063736059 -0.015503686 0.02213099 -0.064085342 -0.017014068 0.0052073649 -0.061117362 -0.025351375 0.03549942 -0.056628067 -0.020813737 0.03334121 -0.063643545 -0.026275139 0.036723129 -0.061667774 -0.010002856 0.013611754 -0.065320589 -0.0068508997 0.026629571 -0.0704083 -0.010457366 0.02276317 -0.067655027 -0.015503686 0.02213099 -0.064085342 -0.010457366 0.02276317 -0.067655027 -0.019513819 0.031116992 -0.062770993 -0.010002856 0.013611754 -0.065320589 -0.015503686 0.02213099 -0.064085342 -0.01416993 0.013061883 -0.063736059 -0.010002856 0.013611754 -0.065320589 -0.010457366 0.02276317 -0.067655027 -0.015503686 0.02213099 -0.064085342 -0.015503686 0.02213099 -0.064085342 -0.019513819 0.031116992 -0.062770993 -0.017554829 0.022287793 -0.060638607 -0.027106436 -0.042081572 -0.10461455 -0.032408699 -0.039972279 -0.10288852 -0.0367603 -0.039487932 -0.10875181 -0.0367603 -0.039487932 -0.10875181 -0.032408699 -0.039972279 -0.10288852 -0.041567065 -0.034762312 -0.10097846 -0.023868108 -0.044118814 -0.11716741 -0.032815617 -0.041748561 -0.11472192 -0.029253824 -0.042402454 -0.12295397 -0.027106436 -0.042081572 -0.10461455 -0.028944552 -0.039457165 -0.098181494 -0.032408699 -0.039972279 -0.10288852 -0.023868108 -0.044118814 -0.11716741 -0.029253824 -0.042402454 -0.12295397 -0.022672521 -0.043275449 -0.12590542 -0.023868108 -0.044118814 -0.11716741 -0.025583901 -0.043599576 -0.11140112 -0.032815617 -0.041748561 -0.11472192 -0.022672521 -0.043275449 -0.12590542 -0.027932707 -0.040913627 -0.13065438 -0.021462465 -0.042461213 -0.12968615 -0.022672521 -0.043275449 -0.12590542 -0.029253824 -0.042402454 -0.12295397 -0.027932707 -0.040913627 -0.13065438 -0.032815617 -0.041748561 -0.11472192 -0.027106436 -0.042081572 -0.10461455 -0.0367603 -0.039487932 -0.10875181 0.035879206 0.045551088 0.11463969 0.042451005 0.042235631 0.11647434 0.041569181 0.040602177 0.10181594 -0.032815617 -0.041748561 -0.11472192 -0.025583901 -0.043599576 -0.11140112 -0.027106436 -0.042081572 -0.10461455 0.042995058 0.0091395266 -0.055077873 0.039659556 -0.052049764 -0.083060861 0.055644933 0.037573606 -0.085897148 0.0373643 -0.040520847 -0.066245623 0.039659556 -0.052049764 -0.083060861 0.042995058 0.0091395266 -0.055077873 0.03882337 -0.049718596 -0.078191899 0.039659556 -0.052049764 -0.083060861 0.0373643 -0.040520847 -0.066245623 0.037739262 -0.044273902 -0.07024999 0.03882337 -0.049718596 -0.078191899 0.0373643 -0.040520847 -0.066245623 0.064830504 0.024871161 -0.13070495 0.065123901 0.016318833 -0.13761495 0.065069228 0.020787712 -0.13439357 0.037237722 -0.029166698 -0.058109861 0.0373643 -0.040520847 -0.066245623 0.038578227 -0.013746947 -0.053032011 -0.046708263 0.0058633061 0.13335955 -0.045096319 0.020358965 0.14305235 -0.04451561 0.014784971 0.1282485 0.038578227 -0.013746947 -0.053032011 0.0373643 -0.040520847 -0.066245623 0.042995058 0.0091395266 -0.055077873 0.037148919 -0.033419356 -0.060619347 0.0373643 -0.040520847 -0.066245623 0.037237722 -0.029166698 -0.058109861 0.063053854 0.034304686 -0.11734625 0.064830504 0.024871161 -0.13070495 0.064411014 0.028515726 -0.12659766 0.063053854 0.034304686 -0.11734625 0.064411014 0.028515726 -0.12659766 0.063816063 0.03167465 -0.12212425 0.037712879 -0.021648547 -0.054929473 0.037237722 -0.029166698 -0.058109861 0.038578227 -0.013746947 -0.053032011 0.064830504 0.024871161 -0.13070495 0.052956983 -0.044419382 -0.130428 0.056071803 -0.036506578 -0.13740382 0.056071803 -0.036506578 -0.13740382 0.052956983 -0.044419382 -0.130428 0.054536693 -0.040677145 -0.13414791 0.051353469 -0.047684379 -0.12629309 0.052956983 -0.044419382 -0.130428 0.064830504 0.024871161 -0.13070495 0.058420569 0.038942434 -0.095934853 0.062134124 0.036371905 -0.1123248 0.061069116 0.037848953 -0.10712679 0.049746748 -0.050430156 -0.12179632 0.051353469 -0.047684379 -0.12629309 0.063053854 0.034304686 -0.11734625 0.063053854 0.034304686 -0.11734625 0.051353469 -0.047684379 -0.12629309 0.064830504 0.024871161 -0.13070495 0.061370742 -0.016723355 -0.14501935 0.056071803 -0.036506578 -0.13740382 0.057541188 -0.031964947 -0.14015059 0.064830504 0.024871161 -0.13070495 0.056071803 -0.036506578 -0.13740382 0.065123901 0.016318833 -0.13761495 0.065123901 0.016318833 -0.13761495 0.056071803 -0.036506578 -0.13740382 0.061370742 -0.016723355 -0.14501935 0.062134124 0.036371905 -0.1123248 0.049746748 -0.050430156 -0.12179632 0.063053854 0.034304686 -0.11734625 0.048158683 -0.052619196 -0.11699871 0.049746748 -0.050430156 -0.12179632 0.046609856 -0.05422321 -0.11196271 0.046609856 -0.05422321 -0.11196271 0.049746748 -0.050430156 -0.12179632 0.045120787 -0.055221058 -0.10675491 0.045120787 -0.055221058 -0.10675491 0.049746748 -0.050430156 -0.12179632 0.042405609 -0.055354998 -0.096125364 0.058420569 0.038942434 -0.095934853 0.049746748 -0.050430156 -0.12179632 0.062134124 0.036371905 -0.1123248 0.042405609 -0.055354998 -0.096125364 0.049746748 -0.050430156 -0.12179632 0.058420569 0.038942434 -0.095934853 0.0398646 -0.0053683375 -0.052475769 0.038578227 -0.013746947 -0.053032011 0.042995058 0.0091395266 -0.055077873 0.060208421 -0.022007117 -0.14398396 0.057541188 -0.031964947 -0.14015059 0.058926389 -0.02710985 -0.14235413 0.061370742 -0.016723355 -0.14501935 0.057541188 -0.031964947 -0.14015059 0.060208421 -0.022007117 -0.14398396 -0.03532188 0.034560371 0.11377645 -0.02737 0.04169099 0.12485135 -0.029674701 0.040192064 0.11451451 0.041751046 0.0040140017 -0.05361348 0.0398646 -0.0053683375 -0.052475769 0.042995058 0.0091395266 -0.055077873 0.055644933 0.037573606 -0.085897148 0.058420569 0.038942434 -0.095934853 0.057171505 0.038592622 -0.091238752 0.042995058 0.0091395266 -0.055077873 0.055644933 0.037573606 -0.085897148 0.044358954 0.014081472 -0.057138886 0.052714042 0.034072105 -0.076680683 0.055644933 0.037573606 -0.085897148 0.054080043 0.035936326 -0.080819942 0.044358954 0.014081472 -0.057138886 0.055644933 0.037573606 -0.085897148 0.052714042 0.034072105 -0.076680683 0.043711226 -0.055599328 -0.10144433 0.045120787 -0.055221058 -0.10675491 0.042405609 -0.055354998 -0.096125364 0.065123901 0.016318833 -0.13761495 0.061370742 -0.016723355 -0.14501935 0.064993709 0.011525886 -0.14032443 0.063523822 -0.0041583413 -0.14506935 0.061370742 -0.016723355 -0.14501935 0.062774375 -0.0091023101 -0.14543548 0.064993709 0.011525886 -0.14032443 0.061370742 -0.016723355 -0.14501935 0.063523822 -0.0041583413 -0.14506935 0.049504489 0.028184704 -0.067968756 0.044358954 0.014081472 -0.057138886 0.052714042 0.034072105 -0.076680683 0.045626212 0.018151013 -0.059405223 0.044358954 0.014081472 -0.057138886 0.049504489 0.028184704 -0.067968756 -0.052155301 0.032289855 0.074020118 -0.045296639 0.03687916 0.078160554 -0.051008429 0.034792397 0.068767592 0.039659556 -0.052049764 -0.083060861 0.042405609 -0.055354998 -0.096125364 0.055644933 0.037573606 -0.085897148 0.048094586 0.024937587 -0.064586177 0.045626212 0.018151013 -0.059405223 0.049504489 0.028184704 -0.067968756 0.055644933 0.037573606 -0.085897148 0.042405609 -0.055354998 -0.096125364 0.058420569 0.038942434 -0.095934853 0.041219112 -0.054501195 -0.090866782 0.042405609 -0.055354998 -0.096125364 0.039659556 -0.052049764 -0.083060861 0.064993709 0.011525886 -0.14032443 0.063523822 -0.0041583413 -0.14506935 0.064680539 0.006469626 -0.14248846 0.064680539 0.006469626 -0.14248846 0.063523822 -0.0041583413 -0.14506935 0.064188339 0.001218532 -0.14407679 -0.0058692256 -0.022371704 -0.069309667 0.037148919 -0.033419356 -0.060619347 0.037237722 -0.029166698 -0.058109861 -0.0058692256 -0.022371704 -0.069309667 -0.0058544376 -0.02687189 -0.072021984 0.037148919 -0.033419356 -0.060619347 -0.041155368 0.038124088 0.012500688 -0.04098364 0.038962629 0.03077448 -0.035992678 0.038939856 0.021512453 -0.0058544376 -0.02687189 -0.072021984 -0.0058937226 -0.031817615 -0.075942487 0.037148919 -0.033419356 -0.060619347 -0.0058937226 -0.031817615 -0.075942487 0.0373643 -0.040520847 -0.066245623 0.037148919 -0.033419356 -0.060619347 -0.046708263 0.0058633061 0.13335955 -0.047481246 0.012541981 0.14282688 -0.045096319 0.020358965 0.14305235 -0.0058937226 -0.031817615 -0.075942487 -0.0075122667 -0.035660572 -0.080598749 0.0373643 -0.040520847 -0.066245623 -0.0075122667 -0.035660572 -0.080598749 0.037739262 -0.044273902 -0.07024999 0.0373643 -0.040520847 -0.066245623 -0.0075122667 -0.035660572 -0.080598749 -0.015226854 -0.041012879 -0.092962138 0.037739262 -0.044273902 -0.07024999 -0.015226854 -0.041012879 -0.092962138 0.03882337 -0.049718596 -0.078191899 0.037739262 -0.044273902 -0.07024999 -0.015226854 -0.041012879 -0.092962138 0.039659556 -0.052049764 -0.083060861 0.03882337 -0.049718596 -0.078191899 -0.015226854 -0.041012879 -0.092962138 -0.028944552 -0.039457165 -0.098181494 0.039659556 -0.052049764 -0.083060861 -0.028944552 -0.039457165 -0.098181494 -0.027106436 -0.042081572 -0.10461455 0.039659556 -0.052049764 -0.083060861 -0.027106436 -0.042081572 -0.10461455 0.041219112 -0.054501195 -0.090866782 0.039659556 -0.052049764 -0.083060861 -0.027106436 -0.042081572 -0.10461455 -0.025583901 -0.043599576 -0.11140112 0.041219112 -0.054501195 -0.090866782 -0.025583901 -0.043599576 -0.11140112 0.042405609 -0.055354998 -0.096125364 0.041219112 -0.054501195 -0.090866782 -0.006393183 0.046650447 0.081325687 0.0045659519 0.049570918 0.099134296 0.0092167174 0.048036259 0.093403459 -0.025583901 -0.043599576 -0.11140112 -0.023868108 -0.044118814 -0.11716741 0.042405609 -0.055354998 -0.096125364 -0.023868108 -0.044118814 -0.11716741 0.043711226 -0.055599328 -0.10144433 0.042405609 -0.055354998 -0.096125364 -0.023868108 -0.044118814 -0.11716741 -0.022672521 -0.043275449 -0.12590542 0.045120787 -0.055221058 -0.10675491 -0.023868108 -0.044118814 -0.11716741 0.045120787 -0.055221058 -0.10675491 0.043711226 -0.055599328 -0.10144433 -0.022672521 -0.043275449 -0.12590542 0.046609856 -0.05422321 -0.11196271 0.045120787 -0.055221058 -0.10675491 -0.022672521 -0.043275449 -0.12590542 -0.021462465 -0.042461213 -0.12968615 0.046609856 -0.05422321 -0.11196271 -0.021462465 -0.042461213 -0.12968615 0.048158683 -0.052619196 -0.11699871 0.046609856 -0.05422321 -0.11196271 -0.021462465 -0.042461213 -0.12968615 -0.019145792 -0.039785046 -0.13706148 0.048158683 -0.052619196 -0.11699871 -0.019145792 -0.039785046 -0.13706148 0.049746748 -0.050430156 -0.12179632 0.048158683 -0.052619196 -0.11699871 -0.019145792 -0.039785046 -0.13706148 -0.01800571 -0.037066311 -0.14199542 0.049746748 -0.050430156 -0.12179632 -0.01800571 -0.037066311 -0.14199542 0.051353469 -0.047684379 -0.12629309 0.049746748 -0.050430156 -0.12179632 0.035879206 0.045551088 0.11463969 0.041569181 0.040602177 0.10181594 0.037170306 0.042290293 0.098354012 -0.01800571 -0.037066311 -0.14199542 -0.015918521 -0.033795752 -0.14652669 0.051353469 -0.047684379 -0.12629309 -0.015918521 -0.033795752 -0.14652669 0.052956983 -0.044419382 -0.130428 0.051353469 -0.047684379 -0.12629309 -0.015918521 -0.033795752 -0.14652669 -0.013203801 -0.027244784 -0.15293863 0.054536693 -0.040677145 -0.13414791 -0.015918521 -0.033795752 -0.14652669 0.054536693 -0.040677145 -0.13414791 0.052956983 -0.044419382 -0.130428 -0.013203801 -0.027244784 -0.15293863 0.056071803 -0.036506578 -0.13740382 0.054536693 -0.040677145 -0.13414791 -0.013203801 -0.027244784 -0.15293863 -0.011297273 -0.022412805 -0.15623459 0.056071803 -0.036506578 -0.13740382 -0.011297273 -0.022412805 -0.15623459 0.057541188 -0.031964947 -0.14015059 0.056071803 -0.036506578 -0.13740382 -0.011297273 -0.022412805 -0.15623459 -0.010618832 -0.019408461 -0.15792122 0.057541188 -0.031964947 -0.14015059 -0.0027630934 0.0042987713 -0.063492775 -0.0049572377 -0.0057186852 -0.063988693 0.0398646 -0.0053683375 -0.052475769 -0.049483631 0.0356046 0.017067574 -0.044224974 0.039310195 0.056304574 -0.04098364 0.038962629 0.03077448 -0.010618832 -0.019408461 -0.15792122 0.058926389 -0.02710985 -0.14235413 0.057541188 -0.031964947 -0.14015059 -0.010618832 -0.019408461 -0.15792122 -0.0090433061 -0.013737459 -0.16027498 0.058926389 -0.02710985 -0.14235413 -0.0049572377 -0.0057186852 -0.063988693 0.038578227 -0.013746947 -0.053032011 0.0398646 -0.0053683375 -0.052475769 -0.0090433061 -0.013737459 -0.16027498 0.060208421 -0.022007117 -0.14398396 0.058926389 -0.02710985 -0.14235413 -0.0049572377 -0.0057186852 -0.063988693 -0.0049298028 -0.012447441 -0.065203264 0.037712879 -0.021648547 -0.054929473 -0.0049572377 -0.0057186852 -0.063988693 0.037712879 -0.021648547 -0.054929473 0.038578227 -0.013746947 -0.053032011 -0.0090433061 -0.013737459 -0.16027498 -0.007835757 -0.0086127268 -0.16169962 0.060208421 -0.022007117 -0.14398396 -0.007835757 -0.0086127268 -0.16169962 0.061370742 -0.016723355 -0.14501935 0.060208421 -0.022007117 -0.14398396 -0.007835757 -0.0086127268 -0.16169962 -0.0058789128 -0.00022436466 -0.16268311 0.061370742 -0.016723355 -0.14501935 -0.0049298028 -0.012447441 -0.065203264 -0.0053292755 -0.017501634 -0.066934817 0.037712879 -0.021648547 -0.054929473 -0.0053292755 -0.017501634 -0.066934817 0.037237722 -0.029166698 -0.058109861 0.037712879 -0.021648547 -0.054929473 -0.053138353 0.034239143 0.039229464 -0.042252306 0.039940722 0.072173491 -0.044224974 0.039310195 0.056304574 -0.0053292755 -0.017501634 -0.066934817 -0.0058692256 -0.022371704 -0.069309667 0.037237722 -0.029166698 -0.058109861 -0.0058789128 -0.00022436466 -0.16268311 0.062774375 -0.0091023101 -0.14543548 0.061370742 -0.016723355 -0.14501935 -0.013962447 0.04802566 -0.13258633 -0.014612067 0.049931742 -0.1261493 -0.0061215223 0.048194565 -0.12884828 -0.0061215223 0.048194565 -0.12884828 -0.014612067 0.049931742 -0.1261493 -0.0084854038 0.050339833 -0.11892334 -0.017912429 0.050952587 -0.1135764 -0.010404928 0.050181512 -0.10897012 -0.0084854038 0.050339833 -0.11892334 -0.013907192 0.047756132 -0.098650485 -0.012609774 0.048755642 -0.10179105 -0.017825812 0.050293937 -0.10769363 0.028215513 0.050803691 0.15024383 0.031799048 0.048275758 0.1606402 0.036102835 0.046496358 0.15280461 -0.017825812 0.050293937 -0.10769363 -0.010404928 0.050181512 -0.10897012 -0.017912429 0.050952587 -0.1135764 -0.014612067 0.049931742 -0.1261493 -0.020307494 0.050265253 -0.12350946 -0.0084854038 0.050339833 -0.11892334 -0.017825812 0.050293937 -0.10769363 -0.012609774 0.048755642 -0.10179105 -0.010404928 0.050181512 -0.10897012 -0.0035338164 0.020200742 -0.15895995 -0.012494379 0.022671573 -0.15960462 -0.0028509719 0.025193762 -0.15640062 -0.020307494 0.050265253 -0.12350946 -0.017912429 0.050952587 -0.1135764 -0.0084854038 0.050339833 -0.11892334 -0.0028509719 0.025193762 -0.15640062 0.065123901 0.016318833 -0.13761495 0.064993709 0.011525886 -0.14032443 -0.0028509719 0.025193762 -0.15640062 -0.0033299737 0.029961213 -0.15357938 0.065123901 0.016318833 -0.13761495 -0.0033299737 0.029961213 -0.15357938 0.065069228 0.020787712 -0.13439357 0.065123901 0.016318833 -0.13761495 -0.0033299737 0.029961213 -0.15357938 -0.0036118869 0.034088384 -0.15036806 0.065069228 0.020787712 -0.13439357 -0.0036118869 0.034088384 -0.15036806 0.064830504 0.024871161 -0.13070495 0.065069228 0.020787712 -0.13439357 -0.0036118869 0.034088384 -0.15036806 -0.004116727 0.039106295 -0.14528902 0.064830504 0.024871161 -0.13070495 -0.004116727 0.039106295 -0.14528902 0.064411014 0.028515726 -0.12659766 0.064830504 0.024871161 -0.13070495 -0.004116727 0.039106295 -0.14528902 -0.0040943385 0.042264774 -0.14089054 0.064411014 0.028515726 -0.12659766 -0.0040943385 0.042264774 -0.14089054 0.063816063 0.03167465 -0.12212425 0.064411014 0.028515726 -0.12659766 -0.0040943385 0.042264774 -0.14089054 -0.0052787322 0.045679703 -0.13518481 0.063816063 0.03167465 -0.12212425 -0.0052787322 0.045679703 -0.13518481 0.063053854 0.034304686 -0.11734625 0.063816063 0.03167465 -0.12212425 -0.0052787322 0.045679703 -0.13518481 -0.0061215223 0.048194565 -0.12884828 0.063053854 0.034304686 -0.11734625 -0.0061215223 0.048194565 -0.12884828 0.062134124 0.036371905 -0.1123248 0.063053854 0.034304686 -0.11734625 -0.0061215223 0.048194565 -0.12884828 0.061069116 0.037848953 -0.10712679 0.062134124 0.036371905 -0.1123248 -0.0061215223 0.048194565 -0.12884828 -0.0084854038 0.050339833 -0.11892334 0.061069116 0.037848953 -0.10712679 -0.0084854038 0.050339833 -0.11892334 0.058420569 0.038942434 -0.095934853 0.061069116 0.037848953 -0.10712679 -0.0084854038 0.050339833 -0.11892334 -0.010404928 0.050181512 -0.10897012 0.058420569 0.038942434 -0.095934853 -0.010404928 0.050181512 -0.10897012 0.057171505 0.038592622 -0.091238752 0.058420569 0.038942434 -0.095934853 -0.010404928 0.050181512 -0.10897012 -0.012609774 0.048755642 -0.10179105 0.055644933 0.037573606 -0.085897148 -0.010404928 0.050181512 -0.10897012 0.055644933 0.037573606 -0.085897148 0.057171505 0.038592622 -0.091238752 -0.012609774 0.048755642 -0.10179105 -0.013907192 0.047756132 -0.098650485 0.054080043 0.035936326 -0.080819942 -0.012609774 0.048755642 -0.10179105 0.054080043 0.035936326 -0.080819942 0.055644933 0.037573606 -0.085897148 -0.013907192 0.047756132 -0.098650485 0.00064547185 0.043682538 -0.091320619 0.054080043 0.035936326 -0.080819942 0.00064547185 0.043682538 -0.091320619 0.052714042 0.034072105 -0.076680683 0.054080043 0.035936326 -0.080819942 -0.050050192 0.024173401 0.088361353 -0.041551247 0.03237268 0.096156873 -0.046860993 0.031134896 0.086566627 0.00064547185 0.043682538 -0.091320619 0.0052754208 0.037851647 -0.08184813 0.052714042 0.034072105 -0.076680683 0.0052754208 0.037851647 -0.08184813 0.049504489 0.028184704 -0.067968756 0.052714042 0.034072105 -0.076680683 0.0052754208 0.037851647 -0.08184813 0.0049783601 0.032318853 -0.075540766 0.049504489 0.028184704 -0.067968756 0.0049783601 0.032318853 -0.075540766 0.048094586 0.024937587 -0.064586177 0.049504489 0.028184704 -0.067968756 0.0049783601 0.032318853 -0.075540766 0.045626212 0.018151013 -0.059405223 0.048094586 0.024937587 -0.064586177 0.0049783601 0.032318853 -0.075540766 -0.0010880149 0.024727261 -0.070059292 0.045626212 0.018151013 -0.059405223 -0.029674701 0.040192064 0.11451451 -0.028246731 0.042012658 0.10745943 -0.040419053 0.034963194 0.093251131 -0.036534961 0.031844094 0.12497631 -0.032086954 0.038838338 0.13981833 -0.030065663 0.039359231 0.12727843 -0.0010880149 0.024727261 -0.070059292 0.044358954 0.014081472 -0.057138886 0.045626212 0.018151013 -0.059405223 -0.0010880149 0.024727261 -0.070059292 0.042995058 0.0091395266 -0.055077873 0.044358954 0.014081472 -0.057138886 -0.0058789128 -0.00022436466 -0.16268311 -0.0053763767 0.0043847589 -0.16267093 0.062774375 -0.0091023101 -0.14543548 -0.0010880149 0.024727261 -0.070059292 -0.00099206518 0.015783895 -0.065891229 0.042995058 0.0091395266 -0.055077873 -0.0053763767 0.0043847589 -0.16267093 -0.0046387785 0.009752349 -0.16203943 0.063523822 -0.0041583413 -0.14506935 -0.0053763767 0.0043847589 -0.16267093 0.063523822 -0.0041583413 -0.14506935 0.062774375 -0.0091023101 -0.14543548 -0.00099206518 0.015783895 -0.065891229 0.041751046 0.0040140017 -0.05361348 0.042995058 0.0091395266 -0.055077873 -0.0046387785 0.009752349 -0.16203943 -0.0040134666 0.015053493 -0.16079536 0.064188339 0.001218532 -0.14407679 -0.0046387785 0.009752349 -0.16203943 0.064188339 0.001218532 -0.14407679 0.063523822 -0.0041583413 -0.14506935 -0.00099206518 0.015783895 -0.065891229 -0.0018220101 0.0073942621 -0.063739665 0.041751046 0.0040140017 -0.05361348 -0.0018220101 0.0073942621 -0.063739665 0.0398646 -0.0053683375 -0.052475769 0.041751046 0.0040140017 -0.05361348 -0.0040134666 0.015053493 -0.16079536 0.064680539 0.006469626 -0.14248846 0.064188339 0.001218532 -0.14407679 -0.0040134666 0.015053493 -0.16079536 -0.0035338164 0.020200742 -0.15895995 0.064680539 0.006469626 -0.14248846 -0.0018220101 0.0073942621 -0.063739665 -0.0027630934 0.0042987713 -0.063492775 0.0398646 -0.0053683375 -0.052475769 -0.0035338164 0.020200742 -0.15895995 0.064993709 0.011525886 -0.14032443 0.064680539 0.006469626 -0.14248846 -0.0035338164 0.020200742 -0.15895995 -0.0028509719 0.025193762 -0.15640062 0.064993709 0.011525886 -0.14032443 -0.020396251 0.036087636 -0.068828367 -0.011388881 0.036819465 -0.076226287 -0.019172141 0.038605109 -0.075087421 -0.026275139 0.036723129 -0.061667774 -0.020813737 0.03334121 -0.063643545 -0.020396251 0.036087636 -0.068828367 -0.019172141 0.038605109 -0.075087421 -0.011388881 0.036819465 -0.076226287 -0.01214517 0.041505966 -0.084323004 0.042451005 0.042235631 0.11647434 0.03720855 0.046769667 0.13260673 0.043589175 0.042271536 0.12345216 0.0049783601 0.032318853 -0.075540766 0.0052754208 0.037851647 -0.08184813 0.00025860794 0.032856893 -0.075765543 -0.047771703 0.012423694 0.10378474 -0.048165333 -7.9702135e-05 0.10854638 -0.045643039 0.011844915 0.11495637 -0.019172141 0.038605109 -0.075087421 -0.026275139 0.036723129 -0.061667774 -0.020396251 0.036087636 -0.068828367 0.0052754208 0.037851647 -0.08184813 -0.011388881 0.036819465 -0.076226287 0.00025860794 0.032856893 -0.075765543 -0.01214517 0.041505966 -0.084323004 0.0052754208 0.037851647 -0.08184813 0.00064547185 0.043682538 -0.091320619 -0.011388881 0.036819465 -0.076226287 0.0052754208 0.037851647 -0.08184813 -0.01214517 0.041505966 -0.084323004 -0.0076438426 0.032097381 -0.073415123 0.00025860794 0.032856893 -0.075765543 -0.011388881 0.036819465 -0.076226287 -0.020396251 0.036087636 -0.068828367 -0.016221602 0.033382252 -0.069495507 -0.011388881 0.036819465 -0.076226287 -0.034919377 0.03819178 0.0072041349 -0.031480704 0.037553683 0.0059062284 -0.026275139 0.036723129 -0.061667774 -0.031480704 0.037553683 0.0059062284 -0.025351375 0.03549942 -0.056628067 -0.026275139 0.036723129 -0.061667774 -0.045884456 0.037094332 0.016655812 -0.041155368 0.038124088 0.012500688 -0.036893934 0.036893252 -0.058116622 -0.041155368 0.038124088 0.012500688 -0.030406695 0.037184421 -0.057251152 -0.036893934 0.036893252 -0.058116622 -0.041155368 0.038124088 0.012500688 -0.034919377 0.03819178 0.0072041349 -0.030406695 0.037184421 -0.057251152 -0.049483631 0.0356046 0.017067574 -0.045884456 0.037094332 0.016655812 -0.043126825 0.035059892 -0.058811408 -0.045884456 0.037094332 0.016655812 -0.036893934 0.036893252 -0.058116622 -0.043126825 0.035059892 -0.058811408 -0.034919377 0.03819178 0.0072041349 -0.026275139 0.036723129 -0.061667774 -0.030406695 0.037184421 -0.057251152 0.013871079 0.054276593 0.13861746 0.017140726 0.054225896 0.15676828 0.02164907 0.052824929 0.13791752 0.013871079 0.054276593 0.13861746 0.0086783506 0.055511806 0.15463206 0.017140726 0.054225896 0.15676828 -0.023920599 0.045179863 0.091667861 -0.010871795 0.049455628 0.10673195 -0.02173361 0.045749899 0.086922251 -0.037595913 0.041902792 0.062431552 -0.035010621 0.042694338 0.072281778 -0.033089321 0.042850547 0.061100513 -0.019823913 0.048063647 0.13993821 -0.015141557 0.051537801 0.14896865 -0.010037065 0.051537089 0.1322508 0.013871079 0.054276593 0.13861746 0.02164907 0.052824929 0.13791752 0.021549014 0.051071238 0.12050685 -0.040419053 0.034963194 0.093251131 -0.036013003 0.03913055 0.092055418 -0.045296639 0.03687916 0.078160554 0.053878754 0.03224558 0.11690871 0.059631865 0.023080658 0.11607531 0.054509941 0.029864814 0.10989039 -0.052340474 0.017204139 0.088770114 -0.044216082 0.027105127 0.098405547 -0.050050192 0.024173401 0.088361353 0.05732825 0.026701212 0.1417938 0.059391808 0.017708262 0.15144779 0.061402109 0.019348456 0.13603009 0.05826921 0.026931228 0.12580745 0.061590344 0.020106427 0.12539946 0.059631865 0.023080658 0.11607531 -0.045296639 0.03687916 0.078160554 -0.036013003 0.03913055 0.092055418 -0.032324877 0.041918781 0.089148767 0.061402109 0.019348456 0.13603009 0.059391808 0.017708262 0.15144779 0.061275918 0.016266461 0.14403929 0.055844739 0.025079466 0.15329421 0.054200105 0.02159841 0.16736594 0.059391808 0.017708262 0.15144779 -0.03532188 0.034560371 0.11377645 -0.030065663 0.039359231 0.12727843 -0.02737 0.04169099 0.12485135 -0.019823913 0.048063647 0.13993821 -0.010037065 0.051537089 0.1322508 -0.01929377 0.046956182 0.12166016 0.061590344 0.020106427 0.12539946 0.061402109 0.019348456 0.13603009 0.06323345 0.014787311 0.1302752 -0.038560759 0.029816808 0.1152955 -0.03532188 0.034560371 0.11377645 -0.044216082 0.027105127 0.098405547 0.055844739 0.025079466 0.15329421 0.04795254 0.033258229 0.16529666 0.054200105 0.02159841 0.16736594 -0.047411062 0.037645306 0.065992899 -0.042252306 0.039940722 0.072173491 -0.053138353 0.034239143 0.039229464 0.016645566 0.048590157 0.10074782 0.014191155 0.051505346 0.11486824 0.021549014 0.051071238 0.12050685 -0.04259954 0.02093678 0.13008167 -0.040030029 0.027289463 0.13474689 -0.042450219 0.021741016 0.11709795 0.061402109 0.019348456 0.13603009 0.063705035 0.0096598575 0.1366711 0.06323345 0.014787311 0.1302752 0.061590344 0.020106427 0.12539946 0.063891239 0.011991482 0.12066803 0.059631865 0.023080658 0.11607531 0.061402109 0.019348456 0.13603009 0.061275918 0.016266461 0.14403929 0.063705035 0.0096598575 0.1366711 -0.033089321 0.042850547 0.061100513 -0.026252966 0.043934703 0.063852184 -0.04098364 0.038962629 0.03077448 -0.010871795 0.049455628 0.10673195 5.4989068e-06 0.054452918 0.14005552 -0.0001929588 0.051388536 0.11092472 0.021549014 0.051071238 0.12050685 0.02164907 0.052824929 0.13791752 0.025710022 0.050368659 0.12310351 -0.033089321 0.042850547 0.061100513 -0.02173361 0.045749899 0.086922251 -0.026252966 0.043934703 0.063852184 0.02164907 0.052824929 0.13791752 0.017140726 0.054225896 0.15676828 0.024988048 0.052106939 0.1433119 -0.021459943 0.045824125 0.11186982 -0.010871795 0.049455628 0.10673195 -0.023920599 0.045179863 0.091667861 0.061275918 0.016266461 0.14403929 0.063205309 0.0074828891 0.14233397 0.063705035 0.0096598575 0.1366711 -0.042450219 0.021741016 0.11709795 -0.036534961 0.031844094 0.12497631 -0.038560759 0.029816808 0.1152955 -0.042450219 0.021741016 0.11709795 -0.040030029 0.027289463 0.13474689 -0.036534961 0.031844094 0.12497631 -0.010037065 0.051537089 0.1322508 -0.015141557 0.051537801 0.14896865 -0.0094957482 0.053548291 0.15026179 0.028215513 0.050803691 0.15024383 0.036102835 0.046496358 0.15280461 0.039762445 0.045226645 0.14125134 0.061590344 0.020106427 0.12539946 0.06323345 0.014787311 0.1302752 0.063891239 0.011991482 0.12066803 -0.01929377 0.046956182 0.12166016 -0.010037065 0.051537089 0.1322508 -0.021459943 0.045824125 0.11186982 0.059391808 0.017708262 0.15144779 0.061650172 0.0058327392 0.15217827 0.061275918 0.016266461 0.14403929 -0.040030029 0.027289463 0.13474689 -0.040207438 0.030166026 0.14380039 -0.036534961 0.031844094 0.12497631 -0.042252306 0.039940722 0.072173491 -0.032324877 0.041918781 0.089148767 -0.023920599 0.045179863 0.091667861 -0.031794414 0.040358156 0.036299996 -0.014700036 0.042269483 0.054900076 -0.026801394 0.039720744 0.034544054 0.054200105 0.02159841 0.16736594 0.056932282 0.012170442 0.16847192 0.059391808 0.017708262 0.15144779 0.016645566 0.048590157 0.10074782 0.030891107 0.043924529 0.094711408 0.022661215 0.044532184 0.088425085 0.025710022 0.050368659 0.12310351 0.02164907 0.052824929 0.13791752 0.030084522 0.049836915 0.13136117 -0.04098364 0.038962629 0.03077448 -0.026252966 0.043934703 0.063852184 -0.031794414 0.040358156 0.036299996 0.061275918 0.016266461 0.14403929 0.061650172 0.0058327392 0.15217827 0.063205309 0.0074828891 0.14233397 0.016645566 0.048590157 0.10074782 0.021549014 0.051071238 0.12050685 0.030891107 0.043924529 0.094711408 -0.040207438 0.030166026 0.14380039 -0.032086954 0.038838338 0.13981833 -0.036534961 0.031844094 0.12497631 -0.042252306 0.039940722 0.072173491 -0.023920599 0.045179863 0.091667861 -0.035010621 0.042694338 0.072281778 0.063891239 0.011991482 0.12066803 0.06323345 0.014787311 0.1302752 0.065048642 0.0052976618 0.12509967 0.021549014 0.051071238 0.12050685 0.025710022 0.050368659 0.12310351 0.030891107 0.043924529 0.094711408 0.02164907 0.052824929 0.13791752 0.024988048 0.052106939 0.1433119 0.030084522 0.049836915 0.13136117 0.063205309 0.0074828891 0.14233397 0.061650172 0.0058327392 0.15217827 0.061450612 -0.0027732744 0.15334687 -0.021459943 0.045824125 0.11186982 -0.010037065 0.051537089 0.1322508 -0.010871795 0.049455628 0.10673195 -0.010871795 0.049455628 0.10673195 -0.0001929588 0.051388536 0.11092472 -0.02173361 0.045749899 0.086922251 0.063891239 0.011991482 0.12066803 0.065048642 0.0052976618 0.12509967 0.064777315 0.0052670394 0.11998943 -0.040207438 0.030166026 0.14380039 -0.036847506 0.034941066 0.14440534 -0.032086954 0.038838338 0.13981833 0.063205309 0.0074828891 0.14233397 0.061450612 -0.0027732744 0.15334687 0.063799776 -0.0013692515 0.13941753 -0.045884456 0.037094332 0.016655812 -0.04098364 0.038962629 0.03077448 -0.041155368 0.038124088 0.012500688 0.024988048 0.052106939 0.1433119 0.017140726 0.054225896 0.15676828 0.028215513 0.050803691 0.15024383 0.061650172 0.0058327392 0.15217827 0.0579179 -0.0018341874 0.16935878 0.061450612 -0.0027732744 0.15334687 0.024988048 0.052106939 0.1433119 0.032345112 0.049270187 0.13936871 0.030084522 0.049836915 0.13136117 0.063705035 0.0096598575 0.1366711 0.064835645 0.0018618524 0.13107662 0.06323345 0.014787311 0.1302752 0.063705035 0.0096598575 0.1366711 0.063205309 0.0074828891 0.14233397 0.064835645 0.0018618524 0.13107662 -0.038560759 0.029816808 0.1152955 -0.036534961 0.031844094 0.12497631 -0.030065663 0.039359231 0.12727843 0.064835645 0.0018618524 0.13107662 0.065048642 0.0052976618 0.12509967 0.06323345 0.014787311 0.1302752 0.064835645 0.0018618524 0.13107662 0.063205309 0.0074828891 0.14233397 0.063799776 -0.0013692515 0.13941753 0.061650172 0.0058327392 0.15217827 0.059391808 0.017708262 0.15144779 0.056932282 0.012170442 0.16847192 0.061650172 0.0058327392 0.15217827 0.056932282 0.012170442 0.16847192 0.0579179 -0.0018341874 0.16935878 0.025710022 0.050368659 0.12310351 0.030084522 0.049836915 0.13136117 0.035879206 0.045551088 0.11463969 -0.02173361 0.045749899 0.086922251 -0.0001929588 0.051388536 0.11092472 -0.012982503 0.046638563 0.082315482 0.063799776 -0.0013692515 0.13941753 0.064269908 -0.0062717865 0.13187285 0.064835645 0.0018618524 0.13107662 0.064835645 0.0018618524 0.13107662 0.065282658 -0.0026951891 0.12329827 0.065048642 0.0052976618 0.12509967 0.064269908 -0.0062717865 0.13187285 0.065282658 -0.0026951891 0.12329827 0.064835645 0.0018618524 0.13107662 -0.059056371 0.013843497 0.078077018 -0.05380239 0.0057650642 0.090275511 -0.052340474 0.017204139 0.088770114 -0.012982503 0.046638563 0.082315482 -0.0001929588 0.051388536 0.11092472 0.0045659519 0.049570918 0.099134296 -0.012982503 0.046638563 0.082315482 0.0045659519 0.049570918 0.099134296 -0.006393183 0.046650447 0.081325687 0.065048642 0.0052976618 0.12509967 0.065282658 -0.0026951891 0.12329827 0.064777315 0.0052670394 0.11998943 -0.044216082 0.027105127 0.098405547 -0.03532188 0.034560371 0.11377645 -0.041551247 0.03237268 0.096156873 -0.006393183 0.046650447 0.081325687 0.0092167174 0.048036259 0.093403459 -0.014700036 0.042269483 0.054900076 -0.053138353 0.034239143 0.039229464 -0.044224974 0.039310195 0.056304574 -0.049483631 0.0356046 0.017067574 -0.010037065 0.051537089 0.1322508 -0.0094957482 0.053548291 0.15026179 5.4989068e-06 0.054452918 0.14005552 0.024988048 0.052106939 0.1433119 0.028215513 0.050803691 0.15024383 0.032345112 0.049270187 0.13936871 -0.038560759 0.029816808 0.1152955 -0.030065663 0.039359231 0.12727843 -0.03532188 0.034560371 0.11377645 -0.036013003 0.03913055 0.092055418 -0.028246731 0.042012658 0.10745943 -0.032324877 0.041918781 0.089148767 0.063799776 -0.0013692515 0.13941753 0.061450612 -0.0027732744 0.15334687 0.061007954 -0.012484052 0.14778417 0.063799776 -0.0013692515 0.13941753 0.061007954 -0.012484052 0.14778417 0.064269908 -0.0062717865 0.13187285 0.028215513 0.050803691 0.15024383 0.017140726 0.054225896 0.15676828 0.031799048 0.048275758 0.1606402 -0.054789156 0.032518648 0.060553145 -0.047411062 0.037645306 0.065992899 -0.053138353 0.034239143 0.039229464 -0.05380239 0.0057650642 0.090275511 -0.047771703 0.012423694 0.10378474 -0.052340474 0.017204139 0.088770114 0.025710022 0.050368659 0.12310351 0.037170306 0.042290293 0.098354012 0.030891107 0.043924529 0.094711408 0.030084522 0.049836915 0.13136117 0.032345112 0.049270187 0.13936871 0.03720855 0.046769667 0.13260673 -0.05380239 0.0057650642 0.090275511 -0.051168613 0.0060180509 0.096575864 -0.047771703 0.012423694 0.10378474 -0.036013003 0.03913055 0.092055418 -0.040419053 0.034963194 0.093251131 -0.028246731 0.042012658 0.10745943 -0.054789156 0.032518648 0.060553145 -0.051008429 0.034792397 0.068767592 -0.047411062 0.037645306 0.065992899 0.061450612 -0.0027732744 0.15334687 0.056909889 -0.0097496016 0.16947579 0.061007954 -0.012484052 0.14778417 -0.03532188 0.034560371 0.11377645 -0.029674701 0.040192064 0.11451451 -0.041551247 0.03237268 0.096156873 0.061450612 -0.0027732744 0.15334687 0.0579179 -0.0018341874 0.16935878 0.056909889 -0.0097496016 0.16947579 -0.0094957482 0.053548291 0.15026179 0.0012409219 0.055487569 0.1528075 5.4989068e-06 0.054452918 0.14005552 0.025710022 0.050368659 0.12310351 0.035879206 0.045551088 0.11463969 0.037170306 0.042290293 0.098354012 0.065282658 -0.0026951891 0.12329827 0.064269908 -0.0062717865 0.13187285 0.063558459 -0.014037079 0.12433229 -0.056762967 0.025067905 0.075383209 -0.050050192 0.024173401 0.088361353 -0.046860993 0.031134896 0.086566627 -0.010037065 0.051537089 0.1322508 5.4989068e-06 0.054452918 0.14005552 -0.010871795 0.049455628 0.10673195 0.032345112 0.049270187 0.13936871 0.028215513 0.050803691 0.15024383 0.039762445 0.045226645 0.14125134 0.030084522 0.049836915 0.13136117 0.03720855 0.046769667 0.13260673 0.035879206 0.045551088 0.11463969 -0.049483631 0.0356046 0.017067574 -0.04098364 0.038962629 0.03077448 -0.045884456 0.037094332 0.016655812 -0.035010621 0.042694338 0.072281778 -0.02173361 0.045749899 0.086922251 -0.033089321 0.042850547 0.061100513 -0.026252966 0.043934703 0.063852184 -0.006393183 0.046650447 0.081325687 -0.031794414 0.040358156 0.036299996 0.035879206 0.045551088 0.11463969 0.03720855 0.046769667 0.13260673 0.042451005 0.042235631 0.11647434 0.032345112 0.049270187 0.13936871 0.039762445 0.045226645 0.14125134 0.03720855 0.046769667 0.13260673 -0.041551247 0.03237268 0.096156873 -0.029674701 0.040192064 0.11451451 -0.040419053 0.034963194 0.093251131 + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445

+
+
+
+
+ + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + + + + + + + + + + + + + +
diff --git a/external/rlbench/urdfs/panda/meshes/Pandalink6respondable_coll_1.dae b/external/rlbench/urdfs/panda/meshes/Pandalink6respondable_coll_1.dae new file mode 100644 index 0000000000000000000000000000000000000000..33aea6cc7fcd1f57892235dcc591055fcb73d628 --- /dev/null +++ b/external/rlbench/urdfs/panda/meshes/Pandalink6respondable_coll_1.dae @@ -0,0 +1,84 @@ + + + + + Assimp + Assimp Exporter + + 2023-09-26T11:24:21 + 2023-09-26T11:24:21 + + Y_UP + + + + + + + + 0 0 0 4.5895327e-41 + + + 0.7818656 0.73472726 0.98415405 4.5893926e-41 + + + 0.7818656 0.73472726 0.98415405 4.5893926e-41 + + + 0.25 0.25 0.25 -3.0261091e+37 + + + + + + + + + + + + + + + + -0.0010163484 -0.031707011 0.088538714 -0.043871302 -0.018499574 0.082533032 -0.042961732 -0.035087556 0.078521907 -0.044138964 -0.066542327 -0.051219545 -0.035333242 -0.062380649 0.046363015 -0.038835924 -0.056539237 0.060009073 -0.0018676738 -0.0073863748 0.090526991 -0.043744441 -0.0046020774 0.081487171 -0.043871302 -0.018499574 0.082533032 -0.043871302 -0.018499574 0.082533032 -0.044138964 -0.066542327 -0.051219545 -0.042961732 -0.035087556 0.078521907 -0.043744441 -0.0046020774 0.081487171 -0.044138964 -0.066542327 -0.051219545 -0.043871302 -0.018499574 0.082533032 -0.043481838 0.0052400497 -0.05186357 -0.044138964 -0.066542327 -0.051219545 -0.043744441 -0.0046020774 0.081487171 0.0090229651 -0.058135312 0.059878044 0.023403063 -0.066307478 -0.005923694 0.042138062 -0.066270396 -0.03372699 -0.0002853513 -0.016693022 0.091110222 -0.043871302 -0.018499574 0.082533032 -0.0010163484 -0.031707011 0.088538714 -0.044138964 -0.066542327 -0.051219545 -0.038835924 -0.056539237 0.060009073 -0.041105203 -0.048465617 0.069896817 -0.044138964 -0.066542327 -0.051219545 -0.041105203 -0.048465617 0.069896817 -0.042961732 -0.035087556 0.078521907 0.043837283 0.0037199333 0.011401501 0.040733561 0.033555608 -0.049821083 0.035559703 0.056469355 -0.041183624 0.044071645 -0.066257268 -0.045779027 0.044138957 -0.032927096 0.0083342269 0.039279345 -0.039186198 0.035806585 0.040054984 0.0043526297 -0.064691179 0.043422043 -0.0023654436 -0.053669237 0.041549809 -0.06621401 -0.062707976 -0.035333242 -0.062380649 0.046363015 -0.0026777841 -0.058357984 0.06303414 -0.038835924 -0.056539237 0.060009073 -0.041105203 -0.048465617 0.069896817 -0.038835924 -0.056539237 0.060009073 0.0028298395 -0.051215816 0.07437326 -0.043744441 -0.0046020774 0.081487171 -0.0012300833 0.0049148719 0.086901367 -0.042266876 0.011007653 0.075114608 -0.0018676738 -0.0073863748 0.090526991 -0.043871302 -0.018499574 0.082533032 -0.0002853513 -0.016693022 0.091110222 -0.044138964 -0.066542327 -0.051219545 -0.040431693 -0.00083609816 -0.064864755 -0.04014222 -0.066328935 -0.065373637 0.00015136857 -0.061818097 0.052432258 -0.035333242 -0.062380649 0.046363015 0.023403063 -0.066307478 -0.005923694 -0.041105203 -0.048465617 0.069896817 0.00061920675 -0.043593522 0.081706442 -0.042961732 -0.035087556 0.078521907 0.032645229 -0.066206388 -0.076767974 0.035123907 0.0034379968 -0.073499113 0.041549809 -0.06621401 -0.062707976 -0.0068432251 0.059009183 -0.069622628 0.021422897 0.06442342 -0.032181934 0.025975076 0.060201008 -0.053470343 0.014963341 0.05336754 -0.074367613 0.0078845257 0.043385316 -0.084394015 9.4166178e-05 0.051245943 -0.079939559 -0.021437868 0.065054812 -0.022862541 -0.0063774595 0.066132657 -0.017348513 -0.011956064 0.066542126 -0.028209955 -0.0068432251 0.059009183 -0.069622628 -0.025444839 0.064468339 -0.041602522 0.021422897 0.06442342 -0.032181934 0.042138062 -0.066270396 -0.03372699 0.044071645 -0.066257268 -0.045779027 0.039279345 -0.039186198 0.035806585 0.044071645 -0.066257268 -0.045779027 0.042138062 -0.066270396 -0.03372699 0.041549809 -0.06621401 -0.062707976 0.032645229 -0.066206388 -0.076767974 0.041549809 -0.06621401 -0.062707976 0.042138062 -0.066270396 -0.03372699 0.032645229 -0.066206388 -0.076767974 0.042138062 -0.066270396 -0.03372699 0.024205154 -0.06620764 -0.084108636 0.0090058018 0.013781764 0.077347197 0.029011061 0.0048749917 0.065038703 0.016535627 0.01948528 0.065315686 0.0090229651 -0.058135312 0.059878044 0.00015136857 -0.061818097 0.052432258 0.023403063 -0.066307478 -0.005923694 0.044071645 -0.066257268 -0.045779027 0.041549809 -0.06621401 -0.062707976 0.043422043 -0.0023654436 -0.053669237 0.027265716 0.0029542702 -0.081259079 0.032645229 -0.066206388 -0.076767974 0.024205154 -0.06620764 -0.084108636 0.032890487 0.0088741332 0.055663846 0.032203782 -0.038917162 0.057758652 0.039279345 -0.039186198 0.035806585 0.00015136857 -0.061818097 0.052432258 -0.0026777841 -0.058357984 0.06303414 -0.035333242 -0.062380649 0.046363015 -0.0026777841 -0.058357984 0.06303414 0.00015136857 -0.061818097 0.052432258 0.0090229651 -0.058135312 0.059878044 -0.037757047 -0.066373684 -0.020258062 0.023403063 -0.066307478 -0.005923694 -0.035333242 -0.062380649 0.046363015 -0.037757047 -0.066373684 -0.020258062 -0.035333242 -0.062380649 0.046363015 -0.044138964 -0.066542327 -0.051219545 -0.040496897 0.03435237 -0.053947099 -0.043481838 0.0052400497 -0.05186357 -0.042266876 0.011007653 0.075114608 -0.043744441 -0.0046020774 0.081487171 -0.042266876 0.011007653 0.075114608 -0.043481838 0.0052400497 -0.05186357 -0.03674078 0.0575261 -0.049296137 -0.042266876 0.011007653 0.075114608 -0.039721761 0.023640405 0.063981704 -0.03334653 -0.066302948 -0.07618846 -0.025913723 0.005559959 -0.082567036 -0.019773457 -0.066270456 -0.086690508 -0.044138964 -0.066542327 -0.051219545 -0.043481838 0.0052400497 -0.05186357 -0.040431693 -0.00083609816 -0.064864755 0.025975076 0.060201008 -0.053470343 0.020124754 0.057255894 -0.066431567 -0.0068432251 0.059009183 -0.069622628 -0.0063774595 0.066132657 -0.017348513 0.0080032004 0.066215299 -0.022249706 -0.011956064 0.066542126 -0.028209955 -0.010218906 0.05536212 -0.07567364 -0.021972548 0.053002059 -0.074310124 -0.020894734 0.060125038 -0.063940205 -0.040496897 0.03435237 -0.053947099 -0.03674078 0.0575261 -0.049296137 -0.033399619 0.055213459 -0.061887614 -0.025444839 0.064468339 -0.041602522 -0.011956064 0.066542126 -0.028209955 0.021422897 0.06442342 -0.032181934 0.021422897 0.06442342 -0.032181934 -0.011956064 0.066542126 -0.028209955 0.0080032004 0.066215299 -0.022249706 0.039279345 -0.039186198 0.035806585 0.043837283 0.0037199333 0.011401501 0.038999524 0.0089314757 0.036349192 0.044138957 -0.032927096 0.0083342269 0.043837283 0.0037199333 0.011401501 0.039279345 -0.039186198 0.035806585 0.040733561 0.033555608 -0.049821083 0.03595487 0.053053103 -0.053755075 0.035559703 0.056469355 -0.041183624 0.029982788 0.059686523 -0.026265772 0.038999524 0.0089314757 0.036349192 0.035559703 0.056469355 -0.041183624 -0.03334653 -0.066302948 -0.07618846 -0.0049220962 -0.066242695 -0.091110207 -0.04014222 -0.066328935 -0.065373637 0.024205154 -0.06620764 -0.084108636 -0.0049220962 -0.066242695 -0.091110207 0.01088379 -0.066221565 -0.090000197 0.042138062 -0.066270396 -0.03372699 -0.0049220962 -0.066242695 -0.091110207 0.024205154 -0.06620764 -0.084108636 -0.0049220962 -0.066242695 -0.091110207 -0.044138964 -0.066542327 -0.051219545 -0.04014222 -0.066328935 -0.065373637 0.017780026 0.062702641 -0.016693771 0.021422897 0.06442342 -0.032181934 0.0080032004 0.066215299 -0.022249706 0.0088476939 -0.025950208 0.085724644 0.014259221 -0.0095840208 0.082992218 -0.0002853513 -0.016693022 0.091110222 0.00677048 -0.00033725341 0.085957184 0.014259221 -0.0095840208 0.082992218 0.01769829 0.0061737876 0.075327709 0.043422043 -0.0023654436 -0.053669237 0.044138957 -0.032927096 0.0083342269 0.044071645 -0.066257268 -0.045779027 0.035123907 0.0034379968 -0.073499113 0.040054984 0.0043526297 -0.064691179 0.041549809 -0.06621401 -0.062707976 0.032203782 -0.038917162 0.057758652 0.029011061 0.0048749917 0.065038703 0.025928276 -0.027104594 0.071749218 0.032890487 0.0088741332 0.055663846 0.039279345 -0.039186198 0.035806585 0.038999524 0.0089314757 0.036349192 0.029982788 0.059686523 -0.026265772 0.032890487 0.0088741332 0.055663846 0.038999524 0.0089314757 0.036349192 0.042138062 -0.066270396 -0.03372699 0.039279345 -0.039186198 0.035806585 0.032203782 -0.038917162 0.057758652 0.011900078 -0.040623341 0.078232579 0.00061920675 -0.043593522 0.081706442 0.0028298395 -0.051215816 0.07437326 -0.0026777841 -0.058357984 0.06303414 0.0028298395 -0.051215816 0.07437326 -0.038835924 -0.056539237 0.060009073 -0.040496897 0.03435237 -0.053947099 -0.042266876 0.011007653 0.075114608 -0.03674078 0.0575261 -0.049296137 0.0090058018 0.013781764 0.077347197 0.00677048 -0.00033725341 0.085957184 0.01769829 0.0061737876 0.075327709 -0.0030736988 0.025019262 0.068256378 -0.0063774595 0.066132657 -0.017348513 -0.039721761 0.023640405 0.063981704 -0.019773457 -0.066270456 -0.086690508 -0.0049220962 -0.066242695 -0.091110207 -0.03334653 -0.066302948 -0.07618846 -0.025913723 0.005559959 -0.082567036 -0.013618628 0.0051165461 -0.088806354 -0.019773457 -0.066270456 -0.086690508 -0.040431693 -0.00083609816 -0.064864755 -0.03334653 -0.066302948 -0.07618846 -0.04014222 -0.066328935 -0.065373637 -0.040431693 -0.00083609816 -0.064864755 -0.040496897 0.03435237 -0.053947099 -0.034781087 0.026995763 -0.070474111 0.00061920675 -0.043593522 0.081706442 -0.0010163484 -0.031707011 0.088538714 -0.042961732 -0.035087556 0.078521907 0.0088476939 -0.025950208 0.085724644 -0.0010163484 -0.031707011 0.088538714 0.011900078 -0.040623341 0.078232579 0.032645229 -0.066206388 -0.076767974 0.027265716 0.0029542702 -0.081259079 0.035123907 0.0034379968 -0.073499113 0.02687709 0.028388267 -0.078674391 0.021906 0.048073925 -0.0762771 0.032479178 0.037349228 -0.071369044 -0.010218906 0.05536212 -0.07567364 -0.0068432251 0.059009183 -0.069622628 9.4166178e-05 0.051245943 -0.079939559 -0.0068432251 0.059009183 -0.069622628 0.014963341 0.05336754 -0.074367613 9.4166178e-05 0.051245943 -0.079939559 0.020124754 0.057255894 -0.066431567 0.014963341 0.05336754 -0.074367613 -0.0068432251 0.059009183 -0.069622628 -0.0068432251 0.059009183 -0.069622628 -0.020894734 0.060125038 -0.063940205 -0.025444839 0.064468339 -0.041602522 -0.028793776 0.061623257 -0.052096505 -0.025444839 0.064468339 -0.041602522 -0.020894734 0.060125038 -0.063940205 0.043837283 0.0037199333 0.011401501 0.035559703 0.056469355 -0.041183624 0.038999524 0.0089314757 0.036349192 -0.0049220962 -0.066242695 -0.091110207 -0.037757047 -0.066373684 -0.020258062 -0.044138964 -0.066542327 -0.051219545 0.017780026 0.062702641 -0.016693771 0.0047670156 0.064317137 -0.012714039 0.006348805 0.024182698 0.068347201 0.029011061 0.0048749917 0.065038703 0.0090058018 0.013781764 0.077347197 0.01769829 0.0061737876 0.075327709 0.021422897 0.06442342 -0.032181934 0.027254909 0.06169375 -0.041418321 0.025975076 0.060201008 -0.053470343 0.044138957 -0.032927096 0.0083342269 0.043422043 -0.0023654436 -0.053669237 0.043837283 0.0037199333 0.011401501 0.043422043 -0.0023654436 -0.053669237 0.040733561 0.033555608 -0.049821083 0.043837283 0.0037199333 0.011401501 0.01088379 -0.066221565 -0.090000197 0.015392043 0.0068347245 -0.088073343 0.024205154 -0.06620764 -0.084108636 0.032203782 -0.038917162 0.057758652 0.025928276 -0.027104594 0.071749218 0.011900078 -0.040623341 0.078232579 0.029011061 0.0048749917 0.065038703 0.032203782 -0.038917162 0.057758652 0.032890487 0.0088741332 0.055663846 0.042138062 -0.066270396 -0.03372699 0.032203782 -0.038917162 0.057758652 0.016970124 -0.050680254 0.06433247 0.00061920675 -0.043593522 0.081706442 -0.041105203 -0.048465617 0.069896817 0.0028298395 -0.051215816 0.07437326 -0.043744441 -0.0046020774 0.081487171 -0.0018676738 -0.0073863748 0.090526991 -0.0012300833 0.0049148719 0.086901367 -0.042266876 0.011007653 0.075114608 0.0011293323 0.01615818 0.079216734 -0.039721761 0.023640405 0.063981704 -0.019892475 0.027550729 -0.084267862 -0.013618628 0.0051165461 -0.088806354 -0.025913723 0.005559959 -0.082567036 -0.021972548 0.053002059 -0.074310124 -0.029867461 0.0504517 -0.069513246 -0.033399619 0.055213459 -0.061887614 -0.040496897 0.03435237 -0.053947099 -0.040431693 -0.00083609816 -0.064864755 -0.043481838 0.0052400497 -0.05186357 0.014259221 -0.0095840208 0.082992218 0.00677048 -0.00033725341 0.085957184 -0.0002853513 -0.016693022 0.091110222 0.02521996 -0.0076494026 0.07295876 0.014259221 -0.0095840208 0.082992218 0.025928276 -0.027104594 0.071749218 -0.0010163484 -0.031707011 0.088538714 0.00061920675 -0.043593522 0.081706442 0.011900078 -0.040623341 0.078232579 0.0014845188 -0.0056375512 -0.09109959 0.01088379 -0.066221565 -0.090000197 -0.0049220962 -0.066242695 -0.091110207 0.015392043 0.0068347245 -0.088073343 0.0014845188 -0.0056375512 -0.09109959 0.0022760299 0.030259382 -0.088540398 -0.010037304 0.033670075 -0.086436428 0.0022760299 0.030259382 -0.088540398 -0.013618628 0.0051165461 -0.088806354 0.03595487 0.053053103 -0.053755075 0.031028131 0.052729383 -0.063173056 0.025975076 0.060201008 -0.053470343 0.021906 0.048073925 -0.0762771 0.02687709 0.028388267 -0.078674391 0.014128197 0.03494668 -0.085022174 0.021906 0.048073925 -0.0762771 0.031028131 0.052729383 -0.063173056 0.032479178 0.037349228 -0.071369044 9.4166178e-05 0.051245943 -0.079939559 -0.007736586 0.048217997 -0.082736015 -0.010218906 0.05536212 -0.07567364 -0.007736586 0.048217997 -0.082736015 -0.021972548 0.053002059 -0.074310124 -0.010218906 0.05536212 -0.07567364 -0.020894734 0.060125038 -0.063940205 -0.033399619 0.055213459 -0.061887614 -0.028793776 0.061623257 -0.052096505 -0.025444839 0.064468339 -0.041602522 -0.028793776 0.061623257 -0.052096505 -0.034267794 0.060985558 -0.036150102 -0.03674078 0.0575261 -0.049296137 -0.034267794 0.060985558 -0.036150102 -0.028793776 0.061623257 -0.052096505 -0.039721761 0.023640405 0.063981704 -0.021437868 0.065054812 -0.022862541 -0.034267794 0.060985558 -0.036150102 0.0080032004 0.066215299 -0.022249706 -0.0063774595 0.066132657 -0.017348513 0.0047670156 0.064317137 -0.012714039 0.006348805 0.024182698 0.068347201 0.016535627 0.01948528 0.065315686 0.029982788 0.059686523 -0.026265772 0.025928276 -0.027104594 0.071749218 0.014259221 -0.0095840208 0.082992218 0.0088476939 -0.025950208 0.085724644 0.021422897 0.06442342 -0.032181934 0.029982788 0.059686523 -0.026265772 0.027254909 0.06169375 -0.041418321 0.027254909 0.06169375 -0.041418321 0.029982788 0.059686523 -0.026265772 0.035559703 0.056469355 -0.041183624 0.024205154 -0.06620764 -0.084108636 0.015392043 0.0068347245 -0.088073343 0.027265716 0.0029542702 -0.081259079 0.02687709 0.028388267 -0.078674391 0.015392043 0.0068347245 -0.088073343 0.014128197 0.03494668 -0.085022174 0.015392043 0.0068347245 -0.088073343 0.02687709 0.028388267 -0.078674391 0.027265716 0.0029542702 -0.081259079 0.0088476939 -0.025950208 0.085724644 0.011900078 -0.040623341 0.078232579 0.025928276 -0.027104594 0.071749218 0.016970124 -0.050680254 0.06433247 0.0090229651 -0.058135312 0.059878044 0.042138062 -0.066270396 -0.03372699 0.029011061 0.0048749917 0.065038703 0.032890487 0.0088741332 0.055663846 0.016535627 0.01948528 0.065315686 -0.03674078 0.0575261 -0.049296137 -0.039721761 0.023640405 0.063981704 -0.034267794 0.060985558 -0.036150102 -0.039721761 0.023640405 0.063981704 0.0011293323 0.01615818 0.079216734 -0.0030736988 0.025019262 0.068256378 -0.0030736988 0.025019262 0.068256378 0.0047670156 0.064317137 -0.012714039 -0.0063774595 0.066132657 -0.017348513 -0.013618628 0.0051165461 -0.088806354 -0.0049220962 -0.066242695 -0.091110207 -0.019773457 -0.066270456 -0.086690508 -0.034781087 0.026995763 -0.070474111 -0.032948025 -0.0044263159 -0.076336801 -0.040431693 -0.00083609816 -0.064864755 -0.03334653 -0.066302948 -0.07618846 -0.032948025 -0.0044263159 -0.076336801 -0.025913723 0.005559959 -0.082567036 0.00677048 -0.00033725341 0.085957184 -0.0018676738 -0.0073863748 0.090526991 -0.0002853513 -0.016693022 0.091110222 -0.0002853513 -0.016693022 0.091110222 -0.0010163484 -0.031707011 0.088538714 0.0088476939 -0.025950208 0.085724644 -0.0026777841 -0.058357984 0.06303414 0.0090229651 -0.058135312 0.059878044 0.0028298395 -0.051215816 0.07437326 0.016970124 -0.050680254 0.06433247 0.0028298395 -0.051215816 0.07437326 0.0090229651 -0.058135312 0.059878044 0.011900078 -0.040623341 0.078232579 0.0028298395 -0.051215816 0.07437326 0.016970124 -0.050680254 0.06433247 0.0014845188 -0.0056375512 -0.09109959 0.015392043 0.0068347245 -0.088073343 0.01088379 -0.066221565 -0.090000197 0.032479178 0.037349228 -0.071369044 0.040054984 0.0043526297 -0.064691179 0.035123907 0.0034379968 -0.073499113 -0.013618628 0.0051165461 -0.088806354 0.0014845188 -0.0056375512 -0.09109959 -0.0049220962 -0.066242695 -0.091110207 -0.010037304 0.033670075 -0.086436428 -0.007736586 0.048217997 -0.082736015 0.0022760299 0.030259382 -0.088540398 0.0078845257 0.043385316 -0.084394015 0.014128197 0.03494668 -0.085022174 0.0022760299 0.030259382 -0.088540398 0.021906 0.048073925 -0.0762771 0.020124754 0.057255894 -0.066431567 0.031028131 0.052729383 -0.063173056 0.03595487 0.053053103 -0.053755075 0.032479178 0.037349228 -0.071369044 0.031028131 0.052729383 -0.063173056 0.038829483 0.03102221 -0.060704544 0.03595487 0.053053103 -0.053755075 0.040733561 0.033555608 -0.049821083 9.4166178e-05 0.051245943 -0.079939559 0.0078845257 0.043385316 -0.084394015 -0.007736586 0.048217997 -0.082736015 0.0078845257 0.043385316 -0.084394015 0.021906 0.048073925 -0.0762771 0.014128197 0.03494668 -0.085022174 0.014963341 0.05336754 -0.074367613 0.020124754 0.057255894 -0.066431567 0.021906 0.048073925 -0.0762771 -0.029867461 0.0504517 -0.069513246 -0.034781087 0.026995763 -0.070474111 -0.033399619 0.055213459 -0.061887614 -0.039721761 0.023640405 0.063981704 -0.0063774595 0.066132657 -0.017348513 -0.021437868 0.065054812 -0.022862541 0.021422897 0.06442342 -0.032181934 0.017780026 0.062702641 -0.016693771 0.029982788 0.059686523 -0.026265772 -0.028793776 0.061623257 -0.052096505 -0.033399619 0.055213459 -0.061887614 -0.03674078 0.0575261 -0.049296137 -0.025444839 0.064468339 -0.041602522 -0.034267794 0.060985558 -0.036150102 -0.021437868 0.065054812 -0.022862541 -0.021437868 0.065054812 -0.022862541 -0.011956064 0.066542126 -0.028209955 -0.025444839 0.064468339 -0.041602522 0.032890487 0.0088741332 0.055663846 0.029982788 0.059686523 -0.026265772 0.016535627 0.01948528 0.065315686 0.016970124 -0.050680254 0.06433247 0.032203782 -0.038917162 0.057758652 0.011900078 -0.040623341 0.078232579 0.029011061 0.0048749917 0.065038703 0.02521996 -0.0076494026 0.07295876 0.025928276 -0.027104594 0.071749218 -0.0012300833 0.0049148719 0.086901367 0.0011293323 0.01615818 0.079216734 -0.042266876 0.011007653 0.075114608 -0.0012300833 0.0049148719 0.086901367 -0.0018676738 -0.0073863748 0.090526991 0.00677048 -0.00033725341 0.085957184 0.0090058018 0.013781764 0.077347197 0.0011293323 0.01615818 0.079216734 -0.0012300833 0.0049148719 0.086901367 0.006348805 0.024182698 0.068347201 0.0090058018 0.013781764 0.077347197 0.016535627 0.01948528 0.065315686 0.0090058018 0.013781764 0.077347197 -0.0012300833 0.0049148719 0.086901367 0.00677048 -0.00033725341 0.085957184 -0.040431693 -0.00083609816 -0.064864755 -0.032948025 -0.0044263159 -0.076336801 -0.03334653 -0.066302948 -0.07618846 -0.034781087 0.026995763 -0.070474111 -0.027130192 0.030457826 -0.078522004 -0.025913723 0.005559959 -0.082567036 -0.01805442 0.04399005 -0.081288695 -0.029867461 0.0504517 -0.069513246 -0.021972548 0.053002059 -0.074310124 -0.034781087 0.026995763 -0.070474111 -0.025913723 0.005559959 -0.082567036 -0.032948025 -0.0044263159 -0.076336801 0.035123907 0.0034379968 -0.073499113 0.02687709 0.028388267 -0.078674391 0.032479178 0.037349228 -0.071369044 0.02687709 0.028388267 -0.078674391 0.035123907 0.0034379968 -0.073499113 0.027265716 0.0029542702 -0.081259079 -0.01805442 0.04399005 -0.081288695 -0.007736586 0.048217997 -0.082736015 -0.010037304 0.033670075 -0.086436428 0.0022760299 0.030259382 -0.088540398 0.0014845188 -0.0056375512 -0.09109959 -0.013618628 0.0051165461 -0.088806354 0.020124754 0.057255894 -0.066431567 0.025975076 0.060201008 -0.053470343 0.031028131 0.052729383 -0.063173056 0.0022760299 0.030259382 -0.088540398 -0.007736586 0.048217997 -0.082736015 0.0078845257 0.043385316 -0.084394015 0.014963341 0.05336754 -0.074367613 0.021906 0.048073925 -0.0762771 0.0078845257 0.043385316 -0.084394015 -0.0068432251 0.059009183 -0.069622628 -0.010218906 0.05536212 -0.07567364 -0.020894734 0.060125038 -0.063940205 -0.021972548 0.053002059 -0.074310124 -0.033399619 0.055213459 -0.061887614 -0.020894734 0.060125038 -0.063940205 -0.007736586 0.048217997 -0.082736015 -0.01805442 0.04399005 -0.081288695 -0.021972548 0.053002059 -0.074310124 -0.033399619 0.055213459 -0.061887614 -0.034781087 0.026995763 -0.070474111 -0.040496897 0.03435237 -0.053947099 -0.029867461 0.0504517 -0.069513246 -0.027130192 0.030457826 -0.078522004 -0.034781087 0.026995763 -0.070474111 0.029982788 0.059686523 -0.026265772 0.017780026 0.062702641 -0.016693771 0.006348805 0.024182698 0.068347201 0.0047670156 0.064317137 -0.012714039 0.017780026 0.062702641 -0.016693771 0.0080032004 0.066215299 -0.022249706 0.035559703 0.056469355 -0.041183624 0.03595487 0.053053103 -0.053755075 0.025975076 0.060201008 -0.053470343 0.040733561 0.033555608 -0.049821083 0.043422043 -0.0023654436 -0.053669237 0.038829483 0.03102221 -0.060704544 0.038829483 0.03102221 -0.060704544 0.043422043 -0.0023654436 -0.053669237 0.040054984 0.0043526297 -0.064691179 0.032479178 0.037349228 -0.071369044 0.038829483 0.03102221 -0.060704544 0.040054984 0.0043526297 -0.064691179 0.014259221 -0.0095840208 0.082992218 0.02521996 -0.0076494026 0.07295876 0.01769829 0.0061737876 0.075327709 0.0047670156 0.064317137 -0.012714039 -0.0030736988 0.025019262 0.068256378 0.006348805 0.024182698 0.068347201 0.006348805 0.024182698 0.068347201 0.0011293323 0.01615818 0.079216734 0.0090058018 0.013781764 0.077347197 -0.0030736988 0.025019262 0.068256378 0.0011293323 0.01615818 0.079216734 0.006348805 0.024182698 0.068347201 -0.025913723 0.005559959 -0.082567036 -0.027130192 0.030457826 -0.078522004 -0.019892475 0.027550729 -0.084267862 -0.013618628 0.0051165461 -0.088806354 -0.019892475 0.027550729 -0.084267862 -0.010037304 0.033670075 -0.086436428 -0.01805442 0.04399005 -0.081288695 -0.010037304 0.033670075 -0.086436428 -0.019892475 0.027550729 -0.084267862 0.014128197 0.03494668 -0.085022174 0.015392043 0.0068347245 -0.088073343 0.0022760299 0.030259382 -0.088540398 0.032479178 0.037349228 -0.071369044 0.03595487 0.053053103 -0.053755075 0.038829483 0.03102221 -0.060704544 0.027254909 0.06169375 -0.041418321 0.035559703 0.056469355 -0.041183624 0.025975076 0.060201008 -0.053470343 0.02521996 -0.0076494026 0.07295876 0.029011061 0.0048749917 0.065038703 0.01769829 0.0061737876 0.075327709 -0.029867461 0.0504517 -0.069513246 -0.01805442 0.04399005 -0.081288695 -0.027130192 0.030457826 -0.078522004 -0.027130192 0.030457826 -0.078522004 -0.01805442 0.04399005 -0.081288695 -0.019892475 0.027550729 -0.084267862 -0.0049220962 -0.066242695 -0.091110207 0.042138062 -0.066270396 -0.03372699 -0.037757047 -0.066373684 -0.020258062 0.042138062 -0.066270396 -0.03372699 0.023403063 -0.066307478 -0.005923694 -0.037757047 -0.066373684 -0.020258062 + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599

+
+
+
+
+ + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + + + + + + + + + + + + + +
diff --git a/external/rlbench/urdfs/panda/meshes/Pandalink6visual_vis_1.dae b/external/rlbench/urdfs/panda/meshes/Pandalink6visual_vis_1.dae new file mode 100644 index 0000000000000000000000000000000000000000..004c83e4b6945531123555d2bf11c06d5260261c --- /dev/null +++ b/external/rlbench/urdfs/panda/meshes/Pandalink6visual_vis_1.dae @@ -0,0 +1,84 @@ + + + + + Assimp + Assimp Exporter + + 2023-09-26T11:24:21 + 2023-09-26T11:24:21 + + Y_UP + + + + + + + + 0 0 0 4.5895327e-41 + + + 0.40000001 0.40000001 0.40000001 4.5893926e-41 + + + 0.40000001 0.40000001 0.40000001 4.5893926e-41 + + + 0.25 0.25 0.25 3.6295857e-33 + + + + + + + + + + + + + + + + -0.016931541 0.025644943 -0.034828562 -0.021490153 0.023091899 -0.021692554 -0.025380069 0.020413661 -0.010499469 -0.034529679 -0.01290746 0.01484941 -0.035479669 -0.014484319 0.014567086 -0.035027009 -0.034844775 0.012647882 -0.033961851 -0.036696333 0.012337828 -0.034529679 -0.01290746 0.01484941 -0.035027009 -0.034844775 0.012647882 -0.034529679 -0.01290746 0.01484941 -0.035479732 -0.014484318 0.014567102 -0.035479669 -0.014484319 0.014567086 -0.01078806 0.028412353 -0.052560184 -0.0077978149 0.026662573 -0.061303448 -0.009483479 0.027217668 -0.059575543 -0.011182442 0.028209558 -0.054550469 -0.01078806 0.028412353 -0.052560184 -0.009483479 0.027217668 -0.059575543 -0.030379772 0.015134655 0.0038214643 -0.030802544 0.015276788 0.0034553222 -0.025380069 0.020413661 -0.010499469 -0.014089764 0.028060528 -0.042990133 -0.01078806 0.028412353 -0.052560184 -0.011182442 0.028209558 -0.054550469 -0.033374745 0.004320289 0.012121166 -0.034124088 0.0052608238 0.011702606 -0.032303203 0.010888989 0.009249148 -0.014089764 0.028060528 -0.042990133 -0.011182442 0.028209558 -0.054550469 -0.013379567 0.028490473 -0.048282154 -0.014089764 0.028060528 -0.042990133 -0.016086668 0.027652903 -0.040424149 -0.021759545 0.024602385 -0.023896573 -0.027264984 0.019916568 -0.0050466182 -0.014089764 0.028060528 -0.042990133 -0.021759545 0.024602385 -0.023896573 -0.028501868 0.019613395 -0.0043523414 -0.027264984 0.019916568 -0.0050466182 -0.021759545 0.024602385 -0.023896573 -0.027264984 0.019916568 -0.0050466182 -0.028501868 0.019613395 -0.0043523414 -0.030482508 0.017421808 0.0014027222 -0.03165663 0.014066327 0.0074876323 -0.027264984 0.019916568 -0.0050466182 -0.030482508 0.017421808 0.0014027222 -0.03310211 0.012734056 0.0088161277 -0.03165663 0.014066327 0.0074876323 -0.030482508 0.017421808 0.0014027222 -0.032927588 0.010324629 0.011040709 -0.03165663 0.014066327 0.0074876323 -0.03310211 0.012734056 0.0088161277 -0.030379772 0.015134655 0.0038214643 -0.032303203 0.010888989 0.009249148 -0.030802544 0.015276788 0.0034553222 -0.033894148 -0.0047867005 0.013298211 -0.034060825 -0.027519897 0.012957476 -0.034825478 -0.012975295 0.013529427 -0.034402858 0.006938112 0.012375995 -0.032927588 0.010324629 0.011040709 -0.03310211 0.012734056 0.0088161277 -0.033707742 0.0049548107 0.013110526 -0.032927588 0.010324629 0.011040709 -0.034402858 0.006938112 0.012375995 -0.033374745 0.004320289 0.012121166 -0.033894148 -0.0047867005 0.013298211 -0.034548089 0.001720692 0.012272597 -0.033707742 0.0049548107 0.013110526 -0.034402858 0.006938112 0.012375995 -0.035199225 -0.0062296288 0.014303654 -0.034529679 -0.01290746 0.01484941 -0.033707742 0.0049548107 0.013110526 -0.035199225 -0.0062296288 0.014303654 -0.034060825 -0.027519897 0.012957476 -0.033756513 -0.03431423 0.011795187 -0.03438209 -0.029296177 0.012615533 -0.034529679 -0.01290746 0.01484941 -0.035199225 -0.0062296288 0.014303654 -0.035479732 -0.014484318 0.014567102 0.00048079592 -0.0085510742 -0.09014684 0.0017033143 -0.013718541 -0.090342924 0.00057823578 -0.01606413 -0.090580724 2.4605886e-05 -0.0012639222 -0.088509396 0.0017033143 -0.013718541 -0.090342924 0.00048079592 -0.0085510742 -0.09014684 0.0010452444 -0.00028011019 -0.087946206 0.0017033143 -0.013718541 -0.090342924 2.4605886e-05 -0.0012639222 -0.088509396 -0.00027656966 0.0087066283 -0.083783001 0.0010452444 -0.00028011019 -0.087946206 2.4605886e-05 -0.0012639222 -0.088509396 -0.0024752284 0.017087769 -0.077098802 -0.00027656966 0.0087066283 -0.083783001 -0.0020822913 0.011898655 -0.081834778 -0.004623862 0.022197787 -0.070677407 -0.0024752284 0.017087769 -0.077098802 -0.0051374179 0.02105982 -0.072546788 -0.0071535208 0.02467897 -0.066455215 -0.004623862 0.022197787 -0.070677407 -0.0051374179 0.02105982 -0.072546788 -0.0077978149 0.026662573 -0.061303448 -0.004623862 0.022197787 -0.070677407 -0.0071535208 0.02467897 -0.066455215 -0.0077978149 0.026662573 -0.061303448 -0.0071535208 0.02467897 -0.066455215 -0.009483479 0.027217668 -0.059575543 -0.013729353 -0.057960596 -0.047155764 -0.025031365 -0.051650811 -0.014124216 -0.017718505 -0.056754246 -0.038529143 -0.010863331 -0.057593413 -0.055459905 -0.013729353 -0.057960596 -0.047155764 -0.013258584 -0.057970624 -0.051541369 -0.010404347 -0.056670267 -0.059897248 -0.010863331 -0.057593413 -0.055459905 -0.013258584 -0.057970624 -0.051541369 -0.0065454361 -0.053491209 -0.067844197 -0.010863331 -0.057593413 -0.055459905 -0.010404347 -0.056670267 -0.059897248 -0.043974303 -0.009284961 -0.002937417 -0.039489165 -0.0068103485 0.0073728743 -0.043814346 -0.002500006 -0.004281465 -0.030109769 0.015093427 -0.04723518 -0.022341961 0.022669094 -0.044410348 -0.024090424 0.018959669 -0.052851286 -0.0021501493 -0.043421231 -0.0802361 -0.0065454361 -0.053491209 -0.067844197 -0.0056389412 -0.049780622 -0.073797107 -0.0021501493 -0.043421231 -0.0802361 -0.0056389412 -0.049780622 -0.073797107 -0.0032165912 -0.04336255 -0.080473095 0.00073147641 -0.029138703 -0.088080801 -3.4356926e-05 -0.034284908 -0.086044759 -0.00015486788 -0.027181257 -0.08890406 -0.01704425 -0.0084537528 -0.079911172 -0.011009173 -0.012160782 -0.084858418 -0.014929178 -0.014854321 -0.082060531 0.00034281929 -0.021248035 -0.090150245 0.00073147641 -0.029138703 -0.088080801 -0.00015486788 -0.027181257 -0.08890406 0.0017033143 -0.013718541 -0.090342924 0.00073147641 -0.029138703 -0.088080801 0.00034281929 -0.021248035 -0.090150245 -0.02436964 0.022293281 -0.032039318 -0.021759545 0.024602385 -0.023896573 -0.016086668 0.027652903 -0.040424149 0.00057823578 -0.01606413 -0.090580724 0.0017033143 -0.013718541 -0.090342924 0.00034281929 -0.021248035 -0.090150245 -0.041094907 -0.014139099 0.0045341803 -0.039489165 -0.0068103485 0.0073728743 -0.043974303 -0.009284961 -0.002937417 -0.023749229 -0.05319095 -0.020894526 -0.025031365 -0.051650811 -0.014124216 -0.02945485 -0.048623618 -0.004104014 -0.025031365 -0.051650811 -0.014124216 -0.023749229 -0.05319095 -0.020894526 -0.017718505 -0.056754246 -0.038529143 -0.025031365 -0.051650811 -0.014124216 -0.030993829 -0.045626625 0.0034006336 -0.02945485 -0.048623618 -0.004104014 -0.037779901 0.0095759165 0.0014970322 -0.035810195 0.013059678 -0.0061056642 -0.042655993 0.0052839364 -0.01478175 -0.030993829 -0.045626625 0.0034006336 -0.033961851 -0.036696333 0.012337828 -0.033996008 -0.041172989 0.0093196705 -0.032484561 -0.044688944 0.0048213298 -0.030993829 -0.045626625 0.0034006336 -0.033996008 -0.041172989 0.0093196705 -0.02945485 -0.048623618 -0.004104014 -0.030993829 -0.045626625 0.0034006336 -0.032484561 -0.044688944 0.0048213298 -0.03459714 -0.036996886 0.012022849 -0.033961851 -0.036696333 0.012337828 -0.034611721 -0.036881447 0.012068474 -0.034449495 -0.038116742 0.011545386 -0.033961851 -0.036696333 0.012337828 -0.03459714 -0.036996886 0.012022849 -0.0010488206 0.0068878327 -0.085040189 2.4605886e-05 -0.0012639222 -0.088509396 -0.008446862 0.0035254296 -0.082992405 -0.033996008 -0.041172989 0.0093196705 -0.033961851 -0.036696333 0.012337828 -0.034449495 -0.038116742 0.011545386 -0.014058882 0.019859465 -0.066786639 -0.0071535208 0.02467897 -0.066455215 -0.0090886336 0.017978139 -0.07316602 -0.034611721 -0.036881447 0.012068474 -0.033961851 -0.036696333 0.012337828 -0.035027009 -0.034844775 0.012647882 -0.042655993 0.0052839364 -0.01478175 -0.041679319 0.0069725541 -0.020621236 -0.039951883 0.0088211745 -0.029547574 -0.033996008 -0.041172989 0.0093196705 -0.034449495 -0.038116742 0.011545386 -0.034611721 -0.036881447 0.012068474 -0.00015486788 -0.027181257 -0.08890406 -3.4356926e-05 -0.034284908 -0.086044759 -0.0023843839 -0.040193755 -0.082855769 -3.4356926e-05 -0.034284908 -0.086044759 -0.0021501493 -0.043421231 -0.0802361 -0.0023843839 -0.040193755 -0.082855769 -0.0023843839 -0.040193755 -0.082855769 -0.0021501493 -0.043421231 -0.0802361 -0.0032165912 -0.04336255 -0.080473095 -0.0056389412 -0.049780622 -0.073797107 -0.0065454361 -0.053491209 -0.067844197 -0.0075441077 -0.05336497 -0.068254322 -0.0075441077 -0.05336497 -0.068254322 -0.0065454361 -0.053491209 -0.067844197 -0.010404347 -0.056670267 -0.059897248 -0.015178837 0.014694066 -0.071168005 -0.014058882 0.019859465 -0.066786639 -0.014117155 0.01207792 -0.074226804 -0.013258584 -0.057970624 -0.051541369 -0.013729353 -0.057960596 -0.047155764 -0.014815265 -0.057899397 -0.047056172 -0.014815265 -0.057899397 -0.047056172 -0.013729353 -0.057960596 -0.047155764 -0.017718505 -0.056754246 -0.038529143 -0.0051374179 0.02105982 -0.072546788 -0.0024752284 0.017087769 -0.077098802 -0.0020822913 0.011898655 -0.081834778 -0.0020822913 0.011898655 -0.081834778 -0.00027656966 0.0087066283 -0.083783001 -0.0010488206 0.0068878327 -0.085040189 -0.044085238 -0.01773639 -0.002983884 -0.041094907 -0.014139099 0.0045341803 -0.043974303 -0.009284961 -0.002937417 -0.00027656966 0.0087066283 -0.083783001 2.4605886e-05 -0.0012639222 -0.088509396 -0.0010488206 0.0068878327 -0.085040189 -0.016086668 0.027652903 -0.040424149 -0.014089764 0.028060528 -0.042990133 -0.013379567 0.028490473 -0.048282154 -0.037593581 -0.038732439 -0.041324392 -0.032091275 -0.03642248 -0.052894562 -0.033736587 -0.038682077 -0.053262189 -0.037593581 -0.038732439 -0.041324392 -0.037731074 -0.036010604 -0.03390602 -0.032091275 -0.03642248 -0.052894562 -0.033736587 -0.038682077 -0.053262189 -0.032091275 -0.03642248 -0.052894562 -0.031899527 -0.03782481 -0.058030173 -0.0060697496 0.0097750025 -0.081276014 -0.0010488206 0.0068878327 -0.085040189 -0.008446862 0.0035254296 -0.082992405 -0.027309425 0.01859135 -0.043570194 -0.022341961 0.022669094 -0.044410348 -0.030109769 0.015093427 -0.04723518 -0.031899527 -0.03782481 -0.058030173 -0.032091275 -0.03642248 -0.052894562 -0.027682276 -0.031346265 -0.064530984 -0.043975204 -0.02957923 -0.0063852998 -0.04240407 -0.029254735 -0.0086318264 -0.043480553 -0.03311611 -0.011942601 -0.025547104 -0.0037796786 -0.071431533 -0.027366852 0.0022996361 -0.067546941 -0.016415045 0.0014298317 -0.078027055 -0.031899527 -0.03782481 -0.058030173 -0.027682276 -0.031346265 -0.064530984 -0.028138096 -0.032211367 -0.066819876 -0.037610456 0.0051271347 0.0079945456 -0.034402858 0.006938112 0.012375995 -0.037106141 0.0090320585 0.0054399567 -0.043975204 -0.02957923 -0.0063852998 -0.04411317 -0.024569968 -0.0037791082 -0.04240407 -0.029254735 -0.0086318264 -0.043480553 -0.03311611 -0.011942601 -0.04240407 -0.029254735 -0.0086318264 -0.037731074 -0.036010604 -0.03390602 -0.04411317 -0.024569968 -0.0037791082 -0.04261842 -0.022903377 -0.0051917811 -0.04240407 -0.029254735 -0.0086318264 -0.043480553 -0.03311611 -0.011942601 -0.037731074 -0.036010604 -0.03390602 -0.042654518 -0.03498577 -0.018200105 -0.027366852 0.0022996361 -0.067546941 -0.022853306 0.006050698 -0.070057198 -0.016415045 0.0014298317 -0.078027055 -0.028138096 -0.032211367 -0.066819876 -0.027682276 -0.031346265 -0.064530984 -0.026926395 -0.0291552 -0.069319747 -0.04411317 -0.024569968 -0.0037791082 -0.044085238 -0.01773639 -0.002983884 -0.04261842 -0.022903377 -0.0051917811 -0.012613724 0.023101114 -0.063684307 -0.009483479 0.027217668 -0.059575543 -0.0071535208 0.02467897 -0.066455215 -0.027682276 -0.031346265 -0.064530984 -0.024730496 -0.021865267 -0.07046859 -0.026926395 -0.0291552 -0.069319747 -0.042654518 -0.03498577 -0.018200105 -0.037731074 -0.036010604 -0.03390602 -0.042046811 -0.035956129 -0.021959208 -0.024730496 -0.021865267 -0.07046859 -0.024933739 -0.020694219 -0.073069409 -0.026926395 -0.0291552 -0.069319747 -0.042046811 -0.035956129 -0.021959208 -0.037731074 -0.036010604 -0.03390602 -0.03952321 -0.038273007 -0.033853158 -0.04261842 -0.022903377 -0.0051917811 -0.044085238 -0.01773639 -0.002983884 -0.042442624 -0.0075214878 -0.00494945 -0.024730496 -0.021865267 -0.07046859 -0.024496516 -0.015186015 -0.07376229 -0.024933739 -0.020694219 -0.073069409 -0.024730496 -0.021865267 -0.07046859 -0.024064764 -0.01214441 -0.071456112 -0.024496516 -0.015186015 -0.07376229 -0.03952321 -0.038273007 -0.033853158 -0.037731074 -0.036010604 -0.03390602 -0.037593581 -0.038732439 -0.041324392 -0.03780514 0.0098092621 -0.038281813 -0.032388646 0.0095332274 -0.055171467 -0.037629481 0.0069373855 -0.032192439 -0.032388646 0.0095332274 -0.055171467 -0.032097716 0.007556919 -0.051247682 -0.037629481 0.0069373855 -0.032192439 -0.032388646 0.0095332274 -0.055171467 -0.029761637 0.0062802602 -0.058026042 -0.032097716 0.007556919 -0.051247682 -0.022853306 0.006050698 -0.070057198 -0.015178837 0.014694066 -0.071168005 -0.014117155 0.01207792 -0.074226804 -0.032388646 0.0095332274 -0.055171467 -0.029094974 0.0059513268 -0.063573226 -0.029761637 0.0062802602 -0.058026042 -0.0076847416 -0.001806672 -0.085244626 -0.0073480629 -0.0074114939 -0.086635277 -0.01704425 -0.0084537528 -0.079911172 -0.043704439 -0.00054404937 -0.0052212705 -0.043351978 0.0029675975 -0.0086286543 -0.041912347 0.0011953474 -0.0096550947 -0.043351978 0.0029675975 -0.0086286543 -0.042655993 0.0052839364 -0.01478175 -0.041912347 0.0011953474 -0.0096550947 -0.029094974 0.0059513268 -0.063573226 -0.026990864 0.0016080944 -0.065173082 -0.029761637 0.0062802602 -0.058026042 -0.030109769 0.015093427 -0.04723518 -0.024090424 0.018959669 -0.052851286 -0.032388646 0.0095332274 -0.055171467 -0.043704439 -0.00054404937 -0.0052212705 -0.041912347 0.0011953474 -0.0096550947 -0.042442624 -0.0075214878 -0.00494945 -0.043704439 -0.00054404937 -0.0052212705 -0.042442624 -0.0075214878 -0.00494945 -0.043814346 -0.002500006 -0.004281465 -0.029094974 0.0059513268 -0.063573226 -0.027366852 0.0022996361 -0.067546941 -0.026990864 0.0016080944 -0.065173082 -0.026990864 0.0016080944 -0.065173082 -0.027366852 0.0022996361 -0.067546941 -0.025288889 -0.0036050042 -0.068965778 -0.025288889 -0.0036050042 -0.068965778 -0.027366852 0.0022996361 -0.067546941 -0.025547104 -0.0037796786 -0.071431533 -0.043814346 -0.002500006 -0.004281465 -0.042442624 -0.0075214878 -0.00494945 -0.043974303 -0.009284961 -0.002937417 -0.025288889 -0.0036050042 -0.068965778 -0.025547104 -0.0037796786 -0.071431533 -0.024064764 -0.01214441 -0.071456112 -0.042655993 0.0052839364 -0.01478175 -0.039951883 0.0088211745 -0.029547574 -0.041912347 0.0011953474 -0.0096550947 -0.030109769 0.015093427 -0.04723518 -0.032388646 0.0095332274 -0.055171467 -0.03780514 0.0098092621 -0.038281813 -0.039951883 0.0088211745 -0.029547574 -0.037629481 0.0069373855 -0.032192439 -0.041912347 0.0011953474 -0.0096550947 -0.037610456 0.0051271347 0.0079945456 -0.035199225 -0.0062296288 0.014303654 -0.034402858 0.006938112 0.012375995 -0.024064764 -0.01214441 -0.071456112 -0.025547104 -0.0037796786 -0.071431533 -0.024739645 -0.0088101327 -0.073172033 -0.043974303 -0.009284961 -0.002937417 -0.042442624 -0.0075214878 -0.00494945 -0.044085238 -0.01773639 -0.002983884 -0.024064764 -0.01214441 -0.071456112 -0.024739645 -0.0088101327 -0.073172033 -0.024496516 -0.015186015 -0.07376229 -0.039951883 0.0088211745 -0.029547574 -0.03780514 0.0098092621 -0.038281813 -0.037629481 0.0069373855 -0.032192439 -0.032786604 -0.044399232 -0.036707111 -0.03952321 -0.038273007 -0.033853158 -0.037593581 -0.038732439 -0.041324392 -0.029677989 -0.048329845 -0.023445934 -0.026131842 -0.05053097 -0.035010315 -0.023749229 -0.05319095 -0.020894526 -0.028616929 0.018861651 -0.031938758 -0.022341961 0.022669094 -0.044410348 -0.027309425 0.01859135 -0.043570194 -0.028616929 0.018861651 -0.031938758 -0.02436964 0.022293281 -0.032039318 -0.022341961 0.022669094 -0.044410348 -0.023791106 0.010291605 -0.066088535 -0.015178837 0.014694066 -0.071168005 -0.022853306 0.006050698 -0.070057198 -0.032786604 -0.044399232 -0.036707111 -0.037593581 -0.038732439 -0.041324392 -0.028961601 -0.045952499 -0.047545403 -0.010886106 -0.021087905 -0.084681652 -0.011009173 -0.012160782 -0.084858418 -0.0044628237 -0.015984336 -0.088698111 -0.028961601 -0.045952499 -0.047545403 -0.023144901 -0.051835958 -0.045466989 -0.032786604 -0.044399232 -0.036707111 -0.032786604 -0.044399232 -0.036707111 -0.023144901 -0.051835958 -0.045466989 -0.026131842 -0.05053097 -0.035010315 -0.0047766794 -0.02437691 -0.087701291 0.00034281929 -0.021248035 -0.090150245 -0.00015486788 -0.027181257 -0.08890406 -0.042655993 0.0052839364 -0.01478175 -0.035810195 0.013059678 -0.0061056642 -0.041679319 0.0069725541 -0.020621236 -0.028961601 -0.045952499 -0.047545403 -0.037593581 -0.038732439 -0.041324392 -0.033736587 -0.038682077 -0.053262189 -0.012613724 0.023101114 -0.063684307 -0.0071535208 0.02467897 -0.066455215 -0.014058882 0.019859465 -0.066786639 -0.01704425 -0.0084537528 -0.079911172 -0.014929178 -0.014854321 -0.082060531 -0.019543787 -0.014741042 -0.078220911 -0.017409571 -0.0044528274 -0.078909881 -0.0076847416 -0.001806672 -0.085244626 -0.01704425 -0.0084537528 -0.079911172 -0.03635814 -0.0032358072 0.012287536 -0.035199225 -0.0062296288 0.014303654 -0.037610456 0.0051271347 0.0079945456 -0.012459825 0.0024329787 -0.080746964 -0.008446862 0.0035254296 -0.082992405 -0.0076847416 -0.001806672 -0.085244626 -0.028961601 -0.045952499 -0.047545403 -0.022144042 -0.051487736 -0.050647359 -0.023144901 -0.051835958 -0.045466989 -0.015366707 -0.038410537 -0.075730741 -0.0093267979 -0.038266335 -0.080315441 -0.010260886 -0.043735065 -0.076157041 -0.028961601 -0.045952499 -0.047545403 -0.024816588 -0.047751553 -0.053992629 -0.022144042 -0.051487736 -0.050647359 -0.0047766794 -0.02437691 -0.087701291 -0.010886106 -0.021087905 -0.084681652 -0.0044628237 -0.015984336 -0.088698111 -0.0020822913 0.011898655 -0.081834778 -0.0010488206 0.0068878327 -0.085040189 -0.0060697496 0.0097750025 -0.081276014 -0.018669054 -0.034647673 -0.074864946 -0.017512351 -0.030737052 -0.077472486 -0.015366707 -0.038410537 -0.075730741 -0.016368212 0.022193093 -0.060396533 -0.012613724 0.023101114 -0.063684307 -0.014058882 0.019859465 -0.066786639 -0.010260886 -0.043735065 -0.076157041 -0.0032165912 -0.04336255 -0.080473095 -0.0091387304 -0.047731772 -0.073537767 -0.0047766794 -0.02437691 -0.087701291 -0.0044628237 -0.015984336 -0.088698111 0.00034281929 -0.021248035 -0.090150245 -0.024816588 -0.047751553 -0.053992629 -0.020817501 -0.047264632 -0.062045138 -0.017426264 -0.051495217 -0.060348984 -0.026131842 -0.05053097 -0.035010315 -0.017718505 -0.056754246 -0.038529143 -0.023749229 -0.05319095 -0.020894526 -0.026131842 -0.05053097 -0.035010315 -0.023144901 -0.051835958 -0.045466989 -0.017718505 -0.056754246 -0.038529143 -0.023144901 -0.051835958 -0.045466989 -0.014815265 -0.057899397 -0.047056172 -0.017718505 -0.056754246 -0.038529143 -0.024816588 -0.047751553 -0.053992629 -0.033736587 -0.038682077 -0.053262189 -0.027048772 -0.044294201 -0.056406248 -0.024816588 -0.047751553 -0.053992629 -0.027048772 -0.044294201 -0.056406248 -0.020817501 -0.047264632 -0.062045138 -0.024816588 -0.047751553 -0.053992629 -0.028961601 -0.045952499 -0.047545403 -0.033736587 -0.038682077 -0.053262189 -0.022144042 -0.051487736 -0.050647359 -0.024816588 -0.047751553 -0.053992629 -0.015955824 -0.054796066 -0.055626012 -0.023144901 -0.051835958 -0.045466989 -0.0182455 -0.055094574 -0.049049284 -0.014815265 -0.057899397 -0.047056172 -0.015955824 -0.054796066 -0.055626012 -0.010404347 -0.056670267 -0.059897248 -0.013258584 -0.057970624 -0.051541369 -0.0182455 -0.055094574 -0.049049284 -0.023144901 -0.051835958 -0.045466989 -0.022144042 -0.051487736 -0.050647359 -0.0044628237 -0.015984336 -0.088698111 0.00057823578 -0.01606413 -0.090580724 0.00034281929 -0.021248035 -0.090150245 -0.0182455 -0.055094574 -0.049049284 -0.013258584 -0.057970624 -0.051541369 -0.014815265 -0.057899397 -0.047056172 -0.027222553 0.02078123 -0.017965337 -0.021759545 0.024602385 -0.023896573 -0.02436964 0.022293281 -0.032039318 -0.0182455 -0.055094574 -0.049049284 -0.015955824 -0.054796066 -0.055626012 -0.013258584 -0.057970624 -0.051541369 -0.0182455 -0.055094574 -0.049049284 -0.022144042 -0.051487736 -0.050647359 -0.015955824 -0.054796066 -0.055626012 -0.024816588 -0.047751553 -0.053992629 -0.017426264 -0.051495217 -0.060348984 -0.015955824 -0.054796066 -0.055626012 -0.03780514 0.0098092621 -0.038281813 -0.027309425 0.01859135 -0.043570194 -0.030109769 0.015093427 -0.04723518 -0.017426264 -0.051495217 -0.060348984 -0.020817501 -0.047264632 -0.062045138 -0.014956718 -0.049217857 -0.066833921 -0.044085238 -0.01773639 -0.002983884 -0.040604159 -0.02382968 0.0051620528 -0.041094907 -0.014139099 0.0045341803 -0.044085238 -0.01773639 -0.002983884 -0.04411317 -0.024569968 -0.0037791082 -0.040604159 -0.02382968 0.0051620528 -0.041094907 -0.014139099 0.0045341803 -0.040604159 -0.02382968 0.0051620528 -0.037378538 -0.025087219 0.011182758 -0.018211331 0.017274506 -0.065387972 -0.014058882 0.019859465 -0.066786639 -0.015178837 0.014694066 -0.071168005 -0.041094907 -0.014139099 0.0045341803 -0.037378538 -0.025087219 0.011182758 -0.036499675 -0.014471056 0.01315185 -0.015955824 -0.054796066 -0.055626012 -0.017426264 -0.051495217 -0.060348984 -0.010404347 -0.056670267 -0.059897248 -0.040604159 -0.02382968 0.0051620528 -0.038846307 -0.030852422 0.0075544775 -0.037378538 -0.025087219 0.011182758 -0.040604159 -0.02382968 0.0051620528 -0.04411317 -0.024569968 -0.0037791082 -0.038846307 -0.030852422 0.0075544775 -0.017426264 -0.051495217 -0.060348984 -0.014956718 -0.049217857 -0.066833921 -0.010404347 -0.056670267 -0.059897248 -0.027048772 -0.044294201 -0.056406248 -0.033736587 -0.038682077 -0.053262189 -0.031899527 -0.03782481 -0.058030173 -0.037378538 -0.025087219 0.011182758 -0.035479669 -0.014484319 0.014567086 -0.036499675 -0.014471056 0.01315185 -0.015366707 -0.038410537 -0.075730741 -0.017512351 -0.030737052 -0.077472486 -0.01235914 -0.029143326 -0.082037471 -0.04411317 -0.024569968 -0.0037791082 -0.040041536 -0.033904888 0.0033072717 -0.038846307 -0.030852422 0.0075544775 -0.027048772 -0.044294201 -0.056406248 -0.031899527 -0.03782481 -0.058030173 -0.020817501 -0.047264632 -0.062045138 -0.040041536 -0.033904888 0.0033072717 -0.04411317 -0.024569968 -0.0037791082 -0.043975204 -0.02957923 -0.0063852998 -0.017512351 -0.030737052 -0.077472486 -0.019934235 -0.022002971 -0.077441037 -0.015650583 -0.024461079 -0.080659062 -0.014951128 0.024927143 -0.056899477 -0.009483479 0.027217668 -0.059575543 -0.012613724 0.023101114 -0.063684307 -0.0091387304 -0.047731772 -0.073537767 -0.0032165912 -0.04336255 -0.080473095 -0.0056389412 -0.049780622 -0.073797107 -0.014951128 0.024927143 -0.056899477 -0.011182442 0.028209558 -0.054550469 -0.009483479 0.027217668 -0.059575543 -0.037378538 -0.025087219 0.011182758 -0.035027009 -0.034844775 0.012647882 -0.035479669 -0.014484319 0.014567086 -0.016415045 0.0014298317 -0.078027055 -0.012459825 0.0024329787 -0.080746964 -0.0076847416 -0.001806672 -0.085244626 -0.027222553 0.02078123 -0.017965337 -0.02436964 0.022293281 -0.032039318 -0.028616929 0.018861651 -0.031938758 -0.0093267979 -0.038266335 -0.080315441 -0.015366707 -0.038410537 -0.075730741 -0.0079505844 -0.033438284 -0.083423264 -0.028138096 -0.032211367 -0.066819876 -0.025293047 -0.039134637 -0.065342195 -0.031899527 -0.03782481 -0.058030173 -0.028616929 0.018861651 -0.031938758 -0.027309425 0.01859135 -0.043570194 -0.03780514 0.0098092621 -0.038281813 -0.040041536 -0.033904888 0.0033072717 -0.043975204 -0.02957923 -0.0063852998 -0.03971668 -0.035739299 0.0019550985 -0.031899527 -0.03782481 -0.058030173 -0.025293047 -0.039134637 -0.065342195 -0.020817501 -0.047264632 -0.062045138 -0.037378538 -0.025087219 0.011182758 -0.038846307 -0.030852422 0.0075544775 -0.035027009 -0.034844775 0.012647882 -0.025293047 -0.039134637 -0.065342195 -0.028138096 -0.032211367 -0.066819876 -0.019688884 -0.039273035 -0.071264476 -0.010260886 -0.043735065 -0.076157041 -0.0093267979 -0.038266335 -0.080315441 -0.0032165912 -0.04336255 -0.080473095 -0.038846307 -0.030852422 0.0075544775 -0.040041536 -0.033904888 0.0033072717 -0.038485382 -0.035703629 0.0059680045 -0.024933739 -0.020694219 -0.073069409 -0.024496516 -0.015186015 -0.07376229 -0.019934235 -0.022002971 -0.077441037 -0.01235914 -0.029143326 -0.082037471 -0.0079505844 -0.033438284 -0.083423264 -0.015366707 -0.038410537 -0.075730741 -0.024496516 -0.015186015 -0.07376229 -0.019543787 -0.014741042 -0.078220911 -0.019934235 -0.022002971 -0.077441037 -0.0032165912 -0.04336255 -0.080473095 -0.0093267979 -0.038266335 -0.080315441 -0.0023843839 -0.040193755 -0.082855769 -0.020817501 -0.047264632 -0.062045138 -0.025293047 -0.039134637 -0.065342195 -0.014956718 -0.049217857 -0.066833921 -0.038846307 -0.030852422 0.0075544775 -0.034611721 -0.036881447 0.012068474 -0.035027009 -0.034844775 0.012647882 -0.040041536 -0.033904888 0.0033072717 -0.03971668 -0.035739299 0.0019550985 -0.038485382 -0.035703629 0.0059680045 -0.03971668 -0.035739299 0.0019550985 -0.043975204 -0.02957923 -0.0063852998 -0.040392507 -0.036614951 -0.0044170073 -0.039951883 0.0088211745 -0.029547574 -0.028616929 0.018861651 -0.031938758 -0.03780514 0.0098092621 -0.038281813 -0.017512351 -0.030737052 -0.077472486 -0.015650583 -0.024461079 -0.080659062 -0.01235914 -0.029143326 -0.082037471 -0.038846307 -0.030852422 0.0075544775 -0.038485382 -0.035703629 0.0059680045 -0.034611721 -0.036881447 0.012068474 -0.040392507 -0.036614951 -0.0044170073 -0.036796696 -0.040931914 0.00041226498 -0.03971668 -0.035739299 0.0019550985 -0.0079505844 -0.033438284 -0.083423264 -0.01235914 -0.029143326 -0.082037471 -0.0079049775 -0.027052378 -0.085490532 -0.03971668 -0.035739299 0.0019550985 -0.036796696 -0.040931914 0.00041226498 -0.038485382 -0.035703629 0.0059680045 -0.033317123 0.015165697 -0.026012782 -0.027222553 0.02078123 -0.017965337 -0.028616929 0.018861651 -0.031938758 -0.016415045 0.0014298317 -0.078027055 -0.0076847416 -0.001806672 -0.085244626 -0.017409571 -0.0044528274 -0.078909881 -0.018211331 0.017274506 -0.065387972 -0.015178837 0.014694066 -0.071168005 -0.023791106 0.010291605 -0.066088535 -0.026926395 -0.0291552 -0.069319747 -0.018669054 -0.034647673 -0.074864946 -0.028138096 -0.032211367 -0.066819876 -0.019688884 -0.039273035 -0.071264476 -0.028138096 -0.032211367 -0.066819876 -0.018669054 -0.034647673 -0.074864946 -0.040333275 0.0054190112 2.0541163e-05 -0.037106141 0.0090320585 0.0054399567 -0.037779901 0.0095759165 0.0014970322 -0.040333275 0.0054190112 2.0541163e-05 -0.037779901 0.0095759165 0.0014970322 -0.043351978 0.0029675975 -0.0086286543 -0.0093267979 -0.038266335 -0.080315441 -0.0079505844 -0.033438284 -0.083423264 -0.0040464159 -0.034583148 -0.084991619 -0.016368212 0.022193093 -0.060396533 -0.014058882 0.019859465 -0.066786639 -0.018211331 0.017274506 -0.065387972 -0.0093267979 -0.038266335 -0.080315441 -0.0040464159 -0.034583148 -0.084991619 -0.0023843839 -0.040193755 -0.082855769 -0.025293047 -0.039134637 -0.065342195 -0.016848898 -0.043503921 -0.070778981 -0.014956718 -0.049217857 -0.066833921 -0.025293047 -0.039134637 -0.065342195 -0.019688884 -0.039273035 -0.071264476 -0.016848898 -0.043503921 -0.070778981 -0.038485382 -0.035703629 0.0059680045 -0.033996008 -0.041172989 0.0093196705 -0.034611721 -0.036881447 0.012068474 -0.040392507 -0.036614951 -0.0044170073 -0.043975204 -0.02957923 -0.0063852998 -0.043480553 -0.03311611 -0.011942601 -0.014956718 -0.049217857 -0.066833921 -0.0075441077 -0.05336497 -0.068254322 -0.010404347 -0.056670267 -0.059897248 -0.01235914 -0.029143326 -0.082037471 -0.015650583 -0.024461079 -0.080659062 -0.010886106 -0.021087905 -0.084681652 -0.040333275 0.0054190112 2.0541163e-05 -0.037610456 0.0051271347 0.0079945456 -0.037106141 0.0090320585 0.0054399567 -0.027222553 0.02078123 -0.017965337 -0.028501868 0.019613395 -0.0043523414 -0.021759545 0.024602385 -0.023896573 -0.043351978 0.0029675975 -0.0086286543 -0.037779901 0.0095759165 0.0014970322 -0.042655993 0.0052839364 -0.01478175 -0.014956718 -0.049217857 -0.066833921 -0.0091387304 -0.047731772 -0.073537767 -0.0075441077 -0.05336497 -0.068254322 -0.019688884 -0.039273035 -0.071264476 -0.015366707 -0.038410537 -0.075730741 -0.016848898 -0.043503921 -0.070778981 -0.038485382 -0.035703629 0.0059680045 -0.036796696 -0.040931914 0.00041226498 -0.033996008 -0.041172989 0.0093196705 -0.0079505844 -0.033438284 -0.083423264 -0.0079049775 -0.027052378 -0.085490532 -0.0050393711 -0.030930851 -0.085899048 -0.0079505844 -0.033438284 -0.083423264 -0.0050393711 -0.030930851 -0.085899048 -0.0040464159 -0.034583148 -0.084991619 -0.029094974 0.0059513268 -0.063573226 -0.022853306 0.006050698 -0.070057198 -0.027366852 0.0022996361 -0.067546941 -0.040392507 -0.036614951 -0.0044170073 -0.043480553 -0.03311611 -0.011942601 -0.042654518 -0.03498577 -0.018200105 -0.040392507 -0.036614951 -0.0044170073 -0.042654518 -0.03498577 -0.018200105 -0.035057075 -0.04354845 -0.0055135768 -0.019934235 -0.022002971 -0.077441037 -0.014929178 -0.014854321 -0.082060531 -0.015650583 -0.024461079 -0.080659062 -0.019934235 -0.022002971 -0.077441037 -0.019543787 -0.014741042 -0.078220911 -0.014929178 -0.014854321 -0.082060531 -0.036796696 -0.040931914 0.00041226498 -0.032484561 -0.044688944 0.0048213298 -0.033996008 -0.041172989 0.0093196705 -0.01235914 -0.029143326 -0.082037471 -0.010886106 -0.021087905 -0.084681652 -0.0079049775 -0.027052378 -0.085490532 -0.026926395 -0.0291552 -0.069319747 -0.017512351 -0.030737052 -0.077472486 -0.018669054 -0.034647673 -0.074864946 -0.040392507 -0.036614951 -0.0044170073 -0.035057075 -0.04354845 -0.0055135768 -0.036796696 -0.040931914 0.00041226498 -0.014956718 -0.049217857 -0.066833921 -0.016848898 -0.043503921 -0.070778981 -0.0091387304 -0.047731772 -0.073537767 -0.019688884 -0.039273035 -0.071264476 -0.018669054 -0.034647673 -0.074864946 -0.015366707 -0.038410537 -0.075730741 -0.032976627 0.01594786 -0.013849333 -0.027222553 0.02078123 -0.017965337 -0.033317123 0.015165697 -0.026012782 -0.026926395 -0.0291552 -0.069319747 -0.024933739 -0.020694219 -0.073069409 -0.017512351 -0.030737052 -0.077472486 -0.015650583 -0.024461079 -0.080659062 -0.011009173 -0.012160782 -0.084858418 -0.010886106 -0.021087905 -0.084681652 -0.036796696 -0.040931914 0.00041226498 -0.02945485 -0.048623618 -0.004104014 -0.032484561 -0.044688944 0.0048213298 -0.0040464159 -0.034583148 -0.084991619 -0.00015486788 -0.027181257 -0.08890406 -0.0023843839 -0.040193755 -0.082855769 -0.0040464159 -0.034583148 -0.084991619 -0.0050393711 -0.030930851 -0.085899048 -0.00015486788 -0.027181257 -0.08890406 -0.036796696 -0.040931914 0.00041226498 -0.035057075 -0.04354845 -0.0055135768 -0.02945485 -0.048623618 -0.004104014 -0.035057075 -0.04354845 -0.0055135768 -0.042654518 -0.03498577 -0.018200105 -0.033002596 -0.045687273 -0.012306136 -0.016848898 -0.043503921 -0.070778981 -0.015366707 -0.038410537 -0.075730741 -0.010260886 -0.043735065 -0.076157041 -0.015650583 -0.024461079 -0.080659062 -0.014929178 -0.014854321 -0.082060531 -0.011009173 -0.012160782 -0.084858418 -0.033002596 -0.045687273 -0.012306136 -0.042654518 -0.03498577 -0.018200105 -0.042046811 -0.035956129 -0.021959208 -0.022744307 0.014603824 -0.062920317 -0.018211331 0.017274506 -0.065387972 -0.023791106 0.010291605 -0.066088535 -0.0079049775 -0.027052378 -0.085490532 -0.0047766794 -0.02437691 -0.087701291 -0.0050393711 -0.030930851 -0.085899048 -0.0158196 0.0063191783 -0.076384664 -0.0060697496 0.0097750025 -0.081276014 -0.008446862 0.0035254296 -0.082992405 -0.035057075 -0.04354845 -0.0055135768 -0.033002596 -0.045687273 -0.012306136 -0.02945485 -0.048623618 -0.004104014 -0.033002596 -0.045687273 -0.012306136 -0.042046811 -0.035956129 -0.021959208 -0.034673654 -0.043714941 -0.022304134 -0.0079049775 -0.027052378 -0.085490532 -0.010886106 -0.021087905 -0.084681652 -0.0047766794 -0.02437691 -0.087701291 -0.024933739 -0.020694219 -0.073069409 -0.019934235 -0.022002971 -0.077441037 -0.017512351 -0.030737052 -0.077472486 -0.016848898 -0.043503921 -0.070778981 -0.010260886 -0.043735065 -0.076157041 -0.0091387304 -0.047731772 -0.073537767 -0.033002596 -0.045687273 -0.012306136 -0.023749229 -0.05319095 -0.020894526 -0.02945485 -0.048623618 -0.004104014 -0.024739645 -0.0088101327 -0.073172033 -0.019543787 -0.014741042 -0.078220911 -0.024496516 -0.015186015 -0.07376229 -0.039951883 0.0088211745 -0.029547574 -0.033317123 0.015165697 -0.026012782 -0.028616929 0.018861651 -0.031938758 -0.034673654 -0.043714941 -0.022304134 -0.029677989 -0.048329845 -0.023445934 -0.033002596 -0.045687273 -0.012306136 -0.034673654 -0.043714941 -0.022304134 -0.042046811 -0.035956129 -0.021959208 -0.03952321 -0.038273007 -0.033853158 -0.033002596 -0.045687273 -0.012306136 -0.029677989 -0.048329845 -0.023445934 -0.023749229 -0.05319095 -0.020894526 -0.022744307 0.014603824 -0.062920317 -0.016368212 0.022193093 -0.060396533 -0.018211331 0.017274506 -0.065387972 -0.0090886336 0.017978139 -0.07316602 -0.0020822913 0.011898655 -0.081834778 -0.0060697496 0.0097750025 -0.081276014 -0.0050393711 -0.030930851 -0.085899048 -0.0047766794 -0.02437691 -0.087701291 -0.00015486788 -0.027181257 -0.08890406 -0.034673654 -0.043714941 -0.022304134 -0.03952321 -0.038273007 -0.033853158 -0.032786604 -0.044399232 -0.036707111 -0.015353015 0.026547981 -0.051308777 -0.011182442 0.028209558 -0.054550469 -0.014951128 0.024927143 -0.056899477 -0.034673654 -0.043714941 -0.022304134 -0.032786604 -0.044399232 -0.036707111 -0.026131842 -0.05053097 -0.035010315 -0.034673654 -0.043714941 -0.022304134 -0.026131842 -0.05053097 -0.035010315 -0.029677989 -0.048329845 -0.023445934 -0.0091387304 -0.047731772 -0.073537767 -0.0056389412 -0.049780622 -0.073797107 -0.0075441077 -0.05336497 -0.068254322 -0.022853306 0.006050698 -0.070057198 -0.0158196 0.0063191783 -0.076384664 -0.016415045 0.0014298317 -0.078027055 -0.01704425 -0.0084537528 -0.079911172 -0.0073480629 -0.0074114939 -0.086635277 -0.011009173 -0.012160782 -0.084858418 -0.024739645 -0.0088101327 -0.073172033 -0.01704425 -0.0084537528 -0.079911172 -0.019543787 -0.014741042 -0.078220911 -0.033177894 0.015690712 -0.0046772906 -0.027222553 0.02078123 -0.017965337 -0.032976627 0.01594786 -0.013849333 -0.033177894 0.015690712 -0.0046772906 -0.028501868 0.019613395 -0.0043523414 -0.027222553 0.02078123 -0.017965337 -0.022341961 0.022669094 -0.044410348 -0.02436964 0.022293281 -0.032039318 -0.016467702 0.026522519 -0.047956217 -0.025547104 -0.0037796786 -0.071431533 -0.016415045 0.0014298317 -0.078027055 -0.017409571 -0.0044528274 -0.078909881 -0.008446862 0.0035254296 -0.082992405 2.4605886e-05 -0.0012639222 -0.088509396 -0.0076847416 -0.001806672 -0.085244626 -0.014951128 0.024927143 -0.056899477 -0.012613724 0.023101114 -0.063684307 -0.016368212 0.022193093 -0.060396533 -0.037106141 0.0090320585 0.0054399567 -0.033886615 0.013444913 0.0052782008 -0.037779901 0.0095759165 0.0014970322 -0.024090424 0.018959669 -0.052851286 -0.022287646 0.018017719 -0.058509495 -0.032388646 0.0095332274 -0.055171467 -0.022853306 0.006050698 -0.070057198 -0.014117155 0.01207792 -0.074226804 -0.0158196 0.0063191783 -0.076384664 -0.037779901 0.0095759165 0.0014970322 -0.033886615 0.013444913 0.0052782008 -0.035810195 0.013059678 -0.0061056642 -0.03964401 0.0012430106 0.0053487113 -0.037610456 0.0051271347 0.0079945456 -0.040333275 0.0054190112 2.0541163e-05 -0.037106141 0.0090320585 0.0054399567 -0.034402858 0.006938112 0.012375995 -0.03310211 0.012734056 0.0088161277 -0.0073480629 -0.0074114939 -0.086635277 -0.0070609581 -0.011204576 -0.087221377 -0.011009173 -0.012160782 -0.084858418 -0.041094907 -0.014139099 0.0045341803 -0.036499675 -0.014471056 0.01315185 -0.039489165 -0.0068103485 0.0073728743 -0.022341961 0.022669094 -0.044410348 -0.015353015 0.026547981 -0.051308777 -0.024090424 0.018959669 -0.052851286 -0.014058882 0.019859465 -0.066786639 -0.0090886336 0.017978139 -0.07316602 -0.014117155 0.01207792 -0.074226804 -0.022341961 0.022669094 -0.044410348 -0.016467702 0.026522519 -0.047956217 -0.015353015 0.026547981 -0.051308777 -0.035810195 0.013059678 -0.0061056642 -0.032976627 0.01594786 -0.013849333 -0.041679319 0.0069725541 -0.020621236 -0.0076847416 -0.001806672 -0.085244626 0.00048079592 -0.0085510742 -0.09014684 -0.0073480629 -0.0074114939 -0.086635277 -0.032388646 0.0095332274 -0.055171467 -0.022287646 0.018017719 -0.058509495 -0.022744307 0.014603824 -0.062920317 -0.02436964 0.022293281 -0.032039318 -0.016086668 0.027652903 -0.040424149 -0.016467702 0.026522519 -0.047956217 -0.0090886336 0.017978139 -0.07316602 -0.0051374179 0.02105982 -0.072546788 -0.0020822913 0.011898655 -0.081834778 -0.011009173 -0.012160782 -0.084858418 -0.0070609581 -0.011204576 -0.087221377 -0.0044628237 -0.015984336 -0.088698111 -0.0076847416 -0.001806672 -0.085244626 2.4605886e-05 -0.0012639222 -0.088509396 0.00048079592 -0.0085510742 -0.09014684 -0.0090886336 0.017978139 -0.07316602 -0.0071535208 0.02467897 -0.066455215 -0.0051374179 0.02105982 -0.072546788 -0.039489165 -0.0068103485 0.0073728743 -0.03964401 0.0012430106 0.0053487113 -0.043814346 -0.002500006 -0.004281465 -0.035810195 0.013059678 -0.0061056642 -0.033886615 0.013444913 0.0052782008 -0.033177894 0.015690712 -0.0046772906 -0.041679319 0.0069725541 -0.020621236 -0.032976627 0.01594786 -0.013849333 -0.039951883 0.0088211745 -0.029547574 -0.037106141 0.0090320585 0.0054399567 -0.03310211 0.012734056 0.0088161277 -0.033886615 0.013444913 0.0052782008 -0.025547104 -0.0037796786 -0.071431533 -0.017409571 -0.0044528274 -0.078909881 -0.024739645 -0.0088101327 -0.073172033 -0.016467702 0.026522519 -0.047956217 -0.016086668 0.027652903 -0.040424149 -0.013379567 0.028490473 -0.048282154 -0.036499675 -0.014471056 0.01315185 -0.035199225 -0.0062296288 0.014303654 -0.039489165 -0.0068103485 0.0073728743 -0.0073480629 -0.0074114939 -0.086635277 0.00048079592 -0.0085510742 -0.09014684 -0.0070609581 -0.011204576 -0.087221377 -0.033886615 0.013444913 0.0052782008 -0.030482508 0.017421808 0.0014027222 -0.033177894 0.015690712 -0.0046772906 -0.0158196 0.0063191783 -0.076384664 -0.008446862 0.0035254296 -0.082992405 -0.012459825 0.0024329787 -0.080746964 -0.039489165 -0.0068103485 0.0073728743 -0.03635814 -0.0032358072 0.012287536 -0.03964401 0.0012430106 0.0053487113 -0.024090424 0.018959669 -0.052851286 -0.015353015 0.026547981 -0.051308777 -0.016368212 0.022193093 -0.060396533 -0.043704439 -0.00054404937 -0.0052212705 -0.040333275 0.0054190112 2.0541163e-05 -0.043351978 0.0029675975 -0.0086286543 -0.036499675 -0.014471056 0.01315185 -0.035479732 -0.014484318 0.014567102 -0.035199225 -0.0062296288 0.014303654 -0.023791106 0.010291605 -0.066088535 -0.022853306 0.006050698 -0.070057198 -0.029094974 0.0059513268 -0.063573226 -0.035810195 0.013059678 -0.0061056642 -0.033177894 0.015690712 -0.0046772906 -0.032976627 0.01594786 -0.013849333 -0.024739645 -0.0088101327 -0.073172033 -0.017409571 -0.0044528274 -0.078909881 -0.01704425 -0.0084537528 -0.079911172 0.00048079592 -0.0085510742 -0.09014684 0.00057823578 -0.01606413 -0.090580724 -0.0070609581 -0.011204576 -0.087221377 -0.0158196 0.0063191783 -0.076384664 -0.012459825 0.0024329787 -0.080746964 -0.016415045 0.0014298317 -0.078027055 -0.043814346 -0.002500006 -0.004281465 -0.040333275 0.0054190112 2.0541163e-05 -0.043704439 -0.00054404937 -0.0052212705 -0.0070609581 -0.011204576 -0.087221377 0.00057823578 -0.01606413 -0.090580724 -0.0044628237 -0.015984336 -0.088698111 -0.015353015 0.026547981 -0.051308777 -0.013379567 0.028490473 -0.048282154 -0.011182442 0.028209558 -0.054550469 -0.024090424 0.018959669 -0.052851286 -0.016368212 0.022193093 -0.060396533 -0.022287646 0.018017719 -0.058509495 -0.032388646 0.0095332274 -0.055171467 -0.022744307 0.014603824 -0.062920317 -0.029094974 0.0059513268 -0.063573226 -0.03635814 -0.0032358072 0.012287536 -0.037610456 0.0051271347 0.0079945456 -0.03964401 0.0012430106 0.0053487113 -0.039489165 -0.0068103485 0.0073728743 -0.035199225 -0.0062296288 0.014303654 -0.03635814 -0.0032358072 0.012287536 -0.033886615 0.013444913 0.0052782008 -0.03310211 0.012734056 0.0088161277 -0.030482508 0.017421808 0.0014027222 -0.043814346 -0.002500006 -0.004281465 -0.03964401 0.0012430106 0.0053487113 -0.040333275 0.0054190112 2.0541163e-05 -0.029094974 0.0059513268 -0.063573226 -0.022744307 0.014603824 -0.062920317 -0.023791106 0.010291605 -0.066088535 -0.039951883 0.0088211745 -0.029547574 -0.032976627 0.01594786 -0.013849333 -0.033317123 0.015165697 -0.026012782 -0.016467702 0.026522519 -0.047956217 -0.013379567 0.028490473 -0.048282154 -0.015353015 0.026547981 -0.051308777 -0.014117155 0.01207792 -0.074226804 -0.0090886336 0.017978139 -0.07316602 -0.0060697496 0.0097750025 -0.081276014 -0.015353015 0.026547981 -0.051308777 -0.014951128 0.024927143 -0.056899477 -0.016368212 0.022193093 -0.060396533 -0.030482508 0.017421808 0.0014027222 -0.028501868 0.019613395 -0.0043523414 -0.033177894 0.015690712 -0.0046772906 -0.014117155 0.01207792 -0.074226804 -0.0060697496 0.0097750025 -0.081276014 -0.0158196 0.0063191783 -0.076384664 -0.022287646 0.018017719 -0.058509495 -0.016368212 0.022193093 -0.060396533 -0.022744307 0.014603824 -0.062920317 + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052

+
+
+
+
+ + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + + + + + + + + + + + + + +
diff --git a/external/rlbench/urdfs/panda/meshes/Pandalink6visual_vis_2.dae b/external/rlbench/urdfs/panda/meshes/Pandalink6visual_vis_2.dae new file mode 100644 index 0000000000000000000000000000000000000000..114b3450f9fe00b1374ff0be33635a3c26d30793 --- /dev/null +++ b/external/rlbench/urdfs/panda/meshes/Pandalink6visual_vis_2.dae @@ -0,0 +1,84 @@ + + + + + Assimp + Assimp Exporter + + 2023-09-26T11:24:21 + 2023-09-26T11:24:21 + + Y_UP + + + + + + + + 0 0 0 4.5895327e-41 + + + 0.98000002 0.98000002 0.98000002 4.5893926e-41 + + + 0.98000002 0.98000002 0.98000002 4.5893926e-41 + + + 0.25 0.25 0.25 3.6295857e-33 + + + + + + + + + + + + + + + + -0.034346666 -0.034698643 0.013597585 -0.033922698 -0.025885465 0.016879354 -0.034359373 -0.023353644 0.015494579 -0.034929864 -0.0136336 0.018540738 -0.034359373 -0.023353644 0.015494579 -0.033922698 -0.025885465 0.016879354 0.025044223 0.06355162 0.021832388 0.021953925 0.062936455 0.01779535 0.019670764 0.064154647 0.017758433 0.025044223 0.06355162 0.021832388 0.025574753 0.061552886 0.019764291 0.021953925 0.062936455 0.01779535 0.019670764 0.064154647 0.017758433 0.021953925 0.062936455 0.01779535 0.013515718 0.06455148 0.01473712 0.013515718 0.06455148 0.01473712 0.021953925 0.062936455 0.01779535 0.015848329 0.063823394 0.014758877 0.013515718 0.06455148 0.01473712 0.015848329 0.063823394 0.014758877 0.0093972348 0.064667821 0.013492428 0.015848329 0.063823394 0.014758877 0.0098030176 0.062773086 0.011557786 0.0093972348 0.064667821 0.013492428 0.027919509 0.063073359 0.024852104 0.025574753 0.061552886 0.019764291 0.025044223 0.06355162 0.021832388 0.025845308 0.0072811274 0.0071062366 0.028355209 0.027356759 0.010693832 0.029828062 0.022518672 0.014215504 0.028355209 0.027356759 0.010693832 0.025845308 0.0072811274 0.0071062366 0.026492206 0.014600634 0.0074293828 0.027936239 0.035009686 -0.035046987 0.024018575 0.035128511 -0.037903238 0.025232237 0.037048504 -0.029709291 0.024505733 0.04449603 -0.0045634476 0.025427908 0.043306787 -0.003105751 0.026508665 0.038194899 -0.016553339 0.026322933 0.019992622 0.003704411 0.025845308 0.0072811274 0.0071062366 0.026454436 0.01845384 -0.00026660052 0.026492206 0.014600634 0.0074293828 0.025845308 0.0072811274 0.0071062366 0.026322933 0.019992622 0.003704411 0.035831559 0.027147522 0.023644529 0.029186985 0.014399325 0.013271302 0.029828062 0.022518672 0.014215504 0.024018575 0.035128511 -0.037903238 0.022231547 0.039224975 -0.02606749 0.025232237 0.037048504 -0.029709291 0.029287349 0.028635114 0.013086087 0.029828062 0.022518672 0.014215504 0.028355209 0.027356759 0.010693832 0.02560181 0.037899293 -0.02499764 0.025232237 0.037048504 -0.029709291 0.022231547 0.039224975 -0.02606749 0.026322933 0.019992622 0.003704411 0.026454436 0.01845384 -0.00026660052 0.027090859 0.033334244 0.00042370107 0.034526121 0.03643585 0.023094688 0.035831559 0.027147522 0.023644529 0.029828062 0.022518672 0.014215504 0.029287349 0.028635114 0.013086087 0.03209988 0.032039829 0.018833108 0.029828062 0.022518672 0.014215504 0.018098772 0.039830901 -0.027114119 0.024018575 0.035128511 -0.037903238 0.021030853 0.035142962 -0.039213959 0.028157281 0.02589003 -0.0086628301 0.027204288 0.027159484 -0.0039610174 0.026454436 0.01845384 -0.00026660052 0.032541871 0.054116111 0.02469088 0.028977085 0.051318847 0.018095167 0.031475097 0.058155492 0.024948763 0.018098772 0.039830901 -0.027114119 0.019985378 0.043705814 -0.016099803 0.022231547 0.039224975 -0.02606749 0.029666891 0.03428553 0.014362337 0.03209988 0.032039829 0.018833108 0.029287349 0.028635114 0.013086087 0.031475097 0.058155492 0.024948763 0.027719634 0.05363195 0.017058522 0.029223116 0.060454857 0.023197696 0.029287349 0.028635114 0.013086087 0.027822446 0.032522891 0.0079529267 0.029666891 0.03428553 0.014362337 0.027572252 0.034553494 -0.010711103 0.028157281 0.02589003 -0.0086628301 0.029300008 0.02962864 -0.014853771 0.027682237 0.030607026 -0.0079151802 0.028157281 0.02589003 -0.0086628301 0.027572252 0.034553494 -0.010711103 0.027719634 0.05363195 0.017058522 0.025561761 0.055743646 0.015165801 0.029223116 0.060454857 0.023197696 0.029666891 0.03428553 0.014362337 0.027822446 0.032522891 0.0079529267 0.027899617 0.039232235 0.0089848116 0.034526121 0.03643585 0.023094688 0.03209988 0.032039829 0.018833108 0.031303145 0.0409052 0.019051515 0.027572252 0.034553494 -0.010711103 0.029300008 0.02962864 -0.014853771 0.027152333 0.036909461 -0.013959792 0.030391484 0.033208285 -0.024030449 0.027152333 0.036909461 -0.013959792 0.029300008 0.02962864 -0.014853771 0.029257538 0.034127343 -0.0215619 0.027152333 0.036909461 -0.013959792 0.030391484 0.033208285 -0.024030449 0.027919509 0.063073359 0.024852104 0.029223116 0.060454857 0.023197696 0.025574753 0.061552886 0.019764291 0.026868189 0.037672106 -0.002454102 0.027572252 0.034553494 -0.010711103 0.027152333 0.036909461 -0.013959792 0.026508665 0.038194899 -0.016553339 0.027152333 0.036909461 -0.013959792 0.029257538 0.034127343 -0.0215619 0.029757537 0.034715418 -0.031386647 0.02560181 0.037899293 -0.02499764 0.030512607 0.033690978 -0.027757565 0.017091842 0.055316709 0.0048632142 0.015489021 0.050997812 -0.0037776649 0.012792971 0.052327029 -0.0025024654 0.026508665 0.038194899 -0.016553339 0.029257538 0.034127343 -0.0215619 0.030391484 0.033208285 -0.024030449 -0.028532809 -0.032355886 -0.062930472 -0.027875304 0.0037027909 -0.063436255 -0.025625912 -0.0022414504 -0.068633392 -0.028532809 -0.032355886 -0.062930472 -0.025625912 -0.0022414504 -0.068633392 -0.024156779 -0.011914036 -0.071669169 0.026508665 0.038194899 -0.016553339 0.030391484 0.033208285 -0.024030449 0.027322216 0.036703259 -0.02439506 0.017950203 0.058029525 0.0097820517 0.017091842 0.055316709 0.0048632142 0.013654357 0.059716292 0.0096605746 0.030512607 0.033690978 -0.027757565 0.027322216 0.036703259 -0.02439506 0.030391484 0.033208285 -0.024030449 0.017091842 0.055316709 0.0048632142 0.012792971 0.052327029 -0.0025024654 0.01105615 0.057655144 0.0056233415 0.028373469 0.048041496 0.015110124 0.027899617 0.039232235 0.0089848116 0.026719688 0.045940436 0.0079566194 0.027936239 0.035009686 -0.035046987 0.025232237 0.037048504 -0.029709291 0.029757537 0.034715418 -0.031386647 0.027152333 0.036909461 -0.013959792 0.026508665 0.038194899 -0.016553339 0.026600931 0.03835674 -0.011221264 0.030060882 0.0036612141 0.014636818 0.031670149 -0.0099382466 0.016467055 0.02801534 -0.011738626 0.01313902 0.034694202 -0.010126338 0.019657275 0.031670149 -0.0099382466 0.016467055 0.030060882 0.0036612141 0.014636818 0.027322216 0.036703259 -0.02439506 0.024189172 0.041659929 -0.014323764 0.026508665 0.038194899 -0.016553339 0.029977554 0.010400912 0.014450363 0.033903111 0.0057931044 0.019161858 0.030060882 0.0036612141 0.014636818 0.026743654 0.04245482 0.0040129311 0.026392104 0.040071003 -0.0040806546 0.025427908 0.043306787 -0.003105751 0.026600931 0.03835674 -0.011221264 0.026508665 0.038194899 -0.016553339 0.025427908 0.043306787 -0.003105751 0.02560181 0.037899293 -0.02499764 0.024189172 0.041659929 -0.014323764 0.027322216 0.036703259 -0.02439506 -0.028532809 -0.032355886 -0.062930472 -0.030673137 0.0073772296 -0.055874988 -0.027875304 0.0037027909 -0.063436255 0.02560181 0.037899293 -0.02499764 0.022697853 0.041832443 -0.017461278 0.024189172 0.041659929 -0.014323764 0.026508665 0.038194899 -0.016553339 0.024189172 0.041659929 -0.014323764 0.024505733 0.04449603 -0.0045634476 0.022231547 0.039224975 -0.02606749 0.019985378 0.043705814 -0.016099803 0.02560181 0.037899293 -0.02499764 0.024189172 0.041659929 -0.014323764 0.022939736 0.046239268 -0.0051389067 0.024505733 0.04449603 -0.0045634476 0.018098772 0.039830901 -0.027114119 0.022231547 0.039224975 -0.02606749 0.024018575 0.035128511 -0.037903238 0.019985378 0.043705814 -0.016099803 0.022697853 0.041832443 -0.017461278 0.02560181 0.037899293 -0.02499764 0.024189172 0.041659929 -0.014323764 0.019210819 0.048733309 -0.0055038845 0.022939736 0.046239268 -0.0051389067 0.028977085 0.051318847 0.018095167 0.027719634 0.05363195 0.017058522 0.031475097 0.058155492 0.024948763 0.018098772 0.039830901 -0.027114119 0.0151806 0.04612492 -0.013611236 0.019985378 0.043705814 -0.016099803 0.026322933 0.019992622 0.003704411 0.027090859 0.033334244 0.00042370107 0.02733811 0.031256206 0.005268197 0.015489021 0.050997812 -0.0037776649 0.019210819 0.048733309 -0.0055038845 0.019985378 0.043705814 -0.016099803 0.025427908 0.043306787 -0.003105751 0.024992971 0.051380467 0.0093337251 0.025513271 0.049636237 0.0083052702 -0.028532809 -0.032355886 -0.062930472 -0.031516165 -0.035745889 -0.055006701 -0.030673137 0.0073772296 -0.055874988 0.024992971 0.051380467 0.0093337251 0.022939736 0.046239268 -0.0051389067 0.023234269 0.052752778 0.0075983363 0.027204288 0.027159484 -0.0039610174 0.027090859 0.033334244 0.00042370107 0.026454436 0.01845384 -0.00026660052 0.025574753 0.061552886 0.019764291 0.029223116 0.060454857 0.023197696 0.025561761 0.055743646 0.015165801 0.019985378 0.043705814 -0.016099803 0.0151806 0.04612492 -0.013611236 0.015489021 0.050997812 -0.0037776649 0.031303145 0.0409052 0.019051515 0.029666891 0.03428553 0.014362337 0.028373469 0.048041496 0.015110124 0.026743654 0.04245482 0.0040129311 0.026868189 0.037672106 -0.002454102 0.026392104 0.040071003 -0.0040806546 0.025561761 0.055743646 0.015165801 0.023897156 0.054813661 0.011700554 0.025574753 0.061552886 0.019764291 -0.034753643 0.0079733171 -0.043283027 -0.030673137 0.0073772296 -0.055874988 -0.033635445 -0.036145736 -0.048699245 0.026719688 0.045940436 0.0079566194 0.025513271 0.049636237 0.0083052702 0.028373469 0.048041496 0.015110124 -0.033635445 -0.036145736 -0.048699245 -0.030673137 0.0073772296 -0.055874988 -0.031516165 -0.035745889 -0.055006701 0.028373469 0.048041496 0.015110124 0.025513271 0.049636237 0.0083052702 0.024992971 0.051380467 0.0093337251 0.017091842 0.055316709 0.0048632142 0.021289924 0.05371166 0.0061192592 0.019210819 0.048733309 -0.0055038845 0.024992971 0.051380467 0.0093337251 0.025427908 0.043306787 -0.003105751 0.024505733 0.04449603 -0.0045634476 0.024992971 0.051380467 0.0093337251 0.024505733 0.04449603 -0.0045634476 0.022939736 0.046239268 -0.0051389067 0.023897156 0.054813661 0.011700554 0.025561761 0.055743646 0.015165801 0.024992971 0.051380467 0.0093337251 0.012792971 0.052327029 -0.0025024654 0.015489021 0.050997812 -0.0037776649 0.0151806 0.04612492 -0.013611236 0.025574753 0.061552886 0.019764291 0.023897156 0.054813661 0.011700554 0.021953925 0.062936455 0.01779535 0.021953925 0.062936455 0.01779535 0.023897156 0.054813661 0.011700554 0.020259844 0.05701017 0.010170178 0.023234269 0.052752778 0.0075983363 0.021289924 0.05371166 0.0061192592 0.023897156 0.054813661 0.011700554 0.021289924 0.05371166 0.0061192592 0.020259844 0.05701017 0.010170178 0.023897156 0.054813661 0.011700554 0.021289924 0.05371166 0.0061192592 0.017091842 0.055316709 0.0048632142 0.020259844 0.05701017 0.010170178 0.02733811 0.031256206 0.005268197 0.026492206 0.014600634 0.0074293828 0.026322933 0.019992622 0.003704411 0.028717414 -0.017602907 0.013346219 0.02801534 -0.011738626 0.01313902 0.031670149 -0.0099382466 0.016467055 0.013654357 0.059716292 0.0096605746 0.017091842 0.055316709 0.0048632142 0.01105615 0.057655144 0.0056233415 0.027682237 0.030607026 -0.0079151802 0.027204288 0.027159484 -0.0039610174 0.028157281 0.02589003 -0.0086628301 0.027017972 0.03568884 -0.0017082092 0.027090859 0.033334244 0.00042370107 0.027204288 0.027159484 -0.0039610174 0.030060882 0.0036612141 0.014636818 0.027235745 -0.0047838097 0.011872026 0.028193001 0.0017818011 0.012335535 0.027822446 0.032522891 0.0079529267 0.02733811 0.031256206 0.005268197 0.027090859 0.033334244 0.00042370107 0.027017972 0.03568884 -0.0017082092 0.027204288 0.027159484 -0.0039610174 0.027682237 0.030607026 -0.0079151802 -0.034753643 0.0079733171 -0.043283027 -0.037024017 -0.035868596 -0.037125152 -0.037783712 0.0072804405 -0.032098498 -0.037783712 0.0072804405 -0.032098498 -0.037024017 -0.035868596 -0.037125152 -0.039438944 -0.034513537 -0.02730483 0.026868189 0.037672106 -0.002454102 0.027682237 0.030607026 -0.0079151802 0.027572252 0.034553494 -0.010711103 -0.033635445 -0.036145736 -0.048699245 -0.037024017 -0.035868596 -0.037125152 -0.034753643 0.0079733171 -0.043283027 0.027017972 0.03568884 -0.0017082092 0.027682237 0.030607026 -0.0079151802 0.026868189 0.037672106 -0.002454102 0.027822446 0.032522891 0.0079529267 0.027090859 0.033334244 0.00042370107 0.027017972 0.03568884 -0.0017082092 0.029977554 0.010400912 0.014450363 0.035249565 0.0080825938 0.021023072 0.033903111 0.0057931044 0.019161858 0.027017972 0.03568884 -0.0017082092 0.027899617 0.039232235 0.0089848116 0.027822446 0.032522891 0.0079529267 0.029666891 0.03428553 0.014362337 0.027899617 0.039232235 0.0089848116 0.028373469 0.048041496 0.015110124 -0.037783712 0.0072804405 -0.032098498 -0.039438944 -0.034513537 -0.02730483 -0.040240329 0.0051049907 -0.021032808 0.029186985 0.014399325 0.013271302 0.035249565 0.0080825938 0.021023072 0.029977554 0.010400912 0.014450363 0.026600931 0.03835674 -0.011221264 0.026392104 0.040071003 -0.0040806546 0.026868189 0.037672106 -0.002454102 0.027017972 0.03568884 -0.0017082092 0.026743654 0.04245482 0.0040129311 0.027899617 0.039232235 0.0089848116 0.027017972 0.03568884 -0.0017082092 0.026868189 0.037672106 -0.002454102 0.026743654 0.04245482 0.0040129311 0.028977085 0.051318847 0.018095167 0.031303145 0.0409052 0.019051515 0.028373469 0.048041496 0.015110124 0.035249565 0.0080825938 0.021023072 0.029186985 0.014399325 0.013271302 0.035831559 0.027147522 0.023644529 -0.040240329 0.0051049907 -0.021032808 -0.039438944 -0.034513537 -0.02730483 -0.040949978 -0.03281058 -0.019812342 0.027899617 0.039232235 0.0089848116 0.026743654 0.04245482 0.0040129311 0.026719688 0.045940436 0.0079566194 0.026392104 0.040071003 -0.0040806546 0.026600931 0.03835674 -0.011221264 0.025427908 0.043306787 -0.003105751 0.025427908 0.043306787 -0.003105751 0.026719688 0.045940436 0.0079566194 0.026743654 0.04245482 0.0040129311 0.028977085 0.051318847 0.018095167 0.028373469 0.048041496 0.015110124 0.027719634 0.05363195 0.017058522 0.025513271 0.049636237 0.0083052702 0.026719688 0.045940436 0.0079566194 0.025427908 0.043306787 -0.003105751 0.028373469 0.048041496 0.015110124 0.024992971 0.051380467 0.0093337251 0.027719634 0.05363195 0.017058522 0.034526121 0.03643585 0.023094688 0.029828062 0.022518672 0.014215504 0.03209988 0.032039829 0.018833108 0.019210819 0.048733309 -0.0055038845 0.022697853 0.041832443 -0.017461278 0.019985378 0.043705814 -0.016099803 0.024189172 0.041659929 -0.014323764 0.022697853 0.041832443 -0.017461278 0.019210819 0.048733309 -0.0055038845 0.027822446 0.032522891 0.0079529267 0.028355209 0.027356759 0.010693832 0.026492206 0.014600634 0.0074293828 0.024992971 0.051380467 0.0093337251 0.025561761 0.055743646 0.015165801 0.027719634 0.05363195 0.017058522 0.027822446 0.032522891 0.0079529267 0.026492206 0.014600634 0.0074293828 0.02733811 0.031256206 0.005268197 -0.041967925 -0.03096086 -0.01329416 -0.041734662 0.0024870629 -0.011904577 -0.040949978 -0.03281058 -0.019812342 -0.040949978 -0.03281058 -0.019812342 -0.041734662 0.0024870629 -0.011904577 -0.040240329 0.0051049907 -0.021032808 0.029287349 0.028635114 0.013086087 0.028355209 0.027356759 0.010693832 0.027822446 0.032522891 0.0079529267 0.031303145 0.0409052 0.019051515 0.03209988 0.032039829 0.018833108 0.029666891 0.03428553 0.014362337 0.023234269 0.052752778 0.0075983363 0.022939736 0.046239268 -0.0051389067 0.021289924 0.05371166 0.0061192592 0.023897156 0.054813661 0.011700554 0.024992971 0.051380467 0.0093337251 0.023234269 0.052752778 0.0075983363 -0.041967925 -0.03096086 -0.01329416 -0.042302381 -0.0010040051 -0.007128098 -0.041734662 0.0024870629 -0.011904577 0.019210819 0.048733309 -0.0055038845 0.021289924 0.05371166 0.0061192592 0.022939736 0.046239268 -0.0051389067 0.027322216 0.036703259 -0.02439506 0.030512607 0.033690978 -0.027757565 0.02560181 0.037899293 -0.02499764 0.017091842 0.055316709 0.0048632142 0.019210819 0.048733309 -0.0055038845 0.015489021 0.050997812 -0.0037776649 0.026600931 0.03835674 -0.011221264 0.026868189 0.037672106 -0.002454102 0.027152333 0.036909461 -0.013959792 0.025232237 0.037048504 -0.029709291 0.02560181 0.037899293 -0.02499764 0.029757537 0.034715418 -0.031386647 0.017950203 0.058029525 0.0097820517 0.020259844 0.05701017 0.010170178 0.017091842 0.055316709 0.0048632142 0.032541871 0.054116111 0.02469088 0.031303145 0.0409052 0.019051515 0.028977085 0.051318847 0.018095167 0.031670149 -0.0099382466 0.016467055 0.034694202 -0.010126338 0.019657275 0.033594284 -0.021603739 0.018148052 0.035249565 0.0080825938 0.021023072 0.034694202 -0.010126338 0.019657275 0.033903111 0.0057931044 0.019161858 0.033903111 0.0057931044 0.019161858 0.034694202 -0.010126338 0.019657275 0.030060882 0.0036612141 0.014636818 0.02801534 -0.011738626 0.01313902 0.027235745 -0.0047838097 0.011872026 0.030060882 0.0036612141 0.014636818 0.026716895 0.00031552088 0.010315968 0.028193001 0.0017818011 0.012335535 0.027235745 -0.0047838097 0.011872026 0.030060882 0.0036612141 0.014636818 0.028193001 0.0017818011 0.012335535 0.029977554 0.010400912 0.014450363 0.029828062 0.022518672 0.014215504 0.028193001 0.0017818011 0.012335535 0.026716895 0.00031552088 0.010315968 0.025845308 0.0072811274 0.0071062366 0.029828062 0.022518672 0.014215504 0.026716895 0.00031552088 0.010315968 0.029186985 0.014399325 0.013271302 0.029977554 0.010400912 0.014450363 0.028193001 0.0017818011 0.012335535 0.029828062 0.022518672 0.014215504 0.029186985 0.014399325 0.013271302 0.028193001 0.0017818011 0.012335535 0.033194546 -0.056413367 0.025787462 0.0057050404 -0.051515911 0.020853356 0.032388143 -0.051178984 0.026882105 0.0059270817 -0.056645177 0.019565087 0.0057050404 -0.051515911 0.020853356 0.033194546 -0.056413367 0.025787462 0.0062279482 -0.060874276 0.01797235 0.0059270817 -0.056645177 0.019565087 0.033699166 -0.061897743 0.023749519 0.033699166 -0.061897743 0.023749519 0.0059270817 -0.056645177 0.019565087 0.033194546 -0.056413367 0.025787462 0.0066801775 -0.065508209 0.015674433 0.0062279482 -0.060874276 0.01797235 0.033699166 -0.061897743 0.023749519 0.0056190952 -0.046440773 0.021524962 0.0056640743 -0.041205537 0.021614946 0.032234874 -0.042717207 0.027538948 0.03208578 -0.046914876 0.027374862 0.0056190952 -0.046440773 0.021524962 0.032234874 -0.042717207 0.027538948 0.0067005921 -0.065608971 0.015577059 0.0066801775 -0.065508209 0.015674433 0.031781636 -0.065918155 0.021150917 0.031781636 -0.065918155 0.021150917 0.0066801775 -0.065508209 0.015674433 0.033699166 -0.061897743 0.023749519 0.032388143 -0.051178984 0.026882105 0.0056190952 -0.046440773 0.021524962 0.03208578 -0.046914876 0.027374862 0.0057050404 -0.051515911 0.020853356 0.0056190952 -0.046440773 0.021524962 0.032388143 -0.051178984 0.026882105 -0.035948399 -0.045370489 0.029073913 -0.038993541 -0.041723326 0.038176466 -0.037947025 -0.039234865 0.034220293 -0.037947025 -0.039234865 0.034220293 -0.039080735 -0.038064267 0.037681282 -0.03883766 -0.034741424 0.03499867 -0.02542072 -0.054448556 0.011916625 -0.029541973 -0.052253459 0.016792322 -0.024876416 -0.052574206 0.010146882 -0.0078579085 -0.066023752 0.0036598411 -0.017456256 -0.065906741 0.0064858254 -0.011561802 -0.061422225 0.0044850819 -0.025242658 -0.06044019 0.01196887 -0.028849982 -0.06576962 0.013543203 -0.032709692 -0.06572406 0.017260024 -0.024876416 -0.052574206 0.010146882 -0.029541973 -0.052253459 0.016792322 -0.028866537 -0.048992321 0.01420893 -0.03883766 -0.034741424 0.03499867 -0.040368546 -0.033191357 0.039932836 -0.041468848 -0.026139293 0.035616726 -0.030189782 -0.044115905 0.013121638 -0.031641081 -0.045817953 0.01889151 -0.031127237 -0.042205509 0.01496106 -0.01970391 -0.058155417 0.0078169918 -0.02505271 -0.056855869 0.012017883 -0.018650955 -0.05544319 0.0057696099 -0.034494404 -0.049289521 0.025295477 -0.037241086 -0.047902118 0.031588968 -0.035948399 -0.045370489 0.029073913 0.015198345 0.03840046 -0.031664476 0.016498437 0.034402125 -0.040522434 0.014525927 0.038431153 -0.031405978 0.021322401 0.034060936 -0.03925075 0.016391251 0.033919312 -0.040062577 0.016498437 0.034402125 -0.040522434 -0.02505271 -0.056855869 0.012017883 -0.032709692 -0.06572406 0.017260024 -0.03164592 -0.057509817 0.018893236 -0.022843273 -0.065840513 0.0092273979 -0.028849982 -0.06576962 0.013543203 -0.025242658 -0.06044019 0.01196887 -0.018650955 -0.05544319 0.0057696099 -0.02505271 -0.056855869 0.012017883 -0.02542072 -0.054448556 0.011916625 0.021030853 0.035142962 -0.039213959 0.016498437 0.034402125 -0.040522434 0.017013824 0.035227552 -0.040024705 0.021030853 0.035142962 -0.039213959 0.021322401 0.034060936 -0.03925075 0.016498437 0.034402125 -0.040522434 -0.014574227 -0.057631161 0.0046114037 -0.017369365 -0.061720878 0.0067599546 -0.01745045 -0.059051089 0.0065815849 -0.033120479 -0.032498185 0.017942481 -0.036918476 -0.031614449 0.027379535 -0.035106059 -0.026863441 0.020659689 -0.031127237 -0.042205509 0.01496106 -0.031641081 -0.045817953 0.01889151 -0.033874426 -0.036438249 0.02185094 -0.027896535 -0.054792069 0.014898883 -0.03164592 -0.057509817 0.018893236 -0.033233117 -0.055171374 0.021634456 -0.024876416 -0.052574206 0.010146882 -0.028866537 -0.048992321 0.01420893 -0.027702829 -0.047732189 0.0097777545 -0.031641081 -0.045817953 0.01889151 -0.035948399 -0.045370489 0.029073913 -0.037947025 -0.039234865 0.034220293 -0.028866537 -0.048992321 0.01420893 -0.031641081 -0.045817953 0.01889151 -0.027702829 -0.047732189 0.0097777545 -0.0078223562 -0.061385285 0.0036620088 -0.0078579085 -0.066023752 0.0036598411 -0.011561802 -0.061422225 0.0044850819 -0.011561802 -0.061422225 0.0044850819 -0.017369365 -0.061720878 0.0067599546 -0.014574227 -0.057631161 0.0046114037 -0.014574227 -0.057631161 0.0046114037 -0.01745045 -0.059051089 0.0065815849 -0.01970391 -0.058155417 0.0078169918 -0.018650955 -0.05544319 0.0057696099 -0.02542072 -0.054448556 0.011916625 -0.0198994 -0.053897545 0.0053347708 -0.029541973 -0.052253459 0.016792322 -0.033233117 -0.055171374 0.021634456 -0.034494404 -0.049289521 0.025295477 -0.022385962 -0.051838093 0.0053053605 -0.02542072 -0.054448556 0.011916625 -0.024876416 -0.052574206 0.010146882 -0.027896535 -0.054792069 0.014898883 -0.033233117 -0.055171374 0.021634456 -0.029541973 -0.052253459 0.016792322 -0.031127237 -0.042205509 0.01496106 -0.033874426 -0.036438249 0.02185094 -0.033120479 -0.032498185 0.017942481 -0.02505271 -0.056855869 0.012017883 -0.03164592 -0.057509817 0.018893236 -0.027896535 -0.054792069 0.014898883 -0.011561802 -0.061422225 0.0044850819 -0.014574227 -0.057631161 0.0046114037 -0.0075405049 -0.057829466 0.00263296 -0.022385962 -0.051838093 0.0053053605 -0.024876416 -0.052574206 0.010146882 -0.027702829 -0.047732189 0.0097777545 -0.043464392 -0.065602094 0.038543966 -0.043013737 -0.062844843 0.037016932 -0.040394757 -0.065633878 0.028902546 -0.040394757 -0.065633878 0.028902546 -0.043013737 -0.062844843 0.037016932 -0.041246962 -0.063585714 0.03136307 -0.041246962 -0.063585714 0.03136307 -0.043013737 -0.062844843 0.037016932 -0.042571899 -0.060287591 0.036934957 0.023240278 -0.060911302 0.0096119838 0.023475744 -0.058492728 0.0086995009 0.027131479 -0.059955139 0.012050172 -0.025242658 -0.06044019 0.01196887 -0.032709692 -0.06572406 0.017260024 -0.02505271 -0.056855869 0.012017883 0.027131479 -0.059955139 0.012050172 0.023475744 -0.058492728 0.0086995009 0.026415244 -0.057255175 0.010065997 -0.014574227 -0.057631161 0.0046114037 -0.01970391 -0.058155417 0.0078169918 -0.014554675 -0.055113871 0.0025555014 -0.040394757 -0.065633878 0.028902546 -0.041246962 -0.063585714 0.03136307 -0.039627351 -0.05834993 0.030398952 -0.039627351 -0.05834993 0.030398952 -0.041246962 -0.063585714 0.03136307 -0.042571899 -0.060287591 0.036934957 -0.014554675 -0.055113871 0.0025555014 -0.01970391 -0.058155417 0.0078169918 -0.018650955 -0.05544319 0.0057696099 0.023916196 -0.056307916 0.0068386178 0.024896804 -0.054468807 0.002522019 0.026056906 -0.056018855 0.0077104638 -0.027702829 -0.047732189 0.0097777545 -0.031641081 -0.045817953 0.01889151 -0.030189782 -0.044115905 0.013121638 -0.042571899 -0.060287591 0.036934957 -0.040588442 -0.053612977 0.037550356 -0.038805798 -0.051771 0.033482622 0.023475744 -0.058492728 0.0086995009 0.026056906 -0.056018855 0.0077104638 0.026415244 -0.057255175 0.010065997 -0.017369365 -0.061720878 0.0067599546 -0.017456256 -0.065906741 0.0064858254 -0.022843273 -0.065840513 0.0092273979 -0.0078223562 -0.061385285 0.0036620088 -0.011561802 -0.061422225 0.0044850819 -0.0075405049 -0.057829466 0.00263296 -0.028866537 -0.048992321 0.01420893 -0.034494404 -0.049289521 0.025295477 -0.035948399 -0.045370489 0.029073913 -0.0198994 -0.053897545 0.0053347708 -0.02542072 -0.054448556 0.011916625 -0.022385962 -0.051838093 0.0053053605 -0.038201191 -0.065658838 0.02467458 -0.040394757 -0.065633878 0.028902546 -0.036934413 -0.06080737 0.024457915 -0.039627351 -0.05834993 0.030398952 -0.042571899 -0.060287591 0.036934957 -0.038805798 -0.051771 0.033482622 -0.017369365 -0.061720878 0.0067599546 -0.022843273 -0.065840513 0.0092273979 -0.025242658 -0.06044019 0.01196887 -0.038805798 -0.051771 0.033482622 -0.040588442 -0.053612977 0.037550356 -0.039273765 -0.046846349 0.038116157 -0.036934413 -0.06080737 0.024457915 -0.040394757 -0.065633878 0.028902546 -0.039627351 -0.05834993 0.030398952 0.023475744 -0.058492728 0.0086995009 0.023916196 -0.056307916 0.0068386178 0.026056906 -0.056018855 0.0077104638 0.023240278 -0.060911302 0.0096119838 0.027131479 -0.059955139 0.012050172 0.028399926 -0.061871018 0.013564543 -0.037246641 -0.05219692 0.029579913 -0.039627351 -0.05834993 0.030398952 -0.038805798 -0.051771 0.033482622 -0.0072512887 -0.056225605 0.0014124444 -0.0075405049 -0.057829466 0.00263296 -0.014574227 -0.057631161 0.0046114037 0.026056906 -0.056018855 0.0077104638 0.024896804 -0.054468807 0.002522019 0.026940294 -0.054453585 0.0030369593 -0.037947025 -0.039234865 0.034220293 -0.03883766 -0.034741424 0.03499867 -0.036918476 -0.031614449 0.027379535 -0.031641081 -0.045817953 0.01889151 -0.037947025 -0.039234865 0.034220293 -0.033874426 -0.036438249 0.02185094 -0.01970391 -0.058155417 0.0078169918 -0.025242658 -0.06044019 0.01196887 -0.02505271 -0.056855869 0.012017883 -0.025996253 -0.049031083 0.0070269718 -0.022385962 -0.051838093 0.0053053605 -0.027702829 -0.047732189 0.0097777545 -0.028866537 -0.048992321 0.01420893 -0.035948399 -0.045370489 0.029073913 -0.031641081 -0.045817953 0.01889151 -0.032709692 -0.06572406 0.017260024 -0.038201191 -0.065658838 0.02467458 -0.036934413 -0.06080737 0.024457915 -0.036934413 -0.06080737 0.024457915 -0.039627351 -0.05834993 0.030398952 -0.037246641 -0.05219692 0.029579913 -0.017369365 -0.061720878 0.0067599546 -0.025242658 -0.06044019 0.01196887 -0.01745045 -0.059051089 0.0065815849 -0.014554675 -0.055113871 0.0025555014 -0.018650955 -0.05544319 0.0057696099 -0.0198994 -0.053897545 0.0053347708 -0.02505271 -0.056855869 0.012017883 -0.027896535 -0.054792069 0.014898883 -0.02542072 -0.054448556 0.011916625 -0.033233117 -0.055171374 0.021634456 -0.036934413 -0.06080737 0.024457915 -0.037246641 -0.05219692 0.029579913 -0.037241086 -0.047902118 0.031588968 -0.038805798 -0.051771 0.033482622 -0.039273765 -0.046846349 0.038116157 -0.01745045 -0.059051089 0.0065815849 -0.025242658 -0.06044019 0.01196887 -0.01970391 -0.058155417 0.0078169918 -0.029541973 -0.052253459 0.016792322 -0.034494404 -0.049289521 0.025295477 -0.028866537 -0.048992321 0.01420893 -0.0072512887 -0.056225605 0.0014124444 -0.014574227 -0.057631161 0.0046114037 -0.014554675 -0.055113871 0.0025555014 -0.037246641 -0.05219692 0.029579913 -0.038805798 -0.051771 0.033482622 -0.037241086 -0.047902118 0.031588968 -0.011561802 -0.061422225 0.0044850819 -0.017456256 -0.065906741 0.0064858254 -0.017369365 -0.061720878 0.0067599546 -0.032709692 -0.06572406 0.017260024 -0.036934413 -0.06080737 0.024457915 -0.033233117 -0.055171374 0.021634456 -0.037947025 -0.039234865 0.034220293 -0.038993541 -0.041723326 0.038176466 -0.039080735 -0.038064267 0.037681282 -0.037241086 -0.047902118 0.031588968 -0.039273765 -0.046846349 0.038116157 -0.038993541 -0.041723326 0.038176466 0.02390104 -0.029023731 0.011487897 0.023585334 -0.030373456 0.009807176 0.023034034 -0.045077521 0.012543328 -0.02542072 -0.054448556 0.011916625 -0.027896535 -0.054792069 0.014898883 -0.029541973 -0.052253459 0.016792322 -0.03164592 -0.057509817 0.018893236 -0.032709692 -0.06572406 0.017260024 -0.033233117 -0.055171374 0.021634456 -0.033874426 -0.036438249 0.02185094 -0.037947025 -0.039234865 0.034220293 -0.033120479 -0.032498185 0.017942481 -0.033120479 -0.032498185 0.017942481 -0.037947025 -0.039234865 0.034220293 -0.036918476 -0.031614449 0.027379535 -0.033233117 -0.055171374 0.021634456 -0.037246641 -0.05219692 0.029579913 -0.034494404 -0.049289521 0.025295477 -0.035948399 -0.045370489 0.029073913 -0.037241086 -0.047902118 0.031588968 -0.038993541 -0.041723326 0.038176466 -0.03883766 -0.034741424 0.03499867 -0.039080735 -0.038064267 0.037681282 -0.040368546 -0.033191357 0.039932836 -0.034494404 -0.049289521 0.025295477 -0.037246641 -0.05219692 0.029579913 -0.037241086 -0.047902118 0.031588968 -0.033922698 -0.025885465 0.016879354 -0.035106059 -0.026863441 0.020659689 -0.034790248 -0.019432839 0.018397424 0.023034034 -0.045077521 0.012543328 0.023585334 -0.030373456 0.009807176 0.02302679 -0.04723604 0.01141198 -0.034790248 -0.019432839 0.018397424 -0.034929864 -0.0136336 0.018540738 -0.033922698 -0.025885465 0.016879354 -0.033922698 -0.025885465 0.016879354 -0.033120479 -0.032498185 0.017942481 -0.035106059 -0.026863441 0.020659689 -0.032420136 -0.036574967 0.015647426 -0.031127237 -0.042205509 0.01496106 -0.033120479 -0.032498185 0.017942481 -0.032420136 -0.036574967 0.015647426 -0.033120479 -0.032498185 0.017942481 -0.033922698 -0.025885465 0.016879354 -0.033333261 -0.041226145 0.010377739 -0.030274188 -0.043747645 0.011605573 -0.032858361 -0.038720578 0.012880111 -0.032858361 -0.038720578 0.012880111 -0.033922698 -0.025885465 0.016879354 -0.034346666 -0.034698643 0.013597585 -0.030274188 -0.043747645 0.011605573 -0.030189782 -0.044115905 0.013121638 -0.032858361 -0.038720578 0.012880111 0.02302679 -0.04723604 0.01141198 0.023821037 -0.056535941 0.010970903 0.023034034 -0.045077521 0.012543328 0.023788616 -0.043910272 0.014768653 0.023034034 -0.045077521 0.012543328 0.02473264 -0.04966535 0.015942382 -0.032858361 -0.038720578 0.012880111 -0.032420136 -0.036574967 0.015647426 -0.033922698 -0.025885465 0.016879354 -0.032858361 -0.038720578 0.012880111 -0.030189782 -0.044115905 0.013121638 -0.032420136 -0.036574967 0.015647426 -0.030189782 -0.044115905 0.013121638 -0.031127237 -0.042205509 0.01496106 -0.032420136 -0.036574967 0.015647426 0.023989385 0.015772576 -0.075322352 0.025475802 0.0035077191 -0.082708567 0.024789758 0.010291438 -0.079236664 0.023989385 0.015772576 -0.075322352 0.010746848 -0.058324635 -0.019792728 0.025773291 -0.00096978823 -0.084300548 0.023989385 0.015772576 -0.075322352 0.025773291 -0.00096978823 -0.084300548 0.025475802 0.0035077191 -0.082708567 0.023034034 -0.045077521 0.012543328 0.023821037 -0.056535941 0.010970903 0.024579095 -0.053208061 0.014975999 0.0082198149 -0.05324043 -0.0081193605 0.0080871917 -0.054150011 -0.007572209 0.0092829885 -0.055030286 -0.013010898 0.024789758 0.010291438 -0.079236664 0.025475802 0.0035077191 -0.082708567 0.025122778 0.0073365429 -0.080902785 0.023821037 -0.056535941 0.010970903 0.024605921 -0.058838733 0.012940448 0.024579095 -0.053208061 0.014975999 0.010746848 -0.058324635 -0.019792728 0.015324581 -0.062936328 -0.040682454 0.02606767 -0.009649477 -0.086112306 0.010746848 -0.058324635 -0.019792728 0.011835115 -0.060406823 -0.024813874 0.015324581 -0.062936328 -0.040682454 0.010746848 -0.058324635 -0.019792728 0.02606767 -0.009649477 -0.086112306 0.025773291 -0.00096978823 -0.084300548 0.011835115 -0.060406823 -0.024813874 0.012830871 -0.061718185 -0.02937525 0.015324581 -0.062936328 -0.040682454 0.025773291 -0.00096978823 -0.084300548 0.02606767 -0.009649477 -0.086112306 0.02595262 -0.0049448018 -0.085330762 0.014525927 0.038431153 -0.031405978 0.016498437 0.034402125 -0.040522434 0.016023289 0.035854675 -0.038295545 0.012400466 0.030623073 -0.022261472 0.0082198149 -0.05324043 -0.0081193605 0.0092829885 -0.055030286 -0.013010898 0.012400466 0.030623073 -0.022261472 0.0098079732 -0.055981327 -0.015431882 0.019888213 0.029675659 -0.056060288 0.012400466 0.030623073 -0.022261472 0.0092829885 -0.055030286 -0.013010898 0.0098079732 -0.055981327 -0.015431882 0.012830871 -0.061718185 -0.02937525 0.013697539 -0.062463697 -0.033322673 0.015324581 -0.062936328 -0.040682454 0.012400466 0.030623073 -0.022261472 0.019888213 0.029675659 -0.056060288 0.013584231 0.03233245 -0.027500918 0.02606767 -0.009649477 -0.086112306 0.021879619 -0.051930867 -0.06960734 0.024801333 -0.035798062 -0.081871472 0.02606767 -0.009649477 -0.086112306 0.025571659 -0.027456982 -0.084875904 0.026074478 -0.01438012 -0.086408779 0.02606767 -0.009649477 -0.086112306 0.015324581 -0.062936328 -0.040682454 0.018396549 -0.060545653 -0.054392785 0.023034034 -0.045077521 0.012543328 0.024579095 -0.053208061 0.014975999 0.02473264 -0.04966535 0.015942382 0.02606767 -0.009649477 -0.086112306 0.018396549 -0.060545653 -0.054392785 0.019817336 -0.057910703 -0.060648229 0.02606767 -0.009649477 -0.086112306 0.024801333 -0.035798062 -0.081871472 0.025571659 -0.027456982 -0.084875904 0.02606767 -0.009649477 -0.086112306 0.020605816 -0.055962358 -0.064092346 0.021879619 -0.051930867 -0.06960734 0.02606767 -0.009649477 -0.086112306 0.019817336 -0.057910703 -0.060648229 0.020605816 -0.055962358 -0.064092346 0.013584231 0.03233245 -0.027500918 0.019888213 0.029675659 -0.056060288 0.014623549 0.033333361 -0.032128654 0.015324581 -0.062936328 -0.040682454 0.016385332 -0.06258446 -0.045442667 0.018396549 -0.060545653 -0.054392785 0.026074478 -0.01438012 -0.086408779 0.025877085 -0.022053547 -0.085949227 0.026015274 -0.017892551 -0.086338475 0.026074478 -0.01438012 -0.086408779 0.025571659 -0.027456982 -0.084875904 0.025877085 -0.022053547 -0.085949227 0.014623549 0.033333361 -0.032128654 0.019888213 0.029675659 -0.056060288 0.015685411 0.033843715 -0.036885753 0.023788616 -0.043910272 0.014768653 0.02390104 -0.029023731 0.011487897 0.023034034 -0.045077521 0.012543328 0.015685411 0.033843715 -0.036885753 0.019888213 0.029675659 -0.056060288 0.016391251 0.033919312 -0.040062577 0.016385332 -0.06258446 -0.045442667 0.017401755 -0.061797723 -0.049979635 0.018396549 -0.060545653 -0.054392785 0.016023289 0.035854675 -0.038295545 0.016498437 0.034402125 -0.040522434 0.019888213 0.029675659 -0.056060288 0.023936063 -0.038987115 0.014632786 0.02390104 -0.029023731 0.011487897 0.023788616 -0.043910272 0.014768653 0.016391251 0.033919312 -0.040062577 0.019888213 0.029675659 -0.056060288 0.016498437 0.034402125 -0.040522434 0.024605921 -0.058838733 0.012940448 0.026205728 -0.061448179 0.014910609 0.024579095 -0.053208061 0.014975999 0.025571659 -0.027456982 -0.084875904 0.024801333 -0.035798062 -0.081871472 0.02519764 -0.032004237 -0.083444431 0.019888213 0.029675659 -0.056060288 0.010746848 -0.058324635 -0.019792728 0.023989385 0.015772576 -0.075322352 0.019888213 0.029675659 -0.056060288 0.0098079732 -0.055981327 -0.015431882 0.010746848 -0.058324635 -0.019792728 0.019888213 0.029675659 -0.056060288 0.021508249 0.025967186 -0.063569717 0.020729529 0.027984789 -0.059946757 0.019888213 0.029675659 -0.056060288 0.023000894 0.020720221 -0.070590124 0.021508249 0.025967186 -0.063569717 0.019888213 0.029675659 -0.056060288 0.023989385 0.015772576 -0.075322352 0.023000894 0.020720221 -0.070590124 0.024801333 -0.035798062 -0.081871472 0.021879619 -0.051930867 -0.06960734 0.023895947 -0.042378761 -0.07815934 0.023895947 -0.042378761 -0.07815934 0.021879619 -0.051930867 -0.06960734 0.023131059 -0.046603162 -0.07494913 0.021508249 0.025967186 -0.063569717 0.023000894 0.020720221 -0.070590124 0.022256184 0.0236242 -0.067071751 -0.029861504 0.05449586 0.060885001 -0.028177178 0.05325048 0.063824825 -0.032199029 0.054993786 0.054326233 -0.032599818 0.05603056 0.0526249 -0.029861504 0.05449586 0.060885001 -0.032199029 0.054993786 0.054326233 -0.033075258 0.05779656 0.043389864 -0.032599818 0.05603056 0.0526249 -0.032199029 0.054993786 0.054326233 -0.033075258 0.05779656 0.043389864 -0.032199029 0.054993786 0.054326233 -0.032949556 0.057321608 0.042149108 -0.032546356 0.0585155 0.039717339 -0.033075258 0.05779656 0.043389864 -0.032949556 0.057321608 0.042149108 -0.031008281 0.059507754 0.034378197 -0.032546356 0.0585155 0.039717339 -0.032949556 0.057321608 0.042149108 -0.031008281 0.059507754 0.034378197 -0.032949556 0.057321608 0.042149108 -0.029226245 0.05960612 0.030418109 -0.028026657 0.060735259 0.028430287 -0.031008281 0.059507754 0.034378197 -0.029226245 0.05960612 0.030418109 0.023821037 -0.056535941 0.010970903 0.02283865 -0.060897227 0.012155469 0.024627261 -0.061428465 0.01413532 -0.022518044 0.062161226 0.021782534 -0.028026657 0.060735259 0.028430287 -0.029226245 0.05960612 0.030418109 0.023060231 -0.05775645 0.010660088 0.02283865 -0.060897227 0.012155469 0.023821037 -0.056535941 0.010970903 -0.022518044 0.062161226 0.021782534 -0.029226245 0.05960612 0.030418109 -0.021229547 0.061725833 0.020536477 -0.013236187 0.063613065 0.015607444 -0.022518044 0.062161226 0.021782534 -0.021229547 0.061725833 0.020536477 -0.013236187 0.063613065 0.015607444 -0.021229547 0.061725833 0.020536477 -0.014383077 0.062784225 0.016052091 -0.0058962242 0.06428428 0.013222571 -0.013236187 0.063613065 0.015607444 -0.014383077 0.062784225 0.016052091 -0.0053742011 0.063628569 0.013004076 -0.0058962242 0.06428428 0.013222571 -0.014383077 0.062784225 0.016052091 -0.0013899782 0.064537957 0.012593221 -0.0058962242 0.06428428 0.013222571 -0.0053742011 0.063628569 0.013004076 -0.0013899782 0.064537957 0.012593221 -0.0053742011 0.063628569 0.013004076 0.0045031826 0.064002559 0.012528931 0.0088281082 0.064668491 0.013287033 -0.0013899782 0.064537957 0.012593221 0.0045031826 0.064002559 0.012528931 0.0087827463 0.064039499 0.01345678 0.0088281082 0.064668491 0.013287033 0.0045031826 0.064002559 0.012528931 -0.0066451351 0.045914344 0.081971139 -0.006670617 0.046880245 0.082138374 -0.0066501037 0.04605519 0.081996538 -0.016313547 0.047748603 0.078729235 -0.006670617 0.046880245 0.082138374 -0.0066451351 0.045914344 0.081971139 -0.016517451 0.047047853 0.078471467 -0.016313547 0.047748603 0.078729235 -0.0066451351 0.045914344 0.081971139 0.013931894 0.02541885 -0.011912544 0.012109476 0.018608399 -0.0040811258 0.011304224 0.014493369 -0.00068253104 0.023292949 -0.060910985 0.011538203 0.024627261 -0.061428465 0.01413532 0.02283865 -0.060897227 0.012155469 0.013931894 0.02541885 -0.011912544 0.011304224 0.014493369 -0.00068253104 0.016106201 0.030529549 -0.021426113 0.016106201 0.030529549 -0.021426113 0.011304224 0.014493369 -0.00068253104 0.010667912 0.010505383 0.0019617395 0.023240278 -0.060911302 0.0096119838 0.023292949 -0.060910985 0.011538203 0.02283865 -0.060897227 0.012155469 0.00907885 -0.0062289829 0.0081855487 0.010667912 0.010505383 0.0019617395 0.0095851608 0.0011128844 0.006314795 0.023060231 -0.05775645 0.010660088 0.023821037 -0.056535941 0.010970903 0.024343783 -0.0527042 0.0051220274 0.016106201 0.030529549 -0.021426113 0.010667912 0.010505383 0.0019617395 0.00907885 -0.0062289829 0.0081855487 0.015391064 0.029164258 -0.018279174 0.013931894 0.02541885 -0.011912544 0.016106201 0.030529549 -0.021426113 0.0095851608 0.0011128844 0.006314795 0.010667912 0.010505383 0.0019617395 0.010110986 0.0062552746 0.0042330674 0.011929124 -0.053286601 -0.0072963508 0.016106201 0.030529549 -0.021426113 0.00907885 -0.0062289829 0.0081855487 0.011929124 -0.053286601 -0.0072963508 0.00907885 -0.0062289829 0.0081855487 0.0086159194 -0.012892478 0.0098983236 0.0086159194 -0.012892478 0.0098983236 0.00907885 -0.0062289829 0.0081855487 0.0088571757 -0.0062284106 0.009184544 0.011929124 -0.053286601 -0.0072963508 0.0086159194 -0.012892478 0.0098983236 0.0078622503 -0.016736697 0.013079962 0.011929124 -0.053286601 -0.0072963508 0.0078622503 -0.016736697 0.013079962 0.010465097 -0.053261545 -0.00069775782 0.010465097 -0.053261545 -0.00069775782 0.0078622503 -0.016736697 0.013079962 0.0070417528 -0.022159601 0.016473576 0.010465097 -0.053261545 -0.00069775782 0.0070417528 -0.022159601 0.016473576 0.0066321413 -0.025651202 0.01812404 0.010465097 -0.053261545 -0.00069775782 0.0066321413 -0.025651202 0.01812404 0.0061073317 -0.031606171 0.020155387 0.010465097 -0.053261545 -0.00069775782 0.0061073317 -0.031606171 0.020155387 0.0099796318 -0.053574763 0.00147126 0.0099796318 -0.053574763 0.00147126 0.0061073317 -0.031606171 0.020155387 0.005845469 -0.035983965 0.021090128 0.0099796318 -0.053574763 0.00147126 0.005845469 -0.035983965 0.021090128 0.0056640743 -0.041205537 0.021614946 0.0099796318 -0.053574763 0.00147126 0.0056640743 -0.041205537 0.021614946 0.0092782704 -0.055085935 0.0045478004 0.0092782704 -0.055085935 0.0045478004 0.0056640743 -0.041205537 0.021614946 0.0056190952 -0.046440773 0.021524962 0.0092782704 -0.055085935 0.0045478004 0.0056190952 -0.046440773 0.021524962 0.0057050404 -0.051515911 0.020853356 0.0092782704 -0.055085935 0.0045478004 0.0057050404 -0.051515911 0.020853356 0.008933614 -0.056469455 0.0060251518 0.008933614 -0.056469455 0.0060251518 0.0057050404 -0.051515911 0.020853356 0.0059270817 -0.056645177 0.019565087 0.008933614 -0.056469455 0.0060251518 0.0059270817 -0.056645177 0.019565087 0.008657217 -0.058257215 0.0071708509 0.008657217 -0.058257215 0.0071708509 0.0059270817 -0.056645177 0.019565087 0.0062279482 -0.060874276 0.01797235 0.008657217 -0.058257215 0.0071708509 0.0062279482 -0.060874276 0.01797235 0.0085004875 -0.059976738 0.0077803023 0.0085004875 -0.059976738 0.0077803023 0.0062279482 -0.060874276 0.01797235 0.0066801775 -0.065508209 0.015674433 0.0085004875 -0.059976738 0.0077803023 0.0066801775 -0.065508209 0.015674433 0.0083869649 -0.065525465 0.0079812538 0.013044361 0.022467714 -0.0080779931 0.012109476 0.018608399 -0.0040811258 0.013931894 0.02541885 -0.011912544 0.027818246 0.062480252 0.024715394 0.025044223 0.06355162 0.021832388 0.018367246 0.063664906 0.016950546 0.024343783 -0.0527042 0.0051220274 0.023821037 -0.056535941 0.010970903 0.02302679 -0.04723604 0.01141198 0.025044223 0.06355162 0.021832388 0.019670764 0.064154647 0.017758433 0.018367246 0.063664906 0.016950546 0.018367246 0.063664906 0.016950546 0.013515718 0.06455148 0.01473712 0.0087827463 0.064039499 0.01345678 0.037839886 0.0012658797 0.069542401 0.038701247 -0.0082757436 0.068525471 0.040398218 0.00012777455 0.064670749 0.037839886 0.0012658797 0.069542401 0.036056109 -0.0096321879 0.072712004 0.038701247 -0.0082757436 0.068525471 0.043118831 -0.006454037 0.037166685 0.043041829 -0.020585312 0.036598511 0.041857161 -0.020498851 0.032525513 0.0385684 0.002780464 0.025897767 0.040474828 0.00014366575 0.029623492 0.038094744 -0.015262793 0.024501937 0.0385684 0.002780464 0.025897767 0.038094744 -0.015262793 0.024501937 0.037265942 0.0022252451 0.023658972 0.025703434 -0.052479949 -0.00096509664 0.02302679 -0.04723604 0.01141198 0.02456063 -0.041405573 0.0047684833 0.040398218 0.00012777455 0.064670749 0.038701247 -0.0082757436 0.068525471 0.041479189 -0.011018827 0.062634781 0.02302679 -0.04723604 0.01141198 0.023585334 -0.030373456 0.009807176 0.02456063 -0.041405573 0.0047684833 0.040398218 0.00012777455 0.064670749 0.041479189 -0.011018827 0.062634781 0.041568302 0.00021613242 0.061733227 0.041857161 -0.020498851 0.032525513 0.040720116 -0.02152851 0.029675642 0.040474828 0.00014366575 0.029623492 0.040474828 0.00014366575 0.029623492 0.040720116 -0.02152851 0.029675642 0.038094744 -0.015262793 0.024501937 0.026617205 -0.054515351 -0.0052340128 0.026163166 -0.05102491 -0.0029920088 0.026741561 -0.053483788 -0.0057367943 0.041568302 0.00021613242 0.061733227 0.042853907 -0.0092705181 0.058295317 0.042468086 0.00064661278 0.058850687 0.026617205 -0.054515351 -0.0052340128 0.025703434 -0.052479949 -0.00096509664 0.026163166 -0.05102491 -0.0029920088 0.026617205 -0.054515351 -0.0052340128 0.024896804 -0.054468807 0.002522019 0.025703434 -0.052479949 -0.00096509664 0.037265942 0.0022252451 0.023658972 0.038094744 -0.015262793 0.024501937 0.034694202 -0.010126338 0.019657275 0.041568302 0.00021613242 0.061733227 0.041479189 -0.011018827 0.062634781 0.042853907 -0.0092705181 0.058295317 0.042468086 0.00064661278 0.058850687 0.042853907 -0.0092705181 0.058295317 0.043809369 -0.011286657 0.05381421 0.043809369 -0.011286657 0.05381421 0.0432074 0.0090723773 0.05363065 0.042468086 0.00064661278 0.058850687 0.043809369 -0.011286657 0.05381421 0.043991458 0.00083825702 0.049866784 0.0432074 0.0090723773 0.05363065 0.024896804 -0.054468807 0.002522019 0.024343783 -0.0527042 0.0051220274 0.025703434 -0.052479949 -0.00096509664 0.044185467 -0.0095870243 0.050328311 0.043809369 -0.011286657 0.05381421 0.044229552 -0.020250177 0.049756143 0.043809369 -0.011286657 0.05381421 0.044185467 -0.0095870243 0.050328311 0.043991458 0.00083825702 0.049866784 0.043991458 0.00083825702 0.049866784 0.044185467 -0.0095870243 0.050328311 0.044076446 -0.00049694581 0.045214485 0.044076446 -0.00049694581 0.045214485 0.044185467 -0.0095870243 0.050328311 0.044074096 -0.0093761245 0.042669702 0.02283865 -0.060897227 0.012155469 0.023060231 -0.05775645 0.010660088 0.023240278 -0.060911302 0.0096119838 0.023240278 -0.060911302 0.0096119838 0.023060231 -0.05775645 0.010660088 0.023475744 -0.058492728 0.0086995009 0.042151906 -0.021614214 0.060513511 0.042853907 -0.0092705181 0.058295317 0.041479189 -0.011018827 0.062634781 0.044076446 -0.00049694581 0.045214485 0.044074096 -0.0093761245 0.042669702 0.04342328 0.0052339709 0.040537748 0.023916196 -0.056307916 0.0068386178 0.024343783 -0.0527042 0.0051220274 0.024896804 -0.054468807 0.002522019 0.043809369 -0.011286657 0.05381421 0.042853907 -0.0092705181 0.058295317 0.043320738 -0.021800146 0.056080658 0.04342328 0.0052339709 0.040537748 0.044074096 -0.0093761245 0.042669702 0.043118831 -0.006454037 0.037166685 0.034694202 -0.010126338 0.019657275 0.035249565 0.0080825938 0.021023072 0.037265942 0.0022252451 0.023658972 0.023475744 -0.058492728 0.0086995009 0.023060231 -0.05775645 0.010660088 0.023916196 -0.056307916 0.0068386178 0.044185467 -0.0095870243 0.050328311 0.044229552 -0.020250177 0.049756143 0.044285234 -0.020849032 0.045970075 0.029028324 0.00054458692 0.080229744 0.024854271 -0.0016794676 0.083570845 0.027812907 -0.0091078589 0.08145839 0.023916196 -0.056307916 0.0068386178 0.023060231 -0.05775645 0.010660088 0.024343783 -0.0527042 0.0051220274 0.025703434 -0.052479949 -0.00096509664 0.02456063 -0.041405573 0.0047684833 0.026163166 -0.05102491 -0.0029920088 0.043118831 -0.006454037 0.037166685 0.042107336 0.01336893 0.035975628 0.04342328 0.0052339709 0.040537748 0.044185467 -0.0095870243 0.050328311 0.044285234 -0.020849032 0.045970075 0.044074096 -0.0093761245 0.042669702 0.024343783 -0.0527042 0.0051220274 0.02302679 -0.04723604 0.01141198 0.025703434 -0.052479949 -0.00096509664 0.032002594 -0.0046952092 0.0775133 0.036099724 2.5827196e-05 0.072311103 0.033402443 0.0057676025 0.075460762 0.043118831 -0.006454037 0.037166685 0.041837554 0.0006042379 0.033239331 0.042107336 0.01336893 0.035975628 0.029028324 0.00054458692 0.080229744 0.032685585 -0.011883598 0.076880217 0.032002594 -0.0046952092 0.0775133 0.029028324 0.00054458692 0.080229744 0.027812907 -0.0091078589 0.08145839 0.032685585 -0.011883598 0.076880217 0.032002594 -0.0046952092 0.0775133 0.032685585 -0.011883598 0.076880217 0.036099724 2.5827196e-05 0.072311103 0.036099724 2.5827196e-05 0.072311103 0.032685585 -0.011883598 0.076880217 0.036056109 -0.0096321879 0.072712004 0.041837554 0.0006042379 0.033239331 0.043118831 -0.006454037 0.037166685 0.041857161 -0.020498851 0.032525513 0.036099724 2.5827196e-05 0.072311103 0.036056109 -0.0096321879 0.072712004 0.037839886 0.0012658797 0.069542401 0.043118831 -0.006454037 0.037166685 0.044074096 -0.0093761245 0.042669702 0.043041829 -0.020585312 0.036598511 0.041837554 0.0006042379 0.033239331 0.041857161 -0.020498851 0.032525513 0.040474828 0.00014366575 0.029623492 0.0051078037 0.042587325 0.085157514 -0.0011085175 0.042751405 0.085213959 -0.0006098469 0.038368337 0.086552642 0.011218229 0.039350417 0.085038722 0.0073706675 0.036796086 0.086337335 0.0091464752 0.028319137 0.087509386 0.011218229 0.039350417 0.085038722 0.0091464752 0.028319137 0.087509386 0.012796815 0.027423963 0.086873107 0.0023507858 0.025868105 0.088630915 0.0025599436 0.036699168 0.086868115 -0.0010602723 0.029656541 0.088215381 0.0051078037 0.042587325 0.085157514 0.0025599436 0.036699168 0.086868115 0.0073706675 0.036796086 0.086337335 0.0023507858 0.025868105 0.088630915 -0.0010602723 0.029656541 0.088215381 -0.0043057902 0.026420292 0.088466771 0.0076436801 0.022449357 0.088450678 0.0057482375 0.0088604102 0.089814022 0.010104878 0.0078916559 0.089220934 0.0076436801 0.022449357 0.088450678 0.010104878 0.0078916559 0.089220934 0.011225548 0.021683492 0.087922201 0.0073706675 0.036796086 0.086337335 0.0025599436 0.036699168 0.086868115 0.0091464752 0.028319137 0.087509386 -0.0043057902 0.026420292 0.088466771 -0.0010602723 0.029656541 0.088215381 -0.0041717403 0.031783137 0.087676518 0.0076436801 0.022449357 0.088450678 0.0004733114 0.017608069 0.089601353 0.0057482375 0.0088604102 0.089814022 0.01465417 0.0076644616 0.088120379 0.010104878 0.0078916559 0.089220934 0.012355032 -0.0027299013 0.089153774 -0.0043057902 0.026420292 0.088466771 -0.0041717403 0.031783137 0.087676518 -0.0074093994 0.030813063 0.087339833 0.0004733114 0.017608069 0.089601353 0.0023507858 0.025868105 0.088630915 -0.0043057902 0.026420292 0.088466771 0.0004733114 0.017608069 0.089601353 -0.0043057902 0.026420292 0.088466771 -0.0053926287 0.018335287 0.089226045 0.00060394616 0.0029295019 0.090545885 0.0057482375 0.0088604102 0.089814022 0.0004733114 0.017608069 0.089601353 0.0004733114 0.017608069 0.089601353 -0.0023564543 0.0054603438 0.090392523 0.00060394616 0.0029295019 0.090545885 0.010104878 0.0078916559 0.089220934 0.0057482375 0.0088604102 0.089814022 0.0051487465 -0.0032397341 0.090448685 0.0004733114 0.017608069 0.089601353 -0.0053926287 0.018335287 0.089226045 -0.0023564543 0.0054603438 0.090392523 -0.0053926287 0.018335287 0.089226045 -0.006230324 0.010810656 0.089701474 -0.0023564543 0.0054603438 0.090392523 -0.006230324 0.010810656 0.089701474 -0.0053926287 0.018335287 0.089226045 -0.0079099294 0.017770391 0.088865831 0.011649976 0.048835475 0.081386544 0.0051223375 0.044923395 0.084331527 0.010332446 0.044363908 0.083710179 0.011649976 0.048835475 0.081386544 0.010332446 0.044363908 0.083710179 0.012564829 0.045521688 0.082692169 0.0051078037 0.042587325 0.085157514 -0.0006098469 0.038368337 0.086552642 0.0025599436 0.036699168 0.086868115 0.0065272972 0.048211526 0.082643874 0.0041072811 0.047590904 0.08310096 0.0051223375 0.044923395 0.084331527 0.0057482375 0.0088604102 0.089814022 0.00060394616 0.0029295019 0.090545885 0.0051487465 -0.0032397341 0.090448685 0.012796815 0.027423963 0.086873107 0.0091464752 0.028319137 0.087509386 0.011225548 0.021683492 0.087922201 -0.0011085175 0.042751405 0.085213959 -0.0064377375 0.044476729 0.083726317 -0.0070119798 0.037962068 0.085948609 0.011225548 0.021683492 0.087922201 0.014756563 0.015084432 0.087614737 0.012796815 0.027423963 0.086873107 0.0091464752 0.028319137 0.087509386 0.0076436801 0.022449357 0.088450678 0.011225548 0.021683492 0.087922201 0.0051223375 0.044923395 0.084331527 0.0051078037 0.042587325 0.085157514 0.010332446 0.044363908 0.083710179 -0.0011085175 0.042751405 0.085213959 -0.0070119798 0.037962068 0.085948609 -0.0006098469 0.038368337 0.086552642 0.0025599436 0.036699168 0.086868115 -0.0006098469 0.038368337 0.086552642 -0.0010602723 0.029656541 0.088215381 0.0041072811 0.047590904 0.08310096 -0.0011085175 0.042751405 0.085213959 0.0051223375 0.044923395 0.084331527 -0.0023564543 0.0054603438 0.090392523 -0.006230324 0.010810656 0.089701474 -0.0056454027 -0.0040807305 0.090442516 -0.0006098469 0.038368337 0.086552642 -0.0070119798 0.037962068 0.085948609 -0.0041717403 0.031783137 0.087676518 0.0091464752 0.028319137 0.087509386 0.0025599436 0.036699168 0.086868115 0.0023507858 0.025868105 0.088630915 0.010332446 0.044363908 0.083710179 0.0073706675 0.036796086 0.086337335 0.011218229 0.039350417 0.085038722 0.029300008 0.02962864 -0.014853771 0.028157281 0.02589003 -0.0086628301 0.027938707 0.026368268 -0.010574806 -0.006230324 0.010810656 0.089701474 -0.0079099294 0.017770391 0.088865831 -0.0084984321 -0.0081797605 0.090062656 -0.006230324 0.010810656 0.089701474 -0.0084984321 -0.0081797605 0.090062656 -0.0056454027 -0.0040807305 0.090442516 0.010332446 0.044363908 0.083710179 0.0051078037 0.042587325 0.085157514 0.0073706675 0.036796086 0.086337335 0.0041072811 0.047590904 0.08310096 -0.0064377375 0.044476729 0.083726317 -0.0011085175 0.042751405 0.085213959 0.0041072811 0.047590904 0.08310096 -0.0060861912 0.046879411 0.082277834 -0.0064377375 0.044476729 0.083726317 0.0091464752 0.028319137 0.087509386 0.0023507858 0.025868105 0.088630915 0.0076436801 0.022449357 0.088450678 -0.0006098469 0.038368337 0.086552642 -0.0041717403 0.031783137 0.087676518 -0.0010602723 0.029656541 0.088215381 -0.0043057902 0.026420292 0.088466771 -0.0074093994 0.030813063 0.087339833 -0.0079099294 0.017770391 0.088865831 0.011225548 0.021683492 0.087922201 0.01465417 0.0076644616 0.088120379 0.014756563 0.015084432 0.087614737 -0.0053926287 0.018335287 0.089226045 -0.0043057902 0.026420292 0.088466771 -0.0079099294 0.017770391 0.088865831 0.011225548 0.021683492 0.087922201 0.010104878 0.0078916559 0.089220934 0.01465417 0.0076644616 0.088120379 0.011649976 0.048835475 0.081386544 0.013119927 0.051174164 0.079489909 0.0065272972 0.048211526 0.082643874 0.0051223375 0.044923395 0.084331527 -0.0011085175 0.042751405 0.085213959 0.0051078037 0.042587325 0.085157514 -0.0041717403 0.031783137 0.087676518 -0.0070119798 0.037962068 0.085948609 -0.0074093994 0.030813063 0.087339833 0.0076436801 0.022449357 0.088450678 0.0023507858 0.025868105 0.088630915 0.0004733114 0.017608069 0.089601353 0.011649976 0.048835475 0.081386544 0.0065272972 0.048211526 0.082643874 0.0051223375 0.044923395 0.084331527 0.027812907 -0.0091078589 0.08145839 0.023011234 -0.022066168 0.0846726 0.025353391 -0.022162834 0.083152957 0.020723579 -0.012649751 0.086092614 0.017956601 -0.0069969245 0.08737123 0.019541727 -0.023279056 0.086445406 0.020723579 -0.012649751 0.086092614 0.019541727 -0.023279056 0.086445406 0.023011234 -0.022066168 0.0846726 0.017956601 -0.0069969245 0.08737123 0.014825248 -0.011790494 0.088583104 0.013897858 -0.021191493 0.088862732 0.017956601 -0.0069969245 0.08737123 0.013897858 -0.021191493 0.088862732 0.019541727 -0.023279056 0.086445406 -0.015219623 -0.05217066 0.085223027 -0.021764874 -0.054566681 0.082743205 -0.01823971 -0.059504673 0.086349189 -0.023148891 -0.059439544 0.083710469 -0.026305489 -0.05922883 0.0814799 -0.024514694 -0.062987171 0.083597668 -0.026305489 -0.05922883 0.0814799 -0.028284447 -0.051849268 0.076859787 -0.031854827 -0.057519399 0.075752199 -0.0097693885 -0.063679658 0.089911006 -0.014177547 -0.060940888 0.08830408 -0.016779816 -0.065954976 0.087821327 0.025751799 0.016223451 0.00096342195 0.025845308 0.0072811274 0.0071062366 0.025526889 0.01139563 0.0045738942 -0.014177547 -0.060940888 0.08830408 -0.0184641 -0.061795224 0.086777665 -0.016779816 -0.065954976 0.087821327 -0.024514694 -0.062987171 0.083597668 -0.026305489 -0.05922883 0.0814799 -0.027857875 -0.065815277 0.08132942 0.025751799 0.016223451 0.00096342195 0.026454436 0.01845384 -0.00026660052 0.025845308 0.0072811274 0.0071062366 -0.0097693885 -0.063679658 0.089911006 -0.016779816 -0.065954976 0.087821327 -0.0098108491 -0.066041961 0.089964405 -0.0097693885 -0.063679658 0.089911006 -0.0096354671 -0.060557518 0.089482725 -0.014177547 -0.060940888 0.08830408 -0.01823971 -0.059504673 0.086349189 -0.021764874 -0.054566681 0.082743205 -0.023148891 -0.059439544 0.083710469 -0.023148891 -0.059439544 0.083710469 -0.023451652 -0.051908951 0.080773845 -0.026305489 -0.05922883 0.0814799 -0.014177547 -0.060940888 0.08830408 -0.01823971 -0.059504673 0.086349189 -0.0184641 -0.061795224 0.086777665 -0.0096354671 -0.060557518 0.089482725 -0.0091377404 -0.054115638 0.087600574 -0.015219623 -0.05217066 0.085223027 -0.0096354671 -0.060557518 0.089482725 -0.015219623 -0.05217066 0.085223027 -0.014177547 -0.060940888 0.08830408 -0.0184641 -0.061795224 0.086777665 -0.023293013 -0.065872028 0.084525667 -0.016779816 -0.065954976 0.087821327 -0.014177547 -0.060940888 0.08830408 -0.015219623 -0.05217066 0.085223027 -0.01823971 -0.059504673 0.086349189 -0.027857875 -0.065815277 0.08132942 -0.032776639 -0.061151832 0.076124996 -0.031900842 -0.065763876 0.07762561 -0.023148891 -0.059439544 0.083710469 -0.021764874 -0.054566681 0.082743205 -0.023451652 -0.051908951 0.080773845 -0.027857875 -0.065815277 0.08132942 -0.026305489 -0.05922883 0.0814799 -0.032776639 -0.061151832 0.076124996 -0.032776639 -0.061151832 0.076124996 -0.031854827 -0.057519399 0.075752199 -0.034768809 -0.059336502 0.073080763 -0.023293013 -0.065872028 0.084525667 -0.0184641 -0.061795224 0.086777665 -0.024514694 -0.062987171 0.083597668 -0.031854827 -0.057519399 0.075752199 -0.033170547 -0.052400813 0.071611345 -0.034768809 -0.059336502 0.073080763 -0.0184641 -0.061795224 0.086777665 -0.01823971 -0.059504673 0.086349189 -0.023148891 -0.059439544 0.083710469 -0.026305489 -0.05922883 0.0814799 -0.031854827 -0.057519399 0.075752199 -0.032776639 -0.061151832 0.076124996 -0.0184641 -0.061795224 0.086777665 -0.023148891 -0.059439544 0.083710469 -0.024514694 -0.062987171 0.083597668 -0.026305489 -0.05922883 0.0814799 -0.023451652 -0.051908951 0.080773845 -0.028284447 -0.051849268 0.076859787 -0.024514694 -0.062987171 0.083597668 -0.027857875 -0.065815277 0.08132942 -0.023293013 -0.065872028 0.084525667 -0.032776639 -0.061151832 0.076124996 -0.035316885 -0.065719716 0.073653139 -0.031900842 -0.065763876 0.07762561 0.027044659 0.054001022 0.069308735 0.013105687 0.050579425 0.079283766 0.020844538 0.053369727 0.074693583 -0.018193441 -0.065198995 0.0099327527 -0.010727132 -0.065989919 0.0071312068 -0.0098275356 -0.065300442 0.006571182 -0.02434532 -0.065825328 0.013583746 -0.010727132 -0.065989919 0.0071312068 -0.018193441 -0.065198995 0.0099327527 -0.025819616 -0.065107428 0.014711141 -0.02434532 -0.065825328 0.013583746 -0.018193441 -0.065198995 0.0099327527 -0.031001307 -0.065746315 0.019593013 -0.02434532 -0.065825328 0.013583746 -0.025819616 -0.065107428 0.014711141 -0.034052242 -0.06501016 0.023485538 -0.031001307 -0.065746315 0.019593013 -0.025819616 -0.065107428 0.014711141 -0.037700772 -0.065668851 0.029849773 -0.031001307 -0.065746315 0.019593013 -0.034052242 -0.06501016 0.023485538 -0.039508261 -0.064948529 0.034539089 -0.037700772 -0.065668851 0.029849773 -0.034052242 -0.06501016 0.023485538 -0.041277997 -0.065631159 0.043116193 -0.037700772 -0.065668851 0.029849773 -0.039508261 -0.064948529 0.034539089 -0.041121993 -0.06493213 0.041888729 -0.041277997 -0.065631159 0.043116193 -0.039508261 -0.064948529 0.034539089 -0.040463172 -0.064947069 0.055915747 -0.041277997 -0.065631159 0.043116193 -0.041121993 -0.06493213 0.041888729 -0.040321063 -0.065649606 0.056564353 -0.041277997 -0.065631159 0.043116193 -0.040463172 -0.064947069 0.055915747 -0.037989084 -0.065681756 0.063517228 -0.040321063 -0.065649606 0.056564353 -0.040463172 -0.064947069 0.055915747 -0.038162477 -0.064978942 0.063099332 -0.037989084 -0.065681756 0.063517228 -0.040463172 -0.064947069 0.055915747 -0.0338175 -0.065736659 0.070891581 -0.037989084 -0.065681756 0.063517228 -0.038162477 -0.064978942 0.063099332 -0.034403354 -0.065028667 0.07002347 -0.0338175 -0.065736659 0.070891581 -0.038162477 -0.064978942 0.063099332 -0.028721161 -0.065101989 0.076762117 -0.0338175 -0.065736659 0.070891581 -0.034403354 -0.065028667 0.07002347 -0.024015671 -0.065862283 0.080628246 -0.0338175 -0.065736659 0.070891581 -0.028721161 -0.065101989 0.076762117 -0.016411006 -0.065257721 0.084865578 -0.024015671 -0.065862283 0.080628246 -0.028721161 -0.065101989 0.076762117 -0.011721548 -0.066016801 0.086549357 -0.024015671 -0.065862283 0.080628246 -0.016411006 -0.065257721 0.084865578 -0.0091827447 -0.065347925 0.087174095 -0.011721548 -0.066016801 0.086549357 -0.016411006 -0.065257721 0.084865578 -0.0070386757 -0.066074967 0.08760307 -0.011721548 -0.066016801 0.086549357 -0.0091827447 -0.065347925 0.087174095 -0.0078781284 -0.059458762 0.0040640221 -0.0078223562 -0.061385285 0.0036620088 -0.0075405049 -0.057829466 0.00263296 -0.0064355722 -0.053390462 -0.0020970367 -0.0058835293 -0.053745639 -0.0046090567 -0.0058939909 -0.053045861 -0.0045181615 -0.0064355722 -0.053390462 -0.0020970367 -0.0067437631 -0.054653049 -0.00077897159 -0.0058835293 -0.053745639 -0.0046090567 -0.0070542083 -0.054673992 0.00061902474 -0.0075479941 -0.056706563 0.0027304497 -0.0072512887 -0.056225605 0.0014124444 -0.0075479941 -0.056706563 0.0027304497 -0.0075405049 -0.057829466 0.00263296 -0.0072512887 -0.056225605 0.0014124444 -0.0070542083 -0.054673992 0.00061902474 -0.0072512887 -0.056225605 0.0014124444 -0.0067437631 -0.054653049 -0.00077897159 -0.0075479941 -0.056706563 0.0027304497 -0.0078781284 -0.059458762 0.0040640221 -0.0075405049 -0.057829466 0.00263296 -0.0058835293 -0.053745639 -0.0046090567 -0.0046080868 -0.053761639 -0.010350976 -0.0058939909 -0.053045861 -0.0045181615 -0.0058939909 -0.053045861 -0.0045181615 -0.0046080868 -0.053761639 -0.010350976 -0.0046046111 -0.053064853 -0.010344595 -0.0070542083 -0.054673992 0.00061902474 -0.0067437631 -0.054653049 -0.00077897159 -0.0064355722 -0.053390462 -0.0020970367 0.0082198149 -0.05324043 -0.0081193605 0.012400466 0.030623073 -0.022261472 0.011929124 -0.053286601 -0.0072963508 0.027427059 0.024354747 -0.0075978995 0.026454436 0.01845384 -0.00026660052 0.026407007 0.019967429 -0.0024634318 0.011929124 -0.053286601 -0.0072963508 0.012400466 0.030623073 -0.022261472 0.016106201 0.030529549 -0.021426113 0.028157281 0.02589003 -0.0086628301 0.026454436 0.01845384 -0.00026660052 0.027427059 0.024354747 -0.0075978995 -0.0327962 -0.020326894 0.076039799 -0.030808657 -0.021011462 0.0781556 -0.028079769 -0.010984926 0.080499664 -0.023369722 -3.9849259e-05 0.083457254 -0.025294287 -0.0044383737 0.082393222 -0.021712627 -0.019830121 0.085137926 -0.023369722 -3.9849259e-05 0.083457254 -0.019421238 -0.0095524397 0.086177751 -0.018663967 0.005414573 0.085903667 -0.030412838 0.0016697294 0.077893585 -0.0327962 -0.020326894 0.076039799 -0.028079769 -0.010984926 0.080499664 -0.018663967 0.005414573 0.085903667 -0.019421238 -0.0095524397 0.086177751 -0.016136641 -0.0034177133 0.087536722 -0.021712627 -0.019830121 0.085137926 -0.019421238 -0.0095524397 0.086177751 -0.023369722 -3.9849259e-05 0.083457254 -0.026963715 -0.020838896 0.081579767 -0.025294287 -0.0044383737 0.082393222 -0.028079769 -0.010984926 0.080499664 -0.033514209 -0.00050212431 0.07473743 -0.036454055 -0.0037276139 0.070893563 -0.0327962 -0.020326894 0.076039799 -0.028079769 -0.010984926 0.080499664 -0.030808657 -0.021011462 0.0781556 -0.026963715 -0.020838896 0.081579767 -0.038165472 -0.0063849282 0.068067767 -0.037024159 -0.020755073 0.070346773 -0.036454055 -0.0037276139 0.070893563 -0.019421238 -0.0095524397 0.086177751 -0.017748946 -0.021047225 0.087166578 -0.013656341 -0.02103645 0.08876548 -0.017748946 -0.021047225 0.087166578 -0.019421238 -0.0095524397 0.086177751 -0.021712627 -0.019830121 0.085137926 -0.013842028 0.011319255 0.087673791 -0.016136641 -0.0034177133 0.087536722 -0.011366855 -0.0024391511 0.089195594 -0.023369722 -3.9849259e-05 0.083457254 -0.025297696 0.0052671479 0.081840992 -0.025294287 -0.0044383737 0.082393222 -0.036454055 -0.0037276139 0.070893563 -0.037864815 0.0021879799 0.067976862 -0.038165472 -0.0063849282 0.068067767 -0.025297696 0.0052671479 0.081840992 -0.027389959 0.0048692618 0.080314599 -0.025294287 -0.0044383737 0.082393222 -0.036454055 -0.0037276139 0.070893563 -0.037024159 -0.020755073 0.070346773 -0.0327962 -0.020326894 0.076039799 -0.027389959 0.0048692618 0.080314599 -0.028079769 -0.010984926 0.080499664 -0.025294287 -0.0044383737 0.082393222 -0.019421238 -0.0095524397 0.086177751 -0.013656341 -0.02103645 0.08876548 -0.016136641 -0.0034177133 0.087536722 -0.027389959 0.0048692618 0.080314599 -0.030412838 0.0016697294 0.077893585 -0.028079769 -0.010984926 0.080499664 -0.013656341 -0.02103645 0.08876548 -0.0091118459 -0.010146281 0.089947052 -0.011366855 -0.0024391511 0.089195594 -0.011366855 -0.0024391511 0.089195594 -0.0091118459 -0.010146281 0.089947052 -0.0087396568 0.0090025738 0.089341015 -0.016136641 -0.0034177133 0.087536722 -0.013656341 -0.02103645 0.08876548 -0.011366855 -0.0024391511 0.089195594 -0.013656341 -0.02103645 0.08876548 -0.0092584053 -0.021776019 0.089956194 -0.0091118459 -0.010146281 0.089947052 -0.030412838 0.0016697294 0.077893585 -0.033514209 -0.00050212431 0.07473743 -0.0327962 -0.020326894 0.076039799 -0.021712627 -0.019830121 0.085137926 -0.025294287 -0.0044383737 0.082393222 -0.026963715 -0.020838896 0.081579767 0.0066801775 -0.065508209 0.015674433 -0.038162477 -0.064978942 0.063099332 -0.040463172 -0.064947069 0.055915747 0.0066801775 -0.065508209 0.015674433 -0.034052242 -0.06501016 0.023485538 -0.025819616 -0.065107428 0.014711141 -0.016411006 -0.065257721 0.084865578 -0.028721161 -0.065101989 0.076762117 0.0066801775 -0.065508209 0.015674433 0.029067036 0.029481051 -0.016298793 0.029300008 0.02962864 -0.014853771 0.027938707 0.026368268 -0.010574806 0.0066801775 -0.065508209 0.015674433 -0.025819616 -0.065107428 0.014711141 -0.018193441 -0.065198995 0.0099327527 0.0066801775 -0.065508209 0.015674433 -0.040463172 -0.064947069 0.055915747 -0.041121993 -0.06493213 0.041888729 0.0066801775 -0.065508209 0.015674433 -0.018193441 -0.065198995 0.0099327527 -0.0098275356 -0.065300442 0.006571182 0.0066801775 -0.065508209 0.015674433 -0.0098275356 -0.065300442 0.006571182 -0.0081031276 -0.065320529 0.0043248166 0.0066801775 -0.065508209 0.015674433 -0.041121993 -0.06493213 0.041888729 -0.039508261 -0.064948529 0.034539089 -0.0091827447 -0.065347925 0.087174095 -0.016411006 -0.065257721 0.084865578 0.0066801775 -0.065508209 0.015674433 0.0066801775 -0.065508209 0.015674433 -0.034403354 -0.065028667 0.07002347 -0.038162477 -0.064978942 0.063099332 0.0066801775 -0.065508209 0.015674433 -0.0081031276 -0.065320529 0.0043248166 0.0083869649 -0.065525465 0.0079812538 -0.028721161 -0.065101989 0.076762117 -0.034403354 -0.065028667 0.07002347 0.0066801775 -0.065508209 0.015674433 0.0066801775 -0.065508209 0.015674433 -0.039508261 -0.064948529 0.034539089 -0.034052242 -0.06501016 0.023485538 0.038655408 -0.023573957 0.025922116 0.040720116 -0.02152851 0.029675642 0.04042666 -0.025670931 0.030365024 0.043693066 -0.025650572 0.044607047 0.04387382 -0.020887734 0.04115003 0.044285234 -0.020849032 0.045970075 0.043693066 -0.025650572 0.044607047 0.043418821 -0.025756231 0.052530564 0.043079257 -0.027837737 0.050271291 0.041137867 -0.03438592 0.048970021 0.043079257 -0.027837737 0.050271291 0.042581256 -0.0258005 0.057125699 0.039663278 -0.035051484 0.036613543 0.042054616 -0.025608853 0.034984987 0.043023247 -0.025652071 0.039213989 0.039663278 -0.035051484 0.036613543 0.043023247 -0.025652071 0.039213989 0.041642644 -0.031462654 0.041567311 0.043693066 -0.025650572 0.044607047 0.044285234 -0.020849032 0.045970075 0.044229552 -0.020250177 0.049756143 0.04042666 -0.025670931 0.030365024 0.040720116 -0.02152851 0.029675642 0.042054616 -0.025608853 0.034984987 0.040720116 -0.02152851 0.029675642 0.043041829 -0.020585312 0.036598511 0.042054616 -0.025608853 0.034984987 0.042054616 -0.025608853 0.034984987 0.043041829 -0.020585312 0.036598511 0.043023247 -0.025652071 0.039213989 0.044229552 -0.020250177 0.049756143 0.043418821 -0.025756231 0.052530564 0.043693066 -0.025650572 0.044607047 0.043079257 -0.027837737 0.050271291 0.043418821 -0.025756231 0.052530564 0.042581256 -0.0258005 0.057125699 0.035896499 -0.034210917 0.026811622 0.036907531 -0.026795356 0.024139296 0.038887203 -0.027845293 0.028324092 0.041642644 -0.031462654 0.041567311 0.043693066 -0.025650572 0.044607047 0.041014597 -0.034940645 0.045751736 0.041642644 -0.031462654 0.041567311 0.043023247 -0.025652071 0.039213989 0.043693066 -0.025650572 0.044607047 0.040720116 -0.02152851 0.029675642 0.041857161 -0.020498851 0.032525513 0.043041829 -0.020585312 0.036598511 0.036907531 -0.026795356 0.024139296 0.038655408 -0.023573957 0.025922116 0.038887203 -0.027845293 0.028324092 0.036907531 -0.026795356 0.024139296 0.03373082 -0.025940649 0.01906223 0.038655408 -0.023573957 0.025922116 0.043418821 -0.025756231 0.052530564 0.044229552 -0.020250177 0.049756143 0.043320738 -0.021800146 0.056080658 0.029300008 0.02962864 -0.014853771 0.029067036 0.029481051 -0.016298793 0.029685857 0.031335127 -0.021129696 0.043418821 -0.025756231 0.052530564 0.043320738 -0.021800146 0.056080658 0.042581256 -0.0258005 0.057125699 0.03373082 -0.025940649 0.01906223 0.036930233 -0.021360863 0.022752441 0.038655408 -0.023573957 0.025922116 0.041014597 -0.034940645 0.045751736 0.043693066 -0.025650572 0.044607047 0.043079257 -0.027837737 0.050271291 0.038887203 -0.027845293 0.028324092 0.042054616 -0.025608853 0.034984987 0.039663278 -0.035051484 0.036613543 0.043041829 -0.020585312 0.036598511 0.04387382 -0.020887734 0.04115003 0.043023247 -0.025652071 0.039213989 0.038887203 -0.027845293 0.028324092 0.038655408 -0.023573957 0.025922116 0.04042666 -0.025670931 0.030365024 0.038655408 -0.023573957 0.025922116 0.036930233 -0.021360863 0.022752441 0.040720116 -0.02152851 0.029675642 0.043023247 -0.025652071 0.039213989 0.04387382 -0.020887734 0.04115003 0.043693066 -0.025650572 0.044607047 0.038887203 -0.027845293 0.028324092 0.04042666 -0.025670931 0.030365024 0.042054616 -0.025608853 0.034984987 0.023821037 -0.056535941 0.010970903 0.024627261 -0.061428465 0.01413532 0.024605921 -0.058838733 0.012940448 0.024605921 -0.058838733 0.012940448 0.024627261 -0.061428465 0.01413532 0.026205728 -0.061448179 0.014910609 0.029732186 -0.035355411 0.017613998 0.026732082 -0.033514567 0.01304034 0.03373082 -0.025940649 0.01906223 0.034694202 -0.010126338 0.019657275 0.036930233 -0.021360863 0.022752441 0.033594284 -0.021603739 0.018148052 0.03373082 -0.025940649 0.01906223 0.033594284 -0.021603739 0.018148052 0.036930233 -0.021360863 0.022752441 0.029732186 -0.035355411 0.017613998 0.036907531 -0.026795356 0.024139296 0.035896499 -0.034210917 0.026811622 0.036907531 -0.026795356 0.024139296 0.029732186 -0.035355411 0.017613998 0.03373082 -0.025940649 0.01906223 0.015198345 0.03840046 -0.031664476 0.017013824 0.035227552 -0.040024705 0.016498437 0.034402125 -0.040522434 0.018098772 0.039830901 -0.027114119 0.015198345 0.03840046 -0.031664476 0.01805119 0.039353568 -0.026927391 0.031780202 -0.0254345 0.016402738 0.031307433 -0.02228364 0.015561963 0.033594284 -0.021603739 0.018148052 0.026732082 -0.033514567 0.01304034 0.031780202 -0.0254345 0.016402738 0.03373082 -0.025940649 0.01906223 0.031307433 -0.02228364 0.015561963 0.028717414 -0.017602907 0.013346219 0.031670149 -0.0099382466 0.016467055 0.03373082 -0.025940649 0.01906223 0.031780202 -0.0254345 0.016402738 0.033594284 -0.021603739 0.018148052 0.027967429 -0.024315823 0.012433588 0.028717414 -0.017602907 0.013346219 0.031307433 -0.02228364 0.015561963 0.031307433 -0.02228364 0.015561963 0.031670149 -0.0099382466 0.016467055 0.033594284 -0.021603739 0.018148052 0.027967429 -0.024315823 0.012433588 0.031307433 -0.02228364 0.015561963 0.026768334 -0.027553329 0.011473887 0.027938707 0.026368268 -0.010574806 0.028157281 0.02589003 -0.0086628301 0.027427059 0.024354747 -0.0075978995 0.031780202 -0.0254345 0.016402738 0.026768334 -0.027553329 0.011473887 0.031307433 -0.02228364 0.015561963 0.013105687 0.050579425 0.079283766 0.0044920831 0.047120176 0.082784921 0.0065272972 0.048211526 0.082643874 0.0044920831 0.047120176 0.082784921 -0.0066501037 0.04605519 0.081996538 0.0041072811 0.047590904 0.08310096 0.027818246 0.062480252 0.024715394 0.034916248 0.060148507 0.038305059 0.032696977 0.061827142 0.032244343 0.0087782359 0.063956924 0.013472343 0.0087827463 0.064039499 0.01345678 0.0045031826 0.064002559 0.012528931 -0.0066501037 0.04605519 0.081996538 0.0087827463 0.064039499 0.01345678 0.0087782359 0.063956924 0.013472343 -0.0066501037 0.04605519 0.081996538 0.0087782359 0.063956924 0.013472343 -0.0066451351 0.045914344 0.081971139 0.0093972348 0.064667821 0.013492428 0.0087827463 0.064039499 0.01345678 0.013515718 0.06455148 0.01473712 0.032696977 0.061827142 0.032244343 0.027919509 0.063073359 0.024852104 0.027818246 0.062480252 0.024715394 0.035035308 0.060664669 0.038827404 0.032696977 0.061827142 0.032244343 0.034916248 0.060148507 0.038305059 0.035958726 0.059061762 0.04750539 0.035035308 0.060664669 0.038827404 0.034916248 0.060148507 0.038305059 0.035979249 0.058751728 0.045909096 0.035958726 0.059061762 0.04750539 0.034916248 0.060148507 0.038305059 0.034441527 0.056676473 0.056630269 0.035958726 0.059061762 0.04750539 0.035979249 0.058751728 0.045909096 0.033584092 0.056790505 0.059092689 0.035958726 0.059061762 0.04750539 0.034441527 0.056676473 0.056630269 0.031571414 0.055928301 0.063262969 0.033584092 0.056790505 0.059092689 0.034441527 0.056676473 0.056630269 0.027044659 0.054001022 0.069308735 0.031571414 0.055928301 0.063262969 0.034441527 0.056676473 0.056630269 0.027717311 0.054760698 0.068661369 0.031571414 0.055928301 0.063262969 0.027044659 0.054001022 0.069308735 0.020844538 0.053369727 0.074693583 0.027717311 0.054760698 0.068661369 0.027044659 0.054001022 0.069308735 0.013119927 0.051174164 0.079489909 0.020844538 0.053369727 0.074693583 0.013105687 0.050579425 0.079283766 0.013119927 0.051174164 0.079489909 0.013105687 0.050579425 0.079283766 0.0065272972 0.048211526 0.082643874 0.019670764 0.064154647 0.017758433 0.013515718 0.06455148 0.01473712 0.018367246 0.063664906 0.016950546 0.027919509 0.063073359 0.024852104 0.025044223 0.06355162 0.021832388 0.027818246 0.062480252 0.024715394 0.0044920831 0.047120176 0.082784921 0.0041072811 0.047590904 0.08310096 0.0065272972 0.048211526 0.082643874 -0.017277587 -0.02604326 0.086650148 -0.015238449 -0.023411445 0.088018142 -0.024114944 -0.025453167 0.083014511 -0.0279656 -0.023537887 0.080513395 -0.026963715 -0.020838896 0.081579767 -0.030808657 -0.021011462 0.0781556 -0.015238449 -0.023411445 0.088018142 -0.021799777 -0.02318052 0.084910326 -0.024114944 -0.025453167 0.083014511 -0.015238449 -0.023411445 0.088018142 -0.017748946 -0.021047225 0.087166578 -0.021799777 -0.02318052 0.084910326 -0.032171555 -0.025853084 0.07578633 -0.035255414 -0.025528179 0.072011247 -0.03050762 -0.03333015 0.074431933 -0.022744779 -0.034645222 0.080844626 -0.024114944 -0.025453167 0.083014511 -0.026679086 -0.025923435 0.080978982 -0.021712627 -0.019830121 0.085137926 -0.026963715 -0.020838896 0.081579767 -0.021799777 -0.02318052 0.084910326 -0.032171555 -0.025853084 0.07578633 -0.030808657 -0.021011462 0.0781556 -0.034025829 -0.02369868 0.074227199 -0.022744779 -0.034645222 0.080844626 -0.026679086 -0.025923435 0.080978982 -0.027208498 -0.031302668 0.078449018 -0.0088287927 -0.032432109 0.087423012 -0.0091395415 -0.026892619 0.089133702 -0.01299426 -0.033549245 0.085976429 -0.032171555 -0.025853084 0.07578633 -0.034025829 -0.02369868 0.074227199 -0.035255414 -0.025528179 0.072011247 -0.01299426 -0.033549245 0.085976429 -0.0091395415 -0.026892619 0.089133702 -0.017277587 -0.02604326 0.086650148 -0.030808657 -0.021011462 0.0781556 -0.0327962 -0.020326894 0.076039799 -0.034025829 -0.02369868 0.074227199 0.026454436 0.01845384 -0.00026660052 0.025751799 0.016223451 0.00096342195 0.026407007 0.019967429 -0.0024634318 -0.01299426 -0.033549245 0.085976429 -0.017277587 -0.02604326 0.086650148 -0.017615473 -0.033493761 0.084100448 -0.017748946 -0.021047225 0.087166578 -0.021712627 -0.019830121 0.085137926 -0.021799777 -0.02318052 0.084910326 -0.027208498 -0.031302668 0.078449018 -0.026679086 -0.025923435 0.080978982 -0.03050762 -0.03333015 0.074431933 -0.0091395415 -0.026892619 0.089133702 -0.015238449 -0.023411445 0.088018142 -0.017277587 -0.02604326 0.086650148 -0.0091395415 -0.026892619 0.089133702 -0.0092584053 -0.021776019 0.089956194 -0.015238449 -0.023411445 0.088018142 -0.024114944 -0.025453167 0.083014511 -0.021799777 -0.02318052 0.084910326 -0.0279656 -0.023537887 0.080513395 -0.024114944 -0.025453167 0.083014511 -0.0279656 -0.023537887 0.080513395 -0.026679086 -0.025923435 0.080978982 -0.015238449 -0.023411445 0.088018142 -0.0092584053 -0.021776019 0.089956194 -0.013656341 -0.02103645 0.08876548 -0.021799777 -0.02318052 0.084910326 -0.026963715 -0.020838896 0.081579767 -0.0279656 -0.023537887 0.080513395 -0.03050762 -0.03333015 0.074431933 -0.026679086 -0.025923435 0.080978982 -0.032171555 -0.025853084 0.07578633 -0.017615473 -0.033493761 0.084100448 -0.024114944 -0.025453167 0.083014511 -0.022744779 -0.034645222 0.080844626 -0.026679086 -0.025923435 0.080978982 -0.0279656 -0.023537887 0.080513395 -0.032171555 -0.025853084 0.07578633 -0.015238449 -0.023411445 0.088018142 -0.013656341 -0.02103645 0.08876548 -0.017748946 -0.021047225 0.087166578 -0.017615473 -0.033493761 0.084100448 -0.017277587 -0.02604326 0.086650148 -0.024114944 -0.025453167 0.083014511 -0.0279656 -0.023537887 0.080513395 -0.030808657 -0.021011462 0.0781556 -0.032171555 -0.025853084 0.07578633 0.032285888 -0.044547826 0.023140954 0.034843579 -0.041667055 0.027232168 0.035964664 -0.04785943 0.029066974 0.029732186 -0.035355411 0.017613998 0.035159796 -0.037927389 0.027011469 0.026132988 -0.040161267 0.013579399 0.026732082 -0.033514567 0.01304034 0.029732186 -0.035355411 0.017613998 0.026132988 -0.040161267 0.013579399 0.02599852 -0.045233779 0.0135803 0.032285888 -0.044547826 0.023140954 0.027344124 -0.04952503 0.015349535 0.032285888 -0.044547826 0.023140954 0.026132988 -0.040161267 0.013579399 0.035159796 -0.037927389 0.027011469 0.032285888 -0.044547826 0.023140954 0.035159796 -0.037927389 0.027011469 0.034843579 -0.041667055 0.027232168 0.033493467 -0.053573273 0.022867037 0.031838987 -0.049235538 0.021828139 0.035964664 -0.04785943 0.029066974 0.033926051 -0.06130138 0.019933809 0.031071335 -0.054706536 0.019015193 0.033493467 -0.053573273 0.022867037 0.032285888 -0.044547826 0.023140954 0.02599852 -0.045233779 0.0135803 0.026132988 -0.040161267 0.013579399 0.035896499 -0.034210917 0.026811622 0.035159796 -0.037927389 0.027011469 0.029732186 -0.035355411 0.017613998 0.027344124 -0.04952503 0.015349535 0.032285888 -0.044547826 0.023140954 0.031838987 -0.049235538 0.021828139 0.027235745 -0.0047838097 0.011872026 0.00907885 -0.0062289829 0.0081855487 0.026716895 0.00031552088 0.010315968 0.026741561 -0.053483788 -0.0057367943 0.026163166 -0.05102491 -0.0029920088 0.029167807 -0.053447034 -0.0051459889 0.00907885 -0.0062289829 0.0081855487 0.0095851608 0.0011128844 0.006314795 0.026716895 0.00031552088 0.010315968 0.027344124 -0.04952503 0.015349535 0.031838987 -0.049235538 0.021828139 0.031071335 -0.054706536 0.019015193 0.031071335 -0.054706536 0.019015193 0.031838987 -0.049235538 0.021828139 0.033493467 -0.053573273 0.022867037 0.031838987 -0.049235538 0.021828139 0.032285888 -0.044547826 0.023140954 0.035964664 -0.04785943 0.029066974 0.027194351 -0.05396175 0.00442923 0.026940294 -0.054453585 0.0030369593 0.029625067 -0.053982966 -0.0045138309 0.026056906 -0.056018855 0.0077104638 0.026940294 -0.054453585 0.0030369593 0.027194351 -0.05396175 0.00442923 0.026415244 -0.057255175 0.010065997 0.026056906 -0.056018855 0.0077104638 0.027194351 -0.05396175 0.00442923 0.033926051 -0.06130138 0.019933809 0.037807606 -0.060678266 0.026038857 0.03608175 -0.063138671 0.02244078 0.03608175 -0.063138671 0.02244078 0.033346258 -0.066538952 0.018605933 0.033926051 -0.06130138 0.019933809 0.0095851608 0.0011128844 0.006314795 0.010110986 0.0062552746 0.0042330674 0.026716895 0.00031552088 0.010315968 0.033926051 -0.06130138 0.019933809 0.033493467 -0.053573273 0.022867037 0.037807606 -0.060678266 0.026038857 0.026716895 0.00031552088 0.010315968 0.010110986 0.0062552746 0.0042330674 0.025845308 0.0072811274 0.0071062366 0.029167807 -0.053447034 -0.0051459889 0.026163166 -0.05102491 -0.0029920088 0.02661702 -0.043458484 0.0038442791 0.033493467 -0.053573273 0.022867037 0.03639859 -0.05251747 0.028252084 0.037807606 -0.060678266 0.026038857 0.026583629 -0.02440127 0.014563391 0.024867177 -0.024339804 0.012826595 0.024909303 -0.024721142 0.013869436 0.026163166 -0.05102491 -0.0029920088 0.02456063 -0.041405573 0.0047684833 0.02661702 -0.043458484 0.0038442791 0.023344727 -0.025328081 0.011124603 0.024909303 -0.024721142 0.013869436 0.024867177 -0.024339804 0.012826595 0.023344727 -0.025328081 0.011124603 0.024867177 -0.024339804 0.012826595 0.025113733 -0.024380684 0.011709211 0.026583629 -0.02440127 0.014563391 0.024909303 -0.024721142 0.013869436 0.02390104 -0.029023731 0.011487897 0.024909303 -0.024721142 0.013869436 0.023344727 -0.025328081 0.011124603 0.02390104 -0.029023731 0.011487897 0.010110986 0.0062552746 0.0042330674 0.010667912 0.010505383 0.0019617395 0.025845308 0.0072811274 0.0071062366 0.023344727 -0.025328081 0.011124603 0.023585334 -0.030373456 0.009807176 0.02390104 -0.029023731 0.011487897 0.025845308 0.0072811274 0.0071062366 0.010667912 0.010505383 0.0019617395 0.025526889 0.01139563 0.0045738942 0.015198345 0.03840046 -0.031664476 0.018098772 0.039830901 -0.027114119 0.021030853 0.035142962 -0.039213959 0.015198345 0.03840046 -0.031664476 0.021030853 0.035142962 -0.039213959 0.017013824 0.035227552 -0.040024705 0.023173228 -0.066409074 0.0097573446 0.023292949 -0.060910985 0.011538203 0.023240278 -0.060911302 0.0096119838 0.023173228 -0.066409074 0.0097573446 0.02343072 -0.066413388 0.012207177 0.023292949 -0.060910985 0.011538203 0.02343072 -0.066413388 0.012207177 0.024627261 -0.061428465 0.01413532 0.023292949 -0.060910985 0.011538203 0.02456063 -0.041405573 0.0047684833 0.025507912 -0.036688086 0.0076721516 0.02661702 -0.043458484 0.0038442791 0.02343072 -0.066413388 0.012207177 0.024630187 -0.066429205 0.014189926 0.024627261 -0.061428465 0.01413532 0.016023289 0.035854675 -0.038295545 0.019888213 0.029675659 -0.056060288 0.0059493701 0.03084488 -0.055481438 0.0021028239 0.03120923 -0.053920474 0.0058628302 0.035546508 -0.04045701 0.0059493701 0.03084488 -0.055481438 0.0061884499 0.029480355 -0.059397317 0.0059493701 0.03084488 -0.055481438 0.019888213 0.029675659 -0.056060288 0.010667912 0.010505383 0.0019617395 0.011304224 0.014493369 -0.00068253104 0.025526889 0.01139563 0.0045738942 -0.0083725229 0.02800524 -0.059327569 -0.0052278172 0.029866874 -0.054074749 0.0021028239 0.03120923 -0.053920474 -0.031206504 0.013574293 0.011041867 -0.03203211 0.011082133 0.012377392 -0.032415226 0.010428081 0.014995199 -0.0052278172 0.029866874 -0.054074749 -0.0082270671 0.029964719 -0.049385224 -0.0035917538 0.031910565 -0.047883749 0.025526889 0.01139563 0.0045738942 0.011304224 0.014493369 -0.00068253104 0.025751799 0.016223451 0.00096342195 -0.0035917538 0.031910565 -0.047883749 -0.0092851585 0.030128701 -0.045519825 -0.0079947924 0.032321624 -0.040069025 -0.028604034 0.018402373 0.003798838 -0.031206504 0.013574293 0.011041867 -0.029361723 0.01846545 0.0077447416 -0.0010206603 0.032306254 -0.048803914 -0.0052278172 0.029866874 -0.054074749 -0.0035917538 0.031910565 -0.047883749 -0.023224719 0.023748089 -0.016545815 -0.023288215 0.023304496 -0.012074575 -0.01638074 0.027744202 -0.036156435 0.011304224 0.014493369 -0.00068253104 0.012109476 0.018608399 -0.0040811258 0.025751799 0.016223451 0.00096342195 -0.00011573888 0.029124551 -0.059860341 -0.0083725229 0.02800524 -0.059327569 0.0021028239 0.03120923 -0.053920474 0.02456063 -0.041405573 0.0047684833 0.023585334 -0.030373456 0.009807176 0.025507912 -0.036688086 0.0076721516 0.025751799 0.016223451 0.00096342195 0.012109476 0.018608399 -0.0040811258 0.026407007 0.019967429 -0.0024634318 0.023585334 -0.030373456 0.009807176 0.025664182 -0.030631622 0.010199384 0.025507912 -0.036688086 0.0076721516 -0.013346918 0.028795959 -0.03802881 -0.023288215 0.023304496 -0.012074575 -0.015926493 0.027723774 -0.030959072 -0.01638074 0.027744202 -0.036156435 -0.023288215 0.023304496 -0.012074575 -0.013346918 0.028795959 -0.03802881 -0.029054651 0.018767726 0.00039948861 -0.031312313 0.01550551 0.0066524753 -0.028604034 0.018402373 0.003798838 0.012109476 0.018608399 -0.0040811258 0.013044361 0.022467714 -0.0080779931 0.026407007 0.019967429 -0.0024634318 -0.026685787 0.021857172 0.0008788741 -0.028604034 0.018402373 0.003798838 -0.029361723 0.01846545 0.0077447416 -0.029054651 0.018767726 0.00039948861 -0.023288215 0.023304496 -0.012074575 -0.023224719 0.023748089 -0.016545815 0.0021028239 0.03120923 -0.053920474 -0.0052278172 0.029866874 -0.054074749 -0.0010206603 0.032306254 -0.048803914 -0.020502074 0.02518006 -0.019159785 -0.023288215 0.023304496 -0.012074575 -0.019189879 0.027155275 -0.018837832 0.026407007 0.019967429 -0.0024634318 0.013044361 0.022467714 -0.0080779931 0.027427059 0.024354747 -0.0075978995 -0.015492058 0.029359074 -0.027254654 -0.020502074 0.02518006 -0.019159785 -0.019189879 0.027155275 -0.018837832 -0.01254984 0.031005081 -0.032544669 -0.015926493 0.027723774 -0.030959072 -0.020502074 0.02518006 -0.019159785 -0.01254984 0.031005081 -0.032544669 -0.020502074 0.02518006 -0.019159785 -0.015492058 0.029359074 -0.027254654 0.013044361 0.022467714 -0.0080779931 0.013931894 0.02541885 -0.011912544 0.027427059 0.024354747 -0.0075978995 0.023585334 -0.030373456 0.009807176 0.026768334 -0.027553329 0.011473887 0.025664182 -0.030631622 0.010199384 0.027427059 0.024354747 -0.0075978995 0.013931894 0.02541885 -0.011912544 0.027938707 0.026368268 -0.010574806 -0.00011573888 0.029124551 -0.059860341 0.0021028239 0.03120923 -0.053920474 0.0059493701 0.03084488 -0.055481438 -0.010758747 0.030911881 -0.037738878 -0.015926493 0.027723774 -0.030959072 -0.01254984 0.031005081 -0.032544669 -0.034306284 -0.013843677 0.016026773 -0.034256507 -0.00080390816 0.014730196 -0.034767289 -0.017624211 0.015455363 0.023585334 -0.030373456 0.009807176 0.027967429 -0.024315823 0.012433588 0.026768334 -0.027553329 0.011473887 -0.010758747 0.030911881 -0.037738878 -0.013346918 0.028795959 -0.03802881 -0.015926493 0.027723774 -0.030959072 0.013931894 0.02541885 -0.011912544 0.015391064 0.029164258 -0.018279174 0.027938707 0.026368268 -0.010574806 0.027938707 0.026368268 -0.010574806 0.015391064 0.029164258 -0.018279174 0.029067036 0.029481051 -0.016298793 -0.033119645 0.0044706897 0.014808428 -0.034256507 -0.00080390816 0.014730196 -0.034306284 -0.013843677 0.016026773 0.0061884499 0.029480355 -0.059397317 -0.00011573888 0.029124551 -0.059860341 0.0059493701 0.03084488 -0.055481438 -0.033952165 -0.0065099555 0.016601145 -0.034929864 -0.0136336 0.018540738 -0.033436019 0.0037336175 0.016811 -0.01638074 0.027744202 -0.036156435 -0.0082270671 0.029964719 -0.049385224 -0.012817238 0.029181633 -0.046233743 0.029067036 0.029481051 -0.016298793 0.016106201 0.030529549 -0.021426113 0.029685857 0.031335127 -0.021129696 0.015391064 0.029164258 -0.018279174 0.016106201 0.030529549 -0.021426113 0.029067036 0.029481051 -0.016298793 0.016106201 0.030529549 -0.021426113 0.012400466 0.030623073 -0.022261472 0.029685857 0.031335127 -0.021129696 0.023585334 -0.030373456 0.009807176 0.023344727 -0.025328081 0.011124603 0.027967429 -0.024315823 0.012433588 -0.019189879 0.027155275 -0.018837832 -0.023288215 0.023304496 -0.012074575 -0.028604034 0.018402373 0.003798838 -0.0092851585 0.030128701 -0.045519825 -0.01638074 0.027744202 -0.036156435 -0.013346918 0.028795959 -0.03802881 0.012400466 0.030623073 -0.022261472 0.013584231 0.03233245 -0.027500918 0.029685857 0.031335127 -0.021129696 0.029685857 0.031335127 -0.021129696 0.013584231 0.03233245 -0.027500918 0.03006052 0.03279344 -0.026728304 -0.020502074 0.02518006 -0.019159785 -0.015926493 0.027723774 -0.030959072 -0.023288215 0.023304496 -0.012074575 -0.010758747 0.030911881 -0.037738878 -0.01254984 0.031005081 -0.032544669 -0.010623009 0.03430751 -0.029588323 -0.033119645 0.0044706897 0.014808428 -0.034306284 -0.013843677 0.016026773 -0.033952165 -0.0065099555 0.016601145 -0.0092851585 0.030128701 -0.045519825 -0.013346918 0.028795959 -0.03802881 -0.010758747 0.030911881 -0.037738878 0.023344727 -0.025328081 0.011124603 0.025113733 -0.024380684 0.011709211 0.027967429 -0.024315823 0.012433588 0.03006052 0.03279344 -0.026728304 0.014623549 0.033333361 -0.032128654 0.029867483 0.033322304 -0.029920451 0.013584231 0.03233245 -0.027500918 0.014623549 0.033333361 -0.032128654 0.03006052 0.03279344 -0.026728304 -0.010460637 0.029024847 -0.053396471 -0.012817238 0.029181633 -0.046233743 -0.0082270671 0.029964719 -0.049385224 -0.033119645 0.0044706897 0.014808428 -0.033952165 -0.0065099555 0.016601145 -0.033436019 0.0037336175 0.016811 -0.0082270671 0.029964719 -0.049385224 -0.01638074 0.027744202 -0.036156435 -0.0092851585 0.030128701 -0.045519825 -0.032415226 0.010428081 0.014995199 -0.033119645 0.0044706897 0.014808428 -0.033436019 0.0037336175 0.016811 -0.034256507 -0.00080390816 0.014730196 -0.033119645 0.0044706897 0.014808428 -0.033214211 0.010138418 0.011902412 -0.03203211 0.011082133 0.012377392 -0.033119645 0.0044706897 0.014808428 -0.032415226 0.010428081 0.014995199 -0.033214211 0.010138418 0.011902412 -0.033119645 0.0044706897 0.014808428 -0.03203211 0.011082133 0.012377392 0.014623549 0.033333361 -0.032128654 0.015685411 0.033843715 -0.036885753 0.029867483 0.033322304 -0.029920451 -0.033214211 0.010138418 0.011902412 -0.03203211 0.011082133 0.012377392 -0.031312313 0.01550551 0.0066524753 0.029867483 0.033322304 -0.029920451 0.015685411 0.033843715 -0.036885753 0.026902424 0.033773795 -0.035902832 -0.031312313 0.01550551 0.0066524753 -0.03203211 0.011082133 0.012377392 -0.031206504 0.013574293 0.011041867 -0.010460637 0.029024847 -0.053396471 -0.0082270671 0.029964719 -0.049385224 -0.0052278172 0.029866874 -0.054074749 -0.0092851585 0.030128701 -0.045519825 -0.010758747 0.030911881 -0.037738878 -0.0079947924 0.032321624 -0.040069025 0.025113733 -0.024380684 0.011709211 0.025044618 -0.020066813 0.012324031 0.027967429 -0.024315823 0.012433588 0.025044618 -0.020066813 0.012324031 0.028717414 -0.017602907 0.013346219 0.027967429 -0.024315823 0.012433588 0.026902424 0.033773795 -0.035902832 0.016391251 0.033919312 -0.040062577 0.021322401 0.034060936 -0.03925075 -0.031206504 0.013574293 0.011041867 -0.032415226 0.010428081 0.014995199 -0.029361723 0.01846545 0.0077447416 0.015685411 0.033843715 -0.036885753 0.016391251 0.033919312 -0.040062577 0.026902424 0.033773795 -0.035902832 -0.0083725229 0.02800524 -0.059327569 -0.010460637 0.029024847 -0.053396471 -0.0052278172 0.029866874 -0.054074749 -0.028604034 0.018402373 0.003798838 -0.031312313 0.01550551 0.0066524753 -0.031206504 0.013574293 0.011041867 0.025044618 -0.020066813 0.012324031 0.025677517 -0.015165033 0.012711923 0.028717414 -0.017602907 0.013346219 0.028717414 -0.017602907 0.013346219 0.025677517 -0.015165033 0.012711923 0.02801534 -0.011738626 0.01313902 -0.028604034 0.018402373 0.003798838 -0.023288215 0.023304496 -0.012074575 -0.029054651 0.018767726 0.00039948861 0.025677517 -0.015165033 0.012711923 0.023262994 -0.014252786 0.012145598 0.02801534 -0.011738626 0.01313902 -0.026685787 0.021857172 0.0008788741 -0.019189879 0.027155275 -0.018837832 -0.028604034 0.018402373 0.003798838 -0.0035917538 0.031910565 -0.047883749 -0.0082270671 0.029964719 -0.049385224 -0.0092851585 0.030128701 -0.045519825 0.039576385 0.049289931 0.046505526 0.039782878 0.044900969 0.05188214 0.042041127 0.030396787 0.047807209 0.031675428 0.054004438 0.06583301 0.029614244 0.049374588 0.070958167 0.034392923 0.054705523 0.061315853 0.041113742 0.036409497 0.050827593 0.042351 0.01661445 0.055536229 0.043098669 0.017227709 0.049878735 0.023262994 -0.014252786 0.012145598 0.023526005 -0.0064104935 0.011392425 0.02801534 -0.011738626 0.01313902 0.037925001 0.055686448 0.039914783 0.037875593 0.056989674 0.044945449 0.039736349 0.046287034 0.040347539 0.023526005 -0.0064104935 0.011392425 0.027235745 -0.0047838097 0.011872026 0.02801534 -0.011738626 0.01313902 0.035146046 0.052670807 0.061629366 0.034392923 0.054705523 0.061315853 0.034600627 0.048693445 0.064635515 0.023526005 -0.0064104935 0.011392425 0.00907885 -0.0062289829 0.0081855487 0.027235745 -0.0047838097 0.011872026 0.037875593 0.056989674 0.044945449 0.037431698 0.057199847 0.049064569 0.039005484 0.052314028 0.047227431 0.034992564 0.042218462 0.06645152 0.036073711 0.034145191 0.067080058 0.03786533 0.037900895 0.062243871 0.037049934 0.050418712 0.032152377 0.040043231 0.039087649 0.036585227 0.03933626 0.039500058 0.034103476 0.03719661 0.053083587 0.056445401 0.035146046 0.052670807 0.061629366 0.03786533 0.037900895 0.062243871 0.039782878 0.044900969 0.05188214 0.041113742 0.036409497 0.050827593 0.042041127 0.030396787 0.047807209 0.026768334 -0.027553329 0.011473887 0.025523297 -0.037324622 0.011234845 0.025664182 -0.030631622 0.010199384 0.0432074 0.0090723773 0.05363065 0.042072795 0.0090467613 0.05876971 0.042468086 0.00064661278 0.058850687 0.037049934 0.050418712 0.032152377 0.034947492 0.047294401 0.026312755 0.034295373 0.057047933 0.029241471 0.041113742 0.036409497 0.050827593 0.040681992 0.036204383 0.053771034 0.042351 0.01661445 0.055536229 0.029614244 0.049374588 0.070958167 0.025240744 0.046402611 0.076039605 0.027730489 0.044658978 0.074627824 0.037049934 0.050418712 0.032152377 0.03933626 0.039500058 0.034103476 0.03707052 0.040385548 0.028447749 0.040243343 0.029669218 0.033627767 0.040928334 0.030402642 0.03636511 0.041050427 0.015516313 0.032831214 0.038716588 0.025019787 0.064273164 0.036494888 0.021964885 0.069149584 0.039211221 0.014758835 0.065350324 0.042072795 0.0090467613 0.05876971 0.039211221 0.014758835 0.065350324 0.039472952 0.008273975 0.065776952 0.034947492 0.047294401 0.026312755 0.032541871 0.054116111 0.02469088 0.034295373 0.057047933 0.029241471 0.036281794 0.056999311 0.053911109 0.03719661 0.053083587 0.056445401 0.037431698 0.057199847 0.049064569 0.037049934 0.050418712 0.032152377 0.037792627 0.05416768 0.03725788 0.040043231 0.039087649 0.036585227 0.037875593 0.056989674 0.044945449 0.039576385 0.049289931 0.046505526 0.039736349 0.046287034 0.040347539 0.037431698 0.057199847 0.049064569 0.038149744 0.052532576 0.053367466 0.039005484 0.052314028 0.047227431 0.025898397 0.037223183 0.07842043 0.021064509 0.040341504 0.080912538 0.021441795 0.031038402 0.082892865 0.037875593 0.056989674 0.044945449 0.039005484 0.052314028 0.047227431 0.039576385 0.049289931 0.046505526 0.029711323 0.033064287 0.075882815 0.02647564 0.031243769 0.079262674 0.028493991 0.028388439 0.078002445 0.035831559 0.027147522 0.023644529 0.037265942 0.0022252451 0.023658972 0.035249565 0.0080825938 0.021023072 0.025507912 -0.036688086 0.0076721516 0.025664182 -0.030631622 0.010199384 0.02595984 -0.037568126 0.0079242941 0.032935083 0.028990436 0.072999418 0.029711323 0.033064287 0.075882815 0.028493991 0.028388439 0.078002445 0.042107336 0.01336893 0.035975628 0.043579698 0.0089957137 0.043319292 0.04342328 0.0052339709 0.040537748 0.034392923 0.054705523 0.061315853 0.029614244 0.049374588 0.070958167 0.034600627 0.048693445 0.064635515 0.031973958 0.043880504 0.070306294 0.027730489 0.044658978 0.074627824 0.032741461 0.039557427 0.070666336 0.042041127 0.030396787 0.047807209 0.043098669 0.017227709 0.049878735 0.043186709 0.017679108 0.046616301 0.039211221 0.014758835 0.065350324 0.036494888 0.021964885 0.069149584 0.039472952 0.008273975 0.065776952 0.034526121 0.03643585 0.023094688 0.03707052 0.040385548 0.028447749 0.036893792 0.031799033 0.02618791 0.036494888 0.021964885 0.069149584 0.035444707 0.010260151 0.07243304 0.037839886 0.0012658797 0.069542401 0.041050427 0.015516313 0.032831214 0.042107336 0.01336893 0.035975628 0.041837554 0.0006042379 0.033239331 0.037839886 0.0012658797 0.069542401 0.039472952 0.008273975 0.065776952 0.036494888 0.021964885 0.069149584 0.031973958 0.043880504 0.070306294 0.032741461 0.039557427 0.070666336 0.034992564 0.042218462 0.06645152 0.025898397 0.037223183 0.07842043 0.021441795 0.031038402 0.082892865 0.02647564 0.031243769 0.079262674 0.031475097 0.058155492 0.024948763 0.029223116 0.060454857 0.023197696 0.032271691 0.060966015 0.028615745 0.031475097 0.058155492 0.024948763 0.032271691 0.060966015 0.028615745 0.034140855 0.059199881 0.030580215 0.031475097 0.058155492 0.024948763 0.034140855 0.059199881 0.030580215 0.034295373 0.057047933 0.029241471 0.037792627 0.05416768 0.03725788 0.039736349 0.046287034 0.040347539 0.040043231 0.039087649 0.036585227 0.027717311 0.054760698 0.068661369 0.027481297 0.05279297 0.071003951 0.031675428 0.054004438 0.06583301 0.040043231 0.039087649 0.036585227 0.042216104 0.023644084 0.03987921 0.040928334 0.030402642 0.03636511 0.036065321 0.057134338 0.033687923 0.034140855 0.059199881 0.030580215 0.036178153 0.059484389 0.038110174 0.037875593 0.056989674 0.044945449 0.037925001 0.055686448 0.039914783 0.036178153 0.059484389 0.038110174 0.037875593 0.056989674 0.044945449 0.036742326 0.058663741 0.046676263 0.037431698 0.057199847 0.049064569 0.035146046 0.052670807 0.061629366 0.034600627 0.048693445 0.064635515 0.03786533 0.037900895 0.062243871 0.036281794 0.056999311 0.053911109 0.035958726 0.059061762 0.04750539 0.033584092 0.056790505 0.059092689 0.038149744 0.052532576 0.053367466 0.037431698 0.057199847 0.049064569 0.03719661 0.053083587 0.056445401 0.040681992 0.036204383 0.053771034 0.04071616 0.029151736 0.057383686 0.042351 0.01661445 0.055536229 0.042072795 0.0090467613 0.05876971 0.041568302 0.00021613242 0.061733227 0.042468086 0.00064661278 0.058850687 0.039406866 0.039846659 0.05705262 0.040111754 0.022588361 0.061482575 0.04071616 0.029151736 0.057383686 0.036494888 0.021964885 0.069149584 0.032935083 0.028990436 0.072999418 0.035444707 0.010260151 0.07243304 0.031675428 0.054004438 0.06583301 0.027481297 0.05279297 0.071003951 0.029614244 0.049374588 0.070958167 0.03719661 0.053083587 0.056445401 0.03786533 0.037900895 0.062243871 0.039406866 0.039846659 0.05705262 0.027919509 0.063073359 0.024852104 0.032696977 0.061827142 0.032244343 0.032271691 0.060966015 0.028615745 0.027919509 0.063073359 0.024852104 0.032271691 0.060966015 0.028615745 0.029223116 0.060454857 0.023197696 0.032935083 0.028990436 0.072999418 0.028493991 0.028388439 0.078002445 0.033532962 0.020067303 0.073772296 0.039406866 0.039846659 0.05705262 0.03786533 0.037900895 0.062243871 0.040111754 0.022588361 0.061482575 0.036281794 0.056999311 0.053911109 0.033584092 0.056790505 0.059092689 0.034392923 0.054705523 0.061315853 0.042072795 0.0090467613 0.05876971 0.039472952 0.008273975 0.065776952 0.041568302 0.00021613242 0.061733227 0.026768334 -0.027553329 0.011473887 0.031780202 -0.0254345 0.016402738 0.026732082 -0.033514567 0.01304034 0.024548868 0.048891269 0.075490139 0.022450194 0.046111017 0.07806024 0.025240744 0.046402611 0.076039605 0.028493991 0.028388439 0.078002445 0.030183895 0.015052631 0.078166761 0.033532962 0.020067303 0.073772296 0.03786533 0.037900895 0.062243871 0.034600627 0.048693445 0.064635515 0.034992564 0.042218462 0.06645152 0.032935083 0.028990436 0.072999418 0.033532962 0.020067303 0.073772296 0.035444707 0.010260151 0.07243304 0.027717311 0.054760698 0.068661369 0.020844538 0.053369727 0.074693583 0.027481297 0.05279297 0.071003951 0.032696977 0.061827142 0.032244343 0.034140855 0.059199881 0.030580215 0.032271691 0.060966015 0.028615745 0.03707052 0.040385548 0.028447749 0.039462909 0.023179157 0.030010371 0.036893792 0.031799033 0.02618791 0.023262994 -0.014252786 0.012145598 0.025677517 -0.015165033 0.012711923 0.028493252 -0.014484148 0.015559467 0.034526121 0.03643585 0.023094688 0.036893792 0.031799033 0.02618791 0.035831559 0.027147522 0.023644529 0.024548868 0.048891269 0.075490139 0.021309979 0.051037598 0.076326095 0.022450194 0.046111017 0.07806024 0.038419109 0.01563783 0.02668363 0.039462909 0.023179157 0.030010371 0.040474828 0.00014366575 0.029623492 0.039782878 0.044900969 0.05188214 0.040681992 0.036204383 0.053771034 0.041113742 0.036409497 0.050827593 0.039782878 0.044900969 0.05188214 0.039406866 0.039846659 0.05705262 0.040681992 0.036204383 0.053771034 0.039472952 0.008273975 0.065776952 0.040398218 0.00012777455 0.064670749 0.041568302 0.00021613242 0.061733227 0.03707052 0.040385548 0.028447749 0.03933626 0.039500058 0.034103476 0.039462909 0.023179157 0.030010371 0.032696977 0.061827142 0.032244343 0.036178153 0.059484389 0.038110174 0.034140855 0.059199881 0.030580215 0.028493991 0.028388439 0.078002445 0.027693205 0.021220485 0.07979133 0.030183895 0.015052631 0.078166761 0.031475097 0.058155492 0.024948763 0.034295373 0.057047933 0.029241471 0.032541871 0.054116111 0.02469088 0.035035308 0.060664669 0.038827404 0.036178153 0.059484389 0.038110174 0.032696977 0.061827142 0.032244343 0.041050427 0.015516313 0.032831214 0.040928334 0.030402642 0.03636511 0.042107336 0.01336893 0.035975628 0.039736349 0.046287034 0.040347539 0.039576385 0.049289931 0.046505526 0.041224726 0.037761003 0.044540953 0.042216104 0.023644084 0.03987921 0.041224726 0.037761003 0.044540953 0.043186709 0.017679108 0.046616301 0.025677517 -0.015165033 0.012711923 0.030409478 -0.015375303 0.016751472 0.028493252 -0.014484148 0.015559467 0.034992564 0.042218462 0.06645152 0.032741461 0.039557427 0.070666336 0.036073711 0.034145191 0.067080058 0.040928334 0.030402642 0.03636511 0.042216104 0.023644084 0.03987921 0.042107336 0.01336893 0.035975628 0.028493991 0.028388439 0.078002445 0.02647564 0.031243769 0.079262674 0.027693205 0.021220485 0.07979133 0.034600627 0.048693445 0.064635515 0.029614244 0.049374588 0.070958167 0.031973958 0.043880504 0.070306294 0.03786533 0.037900895 0.062243871 0.038716588 0.025019787 0.064273164 0.040111754 0.022588361 0.061482575 0.03786533 0.037900895 0.062243871 0.036073711 0.034145191 0.067080058 0.038716588 0.025019787 0.064273164 0.036281794 0.056999311 0.053911109 0.035146046 0.052670807 0.061629366 0.03719661 0.053083587 0.056445401 0.036281794 0.056999311 0.053911109 0.034392923 0.054705523 0.061315853 0.035146046 0.052670807 0.061629366 0.037265942 0.0022252451 0.023658972 0.038419109 0.01563783 0.02668363 0.0385684 0.002780464 0.025897767 0.039472952 0.008273975 0.065776952 0.037839886 0.0012658797 0.069542401 0.040398218 0.00012777455 0.064670749 0.035369404 -0.024494981 0.023780476 0.0070417528 -0.022159601 0.016473576 0.033631537 -0.020497909 0.02117867 0.032234874 -0.042717207 0.027538948 0.0056640743 -0.041205537 0.021614946 0.03216783 -0.039868999 0.027359171 0.039005484 0.052314028 0.047227431 0.039782878 0.044900969 0.05188214 0.039576385 0.049289931 0.046505526 0.0070417528 -0.022159601 0.016473576 0.0078622503 -0.016736697 0.013079962 0.033631537 -0.020497909 0.02117867 0.039462909 0.023179157 0.030010371 0.041837554 0.0006042379 0.033239331 0.040474828 0.00014366575 0.029623492 0.027481297 0.05279297 0.071003951 0.020844538 0.053369727 0.074693583 0.021309979 0.051037598 0.076326095 0.0056640743 -0.041205537 0.021614946 0.005845469 -0.035983965 0.021090128 0.03216783 -0.039868999 0.027359171 0.03216783 -0.039868999 0.027359171 0.005845469 -0.035983965 0.021090128 0.032946471 -0.033306956 0.026459269 0.033631537 -0.020497909 0.02117867 0.0078622503 -0.016736697 0.013079962 0.03291117 -0.018224373 0.019507054 0.035444707 0.010260151 0.07243304 0.033532962 0.020067303 0.073772296 0.033402443 0.0057676025 0.075460762 0.034295373 0.057047933 0.029241471 0.034140855 0.059199881 0.030580215 0.036065321 0.057134338 0.033687923 0.03291117 -0.018224373 0.019507054 0.0078622503 -0.016736697 0.013079962 0.030409478 -0.015375303 0.016751472 0.005845469 -0.035983965 0.021090128 0.0061073317 -0.031606171 0.020155387 0.032946471 -0.033306956 0.026459269 0.038419109 0.01563783 0.02668363 0.040474828 0.00014366575 0.029623492 0.0385684 0.002780464 0.025897767 0.034015179 -0.027957806 0.025005966 0.0066321413 -0.025651202 0.01812404 0.03408625 -0.024497036 0.023504775 0.032946471 -0.033306956 0.026459269 0.0061073317 -0.031606171 0.020155387 0.034015179 -0.027957806 0.025005966 0.03408625 -0.024497036 0.023504775 0.0070417528 -0.022159601 0.016473576 0.035369404 -0.024494981 0.023780476 0.0066321413 -0.025651202 0.01812404 0.0070417528 -0.022159601 0.016473576 0.03408625 -0.024497036 0.023504775 0.033584092 0.056790505 0.059092689 0.031571414 0.055928301 0.063262969 0.034392923 0.054705523 0.061315853 0.035831559 0.027147522 0.023644529 0.036893792 0.031799033 0.02618791 0.038419109 0.01563783 0.02668363 0.036178153 0.059484389 0.038110174 0.035035308 0.060664669 0.038827404 0.035958726 0.059061762 0.04750539 0.037839886 0.0012658797 0.069542401 0.035444707 0.010260151 0.07243304 0.036099724 2.5827196e-05 0.072311103 0.030409478 -0.015375303 0.016751472 0.0086159194 -0.012892478 0.0098983236 0.028493252 -0.014484148 0.015559467 0.027730489 0.044658978 0.074627824 0.029711323 0.033064287 0.075882815 0.032741461 0.039557427 0.070666336 0.0078622503 -0.016736697 0.013079962 0.0086159194 -0.012892478 0.0098983236 0.030409478 -0.015375303 0.016751472 0.0061073317 -0.031606171 0.020155387 0.0066321413 -0.025651202 0.01812404 0.034015179 -0.027957806 0.025005966 0.028493252 -0.014484148 0.015559467 0.0086159194 -0.012892478 0.0098983236 0.022815347 -0.014252786 0.01415581 0.022815347 -0.014252786 0.01415581 0.0086159194 -0.012892478 0.0098983236 0.023067007 -0.013047682 0.013089298 0.039005484 0.052314028 0.047227431 0.038149744 0.052532576 0.053367466 0.039782878 0.044900969 0.05188214 0.035444707 0.010260151 0.07243304 0.033402443 0.0057676025 0.075460762 0.036099724 2.5827196e-05 0.072311103 0.033532962 0.020067303 0.073772296 0.030183895 0.015052631 0.078166761 0.033402443 0.0057676025 0.075460762 0.039462909 0.023179157 0.030010371 0.041050427 0.015516313 0.032831214 0.041837554 0.0006042379 0.033239331 0.030183895 0.015052631 0.078166761 0.029028324 0.00054458692 0.080229744 0.033402443 0.0057676025 0.075460762 0.036178153 0.059484389 0.038110174 0.037925001 0.055686448 0.039914783 0.036065321 0.057134338 0.033687923 0.040681992 0.036204383 0.053771034 0.039406866 0.039846659 0.05705262 0.04071616 0.029151736 0.057383686 0.036178153 0.059484389 0.038110174 0.035958726 0.059061762 0.04750539 0.036742326 0.058663741 0.046676263 0.030183895 0.015052631 0.078166761 0.028113643 0.0082711158 0.080631085 0.029028324 0.00054458692 0.080229744 0.03208578 -0.046914876 0.027374862 0.030125551 -0.050992098 0.023667818 0.032388143 -0.051178984 0.026882105 0.03208578 -0.046914876 0.027374862 0.02925322 -0.044989206 0.023323549 0.030125551 -0.050992098 0.023667818 0.030183895 0.015052631 0.078166761 0.027693205 0.021220485 0.07979133 0.028113643 0.0082711158 0.080631085 0.036065321 0.057134338 0.033687923 0.037049934 0.050418712 0.032152377 0.034295373 0.057047933 0.029241471 0.030125551 -0.050992098 0.023667818 0.033194546 -0.056413367 0.025787462 0.032388143 -0.051178984 0.026882105 0.025240744 0.046402611 0.076039605 0.022450194 0.046111017 0.07806024 0.021064509 0.040341504 0.080912538 0.043579698 0.0089957137 0.043319292 0.044076446 -0.00049694581 0.045214485 0.04342328 0.0052339709 0.040537748 0.033402443 0.0057676025 0.075460762 0.029028324 0.00054458692 0.080229744 0.032002594 -0.0046952092 0.0775133 0.03933626 0.039500058 0.034103476 0.040243343 0.029669218 0.033627767 0.039462909 0.023179157 0.030010371 0.02925322 -0.044989206 0.023323549 0.03208578 -0.046914876 0.027374862 0.029853757 -0.039569043 0.023992831 0.029853757 -0.039569043 0.023992831 0.03208578 -0.046914876 0.027374862 0.03216783 -0.039868999 0.027359171 0.027693205 0.021220485 0.07979133 0.024675412 0.010038502 0.083208658 0.028113643 0.0082711158 0.080631085 0.03208578 -0.046914876 0.027374862 0.032234874 -0.042717207 0.027538948 0.03216783 -0.039868999 0.027359171 0.023067007 -0.013047682 0.013089298 0.0086159194 -0.012892478 0.0098983236 0.023165472 -0.0095289713 0.012842336 0.0086159194 -0.012892478 0.0098983236 0.0088571757 -0.0062284106 0.009184544 0.023165472 -0.0095289713 0.012842336 0.043098669 0.017227709 0.049878735 0.042351 0.01661445 0.055536229 0.0432074 0.0090723773 0.05363065 0.023165472 -0.0095289713 0.012842336 0.0088571757 -0.0062284106 0.009184544 0.023307869 -0.0064075724 0.012375806 0.030648593 -0.033715002 0.023346128 0.029853757 -0.039569043 0.023992831 0.03216783 -0.039868999 0.027359171 0.030648593 -0.033715002 0.023346128 0.03216783 -0.039868999 0.027359171 0.032946471 -0.033306956 0.026459269 0.042351 0.01661445 0.055536229 0.04071616 0.029151736 0.057383686 0.042072795 0.0090467613 0.05876971 0.032946471 -0.033306956 0.026459269 0.034015179 -0.027957806 0.025005966 0.030648593 -0.033715002 0.023346128 0.041224726 0.037761003 0.044540953 0.042041127 0.030396787 0.047807209 0.043186709 0.017679108 0.046616301 0.036065321 0.057134338 0.033687923 0.037925001 0.055686448 0.039914783 0.037792627 0.05416768 0.03725788 0.027730489 0.044658978 0.074627824 0.025240744 0.046402611 0.076039605 0.025898397 0.037223183 0.07842043 0.036178153 0.059484389 0.038110174 0.036742326 0.058663741 0.046676263 0.037875593 0.056989674 0.044945449 0.032541871 0.054116111 0.02469088 0.034947492 0.047294401 0.026312755 0.031303145 0.0409052 0.019051515 0.036073711 0.034145191 0.067080058 0.032741461 0.039557427 0.070666336 0.032935083 0.028990436 0.072999418 0.043579698 0.0089957137 0.043319292 0.043186709 0.017679108 0.046616301 0.044076446 -0.00049694581 0.045214485 0.03933626 0.039500058 0.034103476 0.040928334 0.030402642 0.03636511 0.040243343 0.029669218 0.033627767 0.03933626 0.039500058 0.034103476 0.040043231 0.039087649 0.036585227 0.040928334 0.030402642 0.03636511 0.027730489 0.044658978 0.074627824 0.025898397 0.037223183 0.07842043 0.029711323 0.033064287 0.075882815 0.036073711 0.034145191 0.067080058 0.036494888 0.021964885 0.069149584 0.038716588 0.025019787 0.064273164 0.036893792 0.031799033 0.02618791 0.039462909 0.023179157 0.030010371 0.038419109 0.01563783 0.02668363 0.03408625 -0.024497036 0.023504775 0.030648593 -0.033715002 0.023346128 0.034015179 -0.027957806 0.025005966 0.036065321 0.057134338 0.033687923 0.037792627 0.05416768 0.03725788 0.037049934 0.050418712 0.032152377 0.038149744 0.052532576 0.053367466 0.03719661 0.053083587 0.056445401 0.039406866 0.039846659 0.05705262 0.031303145 0.0409052 0.019051515 0.034947492 0.047294401 0.026312755 0.03707052 0.040385548 0.028447749 0.027481297 0.05279297 0.071003951 0.021309979 0.051037598 0.076326095 0.024548868 0.048891269 0.075490139 0.031571414 0.055928301 0.063262969 0.031675428 0.054004438 0.06583301 0.034392923 0.054705523 0.061315853 0.043186709 0.017679108 0.046616301 0.043991458 0.00083825702 0.049866784 0.044076446 -0.00049694581 0.045214485 0.043186709 0.017679108 0.046616301 0.043098669 0.017227709 0.049878735 0.043991458 0.00083825702 0.049866784 0.036742326 0.058663741 0.046676263 0.035958726 0.059061762 0.04750539 0.036281794 0.056999311 0.053911109 0.024917411 -0.020378556 0.012818292 0.024867177 -0.024339804 0.012826595 0.025044618 -0.020066813 0.012324031 0.025240744 0.046402611 0.076039605 0.021064509 0.040341504 0.080912538 0.025898397 0.037223183 0.07842043 0.04071616 0.029151736 0.057383686 0.040111754 0.022588361 0.061482575 0.042072795 0.0090467613 0.05876971 0.034600627 0.048693445 0.064635515 0.031973958 0.043880504 0.070306294 0.034992564 0.042218462 0.06645152 0.024867177 -0.024339804 0.012826595 0.033097722 -0.024451975 0.020635424 0.025044618 -0.020066813 0.012324031 0.025044618 -0.020066813 0.012324031 0.033097722 -0.024451975 0.020635424 0.033631537 -0.020497909 0.02117867 0.042107336 0.01336893 0.035975628 0.042216104 0.023644084 0.03987921 0.043579698 0.0089957137 0.043319292 0.039736349 0.046287034 0.040347539 0.041224726 0.037761003 0.044540953 0.040043231 0.039087649 0.036585227 0.027481297 0.05279297 0.071003951 0.025240744 0.046402611 0.076039605 0.029614244 0.049374588 0.070958167 0.042351 0.01661445 0.055536229 0.042072795 0.0090467613 0.05876971 0.0432074 0.0090723773 0.05363065 0.042216104 0.023644084 0.03987921 0.043186709 0.017679108 0.046616301 0.043579698 0.0089957137 0.043319292 0.033631537 -0.020497909 0.02117867 0.033097722 -0.024451975 0.020635424 0.035369404 -0.024494981 0.023780476 0.029711323 0.033064287 0.075882815 0.025898397 0.037223183 0.07842043 0.02647564 0.031243769 0.079262674 0.039576385 0.049289931 0.046505526 0.042041127 0.030396787 0.047807209 0.041224726 0.037761003 0.044540953 0.040111754 0.022588361 0.061482575 0.039211221 0.014758835 0.065350324 0.042072795 0.0090467613 0.05876971 0.024867177 -0.024339804 0.012826595 0.024917411 -0.020378556 0.012818292 0.025113733 -0.024380684 0.011709211 0.038149744 0.052532576 0.053367466 0.039406866 0.039846659 0.05705262 0.039782878 0.044900969 0.05188214 0.036073711 0.034145191 0.067080058 0.032935083 0.028990436 0.072999418 0.036494888 0.021964885 0.069149584 0.025113733 -0.024380684 0.011709211 0.024917411 -0.020378556 0.012818292 0.025044618 -0.020066813 0.012324031 0.039462909 0.023179157 0.030010371 0.040243343 0.029669218 0.033627767 0.041050427 0.015516313 0.032831214 0.031571414 0.055928301 0.063262969 0.027717311 0.054760698 0.068661369 0.031675428 0.054004438 0.06583301 0.043098669 0.017227709 0.049878735 0.0432074 0.0090723773 0.05363065 0.043991458 0.00083825702 0.049866784 0.042041127 0.030396787 0.047807209 0.041113742 0.036409497 0.050827593 0.043098669 0.017227709 0.049878735 0.036742326 0.058663741 0.046676263 0.036281794 0.056999311 0.053911109 0.037431698 0.057199847 0.049064569 0.031973958 0.043880504 0.070306294 0.029614244 0.049374588 0.070958167 0.027730489 0.044658978 0.074627824 0.037925001 0.055686448 0.039914783 0.039736349 0.046287034 0.040347539 0.037792627 0.05416768 0.03725788 0.031303145 0.0409052 0.019051515 0.03707052 0.040385548 0.028447749 0.034526121 0.03643585 0.023094688 0.040111754 0.022588361 0.061482575 0.038716588 0.025019787 0.064273164 0.039211221 0.014758835 0.065350324 0.027481297 0.05279297 0.071003951 0.024548868 0.048891269 0.075490139 0.025240744 0.046402611 0.076039605 0.032741461 0.039557427 0.070666336 0.029711323 0.033064287 0.075882815 0.032935083 0.028990436 0.072999418 0.035831559 0.027147522 0.023644529 0.038419109 0.01563783 0.02668363 0.037265942 0.0022252451 0.023658972 0.031654812 -0.020084834 0.018134372 0.025044618 -0.020066813 0.012324031 0.033631537 -0.020497909 0.02117867 0.040043231 0.039087649 0.036585227 0.041224726 0.037761003 0.044540953 0.042216104 0.023644084 0.03987921 0.034947492 0.047294401 0.026312755 0.037049934 0.050418712 0.032152377 0.03707052 0.040385548 0.028447749 0.012796815 0.027423963 0.086873107 0.014756563 0.015084432 0.087614737 0.017756103 0.026333999 0.085408852 0.014650322 0.039093863 0.084110379 0.011218229 0.039350417 0.085038722 0.012796815 0.027423963 0.086873107 0.017756103 0.026333999 0.085408852 0.021664703 0.025496278 0.083654247 0.018132107 0.037673872 0.083127908 0.024675412 0.010038502 0.083208658 0.02252356 0.01938065 0.083879776 0.022203386 0.00053886772 0.085192844 0.01465417 0.0076644616 0.088120379 0.019004816 0.017624514 0.085854158 0.014756563 0.015084432 0.087614737 0.024675412 0.010038502 0.083208658 0.022203386 0.00053886772 0.085192844 0.024854271 -0.0016794676 0.083570845 0.024854271 -0.0016794676 0.083570845 0.022203386 0.00053886772 0.085192844 0.023011234 -0.022066168 0.0846726 0.024854271 -0.0016794676 0.083570845 0.023011234 -0.022066168 0.0846726 0.027812907 -0.0091078589 0.08145839 0.017956601 -0.0069969245 0.08737123 0.012355032 -0.0027299013 0.089153774 0.014825248 -0.011790494 0.088583104 0.020844538 0.053369727 0.074693583 0.017306466 0.050090153 0.078741387 0.021309979 0.051037598 0.076326095 0.017756103 0.026333999 0.085408852 0.014756563 0.015084432 0.087614737 0.019004816 0.017624514 0.085854158 0.017306466 0.050090153 0.078741387 0.020844538 0.053369727 0.074693583 0.013119927 0.051174164 0.079489909 0.024675412 0.010038502 0.083208658 0.029028324 0.00054458692 0.080229744 0.028113643 0.0082711158 0.080631085 0.024675412 0.010038502 0.083208658 0.024854271 -0.0016794676 0.083570845 0.029028324 0.00054458692 0.080229744 0.017306466 0.050090153 0.078741387 0.013119927 0.051174164 0.079489909 0.011649976 0.048835475 0.081386544 0.021064509 0.040341504 0.080912538 0.018132107 0.037673872 0.083127908 0.021441795 0.031038402 0.082892865 0.018132107 0.037673872 0.083127908 0.021664703 0.025496278 0.083654247 0.021441795 0.031038402 0.082892865 0.021309979 0.051037598 0.076326095 0.017306466 0.050090153 0.078741387 0.022450194 0.046111017 0.07806024 0.020723579 -0.012649751 0.086092614 0.022203386 0.00053886772 0.085192844 0.017956601 -0.0069969245 0.08737123 0.017306466 0.050090153 0.078741387 0.017567562 0.04370892 0.081559584 0.022450194 0.046111017 0.07806024 0.019004816 0.017624514 0.085854158 0.01465417 0.0076644616 0.088120379 0.017420774 0.0022850968 0.087387383 0.022203386 0.00053886772 0.085192844 0.017420774 0.0022850968 0.087387383 0.017956601 -0.0069969245 0.08737123 0.017306466 0.050090153 0.078741387 0.011649976 0.048835475 0.081386544 0.012564829 0.045521688 0.082692169 0.021441795 0.031038402 0.082892865 0.021664703 0.025496278 0.083654247 0.02647564 0.031243769 0.079262674 0.017420774 0.0022850968 0.087387383 0.01465417 0.0076644616 0.088120379 0.012355032 -0.0027299013 0.089153774 0.02647564 0.031243769 0.079262674 0.021664703 0.025496278 0.083654247 0.02252356 0.01938065 0.083879776 0.02647564 0.031243769 0.079262674 0.02252356 0.01938065 0.083879776 0.027693205 0.021220485 0.07979133 0.017306466 0.050090153 0.078741387 0.012564829 0.045521688 0.082692169 0.017567562 0.04370892 0.081559584 0.017420774 0.0022850968 0.087387383 0.012355032 -0.0027299013 0.089153774 0.017956601 -0.0069969245 0.08737123 0.017756103 0.026333999 0.085408852 0.019004816 0.017624514 0.085854158 0.021664703 0.025496278 0.083654247 0.022450194 0.046111017 0.07806024 0.017567562 0.04370892 0.081559584 0.021064509 0.040341504 0.080912538 0.019004816 0.017624514 0.085854158 0.017420774 0.0022850968 0.087387383 0.022203386 0.00053886772 0.085192844 0.021064509 0.040341504 0.080912538 0.017567562 0.04370892 0.081559584 0.018132107 0.037673872 0.083127908 0.020723579 -0.012649751 0.086092614 0.023011234 -0.022066168 0.0846726 0.022203386 0.00053886772 0.085192844 0.017567562 0.04370892 0.081559584 0.012564829 0.045521688 0.082692169 0.018132107 0.037673872 0.083127908 0.012796815 0.027423963 0.086873107 0.017756103 0.026333999 0.085408852 0.014650322 0.039093863 0.084110379 0.018132107 0.037673872 0.083127908 0.012564829 0.045521688 0.082692169 0.014650322 0.039093863 0.084110379 0.024675412 0.010038502 0.083208658 0.027693205 0.021220485 0.07979133 0.02252356 0.01938065 0.083879776 0.018132107 0.037673872 0.083127908 0.014650322 0.039093863 0.084110379 0.017756103 0.026333999 0.085408852 0.012564829 0.045521688 0.082692169 0.011218229 0.039350417 0.085038722 0.014650322 0.039093863 0.084110379 0.012564829 0.045521688 0.082692169 0.010332446 0.044363908 0.083710179 0.011218229 0.039350417 0.085038722 0.02252356 0.01938065 0.083879776 0.021664703 0.025496278 0.083654247 0.019004816 0.017624514 0.085854158 0.02252356 0.01938065 0.083879776 0.019004816 0.017624514 0.085854158 0.022203386 0.00053886772 0.085192844 -0.023464929 -0.036745708 -0.065884702 -0.016932022 -0.038127758 -0.071396314 -0.018281138 -0.041155871 -0.067707956 0.00020535743 -0.027668161 -0.086501874 -0.0005812904 -0.033088338 -0.084415376 -0.0084428163 -0.02801775 -0.082068048 -0.013030687 -0.017307002 -0.080903977 -0.015831862 -0.020428825 -0.078643315 -0.019170009 -0.017219238 -0.076182477 -0.008952735 -0.030999694 -0.080811687 -0.0062348307 -0.034784853 -0.080840461 -0.012937287 -0.034953218 -0.076463915 -0.024155008 -0.039749231 -0.062285975 -0.023464929 -0.036745708 -0.065884702 -0.018281138 -0.041155871 -0.067707956 -0.019170009 -0.017219238 -0.076182477 -0.015831862 -0.020428825 -0.078643315 -0.018801535 -0.024090989 -0.075708583 -0.026763463 -0.029181821 -0.066540517 -0.024624493 -0.033781353 -0.066629753 -0.029553093 -0.034484867 -0.059948474 -0.026763463 -0.029181821 -0.066540517 -0.021778595 -0.033327717 -0.06984809 -0.024624493 -0.033781353 -0.066629753 -0.014224482 -0.028321547 -0.078213781 -0.020347055 -0.030934736 -0.072329722 -0.022279426 -0.026787581 -0.071961723 -0.010603732 -0.021105018 -0.082173124 -0.0084428163 -0.02801775 -0.082068048 -0.014224482 -0.028321547 -0.078213781 -0.0084428163 -0.02801775 -0.082068048 -0.0062348307 -0.034784853 -0.080840461 -0.008952735 -0.030999694 -0.080811687 -0.019170009 -0.017219238 -0.076182477 -0.018801535 -0.024090989 -0.075708583 -0.025044443 -0.023589026 -0.069914617 -0.0048200446 -0.026316203 -0.084492311 0.00020535743 -0.027668161 -0.086501874 -0.0084428163 -0.02801775 -0.082068048 -0.013598002 -0.037194021 -0.074738704 -0.016932022 -0.038127758 -0.071396314 -0.021778595 -0.033327717 -0.06984809 -0.021778595 -0.033327717 -0.06984809 -0.016932022 -0.038127758 -0.071396314 -0.023464929 -0.036745708 -0.065884702 -0.015555172 -0.013750644 -0.079125099 -0.013030687 -0.017307002 -0.080903977 -0.019170009 -0.017219238 -0.076182477 0.00069163588 -0.022537149 -0.087726116 0.00020535743 -0.027668161 -0.086501874 -0.0048200446 -0.026316203 -0.084492311 -0.015831862 -0.020428825 -0.078643315 -0.010603732 -0.021105018 -0.082173124 -0.014224482 -0.028321547 -0.078213781 -0.029553093 -0.034484867 -0.059948474 -0.023464929 -0.036745708 -0.065884702 -0.024155008 -0.039749231 -0.062285975 -0.012937287 -0.034953218 -0.076463915 -0.013598002 -0.037194021 -0.074738704 -0.021778595 -0.033327717 -0.06984809 -0.0097423028 -0.014285172 -0.083071142 -0.0021648449 -0.01318479 -0.087009244 -0.0042161895 -0.019351181 -0.085906208 -0.022279426 -0.026787581 -0.071961723 -0.020347055 -0.030934736 -0.072329722 -0.026763463 -0.029181821 -0.066540517 -0.013030687 -0.017307002 -0.080903977 -0.0042161895 -0.019351181 -0.085906208 -0.010603732 -0.021105018 -0.082173124 -0.015555172 -0.013750644 -0.079125099 -0.019170009 -0.017219238 -0.076182477 -0.020618709 -0.014111028 -0.074928112 -0.018801535 -0.024090989 -0.075708583 -0.014224482 -0.028321547 -0.078213781 -0.022279426 -0.026787581 -0.071961723 -0.015831862 -0.020428825 -0.078643315 -0.014224482 -0.028321547 -0.078213781 -0.018801535 -0.024090989 -0.075708583 -0.024006108 -0.012689429 -0.071572855 -0.019170009 -0.017219238 -0.076182477 -0.025044443 -0.023589026 -0.069914617 -0.0042161895 -0.019351181 -0.085906208 0.00069163588 -0.022537149 -0.087726116 -0.0048200446 -0.026316203 -0.084492311 -0.0094773388 -0.040964276 -0.075264677 -0.0057742004 -0.049789548 -0.069949232 -0.010075231 -0.046634551 -0.069938317 -0.020618709 -0.014111028 -0.074928112 -0.019170009 -0.017219238 -0.076182477 -0.024006108 -0.012689429 -0.071572855 -0.0035421578 -0.044756424 -0.076245181 -0.0057742004 -0.049789548 -0.069949232 -0.0094773388 -0.040964276 -0.075264677 -0.008952735 -0.030999694 -0.080811687 -0.012937287 -0.034953218 -0.076463915 -0.014224482 -0.028321547 -0.078213781 -0.0094773388 -0.040964276 -0.075264677 -0.010075231 -0.046634551 -0.069938317 -0.013551384 -0.044304714 -0.069279663 -0.0015608664 -0.037932146 -0.081748232 -0.0035421578 -0.044756424 -0.076245181 -0.0094773388 -0.040964276 -0.075264677 -0.014224482 -0.028321547 -0.078213781 -0.012937287 -0.034953218 -0.076463915 -0.020347055 -0.030934736 -0.072329722 -0.020347055 -0.030934736 -0.072329722 -0.012937287 -0.034953218 -0.076463915 -0.021778595 -0.033327717 -0.06984809 -0.010603732 -0.021105018 -0.082173124 -0.0048200446 -0.026316203 -0.084492311 -0.0084428163 -0.02801775 -0.082068048 -0.0062348307 -0.034784853 -0.080840461 -0.0015608664 -0.037932146 -0.081748232 -0.0094773388 -0.040964276 -0.075264677 -0.021778595 -0.033327717 -0.06984809 -0.023464929 -0.036745708 -0.065884702 -0.024624493 -0.033781353 -0.066629753 -0.0097423028 -0.014285172 -0.083071142 -0.0042161895 -0.019351181 -0.085906208 -0.013030687 -0.017307002 -0.080903977 -0.013030687 -0.017307002 -0.080903977 -0.010603732 -0.021105018 -0.082173124 -0.015831862 -0.020428825 -0.078643315 -0.0094773388 -0.040964276 -0.075264677 -0.013551384 -0.044304714 -0.069279663 -0.016932022 -0.038127758 -0.071396314 -0.024155008 -0.039749231 -0.062285975 -0.018281138 -0.041155871 -0.067707956 -0.013551384 -0.044304714 -0.069279663 -0.013551384 -0.044304714 -0.069279663 -0.018281138 -0.041155871 -0.067707956 -0.016932022 -0.038127758 -0.071396314 -0.022279426 -0.026787581 -0.071961723 -0.026763463 -0.029181821 -0.066540517 -0.025044443 -0.023589026 -0.069914617 -0.018801535 -0.024090989 -0.075708583 -0.022279426 -0.026787581 -0.071961723 -0.025044443 -0.023589026 -0.069914617 -0.012937287 -0.034953218 -0.076463915 -0.0094773388 -0.040964276 -0.075264677 -0.013598002 -0.037194021 -0.074738704 -0.0062348307 -0.034784853 -0.080840461 -0.0094773388 -0.040964276 -0.075264677 -0.012937287 -0.034953218 -0.076463915 -0.0042161895 -0.019351181 -0.085906208 -0.0048200446 -0.026316203 -0.084492311 -0.010603732 -0.021105018 -0.082173124 -0.013598002 -0.037194021 -0.074738704 -0.0094773388 -0.040964276 -0.075264677 -0.016932022 -0.038127758 -0.071396314 -0.0084428163 -0.02801775 -0.082068048 -0.008952735 -0.030999694 -0.080811687 -0.014224482 -0.028321547 -0.078213781 -0.0005812904 -0.033088338 -0.084415376 -0.0015608664 -0.037932146 -0.081748232 -0.0062348307 -0.034784853 -0.080840461 -0.0021648449 -0.01318479 -0.087009244 0.00069163588 -0.022537149 -0.087726116 -0.0042161895 -0.019351181 -0.085906208 -0.024624493 -0.033781353 -0.066629753 -0.023464929 -0.036745708 -0.065884702 -0.029553093 -0.034484867 -0.059948474 0.00069163588 -0.022537149 -0.087726116 -0.0021648449 -0.01318479 -0.087009244 0.0010308111 -0.013525356 -0.088385463 -0.0084428163 -0.02801775 -0.082068048 -0.0005812904 -0.033088338 -0.084415376 -0.0062348307 -0.034784853 -0.080840461 -0.0097423028 -0.014285172 -0.083071142 -0.013030687 -0.017307002 -0.080903977 -0.015555172 -0.013750644 -0.079125099 -0.020347055 -0.030934736 -0.072329722 -0.021778595 -0.033327717 -0.06984809 -0.026763463 -0.029181821 -0.066540517 -0.010075231 -0.046634551 -0.069938317 -0.014573382 -0.048291959 -0.063562617 -0.013551384 -0.044304714 -0.069279663 -0.016343947 -0.05227235 -0.053010173 -0.014152904 -0.055683184 -0.045845963 -0.020040702 -0.051032621 -0.046738386 -0.014271569 -0.051079445 -0.059396304 -0.011574245 -0.0556577 -0.053331453 -0.018006414 -0.048605107 -0.058332939 -0.020040702 -0.051032621 -0.046738386 -0.020498063 -0.049049035 -0.052448831 -0.016343947 -0.05227235 -0.053010173 -0.024155008 -0.039749231 -0.062285975 -0.025222071 -0.040771194 -0.059493985 -0.029553093 -0.034484867 -0.059948474 -0.021462908 -0.051665682 -0.024481498 -0.020483602 -0.051610738 -0.040058881 -0.016077422 -0.054923069 -0.040231019 0.029625067 -0.053982966 -0.0045138309 0.02661702 -0.043458484 0.0038442791 0.02595984 -0.037568126 0.0079242941 -0.028381992 -0.042373657 -0.049520921 -0.028852038 -0.043416455 -0.044291608 -0.030713901 -0.038981374 -0.051308308 -0.025222071 -0.040771194 -0.059493985 -0.021696499 -0.046083264 -0.056807052 -0.026221795 -0.041556694 -0.056559373 -0.018000068 -0.046112586 -0.062424056 -0.021696499 -0.046083264 -0.056807052 -0.025222071 -0.040771194 -0.059493985 -0.014152904 -0.055683184 -0.045845963 -0.016077422 -0.054923069 -0.040231019 -0.020483602 -0.051610738 -0.040058881 -0.024478389 -0.047998521 -0.042306691 -0.020483602 -0.051610738 -0.040058881 -0.026657706 -0.047253095 -0.029999215 -0.014152904 -0.055683184 -0.045845963 -0.020483602 -0.051610738 -0.040058881 -0.024478389 -0.047998521 -0.042306691 -0.014573382 -0.048291959 -0.063562617 -0.014271569 -0.051079445 -0.059396304 -0.018000068 -0.046112586 -0.062424056 -0.018000068 -0.046112586 -0.062424056 -0.014271569 -0.051079445 -0.059396304 -0.018006414 -0.048605107 -0.058332939 -0.023846831 -0.046114065 -0.052034549 -0.020498063 -0.049049035 -0.052448831 -0.028852038 -0.043416455 -0.044291608 -0.037538733 -0.036097739 -0.034637641 -0.028852038 -0.043416455 -0.044291608 -0.033206709 -0.040750567 -0.034394849 -0.020040702 -0.051032621 -0.046738386 -0.014152904 -0.055683184 -0.045845963 -0.024478389 -0.047998521 -0.042306691 -0.029553093 -0.034484867 -0.059948474 -0.025222071 -0.040771194 -0.059493985 -0.031745072 -0.036330525 -0.053894516 -0.011574245 -0.0556577 -0.053331453 -0.014152904 -0.055683184 -0.045845963 -0.016343947 -0.05227235 -0.053010173 -0.013551384 -0.044304714 -0.069279663 -0.018000068 -0.046112586 -0.062424056 -0.024155008 -0.039749231 -0.062285975 -0.027870372 -0.045387924 -0.038660944 -0.024478389 -0.047998521 -0.042306691 -0.026657706 -0.047253095 -0.029999215 -0.023846831 -0.046114065 -0.052034549 -0.028381992 -0.042373657 -0.049520921 -0.026221795 -0.041556694 -0.056559373 -0.031745072 -0.036330525 -0.053894516 -0.026221795 -0.041556694 -0.056559373 -0.030713901 -0.038981374 -0.051308308 0.029167807 -0.053447034 -0.0051459889 0.02661702 -0.043458484 0.0038442791 0.029625067 -0.053982966 -0.0045138309 -0.0057742004 -0.049789548 -0.069949232 -0.0084215607 -0.053568523 -0.06240128 -0.010075231 -0.046634551 -0.069938317 -0.036027048 -0.036459222 -0.040260736 -0.028852038 -0.043416455 -0.044291608 -0.037538733 -0.036097739 -0.034637641 -0.024155008 -0.039749231 -0.062285975 -0.018000068 -0.046112586 -0.062424056 -0.025222071 -0.040771194 -0.059493985 -0.018006414 -0.048605107 -0.058332939 -0.020498063 -0.049049035 -0.052448831 -0.021696499 -0.046083264 -0.056807052 -0.014573382 -0.048291959 -0.063562617 -0.0084215607 -0.053568523 -0.06240128 -0.014271569 -0.051079445 -0.059396304 -0.021696499 -0.046083264 -0.056807052 -0.020498063 -0.049049035 -0.052448831 -0.023846831 -0.046114065 -0.052034549 -0.026221795 -0.041556694 -0.056559373 -0.021696499 -0.046083264 -0.056807052 -0.023846831 -0.046114065 -0.052034549 -0.023846831 -0.046114065 -0.052034549 -0.028852038 -0.043416455 -0.044291608 -0.028381992 -0.042373657 -0.049520921 -0.020040702 -0.051032621 -0.046738386 -0.024478389 -0.047998521 -0.042306691 -0.028852038 -0.043416455 -0.044291608 -0.028852038 -0.043416455 -0.044291608 -0.024478389 -0.047998521 -0.042306691 -0.027870372 -0.045387924 -0.038660944 -0.011574245 -0.0556577 -0.053331453 -0.014271569 -0.051079445 -0.059396304 -0.0084215607 -0.053568523 -0.06240128 -0.018000068 -0.046112586 -0.062424056 -0.018006414 -0.048605107 -0.058332939 -0.021696499 -0.046083264 -0.056807052 -0.010075231 -0.046634551 -0.069938317 -0.0084215607 -0.053568523 -0.06240128 -0.014573382 -0.048291959 -0.063562617 -0.011574245 -0.0556577 -0.053331453 -0.016343947 -0.05227235 -0.053010173 -0.018006414 -0.048605107 -0.058332939 -0.028852038 -0.043416455 -0.044291608 -0.027870372 -0.045387924 -0.038660944 -0.033206709 -0.040750567 -0.034394849 -0.025222071 -0.040771194 -0.059493985 -0.026221795 -0.041556694 -0.056559373 -0.031745072 -0.036330525 -0.053894516 -0.026221795 -0.041556694 -0.056559373 -0.028381992 -0.042373657 -0.049520921 -0.030713901 -0.038981374 -0.051308308 -0.013551384 -0.044304714 -0.069279663 -0.014573382 -0.048291959 -0.063562617 -0.018000068 -0.046112586 -0.062424056 -0.030713901 -0.038981374 -0.051308308 -0.028852038 -0.043416455 -0.044291608 -0.036027048 -0.036459222 -0.040260736 -0.018006414 -0.048605107 -0.058332939 -0.016343947 -0.05227235 -0.053010173 -0.020498063 -0.049049035 -0.052448831 -0.031745072 -0.036330525 -0.053894516 -0.030713901 -0.038981374 -0.051308308 -0.036027048 -0.036459222 -0.040260736 -0.020498063 -0.049049035 -0.052448831 -0.020040702 -0.051032621 -0.046738386 -0.028852038 -0.043416455 -0.044291608 0.021030853 0.035142962 -0.039213959 0.024018575 0.035128511 -0.037903238 0.026229206 0.034142528 -0.036954071 0.021322401 0.034060936 -0.03925075 0.021030853 0.035142962 -0.039213959 0.026229206 0.034142528 -0.036954071 0.030391484 0.033208285 -0.024030449 0.029300008 0.02962864 -0.014853771 0.030512607 0.033690978 -0.027757565 0.030512607 0.033690978 -0.027757565 0.029300008 0.02962864 -0.014853771 0.029867483 0.033322304 -0.029920451 0.026902424 0.033773795 -0.035902832 0.021322401 0.034060936 -0.03925075 0.026229206 0.034142528 -0.036954071 0.029757537 0.034715418 -0.031386647 0.029867483 0.033322304 -0.029920451 0.026902424 0.033773795 -0.035902832 0.026902424 0.033773795 -0.035902832 0.026229206 0.034142528 -0.036954071 0.027936239 0.035009686 -0.035046987 0.026229206 0.034142528 -0.036954071 0.024018575 0.035128511 -0.037903238 0.027936239 0.035009686 -0.035046987 0.027936239 0.035009686 -0.035046987 0.029757537 0.034715418 -0.031386647 0.026902424 0.033773795 -0.035902832 0.029300008 0.02962864 -0.014853771 0.029685857 0.031335127 -0.021129696 0.03006052 0.03279344 -0.026728304 0.029300008 0.02962864 -0.014853771 0.03006052 0.03279344 -0.026728304 0.029867483 0.033322304 -0.029920451 0.029867483 0.033322304 -0.029920451 0.029757537 0.034715418 -0.031386647 0.030512607 0.033690978 -0.027757565 0.01805119 0.039353568 -0.026927391 0.015198345 0.03840046 -0.031664476 0.014525927 0.038431153 -0.031405978 0.030319514 -0.024448222 0.018373128 0.024527747 -0.033075482 0.014207291 0.03408625 -0.024497036 0.023504775 0.02595984 -0.037568126 0.0079242941 0.02661702 -0.043458484 0.0038442791 0.025507912 -0.036688086 0.0076721516 0.024527747 -0.033075482 0.014207291 0.028875105 -0.033050735 0.020053236 0.03408625 -0.024497036 0.023504775 0.026583629 -0.02440127 0.014563391 0.024527747 -0.033075482 0.014207291 0.030319514 -0.024448222 0.018373128 0.03408625 -0.024497036 0.023504775 0.028875105 -0.033050735 0.020053236 0.030648593 -0.033715002 0.023346128 0.030648593 -0.033715002 0.023346128 0.028355226 -0.038513392 0.021112926 0.029853757 -0.039569043 0.023992831 0.030727968 -0.06180039 0.019872021 0.033699166 -0.061897743 0.023749519 0.02762364 -0.055763233 0.0183827 0.028355226 -0.038513392 0.021112926 0.023788616 -0.043910272 0.014768653 0.02925322 -0.044989206 0.023323549 0.02473264 -0.04966535 0.015942382 0.02925322 -0.044989206 0.023323549 0.023788616 -0.043910272 0.014768653 0.024527747 -0.033075482 0.014207291 0.028355226 -0.038513392 0.021112926 0.028875105 -0.033050735 0.020053236 0.02473264 -0.04966535 0.015942382 0.024579095 -0.053208061 0.014975999 0.02925322 -0.044989206 0.023323549 0.024579095 -0.053208061 0.014975999 0.02762364 -0.055763233 0.0183827 0.02925322 -0.044989206 0.023323549 0.024579095 -0.053208061 0.014975999 0.026205728 -0.061448179 0.014910609 0.02762364 -0.055763233 0.0183827 0.02762364 -0.055763233 0.0183827 0.030125551 -0.050992098 0.023667818 0.02925322 -0.044989206 0.023323549 0.028355226 -0.038513392 0.021112926 0.02925322 -0.044989206 0.023323549 0.029853757 -0.039569043 0.023992831 0.023936063 -0.038987115 0.014632786 0.028355226 -0.038513392 0.021112926 0.024527747 -0.033075482 0.014207291 0.028875105 -0.033050735 0.020053236 0.028355226 -0.038513392 0.021112926 0.030648593 -0.033715002 0.023346128 0.02762364 -0.055763233 0.0183827 0.026205728 -0.061448179 0.014910609 0.030727968 -0.06180039 0.019872021 0.02762364 -0.055763233 0.0183827 0.033194546 -0.056413367 0.025787462 0.030125551 -0.050992098 0.023667818 0.023936063 -0.038987115 0.014632786 0.023788616 -0.043910272 0.014768653 0.028355226 -0.038513392 0.021112926 0.02390104 -0.029023731 0.011487897 0.024527747 -0.033075482 0.014207291 0.026583629 -0.02440127 0.014563391 0.023936063 -0.038987115 0.014632786 0.024527747 -0.033075482 0.014207291 0.02390104 -0.029023731 0.011487897 0.030727968 -0.06180039 0.019872021 0.026205728 -0.061448179 0.014910609 0.024627261 -0.061428465 0.01413532 0.026940294 -0.054453585 0.0030369593 0.024896804 -0.054468807 0.002522019 0.026617205 -0.054515351 -0.0052340128 0.020259844 0.05701017 0.010170178 0.015848329 0.063823394 0.014758877 0.021953925 0.062936455 0.01779535 0.013654357 0.059716292 0.0096605746 0.01105615 0.057655144 0.0056233415 0.0098030176 0.062773086 0.011557786 0.020259844 0.05701017 0.010170178 0.017950203 0.058029525 0.0097820517 0.015848329 0.063823394 0.014758877 0.017950203 0.058029525 0.0097820517 0.013654357 0.059716292 0.0096605746 0.015848329 0.063823394 0.014758877 0.013654357 0.059716292 0.0096605746 0.0098030176 0.062773086 0.011557786 0.015848329 0.063823394 0.014758877 0.01141628 0.055800572 0.0038962152 0.01105615 0.057655144 0.0056233415 0.014383766 0.047465328 -0.0099445898 0.0093972348 0.064667821 0.013492428 0.0098030176 0.062773086 0.011557786 0.01141628 0.055800572 0.0038962152 0.014383766 0.047465328 -0.0099445898 0.01105615 0.057655144 0.0056233415 0.012792971 0.052327029 -0.0025024654 0.014383766 0.047465328 -0.0099445898 0.012792971 0.052327029 -0.0025024654 0.0151806 0.04612492 -0.013611236 0.01141628 0.055800572 0.0038962152 0.0098030176 0.062773086 0.011557786 0.01105615 0.057655144 0.0056233415 0.014383766 0.047465328 -0.0099445898 0.0151806 0.04612492 -0.013611236 0.01805119 0.039353568 -0.026927391 0.01805119 0.039353568 -0.026927391 0.0151806 0.04612492 -0.013611236 0.018098772 0.039830901 -0.027114119 0.036056109 -0.0096321879 0.072712004 0.038154077 -0.021515671 0.06941855 0.038701247 -0.0082757436 0.068525471 0.027812907 -0.0091078589 0.08145839 0.025353391 -0.022162834 0.083152957 0.029238749 -0.023378808 0.079980478 0.038701247 -0.0082757436 0.068525471 0.038154077 -0.021515671 0.06941855 0.039403286 -0.023301311 0.066932477 0.027812907 -0.0091078589 0.08145839 0.029238749 -0.023378808 0.079980478 0.032685585 -0.011883598 0.076880217 0.032685585 -0.011883598 0.076880217 0.029238749 -0.023378808 0.079980478 0.033485282 -0.022072297 0.0758681 0.044229552 -0.020250177 0.049756143 0.043809369 -0.011286657 0.05381421 0.043320738 -0.021800146 0.056080658 0.038094744 -0.015262793 0.024501937 0.040720116 -0.02152851 0.029675642 0.036930233 -0.021360863 0.022752441 0.038701247 -0.0082757436 0.068525471 0.039403286 -0.023301311 0.066932477 0.041479189 -0.011018827 0.062634781 0.032685585 -0.011883598 0.076880217 0.036066081 -0.023472572 0.072397076 0.036056109 -0.0096321879 0.072712004 0.027194351 -0.05396175 0.00442923 0.029625067 -0.053982966 -0.0045138309 0.025618931 -0.046436489 0.0095732016 0.032685585 -0.011883598 0.076880217 0.033485282 -0.022072297 0.0758681 0.036066081 -0.023472572 0.072397076 0.042853907 -0.0092705181 0.058295317 0.042151906 -0.021614214 0.060513511 0.043320738 -0.021800146 0.056080658 0.025618931 -0.046436489 0.0095732016 0.029625067 -0.053982966 -0.0045138309 0.02595984 -0.037568126 0.0079242941 0.044074096 -0.0093761245 0.042669702 0.044285234 -0.020849032 0.045970075 0.04387382 -0.020887734 0.04115003 0.034694202 -0.010126338 0.019657275 0.038094744 -0.015262793 0.024501937 0.036930233 -0.021360863 0.022752441 0.039403286 -0.023301311 0.066932477 0.042151906 -0.021614214 0.060513511 0.041479189 -0.011018827 0.062634781 0.036056109 -0.0096321879 0.072712004 0.036066081 -0.023472572 0.072397076 0.038154077 -0.021515671 0.06941855 0.044074096 -0.0093761245 0.042669702 0.04387382 -0.020887734 0.04115003 0.043041829 -0.020585312 0.036598511 -0.0079099294 0.017770391 0.088865831 -0.0074093994 0.030813063 0.087339833 -0.0070119798 0.037962068 0.085948609 -0.0079768505 -0.036790334 0.086108789 -0.0081489207 -0.03475586 0.08699894 -0.0086737275 -0.022164419 0.090069093 0.026415244 -0.057255175 0.010065997 0.027194351 -0.05396175 0.00442923 0.025618931 -0.046436489 0.0095732016 -0.0084984321 -0.0081797605 0.090062656 -0.0079099294 0.017770391 0.088865831 -0.007981685 0.011077311 0.088811748 -0.0086737275 -0.022164419 0.090069093 -0.0084984321 -0.0081797605 0.090062656 -0.007981685 0.011077311 0.088811748 -0.0081228334 -0.045781728 0.086262807 -0.0081489207 -0.03475586 0.08699894 -0.0079768505 -0.036790334 0.086108789 -0.0081034144 -0.048514452 0.086021699 -0.0081228334 -0.045781728 0.086262807 -0.0079768505 -0.036790334 0.086108789 -0.007981685 0.011077311 0.088811748 -0.0079099294 0.017770391 0.088865831 -0.0070119798 0.037962068 0.085948609 -0.008934509 -0.058826141 0.0891902 -0.0081034144 -0.048514452 0.086021699 -0.008826131 -0.059011187 0.088690571 -0.0092229582 -0.066048861 0.090107933 -0.008934509 -0.058826141 0.0891902 -0.008826131 -0.059011187 0.088690571 -0.0081489207 -0.03475586 0.08699894 -0.0086152945 -0.025291784 0.089630738 -0.0086737275 -0.022164419 0.090069093 -0.0091827149 -0.065349177 0.087174028 0.0066801775 -0.065508209 0.015674433 0.0067005921 -0.065608971 0.015577059 -0.034485053 -0.040299747 -0.023782067 -0.039112546 -0.035151731 -0.028172497 -0.030983057 -0.043571893 -0.026528314 -0.037538733 -0.036097739 -0.034637641 -0.033206709 -0.040750567 -0.034394849 -0.039112546 -0.035151731 -0.028172497 -0.021462908 -0.051665682 -0.024481498 -0.027782077 -0.046966333 -0.0059704124 -0.028840622 -0.045727786 -0.020672539 -0.030983057 -0.043571893 -0.026528314 -0.028840622 -0.045727786 -0.020672539 -0.027782077 -0.046966333 -0.0059704124 -0.034485053 -0.040299747 -0.023782067 -0.030983057 -0.043571893 -0.026528314 -0.032074966 -0.042916398 -0.0054881 -0.026657706 -0.047253095 -0.029999215 -0.021462908 -0.051665682 -0.024481498 -0.028840622 -0.045727786 -0.020672539 -0.026657706 -0.047253095 -0.029999215 -0.028840622 -0.045727786 -0.020672539 -0.030983057 -0.043571893 -0.026528314 -0.035961214 -0.038878769 -0.012242479 -0.034485053 -0.040299747 -0.023782067 -0.032074966 -0.042916398 -0.0054881 -0.020483602 -0.051610738 -0.040058881 -0.021462908 -0.051665682 -0.024481498 -0.026657706 -0.047253095 -0.029999215 -0.040677208 -0.03351048 -0.020650817 -0.034485053 -0.040299747 -0.023782067 -0.035961214 -0.038878769 -0.012242479 -0.027870372 -0.045387924 -0.038660944 -0.026657706 -0.047253095 -0.029999215 -0.030983057 -0.043571893 -0.026528314 -0.039112546 -0.035151731 -0.028172497 -0.034485053 -0.040299747 -0.023782067 -0.040677208 -0.03351048 -0.020650817 -0.033206709 -0.040750567 -0.034394849 -0.030983057 -0.043571893 -0.026528314 -0.039112546 -0.035151731 -0.028172497 -0.027870372 -0.045387924 -0.038660944 -0.030983057 -0.043571893 -0.026528314 -0.033206709 -0.040750567 -0.034394849 -0.028817132 0.017716283 -0.0027761499 -0.026120797 0.019791555 -0.0083734198 -0.026262252 0.019742602 -0.0083160568 -0.025198735 0.020803751 -0.012890008 -0.026262252 0.019742602 -0.0083160568 -0.026260013 0.019763844 -0.008415279 -0.025198735 0.020803751 -0.012890008 -0.028817132 0.017716283 -0.0027761499 -0.026262252 0.019742602 -0.0083160568 -0.026120797 0.019791555 -0.0083734198 -0.028817132 0.017716283 -0.0027761499 -0.030804412 0.01440634 0.005026178 -0.032521486 0.012106518 0.0075349333 -0.030804412 0.01440634 0.005026178 -0.031390846 0.01441808 0.004330745 -0.032315668 0.010845727 0.0092849117 -0.030804412 0.01440634 0.005026178 -0.032521486 0.012106518 0.0075349333 -0.032315668 0.010845727 0.0092849117 -0.032521486 0.012106518 0.0075349333 -0.033380099 0.0094890427 0.009736185 0.026940294 -0.054453585 0.0030369593 0.026617205 -0.054515351 -0.0052340128 0.029625067 -0.053982966 -0.0045138309 -0.033380099 0.0094890427 0.009736185 -0.034181856 0.0061224094 0.010972882 -0.033138517 0.0066761668 0.011521254 -0.033138517 0.0066761668 0.011521254 -0.034181856 0.0061224094 0.010972882 -0.034886442 -0.00033484391 0.012206505 -0.030804412 0.01440634 0.005026178 -0.028817132 0.017716283 -0.0027761499 -0.031390846 0.01441808 0.004330745 0.0064950492 -0.065641664 0.08761397 0.0067005921 -0.065608971 0.015577059 0.016960215 -0.065769091 0.08438132 0.016960215 -0.065769091 0.08438132 0.0067005921 -0.065608971 0.015577059 0.024468284 -0.065859474 0.079897948 0.024468284 -0.065859474 0.079897948 0.0067005921 -0.065608971 0.015577059 0.032858226 -0.065958716 0.0714432 0.032858226 -0.065958716 0.0714432 0.0067005921 -0.065608971 0.015577059 0.039315712 -0.06603159 0.058270678 0.042876318 -0.061673384 0.040401958 0.043045931 -0.064633243 0.039351605 0.042537831 -0.061672792 0.03845996 0.0067005921 -0.065608971 0.015577059 0.031781636 -0.065918155 0.021150917 0.037395403 -0.06599436 0.030379787 0.0067005921 -0.065608971 0.015577059 0.037395403 -0.06599436 0.030379787 0.039641507 -0.066025265 0.03694493 0.0067005921 -0.065608971 0.015577059 0.039641507 -0.066025265 0.03694493 0.040860161 -0.066046126 0.048861418 0.0067005921 -0.065608971 0.015577059 0.040860161 -0.066046126 0.048861418 0.039315712 -0.06603159 0.058270678 0.042166382 -0.062389001 0.057763137 0.040648546 -0.06061276 0.061614517 0.040001094 -0.062394138 0.064182617 -0.0091827149 -0.065349177 0.087174028 0.0067005921 -0.065608971 0.015577059 0.0015584215 -0.065581083 0.088134937 0.0015584215 -0.065581083 0.088134937 0.0067005921 -0.065608971 0.015577059 0.0064950492 -0.065641664 0.08761397 -0.0070386757 -0.066074967 0.08760307 -0.0091827447 -0.065347925 0.087174095 -0.0091827149 -0.065349177 0.087174028 -0.0070386757 -0.066074967 0.08760307 -0.0091827149 -0.065349177 0.087174028 0.0015584215 -0.065581083 0.088134937 0.0015191794 -0.066180751 0.088149063 -0.0070386757 -0.066074967 0.08760307 0.0015584215 -0.065581083 0.088134937 0.0015191794 -0.066180751 0.088149063 0.0015584215 -0.065581083 0.088134937 0.0064950492 -0.065641664 0.08761397 0.042259209 -0.066668101 0.058334257 0.040001094 -0.062394138 0.064182617 0.040578332 -0.066649802 0.063390575 0.037446108 -0.066591091 0.024333762 0.03608175 -0.063138671 0.02244078 0.037807606 -0.060678266 0.026038857 0.012031837 -0.066309452 0.08629971 0.0015191794 -0.066180751 0.088149063 0.0064950492 -0.065641664 0.08761397 0.016960215 -0.065769091 0.08438132 0.012031837 -0.066309452 0.08629971 0.0064950492 -0.065641664 0.08761397 0.020383015 -0.06641043 0.082612276 0.012031837 -0.066309452 0.08629971 0.016960215 -0.065769091 0.08438132 0.020383015 -0.06641043 0.082612276 0.016960215 -0.065769091 0.08438132 0.024468284 -0.065859474 0.079897948 0.030389015 -0.066529751 0.074488901 0.020383015 -0.06641043 0.082612276 0.024468284 -0.065859474 0.079897948 0.030389015 -0.066529751 0.074488901 0.024468284 -0.065859474 0.079897948 0.032858226 -0.065958716 0.0714432 0.03559633 -0.066590279 0.067190811 0.030389015 -0.066529751 0.074488901 0.032858226 -0.065958716 0.0714432 0.03559633 -0.066590279 0.067190811 0.032858226 -0.065958716 0.0714432 0.039315712 -0.06603159 0.058270678 0.042166382 -0.062389001 0.057763137 0.041860674 -0.059408549 0.056346625 0.040648546 -0.06061276 0.061614517 0.033346258 -0.066538952 0.018605933 0.03608175 -0.063138671 0.02244078 0.037446108 -0.066591091 0.024333762 0.039144579 -0.066629902 0.05882727 0.03559633 -0.066590279 0.067190811 0.039315712 -0.06603159 0.058270678 0.042259209 -0.066668101 0.058334257 0.042166382 -0.062389001 0.057763137 0.040001094 -0.062394138 0.064182617 0.042892877 -0.060753487 0.052238587 0.040403575 -0.053039238 0.054159354 0.041860674 -0.059408549 0.056346625 0.039144579 -0.066629902 0.05882727 0.039315712 -0.06603159 0.058270678 0.040860161 -0.066046126 0.048861418 0.040795829 -0.066643141 0.044215821 0.039144579 -0.066629902 0.05882727 0.040860161 -0.066046126 0.048861418 0.014801716 -0.062679186 0.088161699 0.020362886 -0.058928631 0.08479099 0.012212754 -0.060393739 0.088607684 0.040795829 -0.066643141 0.044215821 0.040860161 -0.066046126 0.048861418 0.039641507 -0.066025265 0.03694493 0.036935441 -0.066588283 0.029359763 0.040795829 -0.066643141 0.044215821 0.039641507 -0.066025265 0.03694493 0.036935441 -0.066588283 0.029359763 0.039641507 -0.066025265 0.03694493 0.037395403 -0.06599436 0.030379787 0.031781636 -0.065918155 0.021150917 0.036935441 -0.066588283 0.029359763 0.037395403 -0.06599436 0.030379787 0.027720943 -0.066468507 0.016799411 0.036935441 -0.066588283 0.029359763 0.031781636 -0.065918155 0.021150917 0.027720943 -0.066468507 0.016799411 0.031781636 -0.065918155 0.021150917 0.030727968 -0.06180039 0.019872021 0.030727968 -0.06180039 0.019872021 0.031781636 -0.065918155 0.021150917 0.033699166 -0.061897743 0.023749519 0.024627261 -0.061428465 0.01413532 0.027720943 -0.066468507 0.016799411 0.030727968 -0.06180039 0.019872021 0.024630187 -0.066429205 0.014189926 0.027720943 -0.066468507 0.016799411 0.024627261 -0.061428465 0.01413532 0.023526005 -0.0064104935 0.011392425 0.023307869 -0.0064075724 0.012375806 0.0088571757 -0.0062284106 0.009184544 0.00907885 -0.0062289829 0.0081855487 0.023526005 -0.0064104935 0.011392425 0.0088571757 -0.0062284106 0.009184544 -0.040017061 -0.013853406 0.0023908115 -0.040219128 -0.013151943 0.00094206986 -0.041020941 -0.014689262 -0.00030474213 -0.032074966 -0.042916398 -0.0054881 -0.03459695 -0.040203348 -0.0050756605 -0.035961214 -0.038878769 -0.012242479 -0.035629209 -0.038046971 0.0012627757 -0.042150531 -0.030634157 -0.010984411 -0.036146302 -0.038088009 -0.0024643198 -0.036146302 -0.038088009 -0.0024643198 -0.042150531 -0.030634157 -0.010984411 -0.041771132 -0.031662416 -0.013949109 -0.036146302 -0.038088009 -0.0024643198 -0.041771132 -0.031662416 -0.013949109 -0.03459695 -0.040203348 -0.0050756605 -0.032925859 -0.039322156 0.0092315981 -0.039629087 -0.031942021 -0.0020643687 -0.042150531 -0.030634157 -0.010984411 0.025975827 -0.059846107 0.081413172 0.024702897 -0.05281632 0.079814978 0.018367046 -0.054165751 0.0841619 0.042892877 -0.060753487 0.052238587 0.041860674 -0.059408549 0.056346625 0.042166382 -0.062389001 0.057763137 -0.035961214 -0.038878769 -0.012242479 -0.03459695 -0.040203348 -0.0050756605 -0.040677208 -0.03351048 -0.020650817 -0.032925859 -0.039322156 0.0092315981 -0.035629209 -0.038046971 0.0012627757 -0.031425651 -0.042887457 0.0047514336 -0.032925859 -0.039322156 0.0092315981 -0.033660349 -0.035212874 0.011512716 -0.035835713 -0.0354212 0.0057483516 -0.035835713 -0.0354212 0.0057483516 -0.033660349 -0.035212874 0.011512716 -0.036890134 -0.032784786 0.0052194563 0.042743765 -0.059185151 0.049628999 0.040403575 -0.053039238 0.054159354 0.042892877 -0.060753487 0.052238587 -0.035835713 -0.0354212 0.0057483516 -0.039629087 -0.031942021 -0.0020643687 -0.032925859 -0.039322156 0.0092315981 0.014801716 -0.062679186 0.088161699 0.01122918 -0.066300824 0.089493878 0.021856166 -0.066429481 0.085045353 0.023051176 -0.062779158 0.084122755 0.020362886 -0.058928631 0.08479099 0.014801716 -0.062679186 0.088161699 -0.042150531 -0.030634157 -0.010984411 -0.039629087 -0.031942021 -0.0020643687 -0.042530868 -0.027738292 -0.0071237758 -0.039629087 -0.031942021 -0.0020643687 -0.035835713 -0.0354212 0.0057483516 -0.036890134 -0.032784786 0.0052194563 -0.040677208 -0.03351048 -0.020650817 -0.03459695 -0.040203348 -0.0050756605 -0.041771132 -0.031662416 -0.013949109 -0.031425651 -0.042887457 0.0047514336 -0.03459695 -0.040203348 -0.0050756605 -0.027782077 -0.046966333 -0.0059704124 -0.042530868 -0.027738292 -0.0071237758 -0.036890134 -0.032784786 0.0052194563 -0.040756729 -0.026794618 -0.001506262 -0.027782077 -0.046966333 -0.0059704124 -0.03459695 -0.040203348 -0.0050756605 -0.032074966 -0.042916398 -0.0054881 -0.035629209 -0.038046971 0.0012627757 -0.036146302 -0.038088009 -0.0024643198 -0.031425651 -0.042887457 0.0047514336 -0.035629209 -0.038046971 0.0012627757 -0.032925859 -0.039322156 0.0092315981 -0.042150531 -0.030634157 -0.010984411 -0.039629087 -0.031942021 -0.0020643687 -0.036890134 -0.032784786 0.0052194563 -0.042530868 -0.027738292 -0.0071237758 -0.03459695 -0.040203348 -0.0050756605 -0.031425651 -0.042887457 0.0047514336 -0.036146302 -0.038088009 -0.0024643198 0.025975827 -0.059846107 0.081413172 0.018367046 -0.054165751 0.0841619 0.020362886 -0.058928631 0.08479099 -0.027782077 -0.046966333 -0.0059704124 -0.032074966 -0.042916398 -0.0054881 -0.030983057 -0.043571893 -0.026528314 -0.033138517 0.0066761668 0.011521254 -0.035028532 -0.0065510115 0.013109774 -0.034077294 -0.01044867 0.013624254 -0.035028532 -0.0065510115 0.013109774 -0.035809048 -0.015013481 0.013015808 -0.034077294 -0.01044867 0.013624254 -0.035809048 -0.015013481 0.013015808 -0.034123991 -0.024396103 0.013254711 -0.034077294 -0.01044867 0.013624254 -0.0054063462 -0.052657716 -0.070777804 0.0027109422 -0.055737637 -0.06695468 -0.0035239484 -0.05707499 -0.063392766 0.0044536158 -0.059415713 -0.059423704 0.0021010463 -0.060884602 -0.054770868 -0.0014232962 -0.058791168 -0.060086351 0.021856166 -0.066429481 0.085045353 0.023051176 -0.062779158 0.084122755 0.014801716 -0.062679186 0.088161699 0.04331705 -0.066678569 0.053111851 0.042166382 -0.062389001 0.057763137 0.042259209 -0.066668101 0.058334257 -0.0035239484 -0.05707499 -0.063392766 -0.007031695 -0.054997444 -0.066386998 -0.0054063462 -0.052657716 -0.070777804 0.0021010463 -0.060884602 -0.054770868 -0.004496783 -0.058640398 -0.059223343 -0.0014232962 -0.058791168 -0.060086351 0.0021010463 -0.060884602 -0.054770868 0.00094793568 -0.061884511 -0.049810756 -0.0026761759 -0.060785521 -0.053023122 0.0021010463 -0.060884602 -0.054770868 -0.0026761759 -0.060785521 -0.053023122 -0.004496783 -0.058640398 -0.059223343 -0.0035239484 -0.05707499 -0.063392766 -0.004496783 -0.058640398 -0.059223343 -0.007031695 -0.054997444 -0.066386998 -0.004496783 -0.058640398 -0.059223343 -0.0035239484 -0.05707499 -0.063392766 -0.0014232962 -0.058791168 -0.060086351 0.023051176 -0.062779158 0.084122755 0.025975827 -0.059846107 0.081413172 0.020362886 -0.058928631 0.08479099 -0.004496783 -0.058640398 -0.059223343 -0.0092848456 -0.057446048 -0.059773654 -0.007031695 -0.054997444 -0.066386998 0.00094793568 -0.061884511 -0.049810756 -0.0025120678 -0.061721876 -0.04787837 -0.0026761759 -0.060785521 -0.053023122 -0.0025120678 -0.061721876 -0.04787837 -0.006485932 -0.06071049 -0.049029715 -0.0026761759 -0.060785521 -0.053023122 0.042892877 -0.060753487 0.052238587 0.042166382 -0.062389001 0.057763137 0.04331705 -0.066678569 0.053111851 -0.0092848456 -0.057446048 -0.059773654 -0.004496783 -0.058640398 -0.059223343 -0.0026761759 -0.060785521 -0.053023122 0.0073841554 -0.027930161 -0.088295184 0.0063237553 -0.03579386 -0.085360475 0.0010593808 -0.02879625 -0.088905707 -0.0092848456 -0.057446048 -0.059773654 -0.0026761759 -0.060785521 -0.053023122 -0.006485932 -0.06071049 -0.049029715 0.0063237553 -0.03579386 -0.085360475 0.00026232106 -0.034637462 -0.086643428 0.0010593808 -0.02879625 -0.088905707 0.0073841554 -0.027930161 -0.088295184 0.0010593808 -0.02879625 -0.088905707 0.0016169038 -0.023975234 -0.090159513 0.0073841554 -0.027930161 -0.088295184 0.0016169038 -0.023975234 -0.090159513 0.011006503 -0.023515118 -0.088699803 0.011006503 -0.023515118 -0.088699803 0.0016169038 -0.023975234 -0.090159513 0.011065169 -0.020702915 -0.089122616 0.0063237553 -0.03579386 -0.085360475 0.0062106219 -0.040911131 -0.082390562 -0.0006148098 -0.039019831 -0.084254935 0.0063237553 -0.03579386 -0.085360475 -0.0006148098 -0.039019831 -0.084254935 0.00026232106 -0.034637462 -0.086643428 -0.01839228 -0.055977229 -0.027951561 -0.018991176 -0.056302965 -0.031550616 -0.0088485898 -0.060277499 -0.037532277 0.043511525 -0.062406186 0.047096156 0.042743765 -0.059185151 0.049628999 0.042892877 -0.060753487 0.052238587 0.0016169038 -0.023975234 -0.090159513 0.0019087192 -0.01918496 -0.090851426 0.011065169 -0.020702915 -0.089122616 -0.006485932 -0.06071049 -0.049029715 -0.01279983 -0.05879733 -0.049611412 -0.0092848456 -0.057446048 -0.059773654 -0.0025120678 -0.061721876 -0.04787837 0.00094793568 -0.061884511 -0.049810756 0.0017676153 -0.062479202 -0.044578332 -0.006485932 -0.06071049 -0.049029715 -0.0025120678 -0.061721876 -0.04787837 -0.0051102657 -0.061513145 -0.043445025 0.0017676153 -0.062479202 -0.044578332 -0.0051102657 -0.061513145 -0.043445025 -0.0025120678 -0.061721876 -0.04787837 -0.0051102657 -0.061513145 -0.043445025 0.0017676153 -0.062479202 -0.044578332 0.00051657378 -0.062353525 -0.039200209 -0.0051102657 -0.061513145 -0.043445025 0.00051657378 -0.062353525 -0.039200209 -0.0034554182 -0.061775427 -0.038595963 0.00051657378 -0.062353525 -0.039200209 -0.00058863196 -0.061404418 -0.032843225 -0.0034554182 -0.061775427 -0.038595963 -0.0034554182 -0.061775427 -0.038595963 -0.0021404049 -0.060630426 -0.030248173 -0.0063694026 -0.059267238 -0.028249603 -0.0034554182 -0.061775427 -0.038595963 -0.0088485898 -0.060277499 -0.037532277 -0.0051102657 -0.061513145 -0.043445025 0.025975827 -0.059846107 0.081413172 0.028135298 -0.054310117 0.077413626 0.024702897 -0.05281632 0.079814978 0.011269149 -0.013937963 -0.089436345 0.026015274 -0.017892551 -0.086338475 0.011065169 -0.020702915 -0.089122616 -0.01279983 -0.05879733 -0.049611412 -0.006485932 -0.06071049 -0.049029715 -0.0051102657 -0.061513145 -0.043445025 -0.00058863196 -0.061404418 -0.032843225 -0.0021404049 -0.060630426 -0.030248173 -0.0034554182 -0.061775427 -0.038595963 -0.01279983 -0.05879733 -0.049611412 -0.0051102657 -0.061513145 -0.043445025 -0.010799372 -0.059841018 -0.041919541 -0.0051102657 -0.061513145 -0.043445025 -0.0088485898 -0.060277499 -0.037532277 -0.010799372 -0.059841018 -0.041919541 0.029130422 -0.06226933 0.079432383 0.025975827 -0.059846107 0.081413172 0.023051176 -0.062779158 0.084122755 -0.01279983 -0.05879733 -0.049611412 -0.010799372 -0.059841018 -0.041919541 -0.015396864 -0.058150232 -0.04217273 0.0063237553 -0.03579386 -0.085360475 0.0094611347 -0.041341409 -0.081622511 0.0062106219 -0.040911131 -0.082390562 0.031065082 -0.060724571 0.077153251 0.028135298 -0.054310117 0.077413626 0.025975827 -0.059846107 0.081413172 -0.0088485898 -0.060277499 -0.037532277 -0.0034554182 -0.061775427 -0.038595963 -0.0063694026 -0.059267238 -0.028249603 0.0094611347 -0.041341409 -0.081622511 0.0033133803 -0.045321148 -0.079335786 0.0062106219 -0.040911131 -0.082390562 0.0094611347 -0.041341409 -0.081622511 0.008690916 -0.044825748 -0.079157345 0.0033133803 -0.045321148 -0.079335786 0.04331705 -0.066678569 0.053111851 0.043511525 -0.062406186 0.047096156 0.042892877 -0.060753487 0.052238587 -0.0018751323 -0.058760818 0.090015605 -0.0081034144 -0.048514452 0.086021699 -0.008934509 -0.058826141 0.0891902 -0.0018751323 -0.058760818 0.090015605 -0.0027629428 -0.052523997 0.088066891 -0.0081034144 -0.048514452 0.086021699 -0.0063694026 -0.059267238 -0.028249603 -0.0021404049 -0.060630426 -0.030248173 -0.0024976667 -0.058939107 -0.025221519 -0.010799372 -0.059841018 -0.041919541 -0.0088485898 -0.060277499 -0.037532277 -0.015396864 -0.058150232 -0.04217273 -0.0063694026 -0.059267238 -0.028249603 -0.01839228 -0.055977229 -0.027951561 -0.0088485898 -0.060277499 -0.037532277 0.008690916 -0.044825748 -0.079157345 0.0081511503 -0.04824464 -0.076154545 0.0033133803 -0.045321148 -0.079335786 0.023051176 -0.062779158 0.084122755 0.021856166 -0.066429481 0.085045353 0.028038524 -0.06650383 0.080692023 -0.0063694026 -0.059267238 -0.028249603 -0.0024976667 -0.058939107 -0.025221519 -0.0044075213 -0.057559066 -0.022627929 -0.0088485898 -0.060277499 -0.037532277 -0.018991176 -0.056302965 -0.031550616 -0.015396864 -0.058150232 -0.04217273 0.0062106219 -0.040911131 -0.082390562 0.0033133803 -0.045321148 -0.079335786 -0.0006148098 -0.039019831 -0.084254935 0.0068960893 -0.052775156 -0.071152084 0.0027198 -0.052977465 -0.071120203 0.0081511503 -0.04824464 -0.076154545 0.043511525 -0.062406186 0.047096156 0.0429634 -0.060635436 0.042639121 0.042743765 -0.059185151 0.049628999 0.031065082 -0.060724571 0.077153251 0.032891002 -0.05150412 0.071055323 0.028135298 -0.054310117 0.077413626 0.0033133803 -0.045321148 -0.079335786 -0.0022862928 -0.045072414 -0.079720385 -0.0006148098 -0.039019831 -0.084254935 -0.0032860218 -0.062459096 0.090716228 -0.008934509 -0.058826141 0.0891902 -0.0092229582 -0.066048861 0.090107933 0.043735873 -0.066681184 0.047800969 0.043511525 -0.062406186 0.047096156 0.04331705 -0.066678569 0.053111851 0.0081511503 -0.04824464 -0.076154545 0.0020468142 -0.049615216 -0.075221241 0.0033133803 -0.045321148 -0.079335786 0.0020468142 -0.049615216 -0.075221241 0.0081511503 -0.04824464 -0.076154545 0.0027198 -0.052977465 -0.071120203 0.011269149 -0.013937963 -0.089436345 0.011065169 -0.020702915 -0.089122616 0.0019087192 -0.01918496 -0.090851426 0.0019087192 -0.01918496 -0.090851426 0.0020438274 -0.012191431 -0.090968274 0.011269149 -0.013937963 -0.089436345 0.0033133803 -0.045321148 -0.079335786 0.0020468142 -0.049615216 -0.075221241 -0.0022862928 -0.045072414 -0.079720385 0.0068960893 -0.052775156 -0.071152084 0.0027109422 -0.055737637 -0.06695468 0.0027198 -0.052977465 -0.071120203 0.0068960893 -0.052775156 -0.071152084 0.0053699794 -0.05695251 -0.064770706 0.0027109422 -0.055737637 -0.06695468 0.010530537 -0.033400923 -0.085778125 0.0063237553 -0.03579386 -0.085360475 0.0073841554 -0.027930161 -0.088295184 0.0020468142 -0.049615216 -0.075221241 0.0027198 -0.052977465 -0.071120203 -0.0054063462 -0.052657716 -0.070777804 0.0020468142 -0.049615216 -0.075221241 -0.0054063462 -0.052657716 -0.070777804 -0.0022862928 -0.045072414 -0.079720385 0.0053699794 -0.05695251 -0.064770706 -0.0014232962 -0.058791168 -0.060086351 0.0027109422 -0.055737637 -0.06695468 0.0053699794 -0.05695251 -0.064770706 0.0044536158 -0.059415713 -0.059423704 -0.0014232962 -0.058791168 -0.060086351 0.0027198 -0.052977465 -0.071120203 0.0027109422 -0.055737637 -0.06695468 -0.0054063462 -0.052657716 -0.070777804 0.0027109422 -0.055737637 -0.06695468 -0.0014232962 -0.058791168 -0.060086351 -0.0035239484 -0.05707499 -0.063392766 0.034065239 -0.05932048 0.073122747 0.032891002 -0.05150412 0.071055323 0.031065082 -0.060724571 0.077153251 0.033194546 -0.056413367 0.025787462 0.02762364 -0.055763233 0.0183827 0.033699166 -0.061897743 0.023749519 0.028038524 -0.06650383 0.080692023 0.029130422 -0.06226933 0.079432383 0.023051176 -0.062779158 0.084122755 0.023165472 -0.0095289713 0.012842336 0.023307869 -0.0064075724 0.012375806 0.023526005 -0.0064104935 0.011392425 -0.0032860218 -0.062459096 0.090716228 -0.0018751323 -0.058760818 0.090015605 -0.008934509 -0.058826141 0.0891902 0.023262994 -0.014252786 0.012145598 0.023165472 -0.0095289713 0.012842336 0.023526005 -0.0064104935 0.011392425 0.023067007 -0.013047682 0.013089298 0.023165472 -0.0095289713 0.012842336 0.023262994 -0.014252786 0.012145598 0.022815347 -0.014252786 0.01415581 0.023067007 -0.013047682 0.013089298 0.023262994 -0.014252786 0.012145598 0.031654812 -0.020084834 0.018134372 0.033631537 -0.020497909 0.02117867 0.03291117 -0.018224373 0.019507054 0.030409478 -0.015375303 0.016751472 0.031654812 -0.020084834 0.018134372 0.03291117 -0.018224373 0.019507054 0.029130422 -0.06226933 0.079432383 0.031065082 -0.060724571 0.077153251 0.025975827 -0.059846107 0.081413172 0.025044618 -0.020066813 0.012324031 0.031654812 -0.020084834 0.018134372 0.025677517 -0.015165033 0.012711923 0.025677517 -0.015165033 0.012711923 0.031654812 -0.020084834 0.018134372 0.030409478 -0.015375303 0.016751472 0.035369404 -0.024494981 0.023780476 0.033097722 -0.024451975 0.020635424 0.03408625 -0.024497036 0.023504775 0.03408625 -0.024497036 0.023504775 0.033097722 -0.024451975 0.020635424 0.030319514 -0.024448222 0.018373128 0.033097722 -0.024451975 0.020635424 0.024867177 -0.024339804 0.012826595 0.030319514 -0.024448222 0.018373128 0.030319514 -0.024448222 0.018373128 0.024867177 -0.024339804 0.012826595 0.026583629 -0.02440127 0.014563391 -0.0018751323 -0.058760818 0.090015605 0.0028157076 -0.053477794 0.088258311 -0.0027629428 -0.052523997 0.088066891 0.012355032 -0.0027299013 0.089153774 0.0085494937 -0.0086609712 0.090123281 0.010977698 -0.02119443 0.089709453 0.012355032 -0.0027299013 0.089153774 0.010977698 -0.02119443 0.089709453 0.014825248 -0.011790494 0.088583104 0.0051487465 -0.0032397341 0.090448685 0.0057746135 -0.020965913 0.090682775 0.0085494937 -0.0086609712 0.090123281 0.0057746135 -0.020965913 0.090682775 0.010977698 -0.02119443 0.089709453 0.0085494937 -0.0086609712 0.090123281 -0.0056454027 -0.0040807305 0.090442516 -0.0012024874 -0.0065564103 0.09085416 -0.0023564543 0.0054603438 0.090392523 -0.0012024874 -0.0065564103 0.09085416 0.002737144 -0.020601964 0.090968259 0.0051487465 -0.0032397341 0.090448685 -0.0012024874 -0.0065564103 0.09085416 0.00060394616 0.0029295019 0.090545885 -0.0023564543 0.0054603438 0.090392523 0.00060394616 0.0029295019 0.090545885 -0.0012024874 -0.0065564103 0.09085416 0.0051487465 -0.0032397341 0.090448685 0.0085494937 -0.0086609712 0.090123281 0.010104878 0.0078916559 0.089220934 0.0051487465 -0.0032397341 0.090448685 0.0085494937 -0.0086609712 0.090123281 0.012355032 -0.0027299013 0.089153774 0.010104878 0.0078916559 0.089220934 0.042876318 -0.061673384 0.040401958 0.0429634 -0.060635436 0.042639121 0.043511525 -0.062406186 0.047096156 0.0016169038 -0.023975234 -0.090159513 0.0020438274 -0.012191431 -0.090968274 0.0019087192 -0.01918496 -0.090851426 0.0020438274 -0.012191431 -0.090968274 0.0016169038 -0.023975234 -0.090159513 0.0019558356 -0.0083372798 -0.090581425 -0.0046080868 -0.053761639 -0.010350976 -0.0058835293 -0.053745639 -0.0046090567 -0.014008287 -0.052344035 -0.0054092542 -0.016007133 -0.05503552 -0.021764649 -0.012076747 -0.054401629 -0.01795714 -0.023669396 -0.053329237 -0.017699311 -0.0044075213 -0.057559066 -0.022627929 -0.0050947946 -0.055834845 -0.0193913 -0.016007133 -0.05503552 -0.021764649 -0.014008287 -0.052344035 -0.0054092542 -0.016808743 -0.052536588 -0.002350678 -0.020168355 -0.051699862 -0.0040975306 0.0044568568 -0.058734767 0.089766763 0.0028157076 -0.053477794 0.088258311 -0.0018751323 -0.058760818 0.090015605 -0.0040587327 -0.05395196 -0.012748357 -0.0046080868 -0.053761639 -0.010350976 -0.014008287 -0.052344035 -0.0054092542 -0.0040587327 -0.05395196 -0.012748357 -0.014008287 -0.052344035 -0.0054092542 -0.010756479 -0.0532008 -0.011873905 -0.0063694026 -0.059267238 -0.028249603 -0.016007133 -0.05503552 -0.021764649 -0.01839228 -0.055977229 -0.027951561 -0.010756479 -0.0532008 -0.011873905 -0.014008287 -0.052344035 -0.0054092542 -0.016073903 -0.052236956 -0.007762711 -0.023669396 -0.053329237 -0.017699311 -0.021739725 -0.051711947 -0.0086388066 -0.026841072 -0.050937336 -0.0085481247 -0.01839228 -0.055977229 -0.027951561 -0.016007133 -0.05503552 -0.021764649 -0.023669396 -0.053329237 -0.017699311 -0.012076747 -0.054401629 -0.01795714 -0.010756479 -0.0532008 -0.011873905 -0.023669396 -0.053329237 -0.017699311 -0.023669396 -0.053329237 -0.017699311 -0.010756479 -0.0532008 -0.011873905 -0.016073903 -0.052236956 -0.007762711 -0.0063694026 -0.059267238 -0.028249603 -0.0044075213 -0.057559066 -0.022627929 -0.016007133 -0.05503552 -0.021764649 -0.016073903 -0.052236956 -0.007762711 -0.014008287 -0.052344035 -0.0054092542 -0.021739725 -0.051711947 -0.0086388066 -0.014008287 -0.052344035 -0.0054092542 -0.020168355 -0.051699862 -0.0040975306 -0.021739725 -0.051711947 -0.0086388066 -0.014831484 -0.053594057 -0.00012962664 -0.0067437631 -0.054653049 -0.00077897159 -0.0072512887 -0.056225605 0.0014124444 0.043735873 -0.066681184 0.047800969 0.042876318 -0.061673384 0.040401958 0.043511525 -0.062406186 0.047096156 -0.016007133 -0.05503552 -0.021764649 -0.0050947946 -0.055834845 -0.0193913 -0.012076747 -0.054401629 -0.01795714 -0.021739725 -0.051711947 -0.0086388066 -0.020168355 -0.051699862 -0.0040975306 -0.026841072 -0.050937336 -0.0085481247 -0.00065688696 -0.062490951 0.090820514 -0.0018751323 -0.058760818 0.090015605 -0.0032860218 -0.062459096 0.090716228 -0.0058835293 -0.053745639 -0.0046090567 -0.0067437631 -0.054653049 -0.00077897159 -0.016808743 -0.052536588 -0.002350678 -0.016808743 -0.052536588 -0.002350678 -0.0067437631 -0.054653049 -0.00077897159 -0.014831484 -0.053594057 -0.00012962664 -0.0058835293 -0.053745639 -0.0046090567 -0.016808743 -0.052536588 -0.002350678 -0.014008287 -0.052344035 -0.0054092542 0.033050187 -0.062898025 0.075502083 0.031065082 -0.060724571 0.077153251 0.029130422 -0.06226933 0.079432383 -0.012076747 -0.054401629 -0.01795714 -0.0040587327 -0.05395196 -0.012748357 -0.010756479 -0.0532008 -0.011873905 -0.023669396 -0.053329237 -0.017699311 -0.016073903 -0.052236956 -0.007762711 -0.021739725 -0.051711947 -0.0086388066 -0.034359373 -0.023353644 0.015494579 -0.033952165 -0.0065099555 0.016601145 -0.034306284 -0.013843677 0.016026773 -0.034359373 -0.023353644 0.015494579 -0.034929864 -0.0136336 0.018540738 -0.033952165 -0.0065099555 0.016601145 -0.034767289 -0.017624211 0.015455363 -0.034359373 -0.023353644 0.015494579 -0.034306284 -0.013843677 0.016026773 0.028493252 -0.014484148 0.015559467 0.022815347 -0.014252786 0.01415581 0.023262994 -0.014252786 0.012145598 0.028399926 -0.061871018 0.013564543 0.027344124 -0.04952503 0.015349535 0.031071335 -0.054706536 0.019015193 0.031777732 -0.066548124 0.077187099 0.029130422 -0.06226933 0.079432383 0.028038524 -0.06650383 0.080692023 0.043045931 -0.064633243 0.039351605 0.042876318 -0.061673384 0.040401958 0.043735873 -0.066681184 0.047800969 0.033346258 -0.066538952 0.018605933 0.028399926 -0.061871018 0.013564543 0.033926051 -0.06130138 0.019933809 0.028399926 -0.061871018 0.013564543 0.031071335 -0.054706536 0.019015193 0.033926051 -0.06130138 0.019933809 0.026135499 -0.049428005 0.013429748 0.02599852 -0.045233779 0.0135803 0.027344124 -0.04952503 0.015349535 0.026617205 -0.054515351 -0.0052340128 0.026741561 -0.053483788 -0.0057367943 0.029625067 -0.053982966 -0.0045138309 -0.0032860218 -0.062459096 0.090716228 -0.0092229582 -0.066048861 0.090107933 0.0021214013 -0.066189431 0.090959385 0.042537831 -0.061672792 0.03845996 0.0429634 -0.060635436 0.042639121 0.042876318 -0.061673384 0.040401958 0.042537831 -0.061672792 0.03845996 0.041561935 -0.058848329 0.037090592 0.0429634 -0.060635436 0.042639121 0.026741561 -0.053483788 -0.0057367943 0.029167807 -0.053447034 -0.0051459889 0.029625067 -0.053982966 -0.0045138309 0.041561935 -0.058848329 0.037090592 0.038078927 -0.052995872 0.031688601 0.039750166 -0.053017616 0.036826201 0.033050187 -0.062898025 0.075502083 0.034065239 -0.05932048 0.073122747 0.031065082 -0.060724571 0.077153251 0.026415244 -0.057255175 0.010065997 0.025618931 -0.046436489 0.0095732016 0.025857203 -0.051183887 0.012100049 0.025618931 -0.046436489 0.0095732016 0.02595984 -0.037568126 0.0079242941 0.025523297 -0.037324622 0.011234845 0.026732082 -0.033514567 0.01304034 0.026132988 -0.040161267 0.013579399 0.026768334 -0.027553329 0.011473887 0.033050187 -0.062898025 0.075502083 0.029130422 -0.06226933 0.079432383 0.031777732 -0.066548124 0.077187099 0.026768334 -0.027553329 0.011473887 0.026132988 -0.040161267 0.013579399 0.025523297 -0.037324622 0.011234845 0.025523297 -0.037324622 0.011234845 0.026132988 -0.040161267 0.013579399 0.02599852 -0.045233779 0.0135803 0.026135499 -0.049428005 0.013429748 0.027131479 -0.059955139 0.012050172 0.025857203 -0.051183887 0.012100049 0.026415244 -0.057255175 0.010065997 0.025857203 -0.051183887 0.012100049 0.027131479 -0.059955139 0.012050172 0.025618931 -0.046436489 0.0095732016 0.025523297 -0.037324622 0.011234845 0.025857203 -0.051183887 0.012100049 0.0021214013 -0.066189431 0.090959385 -0.00065688696 -0.062490951 0.090820514 -0.0032860218 -0.062459096 0.090716228 0.02599852 -0.045233779 0.0135803 0.025857203 -0.051183887 0.012100049 0.025523297 -0.037324622 0.011234845 0.0044568568 -0.058734767 0.089766763 -0.0018751323 -0.058760818 0.090015605 -0.00065688696 -0.062490951 0.090820514 0.028399926 -0.061871018 0.013564543 0.027131479 -0.059955139 0.012050172 0.027344124 -0.04952503 0.015349535 0.040735479 -0.060717069 0.032557033 0.038078927 -0.052995872 0.031688601 0.041561935 -0.058848329 0.037090592 0.02595984 -0.037568126 0.0079242941 0.025664182 -0.030631622 0.010199384 0.025523297 -0.037324622 0.011234845 0.027131479 -0.059955139 0.012050172 0.026135499 -0.049428005 0.013429748 0.027344124 -0.04952503 0.015349535 0.025857203 -0.051183887 0.012100049 0.02599852 -0.045233779 0.0135803 0.026135499 -0.049428005 0.013429748 -0.01839228 -0.055977229 -0.027951561 -0.023669396 -0.053329237 -0.017699311 -0.026841072 -0.050937336 -0.0085481247 -0.018991176 -0.056302965 -0.031550616 -0.01839228 -0.055977229 -0.027951561 -0.026841072 -0.050937336 -0.0085481247 -0.014554675 -0.055113871 0.0025555014 -0.014831484 -0.053594057 -0.00012962664 -0.0072512887 -0.056225605 0.0014124444 -0.0198994 -0.053897545 0.0053347708 -0.022385962 -0.051838093 0.0053053605 -0.020045174 -0.051893629 0.0004176184 0.0044568568 -0.058734767 0.089766763 0.0079222126 -0.052646145 0.087365709 0.0028157076 -0.053477794 0.088258311 -0.0198994 -0.053897545 0.0053347708 -0.020045174 -0.051893629 0.0004176184 -0.014554675 -0.055113871 0.0025555014 0.043045931 -0.064633243 0.039351605 0.043735873 -0.066681184 0.047800969 0.043043233 -0.066668279 0.039253809 0.040735479 -0.060717069 0.032557033 0.041561935 -0.058848329 0.037090592 0.042537831 -0.061672792 0.03845996 -0.023644695 -0.050415386 0.0037279164 -0.020045174 -0.051893629 0.0004176184 -0.022385962 -0.051838093 0.0053053605 -0.020045174 -0.051893629 0.0004176184 -0.02641765 -0.04859947 0.0029406259 -0.021303803 -0.051330287 -0.0018182357 -0.014831484 -0.053594057 -0.00012962664 -0.014554675 -0.055113871 0.0025555014 -0.020045174 -0.051893629 0.0004176184 -0.020045174 -0.051893629 0.0004176184 -0.023644695 -0.050415386 0.0037279164 -0.02641765 -0.04859947 0.0029406259 -0.030755531 -0.046697322 0.0029976002 -0.021303803 -0.051330287 -0.0018182357 -0.02641765 -0.04859947 0.0029406259 -0.021303803 -0.051330287 -0.0018182357 -0.014831484 -0.053594057 -0.00012962664 -0.020045174 -0.051893629 0.0004176184 -0.016808743 -0.052536588 -0.002350678 -0.021303803 -0.051330287 -0.0018182357 -0.020168355 -0.051699862 -0.0040975306 -0.021303803 -0.051330287 -0.0018182357 -0.030755531 -0.046697322 0.0029976002 -0.026841072 -0.050937336 -0.0085481247 -0.016808743 -0.052536588 -0.002350678 -0.014831484 -0.053594057 -0.00012962664 -0.021303803 -0.051330287 -0.0018182357 -0.020168355 -0.051699862 -0.0040975306 -0.021303803 -0.051330287 -0.0018182357 -0.026841072 -0.050937336 -0.0085481247 0.035456218 -0.066591375 0.072710648 0.033050187 -0.062898025 0.075502083 0.031777732 -0.066548124 0.077187099 -0.032290604 -0.04406485 0.007267484 -0.028992862 -0.04584901 0.0088772699 -0.033333261 -0.041226145 0.010377739 -0.030755531 -0.046697322 0.0029976002 -0.02641765 -0.04859947 0.0029406259 -0.029941842 -0.046029404 0.0052862302 -0.025996253 -0.049031083 0.0070269718 -0.027702829 -0.047732189 0.0097777545 -0.028992862 -0.04584901 0.0088772699 0.035998955 -0.060677603 0.070965074 0.035740744 -0.054965381 0.068231791 0.034065239 -0.05932048 0.073122747 -0.030755531 -0.046697322 0.0029976002 -0.029941842 -0.046029404 0.0052862302 -0.032290604 -0.04406485 0.007267484 -0.028992862 -0.04584901 0.0088772699 -0.027702829 -0.047732189 0.0097777545 -0.030189782 -0.044115905 0.013121638 -0.028992862 -0.04584901 0.0088772699 -0.030274188 -0.043747645 0.011605573 -0.033333261 -0.041226145 0.010377739 -0.022385962 -0.051838093 0.0053053605 -0.025996253 -0.049031083 0.0070269718 -0.023644695 -0.050415386 0.0037279164 -0.02641765 -0.04859947 0.0029406259 -0.023644695 -0.050415386 0.0037279164 -0.025996253 -0.049031083 0.0070269718 -0.028992862 -0.04584901 0.0088772699 -0.030189782 -0.044115905 0.013121638 -0.030274188 -0.043747645 0.011605573 -0.02641765 -0.04859947 0.0029406259 -0.028992862 -0.04584901 0.0088772699 -0.029941842 -0.046029404 0.0052862302 0.041228112 -0.066642642 0.032347381 0.042537831 -0.061672792 0.03845996 0.043045931 -0.064633243 0.039351605 0.035998955 -0.060677603 0.070965074 0.034065239 -0.05932048 0.073122747 0.033050187 -0.062898025 0.075502083 -0.02641765 -0.04859947 0.0029406259 -0.025996253 -0.049031083 0.0070269718 -0.028992862 -0.04584901 0.0088772699 -0.032290604 -0.04406485 0.007267484 -0.029941842 -0.046029404 0.0052862302 -0.028992862 -0.04584901 0.0088772699 0.033346258 -0.066538952 0.018605933 0.027108494 -0.066458985 0.012525262 0.028399926 -0.061871018 0.013564543 0.027108494 -0.066458985 0.012525262 0.023240278 -0.060911302 0.0096119838 0.028399926 -0.061871018 0.013564543 0.027108494 -0.066458985 0.012525262 0.023173228 -0.066409074 0.0097573446 0.023240278 -0.060911302 0.0096119838 0.0045885681 -0.062554687 0.090556152 0.0044568568 -0.058734767 0.089766763 -0.00065688696 -0.062490951 0.090820514 -0.028628359 -0.0016811911 -0.059907567 -0.028832216 -0.0023641144 -0.060779769 -0.027683634 -0.0062579536 -0.063772693 -0.027037209 -0.0071024508 -0.064063936 -0.028628359 -0.0016811911 -0.059907567 -0.027683634 -0.0062579536 -0.063772693 -0.031766966 0.0018324408 -0.050872631 -0.033353657 0.001614105 -0.047615822 -0.030775614 0.0009940879 -0.055341776 -0.028628359 -0.0016811911 -0.059907567 -0.031766966 0.0018324408 -0.050872631 -0.030775614 0.0009940879 -0.055341776 -0.027037209 -0.0071024508 -0.064063936 -0.027683634 -0.0062579536 -0.063772693 -0.02696388 -0.011494487 -0.065598786 -0.026400484 -0.013662918 -0.065718926 -0.027037209 -0.0071024508 -0.064063936 -0.02696388 -0.011494487 -0.065598786 -0.028628359 -0.0016811911 -0.059907567 -0.030775614 0.0009940879 -0.055341776 -0.028832216 -0.0023641144 -0.060779769 -0.034359373 -0.023353644 0.015494579 -0.034767289 -0.017624211 0.015455363 -0.034346666 -0.034698643 0.013597585 0.00043927602 0.0069288965 -0.085592628 0.00093306275 0.0036808464 -0.087170802 -0.00081368966 0.012858794 -0.081776269 0.038755145 -0.060595386 0.066100456 0.037358355 -0.053887207 0.064488716 0.035740744 -0.054965381 0.068231791 0.0019558356 -0.0083372798 -0.090581425 0.00093306275 0.0036808464 -0.087170802 0.0013844398 -5.3513533e-05 -0.088618323 0.041228112 -0.066642642 0.032347381 0.043045931 -0.064633243 0.039351605 0.043043233 -0.066668279 0.039253809 -0.038170222 -0.0043099085 0.025608467 -0.04117284 -0.0054502334 0.033232164 -0.037755873 0.012964922 0.027409604 0.0084599424 -0.062578067 0.089947656 0.0079222126 -0.052646145 0.087365709 0.0044568568 -0.058734767 0.089766763 -0.034929864 -0.0136336 0.018540738 -0.038639594 -0.017216004 0.025719911 -0.037829597 -0.0099928649 0.024214363 -0.037924256 -0.021819206 0.024889091 -0.038639594 -0.017216004 0.025719911 -0.034790248 -0.019432839 0.018397424 0.0084599424 -0.062578067 0.089947656 0.0044568568 -0.058734767 0.089766763 0.0045885681 -0.062554687 0.090556152 -0.034929864 -0.0136336 0.018540738 -0.034790248 -0.019432839 0.018397424 -0.038639594 -0.017216004 0.025719911 -0.042400748 -0.0051626163 0.037946176 -0.041975085 -0.01313895 0.035090558 -0.042249352 -0.02060933 0.03574235 -0.042249352 -0.02060933 0.03574235 -0.041975085 -0.01313895 0.035090558 -0.039978039 -0.016889419 0.028872032 -0.034929864 -0.0136336 0.018540738 -0.037829597 -0.0099928649 0.024214363 -0.033436019 0.0037336175 0.016811 -0.041129634 0.0045344294 0.035050195 -0.041975085 -0.01313895 0.035090558 -0.042400748 -0.0051626163 0.037946176 0.037807606 -0.060678266 0.026038857 0.038078927 -0.052995872 0.031688601 0.040735479 -0.060717069 0.032557033 0.037163492 -0.064790137 0.070105791 0.035998955 -0.060677603 0.070965074 0.033050187 -0.062898025 0.075502083 -0.039978039 -0.016889419 0.028872032 -0.041975085 -0.01313895 0.035090558 -0.04117284 -0.0054502334 0.033232164 0.041228112 -0.066642642 0.032347381 0.040735479 -0.060717069 0.032557033 0.042537831 -0.061672792 0.03845996 0.012212754 -0.060393739 0.088607684 0.011569594 -0.052681409 0.086465277 0.0079222126 -0.052646145 0.087365709 -0.04117284 -0.0054502334 0.033232164 -0.041975085 -0.01313895 0.035090558 -0.041129634 0.0045344294 0.035050195 -0.038639594 -0.017216004 0.025719911 -0.039978039 -0.016889419 0.028872032 -0.038170222 -0.0043099085 0.025608467 0.037163492 -0.064790137 0.070105791 0.033050187 -0.062898025 0.075502083 0.035456218 -0.066591375 0.072710648 -0.038170222 -0.0043099085 0.025608467 -0.039978039 -0.016889419 0.028872032 -0.04117284 -0.0054502334 0.033232164 -0.037829597 -0.0099928649 0.024214363 -0.038639594 -0.017216004 0.025719911 -0.038170222 -0.0043099085 0.025608467 0.038755145 -0.060595386 0.066100456 0.035740744 -0.054965381 0.068231791 0.035998955 -0.060677603 0.070965074 -0.035071373 -0.027910674 -0.041417215 -0.03455295 -0.029824812 -0.045024723 -0.03695884 -0.021330606 -0.03614489 -0.035071373 -0.027910674 -0.041417215 -0.03695884 -0.021330606 -0.03614489 -0.036175694 -0.023489228 -0.03724074 -0.03270594 -0.030795308 -0.049259502 -0.031989105 -0.030628975 -0.052973911 -0.03455295 -0.029824812 -0.045024723 -0.036175694 -0.023489228 -0.03724074 -0.03695884 -0.021330606 -0.03614489 -0.03667853 -0.018610783 -0.035116851 -0.03667853 -0.018610783 -0.035116851 -0.03695884 -0.021330606 -0.03614489 -0.037256788 -0.014783512 -0.034696717 0.037807606 -0.060678266 0.026038857 0.03639859 -0.05251747 0.028252084 0.038078927 -0.052995872 0.031688601 0.0045885681 -0.062554687 0.090556152 -0.00065688696 -0.062490951 0.090820514 0.0021214013 -0.066189431 0.090959385 -0.03270594 -0.030795308 -0.049259502 -0.03455295 -0.029824812 -0.045024723 -0.035071373 -0.027910674 -0.041417215 -0.035141848 -0.0021175924 -0.040033352 -0.036570571 -0.0061024958 -0.036891375 -0.034557618 0.00033400557 -0.043756347 -0.03672304 -0.012846246 -0.03467096 -0.03667853 -0.018610783 -0.035116851 -0.037256788 -0.014783512 -0.034696717 -0.03328323 0.001296611 -0.046194203 -0.035141848 -0.0021175924 -0.040033352 -0.034557618 0.00033400557 -0.043756347 -0.03328323 0.001296611 -0.046194203 -0.034557618 0.00033400557 -0.043756347 -0.033353657 0.001614105 -0.047615822 0.012212754 -0.060393739 0.088607684 0.0079222126 -0.052646145 0.087365709 0.0084599424 -0.062578067 0.089947656 -0.03672304 -0.012846246 -0.03467096 -0.037256788 -0.014783512 -0.034696717 -0.036570571 -0.0061024958 -0.036891375 -0.031766966 0.0018324408 -0.050872631 -0.03328323 0.001296611 -0.046194203 -0.033353657 0.001614105 -0.047615822 -0.035991129 -0.0056178775 -0.037099753 -0.03672304 -0.012846246 -0.03467096 -0.036570571 -0.0061024958 -0.036891375 -0.035141848 -0.0021175924 -0.040033352 -0.035991129 -0.0056178775 -0.037099753 -0.036570571 -0.0061024958 -0.036891375 -0.029731231 -0.028816303 -0.05784196 -0.02865891 -0.025445389 -0.061963234 -0.030990111 -0.029846845 -0.055828929 -0.026400484 -0.013662918 -0.065718926 -0.02696388 -0.011494487 -0.065598786 -0.027182097 -0.021817887 -0.064157888 0.037163492 -0.064790137 0.070105791 0.038755145 -0.060595386 0.066100456 0.035998955 -0.060677603 0.070965074 -0.027182097 -0.021817887 -0.064157888 -0.02696388 -0.011494487 -0.065598786 -0.027203716 -0.019142887 -0.06527257 -0.029731231 -0.028816303 -0.05784196 -0.030990111 -0.029846845 -0.055828929 -0.031989105 -0.030628975 -0.052973911 -0.027182097 -0.021817887 -0.064157888 -0.027203716 -0.019142887 -0.06527257 -0.02865891 -0.025445389 -0.061963234 -0.029731231 -0.028816303 -0.05784196 -0.031989105 -0.030628975 -0.052973911 -0.03270594 -0.030795308 -0.049259502 -0.027182097 -0.021817887 -0.064157888 -0.02865891 -0.025445389 -0.061963234 -0.029731231 -0.028816303 -0.05784196 -0.032858361 -0.038720578 0.012880111 -0.034346666 -0.034698643 0.013597585 -0.033333261 -0.041226145 0.010377739 0.040648546 -0.06061276 0.061614517 0.037358355 -0.053887207 0.064488716 0.038755145 -0.060595386 0.066100456 -0.042412084 -0.0059802644 -0.0051709041 -0.042530868 -0.027738292 -0.0071237758 -0.042618487 -0.022842586 -0.0051756483 -0.042333767 -0.0033557119 -0.0058422615 -0.042530868 -0.027738292 -0.0071237758 -0.042412084 -0.0059802644 -0.0051709041 -0.025198735 0.020803751 -0.012890008 -0.026120797 0.019791555 -0.0083734198 -0.019186834 0.024424424 -0.028321372 -0.026260013 0.019763844 -0.008415279 -0.026120797 0.019791555 -0.0083734198 -0.025198735 0.020803751 -0.012890008 -0.042530868 -0.027738292 -0.0071237758 -0.040756729 -0.026794618 -0.001506262 -0.042618487 -0.022842586 -0.0051756483 -0.040756729 -0.026794618 -0.001506262 -0.039139718 -0.018466046 0.0045787683 -0.042618487 -0.022842586 -0.0051756483 -0.035675127 -0.020267075 0.012808479 -0.039139718 -0.018466046 0.0045787683 -0.040756729 -0.026794618 -0.001506262 -0.036890134 -0.032784786 0.0052194563 -0.035023943 -0.025764629 0.01257115 -0.040756729 -0.026794618 -0.001506262 0.040001094 -0.062394138 0.064182617 0.038755145 -0.060595386 0.066100456 0.037163492 -0.064790137 0.070105791 -0.035023943 -0.025764629 0.01257115 -0.035675127 -0.020267075 0.012808479 -0.040756729 -0.026794618 -0.001506262 0.03918314 -0.066615112 0.027480094 0.040735479 -0.060717069 0.032557033 0.041228112 -0.066642642 0.032347381 0.037163492 -0.064790137 0.070105791 0.035456218 -0.066591375 0.072710648 0.038299467 -0.066624142 0.068206295 -0.033660349 -0.035212874 0.011512716 -0.035023943 -0.025764629 0.01257115 -0.036890134 -0.032784786 0.0052194563 -0.039139718 -0.018466046 0.0045787683 -0.041020941 -0.014689262 -0.00030474213 -0.042618487 -0.022842586 -0.0051756483 -0.035924472 0.0075138472 -0.038656712 -0.028994298 0.012847336 -0.047034774 -0.03199327 0.0075222817 -0.051558781 -0.027954727 0.014960237 -0.043487329 -0.023143031 0.018087775 -0.048842978 -0.028994298 0.012847336 -0.047034774 -0.023143031 0.018087775 -0.048842978 -0.019275963 0.017784016 -0.057785776 -0.023831572 0.01643726 -0.051605716 0.040648546 -0.06061276 0.061614517 0.039520286 -0.054965556 0.059800617 0.037358355 -0.053887207 0.064488716 -0.016841395 0.021763684 -0.053407837 -0.019275963 0.017784016 -0.057785776 -0.023143031 0.018087775 -0.048842978 -0.019275963 0.017784016 -0.057785776 -0.016841395 0.021763684 -0.053407837 -0.015717272 0.020571847 -0.058050394 -0.0084233899 0.024942305 -0.059552815 -0.015717272 0.020571847 -0.058050394 -0.010453342 0.026290111 -0.053610496 -0.016841395 0.021763684 -0.053407837 -0.010453342 0.026290111 -0.053610496 -0.015717272 0.020571847 -0.058050394 -0.016841395 0.021763684 -0.053407837 -0.023143031 0.018087775 -0.048842978 -0.015242226 0.025000973 -0.047230799 0.03918314 -0.066615112 0.027480094 0.037807606 -0.060678266 0.026038857 0.040735479 -0.060717069 0.032557033 -0.01294235 0.02681735 -0.046365988 -0.016841395 0.021763684 -0.053407837 -0.015242226 0.025000973 -0.047230799 -0.010453342 0.026290111 -0.053610496 -0.016841395 0.021763684 -0.053407837 -0.01294235 0.02681735 -0.046365988 0.01122918 -0.066300824 0.089493878 0.0084599424 -0.062578067 0.089947656 0.0045885681 -0.062554687 0.090556152 -0.023831572 0.01643726 -0.051605716 -0.027283935 0.011314489 -0.055130027 -0.02900729 0.011291551 -0.051112764 -0.027283935 0.011314489 -0.055130027 -0.023831572 0.01643726 -0.051605716 -0.019275963 0.017784016 -0.057785776 -0.023831572 0.01643726 -0.051605716 -0.02900729 0.011291551 -0.051112764 -0.028994298 0.012847336 -0.047034774 -0.023143031 0.018087775 -0.048842978 -0.023831572 0.01643726 -0.051605716 -0.028994298 0.012847336 -0.047034774 -0.027283935 0.011314489 -0.055130027 -0.03199327 0.0075222817 -0.051558781 -0.02900729 0.011291551 -0.051112764 0.041860674 -0.059408549 0.056346625 0.039520286 -0.054965556 0.059800617 0.040648546 -0.06061276 0.061614517 0.012212754 -0.060393739 0.088607684 0.018367046 -0.054165751 0.0841619 0.011569594 -0.052681409 0.086465277 -0.02900729 0.011291551 -0.051112764 -0.03199327 0.0075222817 -0.051558781 -0.028994298 0.012847336 -0.047034774 -0.034886442 -0.00033484391 0.012206505 -0.035731826 -0.010488106 0.012848066 -0.035028532 -0.0065510115 0.013109774 -0.034886442 -0.00033484391 0.012206505 -0.035028532 -0.0065510115 0.013109774 -0.033138517 0.0066761668 0.011521254 -0.035028532 -0.0065510115 0.013109774 -0.035731826 -0.010488106 0.012848066 -0.035809048 -0.015013481 0.013015808 0.014801716 -0.062679186 0.088161699 0.012212754 -0.060393739 0.088607684 0.0084599424 -0.062578067 0.089947656 -0.0083725229 0.02800524 -0.059327569 -0.0063625323 0.025906734 -0.065294698 -0.010460637 0.029024847 -0.053396471 -0.033380099 0.0094890427 0.009736185 -0.033138517 0.0066761668 0.011521254 -0.032315668 0.010845727 0.0092849117 -0.0032892204 0.016468965 -0.074759066 -0.0021193638 0.017342446 -0.077835247 -0.0020693114 0.012658871 -0.078438252 -0.012817238 0.029181633 -0.046233743 -0.010460637 0.029024847 -0.053396471 -0.01294235 0.02681735 -0.046365988 0.01122918 -0.066300824 0.089493878 0.0045885681 -0.062554687 0.090556152 0.0021214013 -0.066189431 0.090959385 -0.011574245 -0.0556577 -0.053331453 -0.0092848456 -0.057446048 -0.059773654 -0.01279983 -0.05879733 -0.049611412 -0.031425651 -0.042887457 0.0047514336 -0.030755531 -0.046697322 0.0029976002 -0.032290604 -0.04406485 0.007267484 -0.0063625323 0.025906734 -0.065294698 -0.0062913829 0.02253045 -0.065825775 -0.0084233899 0.024942305 -0.059552815 0.020362886 -0.058928631 0.08479099 0.018367046 -0.054165751 0.0841619 0.012212754 -0.060393739 0.088607684 0.041860674 -0.059408549 0.056346625 0.040403575 -0.053039238 0.054159354 0.039520286 -0.054965556 0.059800617 0.040578332 -0.066649802 0.063390575 0.040001094 -0.062394138 0.064182617 0.037163492 -0.064790137 0.070105791 -0.031425651 -0.042887457 0.0047514336 -0.027782077 -0.046966333 -0.0059704124 -0.030755531 -0.046697322 0.0029976002 -0.011574245 -0.0556577 -0.053331453 -0.0084215607 -0.053568523 -0.06240128 -0.0092848456 -0.057446048 -0.059773654 -0.027782077 -0.046966333 -0.0059704124 -0.021462908 -0.051665682 -0.024481498 -0.026841072 -0.050937336 -0.0085481247 -0.0021193638 0.017342446 -0.077835247 -0.00081368966 0.012858794 -0.081776269 -0.0020693114 0.012658871 -0.078438252 0.014801716 -0.062679186 0.088161699 0.0084599424 -0.062578067 0.089947656 0.01122918 -0.066300824 0.089493878 0.00069163588 -0.022537149 -0.087726116 0.0016169038 -0.023975234 -0.090159513 0.00020535743 -0.027668161 -0.086501874 0.00020535743 -0.027668161 -0.086501874 0.0016169038 -0.023975234 -0.090159513 0.0010593808 -0.02879625 -0.088905707 -0.0020693114 0.012658871 -0.078438252 -0.00081368966 0.012858794 -0.081776269 -0.0011771665 0.0090669384 -0.081157222 0.040648546 -0.06061276 0.061614517 0.038755145 -0.060595386 0.066100456 0.040001094 -0.062394138 0.064182617 -0.0084215607 -0.053568523 -0.06240128 -0.007031695 -0.054997444 -0.066386998 -0.0092848456 -0.057446048 -0.059773654 -0.033214211 0.010138418 0.011902412 -0.033138517 0.0066761668 0.011521254 -0.034256507 -0.00080390816 0.014730196 -0.0063625323 0.025906734 -0.065294698 -0.0036264344 0.021169061 -0.073401622 -0.0062913829 0.02253045 -0.065825775 -0.029054651 0.018767726 0.00039948861 -0.026120797 0.019791555 -0.0083734198 -0.030804412 0.01440634 0.005026178 0.00020535743 -0.027668161 -0.086501874 0.0010593808 -0.02879625 -0.088905707 0.00026232106 -0.034637462 -0.086643428 -0.034256507 -0.00080390816 0.014730196 -0.033138517 0.0066761668 0.011521254 -0.034077294 -0.01044867 0.013624254 -0.010460637 0.029024847 -0.053396471 -0.010453342 0.026290111 -0.053610496 -0.01294235 0.02681735 -0.046365988 -0.034346666 -0.034698643 0.013597585 -0.033660349 -0.035212874 0.011512716 -0.033333261 -0.041226145 0.010377739 -0.0011771665 0.0090669384 -0.081157222 -0.00081368966 0.012858794 -0.081776269 0.00093306275 0.0036808464 -0.087170802 -0.0011771665 0.0090669384 -0.081157222 0.00093306275 0.0036808464 -0.087170802 -0.00038547392 0.0049540526 -0.083604775 0.00020535743 -0.027668161 -0.086501874 0.00026232106 -0.034637462 -0.086643428 -0.0005812904 -0.033088338 -0.084415376 -0.026841072 -0.050937336 -0.0085481247 -0.021462908 -0.051665682 -0.024481498 -0.018991176 -0.056302965 -0.031550616 -0.0062913829 0.02253045 -0.065825775 -0.0036264344 0.021169061 -0.073401622 -0.0046781623 0.019721182 -0.070609733 -0.029054651 0.018767726 0.00039948861 -0.023224719 0.023748089 -0.016545815 -0.026120797 0.019791555 -0.0083734198 -0.033660349 -0.035212874 0.011512716 -0.032925859 -0.039322156 0.0092315981 -0.033333261 -0.041226145 0.010377739 0.040578332 -0.066649802 0.063390575 0.037163492 -0.064790137 0.070105791 0.038299467 -0.066624142 0.068206295 -0.034256507 -0.00080390816 0.014730196 -0.034077294 -0.01044867 0.013624254 -0.034767289 -0.017624211 0.015455363 -0.0084215607 -0.053568523 -0.06240128 -0.0057742004 -0.049789548 -0.069949232 -0.007031695 -0.054997444 -0.066386998 0.037446108 -0.066591091 0.024333762 0.037807606 -0.060678266 0.026038857 0.03918314 -0.066615112 0.027480094 -0.00038547392 0.0049540526 -0.083604775 0.00093306275 0.0036808464 -0.087170802 0.00035634998 -0.00043891132 -0.085951857 -0.023224719 0.023748089 -0.016545815 -0.019186834 0.024424424 -0.028321372 -0.026120797 0.019791555 -0.0083734198 -0.0005812904 -0.033088338 -0.084415376 0.00026232106 -0.034637462 -0.086643428 -0.0006148098 -0.039019831 -0.084254935 -0.0005812904 -0.033088338 -0.084415376 -0.0006148098 -0.039019831 -0.084254935 -0.0015608664 -0.037932146 -0.081748232 -0.0057742004 -0.049789548 -0.069949232 -0.0054063462 -0.052657716 -0.070777804 -0.007031695 -0.054997444 -0.066386998 -0.018991176 -0.056302965 -0.031550616 -0.021462908 -0.051665682 -0.024481498 -0.015396864 -0.058150232 -0.04217273 -0.021462908 -0.051665682 -0.024481498 -0.016077422 -0.054923069 -0.040231019 -0.015396864 -0.058150232 -0.04217273 -0.0085246135 0.016879681 0.088813953 -0.0086737275 -0.022164419 0.090069093 -0.007981685 0.011077311 0.088811748 -0.023224719 0.023748089 -0.016545815 -0.01638074 0.027744202 -0.036156435 -0.019186834 0.024424424 -0.028321372 -0.0081538269 0.024010597 0.087543391 -0.0085246135 0.016879681 0.088813953 -0.007981685 0.011077311 0.088811748 -0.010460637 0.029024847 -0.053396471 -0.0084233899 0.024942305 -0.059552815 -0.010453342 0.026290111 -0.053610496 -0.0081538269 0.024010597 0.087543391 -0.007981685 0.011077311 0.088811748 -0.0070119798 0.037962068 0.085948609 0.00035634998 -0.00043891132 -0.085951857 0.00093306275 0.0036808464 -0.087170802 0.0019558356 -0.0083372798 -0.090581425 -0.0077101081 0.033945549 0.086099863 -0.0081538269 0.024010597 0.087543391 -0.0070119798 0.037962068 0.085948609 -0.0077101081 0.033945549 0.086099863 -0.0070119798 0.037962068 0.085948609 -0.0064377375 0.044476729 0.083726317 -0.034077294 -0.01044867 0.013624254 -0.034123991 -0.024396103 0.013254711 -0.034767289 -0.017624211 0.015455363 0.00035634998 -0.00043891132 -0.085951857 0.0019558356 -0.0083372798 -0.090581425 0.00080398843 -0.0058328402 -0.087447926 -0.034767289 -0.017624211 0.015455363 -0.034123991 -0.024396103 0.013254711 -0.034346666 -0.034698643 0.013597585 -0.0057742004 -0.049789548 -0.069949232 -0.0035421578 -0.044756424 -0.076245181 -0.0022862928 -0.045072414 -0.079720385 -0.0057742004 -0.049789548 -0.069949232 -0.0022862928 -0.045072414 -0.079720385 -0.0054063462 -0.052657716 -0.070777804 -0.0066501037 0.04605519 0.081996538 -0.0077101081 0.033945549 0.086099863 -0.0064377375 0.044476729 0.083726317 -0.0066501037 0.04605519 0.081996538 -0.0064377375 0.044476729 0.083726317 -0.0060861912 0.046879411 0.082277834 -0.027782077 -0.046966333 -0.0059704124 -0.026841072 -0.050937336 -0.0085481247 -0.030755531 -0.046697322 0.0029976002 -0.01638074 0.027744202 -0.036156435 -0.014771124 0.026442677 -0.041072473 -0.019186834 0.024424424 -0.028321372 -0.01638074 0.027744202 -0.036156435 -0.012817238 0.029181633 -0.046233743 -0.014771124 0.026442677 -0.041072473 -0.033333261 -0.041226145 0.010377739 -0.032925859 -0.039322156 0.0092315981 -0.032290604 -0.04406485 0.007267484 -0.032925859 -0.039322156 0.0092315981 -0.031425651 -0.042887457 0.0047514336 -0.032290604 -0.04406485 0.007267484 -0.016077422 -0.054923069 -0.040231019 -0.014152904 -0.055683184 -0.045845963 -0.015396864 -0.058150232 -0.04217273 0.00080398843 -0.0058328402 -0.087447926 0.0019558356 -0.0083372798 -0.090581425 0.0010308111 -0.013525356 -0.088385463 -0.0036264344 0.021169061 -0.073401622 -0.0032892204 0.016468965 -0.074759066 -0.0046781623 0.019721182 -0.070609733 -0.0015608664 -0.037932146 -0.081748232 -0.0006148098 -0.039019831 -0.084254935 -0.0035421578 -0.044756424 -0.076245181 -0.010460637 0.029024847 -0.053396471 -0.0063625323 0.025906734 -0.065294698 -0.0084233899 0.024942305 -0.059552815 -0.041468848 -0.026139293 0.035616726 -0.042249352 -0.02060933 0.03574235 -0.040152974 -0.022367444 0.029984213 -0.0035421578 -0.044756424 -0.076245181 -0.0006148098 -0.039019831 -0.084254935 -0.0022862928 -0.045072414 -0.079720385 -0.039767686 -0.026392553 0.030878289 -0.040152974 -0.022367444 0.029984213 -0.037924256 -0.021819206 0.024889091 -0.034346666 -0.034698643 0.013597585 -0.034123991 -0.024396103 0.013254711 -0.033660349 -0.035212874 0.011512716 -0.031312313 0.01550551 0.0066524753 -0.032315668 0.010845727 0.0092849117 -0.033214211 0.010138418 0.011902412 -0.031312313 0.01550551 0.0066524753 -0.030804412 0.01440634 0.005026178 -0.032315668 0.010845727 0.0092849117 -0.014152904 -0.055683184 -0.045845963 -0.011574245 -0.0556577 -0.053331453 -0.015396864 -0.058150232 -0.04217273 -0.039767686 -0.026392553 0.030878289 -0.037924256 -0.021819206 0.024889091 -0.035106059 -0.026863441 0.020659689 -0.012817238 0.029181633 -0.046233743 -0.01294235 0.02681735 -0.046365988 -0.014771124 0.026442677 -0.041072473 -0.0036264344 0.021169061 -0.073401622 -0.0021193638 0.017342446 -0.077835247 -0.0032892204 0.016468965 -0.074759066 -0.011574245 -0.0556577 -0.053331453 -0.01279983 -0.05879733 -0.049611412 -0.015396864 -0.058150232 -0.04217273 -0.033214211 0.010138418 0.011902412 -0.032315668 0.010845727 0.0092849117 -0.033138517 0.0066761668 0.011521254 -0.039767686 -0.026392553 0.030878289 -0.041468848 -0.026139293 0.035616726 -0.040152974 -0.022367444 0.029984213 0.0010308111 -0.013525356 -0.088385463 0.0019558356 -0.0083372798 -0.090581425 0.00069163588 -0.022537149 -0.087726116 0.00069163588 -0.022537149 -0.087726116 0.0019558356 -0.0083372798 -0.090581425 0.0016169038 -0.023975234 -0.090159513 -0.031312313 0.01550551 0.0066524753 -0.029054651 0.018767726 0.00039948861 -0.030804412 0.01440634 0.005026178 -0.024686573 -0.0064215697 -0.070183404 -0.024006108 -0.012689429 -0.071572855 -0.025044443 -0.023589026 -0.069914617 -0.036918476 -0.031614449 0.027379535 -0.039767686 -0.026392553 0.030878289 -0.035106059 -0.026863441 0.020659689 -0.03883766 -0.034741424 0.03499867 -0.041468848 -0.026139293 0.035616726 -0.039767686 -0.026392553 0.030878289 -0.034557618 0.00033400557 -0.043756347 -0.03199327 0.0075222817 -0.051558781 -0.033353657 0.001614105 -0.047615822 -0.039712179 0.0052860854 -0.02312455 -0.038336113 0.0065062977 -0.029282767 -0.039112546 -0.035151731 -0.028172497 -0.027203716 -0.019142887 -0.06527257 -0.02696388 -0.011494487 -0.065598786 -0.026763463 -0.029181821 -0.066540517 -0.031989105 -0.030628975 -0.052973911 -0.030990111 -0.029846845 -0.055828929 -0.031745072 -0.036330525 -0.053894516 -0.042124122 -0.00023725274 -0.0078378627 -0.041885979 0.0013124425 -0.0098822173 -0.042150531 -0.030634157 -0.010984411 -0.031745072 -0.036330525 -0.053894516 -0.030990111 -0.029846845 -0.055828929 -0.029553093 -0.034484867 -0.059948474 -0.040677208 -0.03351048 -0.020650817 -0.039712179 0.0052860854 -0.02312455 -0.039112546 -0.035151731 -0.028172497 -0.026763463 -0.029181821 -0.066540517 -0.026008241 -0.0010449191 -0.067406096 -0.025044443 -0.023589026 -0.069914617 -0.042530868 -0.027738292 -0.0071237758 -0.042124122 -0.00023725274 -0.0078378627 -0.042150531 -0.030634157 -0.010984411 -0.040931791 0.0036013054 -0.016575867 -0.040677208 -0.03351048 -0.020650817 -0.041771132 -0.031662416 -0.013949109 -0.042333767 -0.0033557119 -0.0058422615 -0.042124122 -0.00023725274 -0.0078378627 -0.042530868 -0.027738292 -0.0071237758 -0.035106059 -0.026863441 0.020659689 -0.037924256 -0.021819206 0.024889091 -0.034790248 -0.019432839 0.018397424 -0.037615862 0.0069358037 -0.032230414 -0.037256788 -0.014783512 -0.034696717 -0.037538733 -0.036097739 -0.034637641 -0.040152974 -0.022367444 0.029984213 -0.039978039 -0.016889419 0.028872032 -0.038639594 -0.017216004 0.025719911 -0.038336113 0.0065062977 -0.029282767 -0.037615862 0.0069358037 -0.032230414 -0.037538733 -0.036097739 -0.034637641 -0.03883766 -0.034741424 0.03499867 -0.039767686 -0.026392553 0.030878289 -0.036918476 -0.031614449 0.027379535 -0.036570571 -0.0061024958 -0.036891375 -0.035924472 0.0075138472 -0.038656712 -0.034557618 0.00033400557 -0.043756347 -0.03455295 -0.029824812 -0.045024723 -0.031989105 -0.030628975 -0.052973911 -0.031745072 -0.036330525 -0.053894516 -0.027203716 -0.019142887 -0.06527257 -0.026763463 -0.029181821 -0.066540517 -0.02865891 -0.025445389 -0.061963234 -0.02865891 -0.025445389 -0.061963234 -0.026763463 -0.029181821 -0.066540517 -0.029553093 -0.034484867 -0.059948474 -0.03695884 -0.021330606 -0.03614489 -0.037538733 -0.036097739 -0.034637641 -0.037256788 -0.014783512 -0.034696717 -0.041885979 0.0013124425 -0.0098822173 -0.041771132 -0.031662416 -0.013949109 -0.042150531 -0.030634157 -0.010984411 -0.037615862 0.0069358037 -0.032230414 -0.035924472 0.0075138472 -0.038656712 -0.036570571 -0.0061024958 -0.036891375 -0.037538733 -0.036097739 -0.034637641 -0.03695884 -0.021330606 -0.03614489 -0.036027048 -0.036459222 -0.040260736 -0.03695884 -0.021330606 -0.03614489 -0.03455295 -0.029824812 -0.045024723 -0.036027048 -0.036459222 -0.040260736 -0.028833076 0.0050947918 -0.060534999 -0.026008241 -0.0010449191 -0.067406096 -0.028832216 -0.0023641144 -0.060779769 -0.040152974 -0.022367444 0.029984213 -0.042249352 -0.02060933 0.03574235 -0.039978039 -0.016889419 0.028872032 -0.028832216 -0.0023641144 -0.060779769 -0.026008241 -0.0010449191 -0.067406096 -0.027683634 -0.0062579536 -0.063772693 -0.028833076 0.0050947918 -0.060534999 -0.028832216 -0.0023641144 -0.060779769 -0.030775614 0.0009940879 -0.055341776 -0.036027048 -0.036459222 -0.040260736 -0.03455295 -0.029824812 -0.045024723 -0.031745072 -0.036330525 -0.053894516 -0.040931791 0.0036013054 -0.016575867 -0.039712179 0.0052860854 -0.02312455 -0.040677208 -0.03351048 -0.020650817 -0.03199327 0.0075222817 -0.051558781 -0.028833076 0.0050947918 -0.060534999 -0.030775614 0.0009940879 -0.055341776 -0.037924256 -0.021819206 0.024889091 -0.040152974 -0.022367444 0.029984213 -0.038639594 -0.017216004 0.025719911 -0.026008241 -0.0010449191 -0.067406096 -0.024686573 -0.0064215697 -0.070183404 -0.025044443 -0.023589026 -0.069914617 -0.030990111 -0.029846845 -0.055828929 -0.02865891 -0.025445389 -0.061963234 -0.029553093 -0.034484867 -0.059948474 -0.039112546 -0.035151731 -0.028172497 -0.038336113 0.0065062977 -0.029282767 -0.037538733 -0.036097739 -0.034637641 -0.027683634 -0.0062579536 -0.063772693 -0.026008241 -0.0010449191 -0.067406096 -0.02696388 -0.011494487 -0.065598786 -0.03199327 0.0075222817 -0.051558781 -0.030775614 0.0009940879 -0.055341776 -0.033353657 0.001614105 -0.047615822 -0.037615862 0.0069358037 -0.032230414 -0.036570571 -0.0061024958 -0.036891375 -0.037256788 -0.014783512 -0.034696717 -0.035924472 0.0075138472 -0.038656712 -0.03199327 0.0075222817 -0.051558781 -0.034557618 0.00033400557 -0.043756347 -0.02696388 -0.011494487 -0.065598786 -0.026008241 -0.0010449191 -0.067406096 -0.026763463 -0.029181821 -0.066540517 -0.041885979 0.0013124425 -0.0098822173 -0.040931791 0.0036013054 -0.016575867 -0.041771132 -0.031662416 -0.013949109 -0.016151907 0.0028769244 -0.07496208 -0.0099766729 0.0038294825 -0.078929 -0.013203064 -0.00022652496 -0.078403853 -0.02066136 0.012374253 -0.063830011 -0.019592103 0.010992075 -0.066469878 -0.026626436 0.0098070707 -0.058722794 -0.03199327 0.0075222817 -0.051558781 -0.026626436 0.0098070707 -0.058722794 -0.028833076 0.0050947918 -0.060534999 -0.040442672 -0.026977243 0.061044496 -0.042512856 -0.024396999 0.055689987 -0.040011778 -0.033202395 0.055902261 -0.040442672 -0.026977243 0.061044496 -0.040011778 -0.033202395 0.055902261 -0.03801981 -0.033204369 0.062381618 -0.00038547392 0.0049540526 -0.083604775 0.00035634998 -0.00043891132 -0.085951857 -0.0050422326 0.00026824573 -0.083180316 -0.00038547392 0.0049540526 -0.083604775 -0.0050422326 0.00026824573 -0.083180316 -0.0099766729 0.0038294825 -0.078929 -0.0089385835 0.010178205 -0.076058589 -0.016952813 0.0093347691 -0.070447102 -0.011043749 0.013415127 -0.07207603 -0.026626436 0.0098070707 -0.058722794 -0.03199327 0.0075222817 -0.051558781 -0.027283935 0.011314489 -0.055130027 -0.042512856 -0.024396999 0.055689987 -0.043287106 -0.02304399 0.052054584 -0.042478889 -0.027064653 0.051970232 -0.00038547392 0.0049540526 -0.083604775 -0.0099766729 0.0038294825 -0.078929 -0.0011771665 0.0090669384 -0.081157222 -0.04288765 -0.025459765 0.042125084 -0.041468848 -0.026139293 0.035616726 -0.040368546 -0.033191357 0.039932836 -0.011043749 0.013415127 -0.07207603 -0.0020693114 0.012658871 -0.078438252 -0.0089385835 0.010178205 -0.076058589 -0.011043749 0.013415127 -0.07207603 -0.0032892204 0.016468965 -0.074759066 -0.0020693114 0.012658871 -0.078438252 -0.0091628116 0.016163366 -0.070998102 -0.0032892204 0.016468965 -0.074759066 -0.011043749 0.013415127 -0.07207603 -0.038244445 -0.022900091 0.068032913 -0.037024159 -0.020755073 0.070346773 -0.039448064 -0.020673927 0.065945074 -0.042512856 -0.024396999 0.055689987 -0.042551674 -0.020591535 0.057122018 -0.043287106 -0.02304399 0.052054584 -0.038179982 -0.02709309 0.066351198 -0.040442672 -0.026977243 0.061044496 -0.03801981 -0.033204369 0.062381618 -0.011912969 0.021161562 -0.06211751 -0.012041677 0.016063955 -0.068707027 -0.016601484 0.015763655 -0.064523771 -0.012041677 0.016063955 -0.068707027 -0.0062913829 0.02253045 -0.065825775 -0.0046781623 0.019721182 -0.070609733 -0.040442672 -0.026977243 0.061044496 -0.038179982 -0.02709309 0.066351198 -0.040358268 -0.024917569 0.062693983 -0.0011771665 0.0090669384 -0.081157222 -0.0099766729 0.0038294825 -0.078929 -0.0089385835 0.010178205 -0.076058589 -0.035255414 -0.025528179 0.072011247 -0.038179982 -0.02709309 0.066351198 -0.033590764 -0.03329299 0.070535406 -0.011043749 0.013415127 -0.07207603 -0.016952813 0.0093347691 -0.070447102 -0.019592103 0.010992075 -0.066469878 -0.042478889 -0.027064653 0.051970232 -0.042762715 -0.027000772 0.048205025 -0.040948141 -0.033129495 0.049174678 -0.02066136 0.012374253 -0.063830011 -0.026626436 0.0098070707 -0.058722794 -0.022423603 0.014358304 -0.058728062 -0.016282763 -0.0038802703 -0.077228971 -0.015516387 -0.0099051334 -0.078890994 -0.019192342 -0.004833071 -0.075087935 -0.015555172 -0.013750644 -0.079125099 -0.015516387 -0.0099051334 -0.078890994 -0.010723572 -0.005194217 -0.081426181 -0.012041677 0.016063955 -0.068707027 -0.011043749 0.013415127 -0.07207603 -0.019592103 0.010992075 -0.066469878 -0.016601484 0.015763655 -0.064523771 -0.019592103 0.010992075 -0.066469878 -0.02066136 0.012374253 -0.063830011 -0.022423603 0.014358304 -0.058728062 -0.026626436 0.0098070707 -0.058722794 -0.027283935 0.011314489 -0.055130027 -0.016601484 0.015763655 -0.064523771 -0.02066136 0.012374253 -0.063830011 -0.022423603 0.014358304 -0.058728062 -0.010723572 -0.005194217 -0.081426181 -0.015516387 -0.0099051334 -0.078890994 -0.016282763 -0.0038802703 -0.077228971 -0.0011771665 0.0090669384 -0.081157222 -0.0089385835 0.010178205 -0.076058589 -0.0020693114 0.012658871 -0.078438252 -0.035255414 -0.025528179 0.072011247 -0.038244445 -0.022900091 0.068032913 -0.038179982 -0.02709309 0.066351198 -0.012041677 0.016063955 -0.068707027 -0.019592103 0.010992075 -0.066469878 -0.016601484 0.015763655 -0.064523771 -0.042762715 -0.027000772 0.048205025 -0.043549441 -0.022718569 0.044641502 -0.04288765 -0.025459765 0.042125084 -0.0052461126 -0.010133688 -0.085321479 -0.0097423028 -0.014285172 -0.083071142 -0.010723572 -0.005194217 -0.081426181 -0.0021648449 -0.01318479 -0.087009244 -0.0097423028 -0.014285172 -0.083071142 -0.0052461126 -0.010133688 -0.085321479 -0.041609317 -0.020436464 0.06049417 -0.042551674 -0.020591535 0.057122018 -0.042512856 -0.024396999 0.055689987 -0.0091628116 0.016163366 -0.070998102 -0.011043749 0.013415127 -0.07207603 -0.012041677 0.016063955 -0.068707027 -0.019275963 0.017784016 -0.057785776 -0.022423603 0.014358304 -0.058728062 -0.027283935 0.011314489 -0.055130027 -0.016601484 0.015763655 -0.064523771 -0.022423603 0.014358304 -0.058728062 -0.019275963 0.017784016 -0.057785776 -0.010723572 -0.005194217 -0.081426181 -0.016282763 -0.0038802703 -0.077228971 -0.0079154307 -0.0026263574 -0.082493022 -0.0079154307 -0.0026263574 -0.082493022 -0.016282763 -0.0038802703 -0.077228971 -0.013203064 -0.00022652496 -0.078403853 0.0010308111 -0.013525356 -0.088385463 -0.0021648449 -0.01318479 -0.087009244 -0.0052461126 -0.010133688 -0.085321479 -0.011912969 0.021161562 -0.06211751 -0.016601484 0.015763655 -0.064523771 -0.019275963 0.017784016 -0.057785776 -0.0052461126 -0.010133688 -0.085321479 -0.010723572 -0.005194217 -0.081426181 -0.0079154307 -0.0026263574 -0.082493022 -0.043287106 -0.02304399 0.052054584 -0.043725722 -0.020537859 0.046702873 -0.043549441 -0.022718569 0.044641502 -0.0046781623 0.019721182 -0.070609733 -0.0091628116 0.016163366 -0.070998102 -0.012041677 0.016063955 -0.068707027 0.0010308111 -0.013525356 -0.088385463 -0.0052461126 -0.010133688 -0.085321479 0.00080398843 -0.0058328402 -0.087447926 -0.037024159 -0.020755073 0.070346773 -0.034025829 -0.02369868 0.074227199 -0.0327962 -0.020326894 0.076039799 -0.040568195 -0.033228729 0.052840415 -0.042478889 -0.027064653 0.051970232 -0.040948141 -0.033129495 0.049174678 -0.040358268 -0.024917569 0.062693983 -0.041609317 -0.020436464 0.06049417 -0.042512856 -0.024396999 0.055689987 -0.011912969 0.021161562 -0.06211751 -0.019275963 0.017784016 -0.057785776 -0.015717272 0.020571847 -0.058050394 -0.016151907 0.0028769244 -0.07496208 -0.022868862 0.0004931686 -0.070062593 -0.021052293 0.005336571 -0.06935367 -0.040358268 -0.024917569 0.062693983 -0.040684838 -0.020574423 0.063079014 -0.041609317 -0.020436464 0.06049417 -0.0032892204 0.016468965 -0.074759066 -0.0091628116 0.016163366 -0.070998102 -0.0046781623 0.019721182 -0.070609733 -0.042762715 -0.027000772 0.048205025 -0.043287106 -0.02304399 0.052054584 -0.043549441 -0.022718569 0.044641502 -0.0099766729 0.0038294825 -0.078929 -0.0079154307 -0.0026263574 -0.082493022 -0.013203064 -0.00022652496 -0.078403853 0.00035634998 -0.00043891132 -0.085951857 -0.0052461126 -0.010133688 -0.085321479 -0.0079154307 -0.0026263574 -0.082493022 0.00080398843 -0.0058328402 -0.087447926 -0.0052461126 -0.010133688 -0.085321479 0.00035634998 -0.00043891132 -0.085951857 -0.0062913829 0.02253045 -0.065825775 -0.012041677 0.016063955 -0.068707027 -0.011912969 0.021161562 -0.06211751 -0.034025829 -0.02369868 0.074227199 -0.037024159 -0.020755073 0.070346773 -0.038244445 -0.022900091 0.068032913 -0.042478889 -0.027064653 0.051970232 -0.043287106 -0.02304399 0.052054584 -0.042762715 -0.027000772 0.048205025 -0.0062913829 0.02253045 -0.065825775 -0.011912969 0.021161562 -0.06211751 -0.0084233899 0.024942305 -0.059552815 -0.021052293 0.005336571 -0.06935367 -0.024846086 0.0053415382 -0.065349787 -0.016952813 0.0093347691 -0.070447102 -0.040442672 -0.026977243 0.061044496 -0.040358268 -0.024917569 0.062693983 -0.042512856 -0.024396999 0.055689987 -0.0084233899 0.024942305 -0.059552815 -0.011912969 0.021161562 -0.06211751 -0.015717272 0.020571847 -0.058050394 -0.016952813 0.0093347691 -0.070447102 -0.016151907 0.0028769244 -0.07496208 -0.021052293 0.005336571 -0.06935367 -0.015516387 -0.0099051334 -0.078890994 -0.020618709 -0.014111028 -0.074928112 -0.019192342 -0.004833071 -0.075087935 0.00035634998 -0.00043891132 -0.085951857 -0.0079154307 -0.0026263574 -0.082493022 -0.0050422326 0.00026824573 -0.083180316 -0.036467448 -0.033285711 0.065748721 -0.038179982 -0.02709309 0.066351198 -0.03801981 -0.033204369 0.062381618 -0.019592103 0.010992075 -0.066469878 -0.024846086 0.0053415382 -0.065349787 -0.028833076 0.0050947918 -0.060534999 -0.035255414 -0.025528179 0.072011247 -0.034025829 -0.02369868 0.074227199 -0.038244445 -0.022900091 0.068032913 -0.016952813 0.0093347691 -0.070447102 -0.024846086 0.0053415382 -0.065349787 -0.019592103 0.010992075 -0.066469878 -0.04288765 -0.025459765 0.042125084 -0.042249352 -0.02060933 0.03574235 -0.041468848 -0.026139293 0.035616726 -0.015555172 -0.013750644 -0.079125099 -0.020618709 -0.014111028 -0.074928112 -0.015516387 -0.0099051334 -0.078890994 -0.024006108 -0.012689429 -0.071572855 -0.019192342 -0.004833071 -0.075087935 -0.020618709 -0.014111028 -0.074928112 -0.024686573 -0.0064215697 -0.070183404 -0.019192342 -0.004833071 -0.075087935 -0.024006108 -0.012689429 -0.071572855 -0.019192342 -0.004833071 -0.075087935 -0.024686573 -0.0064215697 -0.070183404 -0.026008241 -0.0010449191 -0.067406096 -0.010723572 -0.005194217 -0.081426181 -0.0097423028 -0.014285172 -0.083071142 -0.015555172 -0.013750644 -0.079125099 -0.019592103 0.010992075 -0.066469878 -0.028833076 0.0050947918 -0.060534999 -0.026626436 0.0098070707 -0.058722794 -0.040358268 -0.024917569 0.062693983 -0.039448064 -0.020673927 0.065945074 -0.040684838 -0.020574423 0.063079014 -0.019192342 -0.004833071 -0.075087935 -0.026008241 -0.0010449191 -0.067406096 -0.022868862 0.0004931686 -0.070062593 -0.016282763 -0.0038802703 -0.077228971 -0.019192342 -0.004833071 -0.075087935 -0.013203064 -0.00022652496 -0.078403853 -0.0089385835 0.010178205 -0.076058589 -0.0099766729 0.0038294825 -0.078929 -0.016151907 0.0028769244 -0.07496208 -0.013203064 -0.00022652496 -0.078403853 -0.019192342 -0.004833071 -0.075087935 -0.022868862 0.0004931686 -0.070062593 -0.013203064 -0.00022652496 -0.078403853 -0.022868862 0.0004931686 -0.070062593 -0.016151907 0.0028769244 -0.07496208 -0.028833076 0.0050947918 -0.060534999 -0.024846086 0.0053415382 -0.065349787 -0.026008241 -0.0010449191 -0.067406096 -0.026008241 -0.0010449191 -0.067406096 -0.021052293 0.005336571 -0.06935367 -0.022868862 0.0004931686 -0.070062593 -0.033590764 -0.03329299 0.070535406 -0.038179982 -0.02709309 0.066351198 -0.036467448 -0.033285711 0.065748721 -0.024846086 0.0053415382 -0.065349787 -0.021052293 0.005336571 -0.06935367 -0.026008241 -0.0010449191 -0.067406096 -0.0089385835 0.010178205 -0.076058589 -0.016151907 0.0028769244 -0.07496208 -0.016952813 0.0093347691 -0.070447102 -0.0050422326 0.00026824573 -0.083180316 -0.0079154307 -0.0026263574 -0.082493022 -0.0099766729 0.0038294825 -0.078929 -0.034607921 0.011108437 -0.024656419 -0.030423315 0.014908108 -0.029533355 -0.037615862 0.0069358037 -0.032230414 -0.036788289 0.0090322224 -0.015520576 -0.038336113 0.0065062977 -0.029282767 -0.039712179 0.0052860854 -0.02312455 -0.033590764 -0.03329299 0.070535406 -0.03050762 -0.03333015 0.074431933 -0.035255414 -0.025528179 0.072011247 -0.014771124 0.026442677 -0.041072473 -0.019248363 0.02344927 -0.038791891 -0.019186834 0.024424424 -0.028321372 -0.042249352 -0.02060933 0.03574235 -0.04288765 -0.025459765 0.042125084 -0.0432714 -0.020505015 0.040760536 -0.0432714 -0.020505015 0.040760536 -0.04288765 -0.025459765 0.042125084 -0.043549441 -0.022718569 0.044641502 -0.040011778 -0.033202395 0.055902261 -0.042512856 -0.024396999 0.055689987 -0.040568195 -0.033228729 0.052840415 -0.034607921 0.011108437 -0.024656419 -0.036788289 0.0090322224 -0.015520576 -0.031752747 0.014530665 -0.016555957 -0.015242226 0.025000973 -0.047230799 -0.019927472 0.022227474 -0.043263946 -0.019248363 0.02344927 -0.038791891 -0.039712179 0.0052860854 -0.02312455 -0.040931791 0.0036013054 -0.016575867 -0.038436856 0.0069418419 -0.013223664 -0.04288765 -0.025459765 0.042125084 -0.040368546 -0.033191357 0.039932836 -0.04095418 -0.033218909 0.045439254 -0.038436856 0.0069418419 -0.013223664 -0.036788289 0.0090322224 -0.015520576 -0.039712179 0.0052860854 -0.02312455 -0.038244445 -0.022900091 0.068032913 -0.039448064 -0.020673927 0.065945074 -0.040358268 -0.024917569 0.062693983 -0.038436856 0.0069418419 -0.013223664 -0.040931791 0.0036013054 -0.016575867 -0.038221188 0.0067263846 -0.0061859339 -0.042762715 -0.027000772 0.048205025 -0.04288765 -0.025459765 0.042125084 -0.04095418 -0.033218909 0.045439254 -0.019186834 0.024424424 -0.028321372 -0.019248363 0.02344927 -0.038791891 -0.027250296 0.018031657 -0.027880682 -0.042762715 -0.027000772 0.048205025 -0.04095418 -0.033218909 0.045439254 -0.040948141 -0.033129495 0.049174678 -0.01294235 0.02681735 -0.046365988 -0.015242226 0.025000973 -0.047230799 -0.014771124 0.026442677 -0.041072473 -0.025198735 0.020803751 -0.012890008 -0.019186834 0.024424424 -0.028321372 -0.027250296 0.018031657 -0.027880682 -0.014771124 0.026442677 -0.041072473 -0.015242226 0.025000973 -0.047230799 -0.019248363 0.02344927 -0.038791891 -0.036788289 0.0090322224 -0.015520576 -0.033600856 0.012731945 -0.0093549239 -0.031752747 0.014530665 -0.016555957 -0.043549441 -0.022718569 0.044641502 -0.043725722 -0.020537859 0.046702873 -0.0432714 -0.020505015 0.040760536 -0.025198735 0.020803751 -0.012890008 -0.031752747 0.014530665 -0.016555957 -0.028817132 0.017716283 -0.0027761499 -0.031752747 0.014530665 -0.016555957 -0.033600856 0.012731945 -0.0093549239 -0.028817132 0.017716283 -0.0027761499 -0.034954481 0.010920156 -0.0037276752 -0.036788289 0.0090322224 -0.015520576 -0.038436856 0.0069418419 -0.013223664 -0.038221188 0.0067263846 -0.0061859339 -0.041885979 0.0013124425 -0.0098822173 -0.036981959 0.0076909624 -0.0013112384 -0.037180491 0.0025417474 0.0054891687 -0.042124122 -0.00023725274 -0.0078378627 -0.042333767 -0.0033557119 -0.0058422615 -0.028817132 0.017716283 -0.0027761499 -0.033600856 0.012731945 -0.0093549239 -0.034954481 0.010920156 -0.0037276752 -0.038179982 -0.02709309 0.066351198 -0.038244445 -0.022900091 0.068032913 -0.040358268 -0.024917569 0.062693983 -0.042512856 -0.024396999 0.055689987 -0.042478889 -0.027064653 0.051970232 -0.040568195 -0.033228729 0.052840415 -0.028994298 0.012847336 -0.047034774 -0.035924472 0.0075138472 -0.038656712 -0.027954727 0.014960237 -0.043487329 -0.028817132 0.017716283 -0.0027761499 -0.034954481 0.010920156 -0.0037276752 -0.031390846 0.01441808 0.004330745 -0.032521486 0.012106518 0.0075349333 -0.031390846 0.01441808 0.004330745 -0.036981959 0.0076909624 -0.0013112384 -0.023143031 0.018087775 -0.048842978 -0.019927472 0.022227474 -0.043263946 -0.015242226 0.025000973 -0.047230799 -0.029861504 0.05449586 0.060885001 -0.023585081 0.051791679 0.071047604 -0.028177178 0.05325048 0.063824825 -0.032521486 0.012106518 0.0075349333 -0.036981959 0.0076909624 -0.0013112384 -0.037839498 0.005325166 0.00060103898 -0.034607921 0.011108437 -0.024656419 -0.037615862 0.0069358037 -0.032230414 -0.038336113 0.0065062977 -0.029282767 -0.028177178 0.05325048 0.063824825 -0.023585081 0.051791679 0.071047604 -0.021312494 0.049304362 0.074118495 -0.027250296 0.018031657 -0.027880682 -0.024672793 0.01960081 -0.034304682 -0.030423315 0.014908108 -0.029533355 -0.032521486 0.012106518 0.0075349333 -0.037839498 0.005325166 0.00060103898 -0.033380099 0.0094890427 0.009736185 -0.034607921 0.011108437 -0.024656419 -0.038336113 0.0065062977 -0.029282767 -0.036788289 0.0090322224 -0.015520576 -0.033380099 0.0094890427 0.009736185 -0.037839498 0.005325166 0.00060103898 -0.034181856 0.0061224094 0.010972882 -0.030423315 0.014908108 -0.029533355 -0.034607921 0.011108437 -0.024656419 -0.031752747 0.014530665 -0.016555957 -0.019248363 0.02344927 -0.038791891 -0.024672793 0.01960081 -0.034304682 -0.027250296 0.018031657 -0.027880682 -0.023585081 0.051791679 0.071047604 -0.019689647 0.048997 0.07616204 -0.021312494 0.049304362 0.074118495 -0.027250296 0.018031657 -0.027880682 -0.030423315 0.014908108 -0.029533355 -0.025198735 0.020803751 -0.012890008 -0.025198735 0.020803751 -0.012890008 -0.030423315 0.014908108 -0.029533355 -0.031752747 0.014530665 -0.016555957 -0.021312494 0.049304362 0.074118495 -0.019689647 0.048997 0.07616204 -0.016517451 0.047047853 0.078471467 -0.041885979 0.0013124425 -0.0098822173 -0.038221188 0.0067263846 -0.0061859339 -0.040931791 0.0036013054 -0.016575867 -0.019689647 0.048997 0.07616204 -0.016313547 0.047748603 0.078729235 -0.016517451 0.047047853 0.078471467 -0.038221188 0.0067263846 -0.0061859339 -0.034954481 0.010920156 -0.0037276752 -0.038436856 0.0069418419 -0.013223664 -0.034886442 -0.00033484391 0.012206505 -0.034181856 0.0061224094 0.010972882 -0.037180491 0.0025417474 0.0054891687 -0.034954481 0.010920156 -0.0037276752 -0.033600856 0.012731945 -0.0093549239 -0.036788289 0.0090322224 -0.015520576 -0.037839498 0.005325166 0.00060103898 -0.041885979 0.0013124425 -0.0098822173 -0.042124122 -0.00023725274 -0.0078378627 -0.036981959 0.0076909624 -0.0013112384 -0.034954481 0.010920156 -0.0037276752 -0.038221188 0.0067263846 -0.0061859339 -0.036981959 0.0076909624 -0.0013112384 -0.031390846 0.01441808 0.004330745 -0.034954481 0.010920156 -0.0037276752 -0.041885979 0.0013124425 -0.0098822173 -0.037839498 0.005325166 0.00060103898 -0.036981959 0.0076909624 -0.0013112384 -0.042124122 -0.00023725274 -0.0078378627 -0.037180491 0.0025417474 0.0054891687 -0.037839498 0.005325166 0.00060103898 -0.024109052 0.040313244 0.077112615 -0.030154241 0.040603362 0.071120508 -0.028522249 0.034784261 0.074951328 -0.024109052 0.040313244 0.077112615 -0.028522249 0.034784261 0.074951328 -0.025215389 0.032821018 0.078307584 -0.034181856 0.0061224094 0.010972882 -0.037839498 0.005325166 0.00060103898 -0.037180491 0.0025417474 0.0054891687 -0.035924472 0.0075138472 -0.038656712 -0.037615862 0.0069358037 -0.032230414 -0.033468746 0.010910025 -0.035950977 -0.027954727 0.014960237 -0.043487329 -0.035924472 0.0075138472 -0.038656712 -0.033468746 0.010910025 -0.035950977 -0.037180491 0.0025417474 0.0054891687 -0.042333767 -0.0033557119 -0.0058422615 -0.042412084 -0.0059802644 -0.0051709041 -0.012818329 0.029007886 0.086092733 -0.016628643 0.020599995 0.085600279 -0.013842028 0.011319255 0.087673791 -0.0085246135 0.016879681 0.088813953 -0.013842028 0.011319255 0.087673791 -0.0087396568 0.0090025738 0.089341015 -0.017375503 0.031905811 0.083501548 -0.020938627 0.035131466 0.080728754 -0.024259789 0.021824142 0.080903471 -0.017375503 0.031905811 0.083501548 -0.024259789 0.021824142 0.080903471 -0.016628643 0.020599995 0.085600279 -0.023143031 0.018087775 -0.048842978 -0.027954727 0.014960237 -0.043487329 -0.019927472 0.022227474 -0.043263946 -0.024672793 0.01960081 -0.034304682 -0.027954727 0.014960237 -0.043487329 -0.033468746 0.010910025 -0.035950977 -0.024672793 0.01960081 -0.034304682 -0.019927472 0.022227474 -0.043263946 -0.027954727 0.014960237 -0.043487329 -0.019927472 0.022227474 -0.043263946 -0.024672793 0.01960081 -0.034304682 -0.019248363 0.02344927 -0.038791891 -0.012818329 0.029007886 0.086092733 -0.017375503 0.031905811 0.083501548 -0.016628643 0.020599995 0.085600279 -0.024672793 0.01960081 -0.034304682 -0.033468746 0.010910025 -0.035950977 -0.030423315 0.014908108 -0.029533355 -0.030423315 0.014908108 -0.029533355 -0.033468746 0.010910025 -0.035950977 -0.037615862 0.0069358037 -0.032230414 -0.035731826 -0.010488106 0.012848066 -0.039192706 -0.0040695751 0.0029533531 -0.042412084 -0.0059802644 -0.0051709041 -0.040017061 -0.013853406 0.0023908115 -0.035731826 -0.010488106 0.012848066 -0.042412084 -0.0059802644 -0.0051709041 -0.034886442 -0.00033484391 0.012206505 -0.037180491 0.0025417474 0.0054891687 -0.039192706 -0.0040695751 0.0029533531 -0.034886442 -0.00033484391 0.012206505 -0.039192706 -0.0040695751 0.0029533531 -0.035731826 -0.010488106 0.012848066 -0.042412084 -0.0059802644 -0.0051709041 -0.041020941 -0.014689262 -0.00030474213 -0.040219128 -0.013151943 0.00094206986 -0.035731826 -0.010488106 0.012848066 -0.040017061 -0.013853406 0.0023908115 -0.035809048 -0.015013481 0.013015808 -0.0081531238 0.02732465 0.087724179 -0.013842028 0.011319255 0.087673791 -0.0085246135 0.016879681 0.088813953 -0.042412084 -0.0059802644 -0.0051709041 -0.039192706 -0.0040695751 0.0029533531 -0.037180491 0.0025417474 0.0054891687 -0.040017061 -0.013853406 0.0023908115 -0.042412084 -0.0059802644 -0.0051709041 -0.040219128 -0.013151943 0.00094206986 -0.0081531238 0.02732465 0.087724179 -0.012818329 0.029007886 0.086092733 -0.013842028 0.011319255 0.087673791 -0.039139718 -0.018466046 0.0045787683 -0.035809048 -0.015013481 0.013015808 -0.041020941 -0.014689262 -0.00030474213 -0.035809048 -0.015013481 0.013015808 -0.040017061 -0.013853406 0.0023908115 -0.041020941 -0.014689262 -0.00030474213 -0.041020941 -0.014689262 -0.00030474213 -0.042412084 -0.0059802644 -0.0051709041 -0.042618487 -0.022842586 -0.0051756483 -0.039139718 -0.018466046 0.0045787683 -0.035675127 -0.020267075 0.012808479 -0.035809048 -0.015013481 0.013015808 -0.035675127 -0.020267075 0.012808479 -0.034123991 -0.024396103 0.013254711 -0.035809048 -0.015013481 0.013015808 -0.027618255 0.049983114 0.068640471 -0.028526453 0.05215323 0.065720014 -0.031455759 0.048970945 0.064434581 -0.035023943 -0.025764629 0.01257115 -0.034123991 -0.024396103 0.013254711 -0.035675127 -0.020267075 0.012808479 -0.034123991 -0.024396103 0.013254711 -0.035023943 -0.025764629 0.01257115 -0.033660349 -0.035212874 0.011512716 0.010604797 0.00099422503 -0.086783148 0.011614009 -0.0025835745 -0.087716408 0.0013844398 -5.3513533e-05 -0.088618323 -0.025550256 0.043603584 0.074602023 -0.030154241 0.040603362 0.071120508 -0.024109052 0.040313244 0.077112615 0.0030633712 0.017336095 -0.077694446 -0.00081368966 0.012858794 -0.081776269 -0.0021193638 0.017342446 -0.077835247 -0.017189402 0.035376176 0.082878053 -0.020938627 0.035131466 0.080728754 -0.017375503 0.031905811 0.083501548 0.011614009 -0.0025835745 -0.087716408 0.0019558356 -0.0083372798 -0.090581425 0.0013844398 -5.3513533e-05 -0.088618323 0.0030633712 0.017336095 -0.077694446 0.0084064985 0.014208454 -0.079815969 -0.00081368966 0.012858794 -0.081776269 0.024789758 0.010291438 -0.079236664 0.010247882 0.0038712546 -0.085700691 0.0089116395 0.010905537 -0.08211191 0.0012048982 0.025983198 -0.066648416 -0.0036264344 0.021169061 -0.073401622 -0.0063625323 0.025906734 -0.065294698 0.0012048982 0.025983198 -0.066648416 0.0031981743 0.023710176 -0.070293412 -0.0036264344 0.021169061 -0.073401622 -0.017375503 0.031905811 0.083501548 -0.012818329 0.029007886 0.086092733 -0.01208468 0.038805552 0.08429765 0.011614009 -0.0025835745 -0.087716408 0.011286215 -0.0065257857 -0.088680528 0.0019558356 -0.0083372798 -0.090581425 0.0089116395 0.010905537 -0.08211191 0.010247882 0.0038712546 -0.085700691 0.00093306275 0.0036808464 -0.087170802 -0.020938627 0.035131466 0.080728754 -0.024109052 0.040313244 0.077112615 -0.025215389 0.032821018 0.078307584 -0.033612102 0.012018993 0.073611148 -0.037864815 0.0021879799 0.067976862 -0.036454055 -0.0037276139 0.070893563 0.011286215 -0.0065257857 -0.088680528 0.01132228 -0.010130905 -0.089190483 0.0019558356 -0.0083372798 -0.090581425 -0.01208468 0.038805552 0.08429765 -0.017189402 0.035376176 0.082878053 -0.017375503 0.031905811 0.083501548 -0.033514209 -0.00050212431 0.07473743 -0.033612102 0.012018993 0.073611148 -0.036454055 -0.0037276139 0.070893563 0.0084064985 0.014208454 -0.079815969 0.0089116395 0.010905537 -0.08211191 -0.00081368966 0.012858794 -0.081776269 0.01132228 -0.010130905 -0.089190483 0.0020438274 -0.012191431 -0.090968274 0.0019558356 -0.0083372798 -0.090581425 0.0089116395 0.010905537 -0.08211191 0.00043927602 0.0069288965 -0.085592628 -0.00081368966 0.012858794 -0.081776269 0.0031981743 0.023710176 -0.070293412 0.0021643445 0.020412382 -0.074507952 -0.0036264344 0.021169061 -0.073401622 0.01132228 -0.010130905 -0.089190483 0.011269149 -0.013937963 -0.089436345 0.0020438274 -0.012191431 -0.090968274 0.010247882 0.0038712546 -0.085700691 0.010604797 0.00099422503 -0.086783148 0.00093306275 0.0036808464 -0.087170802 -0.01208468 0.038805552 0.08429765 -0.012818329 0.029007886 0.086092733 -0.0077765528 0.035072565 0.086461633 -0.033612102 0.012018993 0.073611148 -0.03674091 0.011968086 0.068849459 -0.037864815 0.0021879799 0.067976862 -0.0077765528 0.035072565 0.086461633 -0.012818329 0.029007886 0.086092733 -0.0081531238 0.02732465 0.087724179 0.008881839 0.0211385 -0.073050186 0.0030633712 0.017336095 -0.077694446 0.0021643445 0.020412382 -0.074507952 0.008881839 0.0211385 -0.073050186 0.0096823117 0.017937696 -0.076327421 0.0030633712 0.017336095 -0.077694446 0.0061884499 0.029480355 -0.059397317 0.0063400539 0.028085941 -0.062647521 0.0012048982 0.025983198 -0.066648416 0.0061884499 0.029480355 -0.059397317 0.0012048982 0.025983198 -0.066648416 -0.00011573888 0.029124551 -0.059860341 0.0089116395 0.010905537 -0.08211191 0.00093306275 0.0036808464 -0.087170802 0.00043927602 0.0069288965 -0.085592628 0.0063400539 0.028085941 -0.062647521 0.0088124629 0.026000923 -0.066166565 0.0012048982 0.025983198 -0.066648416 -0.017189402 0.035376176 0.082878053 -0.01917126 0.043057248 0.079540022 -0.020938627 0.035131466 0.080728754 0.0096823117 0.017937696 -0.076327421 0.0084064985 0.014208454 -0.079815969 0.0030633712 0.017336095 -0.077694446 0.0021643445 0.020412382 -0.074507952 -0.0021193638 0.017342446 -0.077835247 -0.0036264344 0.021169061 -0.073401622 -0.00011573888 0.029124551 -0.059860341 0.0012048982 0.025983198 -0.066648416 -0.0063625323 0.025906734 -0.065294698 0.0088124629 0.026000923 -0.066166565 0.0031981743 0.023710176 -0.070293412 0.0012048982 0.025983198 -0.066648416 -0.016512632 0.041120712 0.081675097 -0.017189402 0.035376176 0.082878053 -0.01208468 0.038805552 0.08429765 -0.00011573888 0.029124551 -0.059860341 -0.0063625323 0.025906734 -0.065294698 -0.0083725229 0.02800524 -0.059327569 0.0021643445 0.020412382 -0.074507952 0.0030633712 0.017336095 -0.077694446 -0.0021193638 0.017342446 -0.077835247 -0.016512632 0.041120712 0.081675097 -0.01917126 0.043057248 0.079540022 -0.017189402 0.035376176 0.082878053 0.010604797 0.00099422503 -0.086783148 0.0013844398 -5.3513533e-05 -0.088618323 0.00093306275 0.0036808464 -0.087170802 -0.01917126 0.043057248 0.079540022 -0.024109052 0.040313244 0.077112615 -0.020938627 0.035131466 0.080728754 -0.03211474 0.011529466 0.075399205 -0.033514209 -0.00050212431 0.07473743 -0.030412838 0.0016697294 0.077893585 0.0088124629 0.026000923 -0.066166565 0.008881839 0.0211385 -0.073050186 0.0021643445 0.020412382 -0.074507952 0.0088124629 0.026000923 -0.066166565 0.0021643445 0.020412382 -0.074507952 0.0031981743 0.023710176 -0.070293412 -0.0086737275 -0.022164419 0.090069093 -0.0085246135 0.016879681 0.088813953 -0.009125012 -0.021188803 0.089387715 0.021879619 -0.051930867 -0.06960734 0.020605816 -0.055962358 -0.064092346 0.0068960893 -0.052775156 -0.071152084 0.025773291 -0.00096978823 -0.084300548 0.011614009 -0.0025835745 -0.087716408 0.010604797 0.00099422503 -0.086783148 0.025773291 -0.00096978823 -0.084300548 0.02595262 -0.0049448018 -0.085330762 0.011614009 -0.0025835745 -0.087716408 0.020605816 -0.055962358 -0.064092346 0.0053699794 -0.05695251 -0.064770706 0.0068960893 -0.052775156 -0.071152084 0.020605816 -0.055962358 -0.064092346 0.019817336 -0.057910703 -0.060648229 0.0053699794 -0.05695251 -0.064770706 0.02595262 -0.0049448018 -0.085330762 0.011286215 -0.0065257857 -0.088680528 0.011614009 -0.0025835745 -0.087716408 0.02595262 -0.0049448018 -0.085330762 0.02606767 -0.009649477 -0.086112306 0.011286215 -0.0065257857 -0.088680528 -0.034486029 0.023111733 0.070634663 -0.037724745 0.018911304 0.065493353 -0.03674091 0.011968086 0.068849459 0.02606767 -0.009649477 -0.086112306 0.01132228 -0.010130905 -0.089190483 0.011286215 -0.0065257857 -0.088680528 0.019817336 -0.057910703 -0.060648229 0.0044536158 -0.059415713 -0.059423704 0.0053699794 -0.05695251 -0.064770706 0.019817336 -0.057910703 -0.060648229 0.018396549 -0.060545653 -0.054392785 0.0044536158 -0.059415713 -0.059423704 -0.01917126 0.043057248 0.079540022 -0.025550256 0.043603584 0.074602023 -0.024109052 0.040313244 0.077112615 0.02606767 -0.009649477 -0.086112306 0.026074478 -0.01438012 -0.086408779 0.011269149 -0.013937963 -0.089436345 0.02606767 -0.009649477 -0.086112306 0.011269149 -0.013937963 -0.089436345 0.01132228 -0.010130905 -0.089190483 0.018396549 -0.060545653 -0.054392785 0.0021010463 -0.060884602 -0.054770868 0.0044536158 -0.059415713 -0.059423704 0.018396549 -0.060545653 -0.054392785 0.017401755 -0.061797723 -0.049979635 0.0021010463 -0.060884602 -0.054770868 -0.03211474 0.011529466 0.075399205 -0.033612102 0.012018993 0.073611148 -0.033514209 -0.00050212431 0.07473743 0.026074478 -0.01438012 -0.086408779 0.026015274 -0.017892551 -0.086338475 0.011269149 -0.013937963 -0.089436345 0.026015274 -0.017892551 -0.086338475 0.025877085 -0.022053547 -0.085949227 0.011065169 -0.020702915 -0.089122616 0.017401755 -0.061797723 -0.049979635 0.016385332 -0.06258446 -0.045442667 0.00094793568 -0.061884511 -0.049810756 0.017401755 -0.061797723 -0.049979635 0.00094793568 -0.061884511 -0.049810756 0.0021010463 -0.060884602 -0.054770868 0.025877085 -0.022053547 -0.085949227 0.011006503 -0.023515118 -0.088699803 0.011065169 -0.020702915 -0.089122616 0.025877085 -0.022053547 -0.085949227 0.025571659 -0.027456982 -0.084875904 0.011006503 -0.023515118 -0.088699803 -0.034486029 0.023111733 0.070634663 -0.033896096 0.030518446 0.069600426 -0.037724745 0.018911304 0.065493353 0.016385332 -0.06258446 -0.045442667 0.0017676153 -0.062479202 -0.044578332 0.00094793568 -0.061884511 -0.049810756 0.016385332 -0.06258446 -0.045442667 0.015324581 -0.062936328 -0.040682454 0.0017676153 -0.062479202 -0.044578332 0.019888213 0.029675659 -0.056060288 0.020729529 0.027984789 -0.059946757 0.0061884499 0.029480355 -0.059397317 0.020729529 0.027984789 -0.059946757 0.0063400539 0.028085941 -0.062647521 0.0061884499 0.029480355 -0.059397317 -0.027389959 0.0048692618 0.080314599 -0.03211474 0.011529466 0.075399205 -0.030412838 0.0016697294 0.077893585 -0.023897164 0.046349157 0.074690484 -0.027618255 0.049983114 0.068640471 -0.025550256 0.043603584 0.074602023 0.025571659 -0.027456982 -0.084875904 0.0073841554 -0.027930161 -0.088295184 0.011006503 -0.023515118 -0.088699803 0.020729529 0.027984789 -0.059946757 0.021508249 0.025967186 -0.063569717 0.0088124629 0.026000923 -0.066166565 0.020729529 0.027984789 -0.059946757 0.0088124629 0.026000923 -0.066166565 0.0063400539 0.028085941 -0.062647521 -0.011329672 0.044661075 0.082360737 -0.016512632 0.041120712 0.081675097 -0.01208468 0.038805552 0.08429765 -0.023585081 0.051791679 0.071047604 -0.029861504 0.05449586 0.060885001 -0.028526453 0.05215323 0.065720014 0.021508249 0.025967186 -0.063569717 0.022256184 0.0236242 -0.067071751 0.0088124629 0.026000923 -0.066166565 -0.011329672 0.044661075 0.082360737 -0.01917126 0.043057248 0.079540022 -0.016512632 0.041120712 0.081675097 0.015324581 -0.062936328 -0.040682454 0.00051657378 -0.062353525 -0.039200209 0.0017676153 -0.062479202 -0.044578332 -0.01208468 0.038805552 0.08429765 -0.0077765528 0.035072565 0.086461633 -0.0071606021 0.04326297 0.084144577 0.025571659 -0.027456982 -0.084875904 0.02519764 -0.032004237 -0.083444431 0.0073841554 -0.027930161 -0.088295184 0.015324581 -0.062936328 -0.040682454 0.013697539 -0.062463697 -0.033322673 0.00051657378 -0.062353525 -0.039200209 0.02519764 -0.032004237 -0.083444431 0.010530537 -0.033400923 -0.085778125 0.0073841554 -0.027930161 -0.088295184 0.022256184 0.0236242 -0.067071751 0.008881839 0.0211385 -0.073050186 0.0088124629 0.026000923 -0.066166565 0.022256184 0.0236242 -0.067071751 0.023000894 0.020720221 -0.070590124 0.008881839 0.0211385 -0.073050186 -0.03211474 0.011529466 0.075399205 -0.034486029 0.023111733 0.070634663 -0.033612102 0.012018993 0.073611148 0.02519764 -0.032004237 -0.083444431 0.024801333 -0.035798062 -0.081871472 0.010530537 -0.033400923 -0.085778125 0.024801333 -0.035798062 -0.081871472 0.0063237553 -0.03579386 -0.085360475 0.010530537 -0.033400923 -0.085778125 0.013697539 -0.062463697 -0.033322673 0.012830871 -0.061718185 -0.02937525 -0.00058863196 -0.061404418 -0.032843225 0.023000894 0.020720221 -0.070590124 0.0096823117 0.017937696 -0.076327421 0.008881839 0.0211385 -0.073050186 0.013697539 -0.062463697 -0.033322673 -0.00058863196 -0.061404418 -0.032843225 0.00051657378 -0.062353525 -0.039200209 0.024801333 -0.035798062 -0.081871472 0.0094611347 -0.041341409 -0.081622511 0.0063237553 -0.03579386 -0.085360475 0.023000894 0.020720221 -0.070590124 0.023989385 0.015772576 -0.075322352 0.0096823117 0.017937696 -0.076327421 -0.0071606021 0.04326297 0.084144577 -0.011329672 0.044661075 0.082360737 -0.01208468 0.038805552 0.08429765 0.024801333 -0.035798062 -0.081871472 0.023895947 -0.042378761 -0.07815934 0.0094611347 -0.041341409 -0.081622511 -0.01917126 0.043057248 0.079540022 -0.023897164 0.046349157 0.074690484 -0.025550256 0.043603584 0.074602023 0.012830871 -0.061718185 -0.02937525 0.011835115 -0.060406823 -0.024813874 -0.0021404049 -0.060630426 -0.030248173 0.012830871 -0.061718185 -0.02937525 -0.0021404049 -0.060630426 -0.030248173 -0.00058863196 -0.061404418 -0.032843225 0.023989385 0.015772576 -0.075322352 0.0084064985 0.014208454 -0.079815969 0.0096823117 0.017937696 -0.076327421 0.023895947 -0.042378761 -0.07815934 0.008690916 -0.044825748 -0.079157345 0.0094611347 -0.041341409 -0.081622511 0.023989385 0.015772576 -0.075322352 0.0089116395 0.010905537 -0.08211191 0.0084064985 0.014208454 -0.079815969 0.023895947 -0.042378761 -0.07815934 0.023131059 -0.046603162 -0.07494913 0.008690916 -0.044825748 -0.079157345 0.023989385 0.015772576 -0.075322352 0.024789758 0.010291438 -0.079236664 0.0089116395 0.010905537 -0.08211191 0.011835115 -0.060406823 -0.024813874 -0.0024976667 -0.058939107 -0.025221519 -0.0021404049 -0.060630426 -0.030248173 -0.027655032 0.020324316 0.078579664 -0.03211474 0.011529466 0.075399205 -0.027389959 0.0048692618 0.080314599 0.011835115 -0.060406823 -0.024813874 0.010746848 -0.058324635 -0.019792728 -0.0024976667 -0.058939107 -0.025221519 0.023131059 -0.046603162 -0.07494913 0.0081511503 -0.04824464 -0.076154545 0.008690916 -0.044825748 -0.079157345 0.010746848 -0.058324635 -0.019792728 -0.0044075213 -0.057559066 -0.022627929 -0.0024976667 -0.058939107 -0.025221519 0.023131059 -0.046603162 -0.07494913 0.021879619 -0.051930867 -0.06960734 0.0081511503 -0.04824464 -0.076154545 0.025122778 0.0073365429 -0.080902785 0.010247882 0.0038712546 -0.085700691 0.024789758 0.010291438 -0.079236664 0.025122778 0.0073365429 -0.080902785 0.025475802 0.0035077191 -0.082708567 0.010247882 0.0038712546 -0.085700691 0.010746848 -0.058324635 -0.019792728 -0.0050947946 -0.055834845 -0.0193913 -0.0044075213 -0.057559066 -0.022627929 0.010746848 -0.058324635 -0.019792728 0.0098079732 -0.055981327 -0.015431882 -0.0050947946 -0.055834845 -0.0193913 0.021879619 -0.051930867 -0.06960734 0.0068960893 -0.052775156 -0.071152084 0.0081511503 -0.04824464 -0.076154545 0.025475802 0.0035077191 -0.082708567 0.025773291 -0.00096978823 -0.084300548 0.010604797 0.00099422503 -0.086783148 0.025475802 0.0035077191 -0.082708567 0.010604797 0.00099422503 -0.086783148 0.010247882 0.0038712546 -0.085700691 -0.0046080868 -0.053761639 -0.010350976 -0.0040587327 -0.05395196 -0.012748357 0.0080871917 -0.054150011 -0.007572209 -0.011329672 0.044661075 0.082360737 -0.0071606021 0.04326297 0.084144577 -0.006670617 0.046880245 0.082138374 -0.018663967 0.005414573 0.085903667 -0.025297696 0.0052671479 0.081840992 -0.023369722 -3.9849259e-05 0.083457254 -0.011329672 0.044661075 0.082360737 -0.006670617 0.046880245 0.082138374 -0.016313547 0.047748603 0.078729235 -0.019689647 0.048997 0.07616204 -0.023897164 0.046349157 0.074690484 -0.01917126 0.043057248 0.079540022 0.0080871917 -0.054150011 -0.007572209 -0.0040587327 -0.05395196 -0.012748357 0.0092829885 -0.055030286 -0.013010898 -0.034486029 0.023111733 0.070634663 -0.03674091 0.011968086 0.068849459 -0.033612102 0.012018993 0.073611148 -0.0040587327 -0.05395196 -0.012748357 -0.012076747 -0.054401629 -0.01795714 0.0092829885 -0.055030286 -0.013010898 -0.012076747 -0.054401629 -0.01795714 -0.0050947946 -0.055834845 -0.0193913 0.0092829885 -0.055030286 -0.013010898 -0.025297696 0.0052671479 0.081840992 -0.027655032 0.020324316 0.078579664 -0.027389959 0.0048692618 0.080314599 0.0092829885 -0.055030286 -0.013010898 -0.0050947946 -0.055834845 -0.0193913 0.0098079732 -0.055981327 -0.015431882 -0.0060861912 0.046879411 0.082277834 0.0041072811 0.047590904 0.08310096 -0.0066501037 0.04605519 0.081996538 -0.027655032 0.020324316 0.078579664 -0.029673085 0.024975974 0.076057471 -0.03211474 0.011529466 0.075399205 -0.041208848 -0.06317582 0.062928103 -0.042112675 -0.06562946 0.060745955 -0.040195502 -0.065655611 0.065535933 -0.031414308 0.027998166 0.073610723 -0.034486029 0.023111733 0.070634663 -0.03211474 0.011529466 0.075399205 -0.043416269 -0.059120663 0.049234539 -0.041289382 -0.052279439 0.048551187 -0.041058917 -0.051724106 0.043944947 -0.043416269 -0.059120663 0.049234539 -0.041058917 -0.051724106 0.043944947 -0.042338029 -0.057292227 0.039924931 -0.041208848 -0.06317582 0.062928103 -0.042139649 -0.062393591 0.059990142 -0.042112675 -0.06562946 0.060745955 -0.043812271 -0.062343147 0.041953053 -0.042338029 -0.057292227 0.039924931 -0.042571899 -0.060287591 0.036934957 -0.034768809 -0.059336502 0.073080763 -0.033170547 -0.052400813 0.071611345 -0.038923636 -0.058977678 0.066192351 -0.033170547 -0.052400813 0.071611345 -0.035503428 -0.051567335 0.067708448 -0.038923636 -0.058977678 0.066192351 -0.0439291 -0.06218417 0.050719377 -0.043080147 -0.059295177 0.053144481 -0.043416269 -0.059120663 0.049234539 -0.0439291 -0.06218417 0.050719377 -0.043416269 -0.059120663 0.049234539 -0.044018317 -0.061769277 0.048075035 -0.042139649 -0.062393591 0.059990142 -0.043646384 -0.065607615 0.054613005 -0.042112675 -0.06562946 0.060745955 -0.018663967 0.005414573 0.085903667 -0.013842028 0.011319255 0.087673791 -0.016628643 0.020599995 0.085600279 -0.038923636 -0.058977678 0.066192351 -0.035503428 -0.051567335 0.067708448 -0.037737407 -0.051766612 0.063442253 -0.0439291 -0.06218417 0.050719377 -0.044018317 -0.061769277 0.048075035 -0.044284817 -0.06559588 0.046975095 -0.041058917 -0.051724106 0.043944947 -0.040588442 -0.053612977 0.037550356 -0.042338029 -0.057292227 0.039924931 -0.040195502 -0.065655611 0.065535933 -0.038278583 -0.065680929 0.069222063 -0.036484674 -0.063225418 0.071862914 -0.040195502 -0.065655611 0.065535933 -0.036484674 -0.063225418 0.071862914 -0.038923636 -0.058977678 0.066192351 -0.040872004 -0.059281301 0.06185573 -0.041208848 -0.06317582 0.062928103 -0.038923636 -0.058977678 0.066192351 -0.042139649 -0.062393591 0.059990142 -0.041208848 -0.06317582 0.062928103 -0.040872004 -0.059281301 0.06185573 -0.038923636 -0.058977678 0.066192351 -0.037737407 -0.051766612 0.063442253 -0.040872004 -0.059281301 0.06185573 -0.042139649 -0.062393591 0.059990142 -0.043080147 -0.059295177 0.053144481 -0.043646384 -0.065607615 0.054613005 -0.043080147 -0.059295177 0.053144481 -0.0439291 -0.06218417 0.050719377 -0.043646384 -0.065607615 0.054613005 -0.041488416 -0.057234257 0.057891782 -0.040807534 -0.052294474 0.053487364 -0.043080147 -0.059295177 0.053144481 -0.043013737 -0.062844843 0.037016932 -0.043812271 -0.062343147 0.041953053 -0.042571899 -0.060287591 0.036934957 -0.035316885 -0.065719716 0.073653139 -0.032776639 -0.061151832 0.076124996 -0.036484674 -0.063225418 0.071862914 -0.044018317 -0.061769277 0.048075035 -0.043464392 -0.065602094 0.038543966 -0.044284817 -0.06559588 0.046975095 -0.011329672 0.044661075 0.082360737 -0.016313547 0.047748603 0.078729235 -0.01917126 0.043057248 0.079540022 -0.036484674 -0.063225418 0.071862914 -0.038278583 -0.065680929 0.069222063 -0.035316885 -0.065719716 0.073653139 -0.032776639 -0.061151832 0.076124996 -0.034768809 -0.059336502 0.073080763 -0.036484674 -0.063225418 0.071862914 -0.042338029 -0.057292227 0.039924931 -0.040588442 -0.053612977 0.037550356 -0.042571899 -0.060287591 0.036934957 -0.044018317 -0.061769277 0.048075035 -0.043812271 -0.062343147 0.041953053 -0.043464392 -0.065602094 0.038543966 -0.043080147 -0.059295177 0.053144481 -0.040807534 -0.052294474 0.053487364 -0.041289382 -0.052279439 0.048551187 -0.043080147 -0.059295177 0.053144481 -0.041289382 -0.052279439 0.048551187 -0.043416269 -0.059120663 0.049234539 -0.036484674 -0.063225418 0.071862914 -0.034768809 -0.059336502 0.073080763 -0.038923636 -0.058977678 0.066192351 -0.044018317 -0.061769277 0.048075035 -0.043416269 -0.059120663 0.049234539 -0.043812271 -0.062343147 0.041953053 -0.043812271 -0.062343147 0.041953053 -0.043013737 -0.062844843 0.037016932 -0.043464392 -0.065602094 0.038543966 -0.024259789 0.021824142 0.080903471 -0.027655032 0.020324316 0.078579664 -0.025297696 0.0052671479 0.081840992 -0.040872004 -0.059281301 0.06185573 -0.041488416 -0.057234257 0.057891782 -0.042139649 -0.062393591 0.059990142 -0.042139649 -0.062393591 0.059990142 -0.041488416 -0.057234257 0.057891782 -0.043080147 -0.059295177 0.053144481 -0.037737407 -0.051766612 0.063442253 -0.039592385 -0.051732391 0.058264822 -0.040872004 -0.059281301 0.06185573 -0.040872004 -0.059281301 0.06185573 -0.039592385 -0.051732391 0.058264822 -0.041488416 -0.057234257 0.057891782 -0.043812271 -0.062343147 0.041953053 -0.043416269 -0.059120663 0.049234539 -0.042338029 -0.057292227 0.039924931 -0.040195502 -0.065655611 0.065535933 -0.038923636 -0.058977678 0.066192351 -0.041208848 -0.06317582 0.062928103 -0.0439291 -0.06218417 0.050719377 -0.044284817 -0.06559588 0.046975095 -0.043646384 -0.065607615 0.054613005 0.0080871917 -0.054150011 -0.007572209 -0.0046046111 -0.053064853 -0.010344595 -0.0046080868 -0.053761639 -0.010350976 -0.024259789 0.021824142 0.080903471 -0.025297696 0.0052671479 0.081840992 -0.018663967 0.005414573 0.085903667 0.0082198149 -0.05324043 -0.0081193605 -0.0046046111 -0.053064853 -0.010344595 0.0080871917 -0.054150011 -0.007572209 0.0099796318 -0.053574763 0.00147126 0.0092782704 -0.055085935 0.0045478004 -0.0070542083 -0.054673992 0.00061902474 0.0099796318 -0.053574763 0.00147126 -0.0064355722 -0.053390462 -0.0020970367 -0.0058939909 -0.053045861 -0.0045181615 0.011929124 -0.053286601 -0.0072963508 0.010465097 -0.053261545 -0.00069775782 -0.0058939909 -0.053045861 -0.0045181615 -0.0058939909 -0.053045861 -0.0045181615 0.010465097 -0.053261545 -0.00069775782 0.0099796318 -0.053574763 0.00147126 0.0082198149 -0.05324043 -0.0081193605 0.011929124 -0.053286601 -0.0072963508 -0.0046046111 -0.053064853 -0.010344595 0.011929124 -0.053286601 -0.0072963508 -0.0058939909 -0.053045861 -0.0045181615 -0.0046046111 -0.053064853 -0.010344595 -0.0064355722 -0.053390462 -0.0020970367 0.0099796318 -0.053574763 0.00147126 -0.0070542083 -0.054673992 0.00061902474 0.008657217 -0.058257215 0.0071708509 0.0085004875 -0.059976738 0.0077803023 -0.0078781284 -0.059458762 0.0040640221 -0.032839369 0.034750439 0.069830462 -0.034248706 0.040658388 0.064721175 -0.033896096 0.030518446 0.069600426 -0.0075479941 -0.056706563 0.0027304497 0.008657217 -0.058257215 0.0071708509 -0.0078781284 -0.059458762 0.0040640221 0.008933614 -0.056469455 0.0060251518 0.008657217 -0.058257215 0.0071708509 -0.0075479941 -0.056706563 0.0027304497 -0.0070542083 -0.054673992 0.00061902474 0.008933614 -0.056469455 0.0060251518 -0.0075479941 -0.056706563 0.0027304497 0.0092782704 -0.055085935 0.0045478004 0.008933614 -0.056469455 0.0060251518 -0.0070542083 -0.054673992 0.00061902474 0.0085004875 -0.059976738 0.0077803023 0.0083869649 -0.065525465 0.0079812538 -0.0081031276 -0.065320529 0.0043248166 -0.031414308 0.027998166 0.073610723 -0.03211474 0.011529466 0.075399205 -0.029673085 0.024975974 0.076057471 -0.0078781284 -0.059458762 0.0040640221 0.0085004875 -0.059976738 0.0077803023 -0.0081031276 -0.065320529 0.0043248166 -0.034486029 0.023111733 0.070634663 -0.031414308 0.027998166 0.073610723 -0.033896096 0.030518446 0.069600426 -0.0012024874 -0.0065564103 0.09085416 -0.0023384222 -0.020968597 0.090953663 0.002737144 -0.020601964 0.090968259 0.0051487465 -0.0032397341 0.090448685 0.002737144 -0.020601964 0.090968259 0.0057746135 -0.020965913 0.090682775 0.014825248 -0.011790494 0.088583104 0.010977698 -0.02119443 0.089709453 0.013897858 -0.021191493 0.088862732 -0.0084984321 -0.0081797605 0.090062656 -0.0086737275 -0.022164419 0.090069093 -0.0023384222 -0.020968597 0.090953663 -0.033896096 0.030518446 0.069600426 -0.031414308 0.027998166 0.073610723 -0.032839369 0.034750439 0.069830462 -0.0084984321 -0.0081797605 0.090062656 -0.0023384222 -0.020968597 0.090953663 -0.0056454027 -0.0040807305 0.090442516 -0.0056454027 -0.0040807305 0.090442516 -0.0023384222 -0.020968597 0.090953663 -0.0012024874 -0.0065564103 0.09085416 0.015893811 -0.031540271 0.085687578 0.018564224 -0.031800255 0.084401473 0.023275996 -0.025667202 0.083943903 0.025353391 -0.022162834 0.083152957 0.023275996 -0.025667202 0.083943903 0.029238749 -0.023378808 0.079980478 -0.013842028 0.011319255 0.087673791 -0.011366855 -0.0024391511 0.089195594 -0.0087396568 0.0090025738 0.089341015 0.029238749 -0.023378808 0.079980478 0.023275996 -0.025667202 0.083943903 0.030387405 -0.025649605 0.078436628 0.023275996 -0.025667202 0.083943903 0.027500385 -0.027141258 0.080467202 0.030387405 -0.025649605 0.078436628 -0.0023384222 -0.020968597 0.090953663 0.0019229772 -0.022877313 0.090899639 0.002737144 -0.020601964 0.090968259 -0.0081489207 -0.03475586 0.08699894 -0.0041755475 -0.025458766 0.090295464 -0.0086152945 -0.025291784 0.089630738 -0.0041755475 -0.025458766 0.090295464 -0.0081489207 -0.03475586 0.08699894 -0.0044439128 -0.03246339 0.088185273 -0.0044439128 -0.03246339 0.088185273 -0.00073796476 -0.025535922 0.090505429 -0.0041755475 -0.025458766 0.090295464 0.029238749 -0.023378808 0.079980478 0.030387405 -0.025649605 0.078436628 0.033485282 -0.022072297 0.0758681 -0.00073796476 -0.025535922 0.090505429 -0.0044439128 -0.03246339 0.088185273 0.003969539 -0.027444605 0.089871913 -0.027618255 0.049983114 0.068640471 -0.031455759 0.048970945 0.064434581 -0.030437095 0.044483062 0.068791725 -0.028522249 0.034784261 0.074951328 -0.032839369 0.034750439 0.069830462 -0.031414308 0.027998166 0.073610723 -0.025215389 0.032821018 0.078307584 -0.029673085 0.024975974 0.076057471 -0.027655032 0.020324316 0.078579664 0.0082274219 -0.025145611 0.089869015 0.0019229772 -0.022877313 0.090899639 0.003969539 -0.027444605 0.089871913 0.0082274219 -0.025145611 0.089869015 0.003969539 -0.027444605 0.089871913 0.010602078 -0.02823467 0.088529386 0.027500385 -0.027141258 0.080467202 0.02911099 -0.03423005 0.076111428 0.030387405 -0.025649605 0.078436628 -0.028522249 0.034784261 0.074951328 -0.031414308 0.027998166 0.073610723 -0.029673085 0.024975974 0.076057471 0.003969539 -0.027444605 0.089871913 0.0057306406 -0.035466541 0.087375507 0.010602078 -0.02823467 0.088529386 0.010602078 -0.02823467 0.088529386 0.0057306406 -0.035466541 0.087375507 0.011757732 -0.032766771 0.086744413 0.01441007 -0.025417212 0.088197507 0.0082274219 -0.025145611 0.089869015 0.010602078 -0.02823467 0.088529386 -0.027618255 0.049983114 0.068640471 -0.030437095 0.044483062 0.068791725 -0.025550256 0.043603584 0.074602023 0.010602078 -0.02823467 0.088529386 0.015893811 -0.031540271 0.085687578 0.01441007 -0.025417212 0.088197507 0.019541727 -0.023279056 0.086445406 0.01441007 -0.025417212 0.088197507 0.015893811 -0.031540271 0.085687578 0.019541727 -0.023279056 0.086445406 0.023275996 -0.025667202 0.083943903 0.023011234 -0.022066168 0.0846726 -0.025215389 0.032821018 0.078307584 -0.027655032 0.020324316 0.078579664 -0.024259789 0.021824142 0.080903471 0.015893811 -0.031540271 0.085687578 0.023275996 -0.025667202 0.083943903 0.019541727 -0.023279056 0.086445406 0.030387405 -0.025649605 0.078436628 0.031712361 -0.03366974 0.073505983 0.035240851 -0.025850216 0.072857641 0.035240851 -0.025850216 0.072857641 0.033485282 -0.022072297 0.0758681 0.030387405 -0.025649605 0.078436628 0.033485282 -0.022072297 0.0758681 0.035240851 -0.025850216 0.072857641 0.036066081 -0.023472572 0.072397076 0.030387405 -0.025649605 0.078436628 0.02911099 -0.03423005 0.076111428 0.031712361 -0.03366974 0.073505983 -0.027618255 0.049983114 0.068640471 -0.023585081 0.051791679 0.071047604 -0.028526453 0.05215323 0.065720014 -0.030154241 0.040603362 0.071120508 -0.034248706 0.040658388 0.064721175 -0.032839369 0.034750439 0.069830462 0.036066081 -0.023472572 0.072397076 0.035240851 -0.025850216 0.072857641 0.038034145 -0.027579617 0.067620218 -0.023585081 0.051791679 0.071047604 -0.027618255 0.049983114 0.068640471 -0.023897164 0.046349157 0.074690484 0.039403286 -0.023301311 0.066932477 0.038154077 -0.021515671 0.06941855 0.036066081 -0.023472572 0.072397076 -0.0023384222 -0.020968597 0.090953663 -0.0086737275 -0.022164419 0.090069093 -0.0041755475 -0.025458766 0.090295464 -0.0086737275 -0.022164419 0.090069093 -0.0086152945 -0.025291784 0.089630738 -0.0041755475 -0.025458766 0.090295464 -0.030154241 0.040603362 0.071120508 -0.032839369 0.034750439 0.069830462 -0.028522249 0.034784261 0.074951328 -0.0023384222 -0.020968597 0.090953663 -0.0041755475 -0.025458766 0.090295464 0.0019229772 -0.022877313 0.090899639 0.036066081 -0.023472572 0.072397076 0.038034145 -0.027579617 0.067620218 0.039403286 -0.023301311 0.066932477 -0.0041755475 -0.025458766 0.090295464 -0.00073796476 -0.025535922 0.090505429 0.0019229772 -0.022877313 0.090899639 0.035240851 -0.025850216 0.072857641 0.036799617 -0.035635296 0.064804323 0.038034145 -0.027579617 0.067620218 -0.025215389 0.032821018 0.078307584 -0.028522249 0.034784261 0.074951328 -0.029673085 0.024975974 0.076057471 0.039403286 -0.023301311 0.066932477 0.041189138 -0.023520656 0.062866613 0.042151906 -0.021614214 0.060513511 -0.020938627 0.035131466 0.080728754 -0.025215389 0.032821018 0.078307584 -0.024259789 0.021824142 0.080903471 -0.019689647 0.048997 0.07616204 -0.023585081 0.051791679 0.071047604 -0.023897164 0.046349157 0.074690484 0.002737144 -0.020601964 0.090968259 0.0019229772 -0.022877313 0.090899639 0.0057746135 -0.020965913 0.090682775 0.039403286 -0.023301311 0.066932477 0.038034145 -0.027579617 0.067620218 0.04022276 -0.027396226 0.063123316 0.0057746135 -0.020965913 0.090682775 0.0019229772 -0.022877313 0.090899639 0.0082274219 -0.025145611 0.089869015 0.039403286 -0.023301311 0.066932477 0.04022276 -0.027396226 0.063123316 0.041189138 -0.023520656 0.062866613 0.0057746135 -0.020965913 0.090682775 0.0082274219 -0.025145611 0.089869015 0.010977698 -0.02119443 0.089709453 0.041189138 -0.023520656 0.062866613 0.042581256 -0.0258005 0.057125699 0.042151906 -0.021614214 0.060513511 -0.00073796476 -0.025535922 0.090505429 0.003969539 -0.027444605 0.089871913 0.0019229772 -0.022877313 0.090899639 0.041189138 -0.023520656 0.062866613 0.04022276 -0.027396226 0.063123316 0.042581256 -0.0258005 0.057125699 0.04022276 -0.027396226 0.063123316 0.038034145 -0.027579617 0.067620218 0.040028866 -0.031353123 0.059815943 -0.030437095 0.044483062 0.068791725 -0.034248706 0.040658388 0.064721175 -0.030154241 0.040603362 0.071120508 0.042151906 -0.021614214 0.060513511 0.042581256 -0.0258005 0.057125699 0.043320738 -0.021800146 0.056080658 0.010977698 -0.02119443 0.089709453 0.0082274219 -0.025145611 0.089869015 0.013897858 -0.021191493 0.088862732 -0.016313547 0.047748603 0.078729235 -0.019689647 0.048997 0.07616204 -0.01917126 0.043057248 0.079540022 0.042581256 -0.0258005 0.057125699 0.04022276 -0.027396226 0.063123316 0.040028866 -0.031353123 0.059815943 0.013897858 -0.021191493 0.088862732 0.0082274219 -0.025145611 0.089869015 0.01441007 -0.025417212 0.088197507 0.013897858 -0.021191493 0.088862732 0.01441007 -0.025417212 0.088197507 0.019541727 -0.023279056 0.086445406 0.010602078 -0.02823467 0.088529386 0.011757732 -0.032766771 0.086744413 0.015893811 -0.031540271 0.085687578 0.023011234 -0.022066168 0.0846726 0.023275996 -0.025667202 0.083943903 0.025353391 -0.022162834 0.083152957 0.021117324 -0.037127089 0.081589274 0.026313923 -0.037159957 0.077841289 0.027500385 -0.027141258 0.080467202 0.039098252 -0.038031947 0.057370491 0.040259246 -0.037319563 0.051916264 0.038244758 -0.038024962 0.060199011 0.0054560779 -0.050165705 0.087258674 0.0098415157 -0.043141149 0.085784011 0.0055207675 -0.046737555 0.086796381 0.038244758 -0.038024962 0.060199011 0.042581256 -0.0258005 0.057125699 0.040028866 -0.031353123 0.059815943 0.041561935 -0.058848329 0.037090592 0.039750166 -0.053017616 0.036826201 0.039681476 -0.049181148 0.039726254 0.023275996 -0.025667202 0.083943903 0.021117324 -0.037127089 0.081589274 0.027500385 -0.027141258 0.080467202 -0.0046866182 -0.040493492 0.086809188 0.00044418077 -0.037572853 0.087398812 -0.0044439128 -0.03246339 0.088185273 0.0055207675 -0.046737555 0.086796381 0.004874832 -0.041705944 0.086736143 0.00035885265 -0.044733435 0.087054789 0.035515513 -0.050864622 0.066708378 0.034880746 -0.045981366 0.06671451 0.032891002 -0.05150412 0.071055323 0.032891002 -0.05150412 0.071055323 0.034880746 -0.045981366 0.06671451 0.030825946 -0.047231812 0.072745077 0.00035885265 -0.044733435 0.087054789 0.004874832 -0.041705944 0.086736143 0.00044418077 -0.037572853 0.087398812 0.018564224 -0.031800255 0.084401473 0.021117324 -0.037127089 0.081589274 0.023275996 -0.025667202 0.083943903 0.039854918 -0.044967249 0.050542258 0.040019747 -0.04212014 0.045801487 0.041014597 -0.034940645 0.045751736 -0.013842028 0.011319255 0.087673791 -0.018663967 0.005414573 0.085903667 -0.016136641 -0.0034177133 0.087536722 0.039854918 -0.044967249 0.050542258 0.041014597 -0.034940645 0.045751736 0.040259246 -0.037319563 0.051916264 0.041561935 -0.058848329 0.037090592 0.039681476 -0.049181148 0.039726254 0.040468283 -0.050297894 0.04578045 0.0079222126 -0.052646145 0.087365709 0.011569594 -0.052681409 0.086465277 0.011404019 -0.048229989 0.0856736 0.019496802 -0.044108868 0.081945166 0.026313923 -0.037159957 0.077841289 0.021117324 -0.037127089 0.081589274 0.035740744 -0.054965381 0.068231791 0.035515513 -0.050864622 0.066708378 0.032891002 -0.05150412 0.071055323 0.038820449 -0.044959083 0.056726482 0.040259246 -0.037319563 0.051916264 0.039098252 -0.038031947 0.057370491 0.0429634 -0.060635436 0.042639121 0.041561935 -0.058848329 0.037090592 0.040468283 -0.050297894 0.04578045 0.0079222126 -0.052646145 0.087365709 0.011404019 -0.048229989 0.0856736 0.0054560779 -0.050165705 0.087258674 -0.0048800777 -0.043838117 0.086714022 0.00044418077 -0.037572853 0.087398812 -0.0046866182 -0.040493492 0.086809188 -0.016628643 0.020599995 0.085600279 -0.024259789 0.021824142 0.080903471 -0.018663967 0.005414573 0.085903667 -0.0046866182 -0.040493492 0.086809188 -0.0044439128 -0.03246339 0.088185273 -0.0081489207 -0.03475586 0.08699894 0.035740744 -0.054965381 0.068231791 0.032891002 -0.05150412 0.071055323 0.034065239 -0.05932048 0.073122747 0.038244758 -0.038024962 0.060199011 0.040028866 -0.031353123 0.059815943 0.036799617 -0.035635296 0.064804323 0.017026056 -0.03835912 0.083568692 0.021117324 -0.037127089 0.081589274 0.018564224 -0.031800255 0.084401473 0.040028866 -0.031353123 0.059815943 0.038034145 -0.027579617 0.067620218 0.036799617 -0.035635296 0.064804323 0.0054560779 -0.050165705 0.087258674 0.0055207675 -0.046737555 0.086796381 0.00035885265 -0.044733435 0.087054789 0.039854918 -0.044967249 0.050542258 0.040259246 -0.037319563 0.051916264 0.038820449 -0.044959083 0.056726482 -0.025550256 0.043603584 0.074602023 -0.030437095 0.044483062 0.068791725 -0.030154241 0.040603362 0.071120508 0.0079222126 -0.052646145 0.087365709 0.0054560779 -0.050165705 0.087258674 0.0028157076 -0.053477794 0.088258311 0.040019747 -0.04212014 0.045801487 0.039854918 -0.044967249 0.050542258 0.039876986 -0.050318088 0.054044753 0.00035885265 -0.044733435 0.087054789 0.00044418077 -0.037572853 0.087398812 -0.0048800777 -0.043838117 0.086714022 0.025115889 -0.042100314 0.078179091 0.026313923 -0.037159957 0.077841289 0.019496802 -0.044108868 0.081945166 0.03782649 -0.044950031 0.060080018 0.039098252 -0.038031947 0.057370491 0.038244758 -0.038024962 0.060199011 0.011757732 -0.032766771 0.086744413 0.018564224 -0.031800255 0.084401473 0.015893811 -0.031540271 0.085687578 0.023802582 -0.045893323 0.079245508 0.027411165 -0.042896688 0.076162368 0.025115889 -0.042100314 0.078179091 0.040468283 -0.050297894 0.04578045 0.040019747 -0.04212014 0.045801487 0.039876986 -0.050318088 0.054044753 0.013633378 0.047828343 -0.0093126418 0.01805119 0.039353568 -0.026927391 0.017431889 0.040040955 -0.026868731 0.019496802 -0.044108868 0.081945166 0.021117324 -0.037127089 0.081589274 0.017026056 -0.03835912 0.083568692 0.0095625166 0.061111677 0.009778508 0.01071913 0.056101412 0.0042855027 0.010295417 0.058282804 0.0063165985 0.014138946 0.04727627 -0.011621773 0.013633378 0.047828343 -0.0093126418 0.017431889 0.040040955 -0.026868731 0.0087827463 0.064039499 0.01345678 0.01071913 0.056101412 0.0042855027 0.0095625166 0.061111677 0.009778508 0.0054560779 -0.050165705 0.087258674 0.00035885265 -0.044733435 0.087054789 0.0028157076 -0.053477794 0.088258311 0.038820449 -0.044959083 0.056726482 0.039098252 -0.038031947 0.057370491 0.03782649 -0.044950031 0.060080018 0.0429634 -0.060635436 0.042639121 0.040468283 -0.050297894 0.04578045 0.042743765 -0.059185151 0.049628999 0.012716949 0.050945189 -0.005008033 0.013633378 0.047828343 -0.0093126418 0.014138946 0.04727627 -0.011621773 0.01071913 0.056101412 0.0042855027 0.013633378 0.047828343 -0.0093126418 0.012716949 0.050945189 -0.005008033 0.011461847 0.054544348 0.00084868335 0.01071913 0.056101412 0.0042855027 0.012716949 0.050945189 -0.005008033 0.0088281082 0.064668491 0.013287033 0.0087827463 0.064039499 0.01345678 0.0095625166 0.061111677 0.009778508 0.017026056 -0.03835912 0.083568692 0.018564224 -0.031800255 0.084401473 0.011757732 -0.032766771 0.086744413 0.010295417 0.058282804 0.0063165985 0.01071913 0.056101412 0.0042855027 0.011461847 0.054544348 0.00084868335 0.02841305 -0.047253568 0.075389571 0.027411165 -0.042896688 0.076162368 0.023802582 -0.045893323 0.079245508 -0.0027629428 -0.052523997 0.088066891 0.00035885265 -0.044733435 0.087054789 -0.0048800777 -0.043838117 0.086714022 0.030825946 -0.047231812 0.072745077 0.02841305 -0.047253568 0.075389571 0.028135298 -0.054310117 0.077413626 0.001817301 0.060579874 0.0079165641 0.007140513 0.057715047 0.0049599265 -0.0011161538 0.058558423 0.0057454221 0.039876986 -0.050318088 0.054044753 0.039854918 -0.044967249 0.050542258 0.038820449 -0.044959083 0.056726482 -0.0027629428 -0.052523997 0.088066891 0.0028157076 -0.053477794 0.088258311 0.00035885265 -0.044733435 0.087054789 0.032891002 -0.05150412 0.071055323 0.030825946 -0.047231812 0.072745077 0.028135298 -0.054310117 0.077413626 -0.0048800777 -0.043838117 0.086714022 -0.0046866182 -0.040493492 0.086809188 -0.0081228334 -0.045781728 0.086262807 0.021506665 -0.050025944 0.081343062 0.02841305 -0.047253568 0.075389571 0.023802582 -0.045893323 0.079245508 0.023802582 -0.045893323 0.079245508 0.025115889 -0.042100314 0.078179091 0.019496802 -0.044108868 0.081945166 0.040403575 -0.053039238 0.054159354 0.040468283 -0.050297894 0.04578045 0.039876986 -0.050318088 0.054044753 -0.0081228334 -0.045781728 0.086262807 -0.0046866182 -0.040493492 0.086809188 -0.0081489207 -0.03475586 0.08699894 0.012274453 -0.038299922 0.085414618 0.017026056 -0.03835912 0.083568692 0.011757732 -0.032766771 0.086744413 -0.0027629428 -0.052523997 0.088066891 -0.0048800777 -0.043838117 0.086714022 -0.0081228334 -0.045781728 0.086262807 -0.026086433 0.059012599 0.020668143 -0.029581549 0.056381442 0.023667393 -0.030879825 0.058433428 0.029062172 0.028135298 -0.054310117 0.077413626 0.02841305 -0.047253568 0.075389571 0.021506665 -0.050025944 0.081343062 0.035159796 -0.037927389 0.027011469 0.035896499 -0.034210917 0.026811622 0.036582686 -0.036771748 0.029307414 0.035240851 -0.025850216 0.072857641 0.033503395 -0.037031155 0.069933757 0.036799617 -0.035635296 0.064804323 0.036582686 -0.036771748 0.029307414 0.035896499 -0.034210917 0.026811622 0.038887203 -0.027845293 0.028324092 0.001817301 0.060579874 0.0079165641 -0.0011655169 0.063489899 0.010863171 0.0042522051 0.06357298 0.011132945 0.042743765 -0.059185151 0.049628999 0.040468283 -0.050297894 0.04578045 0.040403575 -0.053039238 0.054159354 0.036811408 -0.042025659 0.031251159 0.035159796 -0.037927389 0.027011469 0.036582686 -0.036771748 0.029307414 0.034843579 -0.041667055 0.027232168 0.035159796 -0.037927389 0.027011469 0.036811408 -0.042025659 0.031251159 -0.027631126 0.056998588 0.020939304 -0.029581549 0.056381442 0.023667393 -0.026086433 0.059012599 0.020668143 0.036582686 -0.036771748 0.029307414 0.038887203 -0.027845293 0.028324092 0.039663278 -0.035051484 0.036613543 0.038244758 -0.038024962 0.060199011 0.036799617 -0.035635296 0.064804323 0.033365548 -0.043186303 0.069075167 0.036811408 -0.042025659 0.031251159 0.036582686 -0.036771748 0.029307414 0.039663278 -0.035051484 0.036613543 0.031712361 -0.03366974 0.073505983 0.033503395 -0.037031155 0.069933757 0.035240851 -0.025850216 0.072857641 -0.0081034144 -0.048514452 0.086021699 -0.0027629428 -0.052523997 0.088066891 -0.0081228334 -0.045781728 0.086262807 0.036811408 -0.042025659 0.031251159 0.039663278 -0.035051484 0.036613543 0.039195124 -0.038022563 0.037026051 0.0093622906 -0.037678048 0.086321265 0.011757732 -0.032766771 0.086744413 0.0057306406 -0.035466541 0.087375507 0.034880746 -0.045981366 0.06671451 0.03782649 -0.044950031 0.060080018 0.038244758 -0.038024962 0.060199011 0.024702897 -0.05281632 0.079814978 0.028135298 -0.054310117 0.077413626 0.021506665 -0.050025944 0.081343062 0.039876986 -0.050318088 0.054044753 0.038820449 -0.044959083 0.056726482 0.03782649 -0.044950031 0.060080018 -0.019189879 0.027155275 -0.018837832 -0.018435592 0.031103812 -0.015965885 -0.015492058 0.029359074 -0.027254654 0.040165573 -0.03865312 0.043050423 0.039663278 -0.035051484 0.036613543 0.041642644 -0.031462654 0.041567311 0.012274453 -0.038299922 0.085414618 0.011757732 -0.032766771 0.086744413 0.0093622906 -0.037678048 0.086321265 0.03639859 -0.05251747 0.028252084 0.033493467 -0.053573273 0.022867037 0.035964664 -0.04785943 0.029066974 0.039195124 -0.038022563 0.037026051 0.039663278 -0.035051484 0.036613543 0.040165573 -0.03865312 0.043050423 0.038230333 -0.047299068 0.034781992 0.034843579 -0.041667055 0.027232168 0.036811408 -0.042025659 0.031251159 -0.029058378 0.053384293 0.020976495 -0.029581549 0.056381442 0.023667393 -0.027631126 0.056998588 0.020939304 -0.026431397 0.055295259 0.018143833 -0.029058378 0.053384293 0.020976495 -0.027631126 0.056998588 0.020939304 0.036811408 -0.042025659 0.031251159 0.039195124 -0.038022563 0.037026051 0.038920898 -0.042354617 0.037633553 0.039520286 -0.054965556 0.059800617 0.039876986 -0.050318088 0.054044753 0.03782649 -0.044950031 0.060080018 0.031816307 -0.040138017 0.071554124 0.033503395 -0.037031155 0.069933757 0.031712361 -0.03366974 0.073505983 0.017026056 -0.03835912 0.083568692 0.012274453 -0.038299922 0.085414618 0.0098415157 -0.043141149 0.085784011 0.040165573 -0.03865312 0.043050423 0.041642644 -0.031462654 0.041567311 0.041014597 -0.034940645 0.045751736 -0.018354248 0.041823328 -0.0009892825 -0.022808557 0.034699231 1.1990183e-05 -0.021931387 0.038903929 0.0023050755 0.034880746 -0.045981366 0.06671451 0.038244758 -0.038024962 0.060199011 0.033365548 -0.043186303 0.069075167 0.021506665 -0.050025944 0.081343062 0.023802582 -0.045893323 0.079245508 0.019496802 -0.044108868 0.081945166 0.019496802 -0.044108868 0.081945166 0.017026056 -0.03835912 0.083568692 0.011404019 -0.048229989 0.0856736 0.038230333 -0.047299068 0.034781992 0.036811408 -0.042025659 0.031251159 0.038920898 -0.042354617 0.037633553 0.031816307 -0.040138017 0.071554124 0.036799617 -0.035635296 0.064804323 0.033503395 -0.037031155 0.069933757 0.021506665 -0.050025944 0.081343062 0.019496802 -0.044108868 0.081945166 0.016912518 -0.048272643 0.083581373 0.03706364 -0.050208803 0.063304812 0.03782649 -0.044950031 0.060080018 0.034880746 -0.045981366 0.06671451 -0.017983213 0.034670863 -0.011856633 -0.022808557 0.034699231 1.1990183e-05 -0.018354248 0.041823328 -0.0009892825 0.040403575 -0.053039238 0.054159354 0.039876986 -0.050318088 0.054044753 0.039520286 -0.054965556 0.059800617 -0.018435592 0.031103812 -0.015965885 -0.022808557 0.034699231 1.1990183e-05 -0.017983213 0.034670863 -0.011856633 0.0098415157 -0.043141149 0.085784011 0.012274453 -0.038299922 0.085414618 0.0093622906 -0.037678048 0.086321265 0.038078927 -0.052995872 0.031688601 0.03639859 -0.05251747 0.028252084 0.035964664 -0.04785943 0.029066974 0.011404019 -0.048229989 0.0856736 0.017026056 -0.03835912 0.083568692 0.0098415157 -0.043141149 0.085784011 0.035964664 -0.04785943 0.029066974 0.034843579 -0.041667055 0.027232168 0.039750166 -0.053017616 0.036826201 0.039750166 -0.053017616 0.036826201 0.034843579 -0.041667055 0.027232168 0.038230333 -0.047299068 0.034781992 0.039520286 -0.054965556 0.059800617 0.03782649 -0.044950031 0.060080018 0.03706364 -0.050208803 0.063304812 0.041137867 -0.03438592 0.048970021 0.041014597 -0.034940645 0.045751736 0.043079257 -0.027837737 0.050271291 0.031816307 -0.040138017 0.071554124 0.031712361 -0.03366974 0.073505983 0.02911099 -0.03423005 0.076111428 -0.011142927 0.037900794 -0.020503996 -0.0072725508 0.042745583 -0.015400081 -0.0077937269 0.036497544 -0.028957164 0.00044418077 -0.037572853 0.087398812 0.0057306406 -0.035466541 0.087375507 0.003969539 -0.027444605 0.089871913 0.033365548 -0.043186303 0.069075167 0.036799617 -0.035635296 0.064804323 0.031816307 -0.040138017 0.071554124 -0.031555891 0.054412942 0.026287707 -0.030879825 0.058433428 0.029062172 -0.029581549 0.056381442 0.023667393 0.016912518 -0.048272643 0.083581373 0.019496802 -0.044108868 0.081945166 0.011404019 -0.048229989 0.0856736 0.018367046 -0.054165751 0.0841619 0.021506665 -0.050025944 0.081343062 0.016912518 -0.048272643 0.083581373 0.024702897 -0.05281632 0.079814978 0.021506665 -0.050025944 0.081343062 0.018367046 -0.054165751 0.0841619 0.03706364 -0.050208803 0.063304812 0.034880746 -0.045981366 0.06671451 0.035515513 -0.050864622 0.066708378 0.001817301 0.060579874 0.0079165641 -0.0011161538 0.058558423 0.0057454221 -0.0011655169 0.063489899 0.010863171 0.038920898 -0.042354617 0.037633553 0.039195124 -0.038022563 0.037026051 0.040165573 -0.03865312 0.043050423 0.039681476 -0.049181148 0.039726254 0.038230333 -0.047299068 0.034781992 0.038920898 -0.042354617 0.037633553 0.040019747 -0.04212014 0.045801487 0.040165573 -0.03865312 0.043050423 0.041014597 -0.034940645 0.045751736 0.038078927 -0.052995872 0.031688601 0.035964664 -0.04785943 0.029066974 0.039750166 -0.053017616 0.036826201 0.038920898 -0.042354617 0.037633553 0.040165573 -0.03865312 0.043050423 0.040019747 -0.04212014 0.045801487 0.027411165 -0.042896688 0.076162368 0.031816307 -0.040138017 0.071554124 0.02911099 -0.03423005 0.076111428 0.0054560779 -0.050165705 0.087258674 0.011404019 -0.048229989 0.0856736 0.0098415157 -0.043141149 0.085784011 0.040259246 -0.037319563 0.051916264 0.041137867 -0.03438592 0.048970021 0.042581256 -0.0258005 0.057125699 0.027500385 -0.027141258 0.080467202 0.026313923 -0.037159957 0.077841289 0.02911099 -0.03423005 0.076111428 -0.0072725508 0.042745583 -0.015400081 -0.011375111 0.042961411 -0.010132851 -0.0060036946 0.047019716 -0.0084667588 0.041014597 -0.034940645 0.045751736 0.041137867 -0.03438592 0.048970021 0.040259246 -0.037319563 0.051916264 -0.01241487 0.062350117 0.012613408 -0.019946441 0.059665248 0.014581829 -0.019383699 0.062031206 0.017316839 0.039520286 -0.054965556 0.059800617 0.03706364 -0.050208803 0.063304812 0.037358355 -0.053887207 0.064488716 0.004874832 -0.041705944 0.086736143 0.0093622906 -0.037678048 0.086321265 0.0057306406 -0.035466541 0.087375507 0.039750166 -0.053017616 0.036826201 0.038230333 -0.047299068 0.034781992 0.039681476 -0.049181148 0.039726254 0.033365548 -0.043186303 0.069075167 0.031816307 -0.040138017 0.071554124 0.030825946 -0.047231812 0.072745077 0.034880746 -0.045981366 0.06671451 0.033365548 -0.043186303 0.069075167 0.030825946 -0.047231812 0.072745077 0.00044418077 -0.037572853 0.087398812 0.003969539 -0.027444605 0.089871913 -0.0044439128 -0.03246339 0.088185273 0.039681476 -0.049181148 0.039726254 0.038920898 -0.042354617 0.037633553 0.040468283 -0.050297894 0.04578045 -0.029581549 0.056381442 0.023667393 -0.029058378 0.053384293 0.020976495 -0.031555891 0.054412942 0.026287707 0.040468283 -0.050297894 0.04578045 0.038920898 -0.042354617 0.037633553 0.040019747 -0.04212014 0.045801487 0.011569594 -0.052681409 0.086465277 0.018367046 -0.054165751 0.0841619 0.016912518 -0.048272643 0.083581373 0.025115889 -0.042100314 0.078179091 0.02911099 -0.03423005 0.076111428 0.026313923 -0.037159957 0.077841289 0.027411165 -0.042896688 0.076162368 0.02911099 -0.03423005 0.076111428 0.025115889 -0.042100314 0.078179091 -0.0072725508 0.042745583 -0.015400081 -0.011142927 0.037900794 -0.020503996 -0.011375111 0.042961411 -0.010132851 -0.029058378 0.053384293 0.020976495 -0.029504154 0.041979235 0.017662443 -0.031444434 0.050768528 0.024272824 0.040259246 -0.037319563 0.051916264 0.042581256 -0.0258005 0.057125699 0.038244758 -0.038024962 0.060199011 0.011569594 -0.052681409 0.086465277 0.016912518 -0.048272643 0.083581373 0.011404019 -0.048229989 0.0856736 0.0098415157 -0.043141149 0.085784011 0.0093622906 -0.037678048 0.086321265 0.004874832 -0.041705944 0.086736143 0.037358355 -0.053887207 0.064488716 0.03706364 -0.050208803 0.063304812 0.035740744 -0.054965381 0.068231791 -0.018435592 0.031103812 -0.015965885 -0.019189879 0.027155275 -0.018837832 -0.023838701 0.029858481 -0.0020438554 0.035740744 -0.054965381 0.068231791 0.03706364 -0.050208803 0.063304812 0.035515513 -0.050864622 0.066708378 0.02841305 -0.047253568 0.075389571 0.031816307 -0.040138017 0.071554124 0.027411165 -0.042896688 0.076162368 0.030825946 -0.047231812 0.072745077 0.031816307 -0.040138017 0.071554124 0.02841305 -0.047253568 0.075389571 0.004874832 -0.041705944 0.086736143 0.0057306406 -0.035466541 0.087375507 0.00044418077 -0.037572853 0.087398812 0.0055207675 -0.046737555 0.086796381 0.0098415157 -0.043141149 0.085784011 0.004874832 -0.041705944 0.086736143 -0.043337516 -0.012339961 0.051842283 -0.042745672 0.0030702145 0.051049016 -0.043560918 -0.011302467 0.048349045 -0.043560918 -0.011302467 0.048349045 -0.043548111 -0.011321449 0.04540709 -0.043725722 -0.020537859 0.046702873 -0.0011655169 0.063489899 0.010863171 -0.0011161538 0.058558423 0.0057454221 -0.0067186998 0.062205032 0.010228334 -0.037864815 0.0021879799 0.067976862 -0.039019447 0.00083562807 0.065748982 -0.038165472 -0.0063849282 0.068067767 -0.029058378 0.053384293 0.020976495 -0.031444434 0.050768528 0.024272824 -0.031555891 0.054412942 0.026287707 -0.042745672 0.0030702145 0.051049016 -0.042677794 0.003999827 0.043131705 -0.043548111 -0.011321449 0.04540709 -0.042745672 0.0030702145 0.051049016 -0.043548111 -0.011321449 0.04540709 -0.043560918 -0.011302467 0.048349045 -0.043548111 -0.011321449 0.04540709 -0.0432714 -0.020505015 0.040760536 -0.043725722 -0.020537859 0.046702873 -0.039019447 0.00083562807 0.065748982 -0.040918808 -0.0062293983 0.061751988 -0.040684838 -0.020574423 0.063079014 -0.043548111 -0.011321449 0.04540709 -0.042677794 0.003999827 0.043131705 -0.043084927 -0.0037877636 0.042684771 -0.040918808 -0.0062293983 0.061751988 -0.041609317 -0.020436464 0.06049417 -0.040684838 -0.020574423 0.063079014 -0.040918808 -0.0062293983 0.061751988 -0.041940369 -0.0076774587 0.058564246 -0.041609317 -0.020436464 0.06049417 -0.041609317 -0.020436464 0.06049417 -0.041940369 -0.0076774587 0.058564246 -0.042551674 -0.020591535 0.057122018 -0.041940369 -0.0076774587 0.058564246 -0.042646803 -0.007225398 0.055440858 -0.042551674 -0.020591535 0.057122018 -0.031555891 0.054412942 0.026287707 -0.031444434 0.050768528 0.024272824 -0.033357013 0.049473844 0.028275322 -0.043548111 -0.011321449 0.04540709 -0.043084927 -0.0037877636 0.042684771 -0.0432714 -0.020505015 0.040760536 -0.042646803 -0.007225398 0.055440858 -0.043287106 -0.02304399 0.052054584 -0.042551674 -0.020591535 0.057122018 -0.038165472 -0.0063849282 0.068067767 -0.039019447 0.00083562807 0.065748982 -0.039448064 -0.020673927 0.065945074 -0.042677794 0.003999827 0.043131705 -0.042400748 -0.0051626163 0.037946176 -0.043084927 -0.0037877636 0.042684771 -0.042646803 -0.007225398 0.055440858 -0.043337516 -0.012339961 0.051842283 -0.043287106 -0.02304399 0.052054584 -0.039448064 -0.020673927 0.065945074 -0.037024159 -0.020755073 0.070346773 -0.038165472 -0.0063849282 0.068067767 -0.015176912 0.052110042 0.0053039752 -0.019608533 0.057526302 0.012514048 -0.013507465 0.060512058 0.011040332 0.0058628302 0.035546508 -0.04045701 0.00012098326 0.036554433 -0.036072016 0.0042605842 0.038235188 -0.032422952 0.0079320958 0.041369651 -0.024716213 0.0042605842 0.038235188 -0.032422952 0.0016315478 0.041146014 -0.024448842 -0.042745672 0.0030702145 0.051049016 -0.043337516 -0.012339961 0.051842283 -0.042646803 -0.007225398 0.055440858 -0.024919726 0.026266433 -0.0018688308 -0.023838701 0.029858481 -0.0020438554 -0.019189879 0.027155275 -0.018837832 -0.019608533 0.057526302 0.012514048 -0.019946441 0.059665248 0.014581829 -0.013507465 0.060512058 0.011040332 -0.043084927 -0.0037877636 0.042684771 -0.042400748 -0.0051626163 0.037946176 -0.0432714 -0.020505015 0.040760536 -0.043337516 -0.012339961 0.051842283 -0.043725722 -0.020537859 0.046702873 -0.043287106 -0.02304399 0.052054584 -0.0432714 -0.020505015 0.040760536 -0.042400748 -0.0051626163 0.037946176 -0.042249352 -0.02060933 0.03574235 -0.040684838 -0.020574423 0.063079014 -0.039448064 -0.020673927 0.065945074 -0.039019447 0.00083562807 0.065748982 -0.043337516 -0.012339961 0.051842283 -0.043560918 -0.011302467 0.048349045 -0.043725722 -0.020537859 0.046702873 -0.010727132 -0.065989919 0.0071312068 -0.0078579085 -0.066023752 0.0036598411 -0.0098275356 -0.065300442 0.006571182 -0.0098275356 -0.065300442 0.006571182 -0.0078579085 -0.066023752 0.0036598411 -0.0081031276 -0.065320529 0.0043248166 -0.0078579085 -0.066023752 0.0036598411 -0.0078223562 -0.061385285 0.0036620088 -0.0081031276 -0.065320529 0.0043248166 -0.0081031276 -0.065320529 0.0043248166 -0.0078223562 -0.061385285 0.0036620088 -0.0078781284 -0.059458762 0.0040640221 0.031777732 -0.066548124 0.077187099 0.028038524 -0.06650383 0.080692023 0.030389015 -0.066529751 0.074488901 -0.031172426 0.036775228 0.01899536 -0.031444434 0.050768528 0.024272824 -0.029504154 0.041979235 0.017662443 -0.011721548 -0.066016801 0.086549357 -0.016779816 -0.065954976 0.087821327 -0.024015671 -0.065862283 0.080628246 -0.041277997 -0.065631159 0.043116193 -0.044284817 -0.06559588 0.046975095 -0.043464392 -0.065602094 0.038543966 -0.036585614 0.036793686 0.031801574 -0.03466206 0.049125046 0.032071773 -0.033357013 0.049473844 0.028275322 -0.010727132 -0.065989919 0.0071312068 -0.02434532 -0.065825328 0.013583746 -0.017456256 -0.065906741 0.0064858254 0.030389015 -0.066529751 0.074488901 0.028038524 -0.06650383 0.080692023 0.020383015 -0.06641043 0.082612276 -0.017456256 -0.065906741 0.0064858254 -0.02434532 -0.065825328 0.013583746 -0.022843273 -0.065840513 0.0092273979 -0.031172426 0.036775228 0.01899536 -0.031941511 0.027816353 0.017359152 -0.031444434 0.050768528 0.024272824 -0.037548643 0.040796604 0.037683051 -0.03466206 0.049125046 0.032071773 -0.036585614 0.036793686 0.031801574 0.043735873 -0.066681184 0.047800969 0.04331705 -0.066678569 0.053111851 0.040795829 -0.066643141 0.044215821 -0.0067186998 0.062205032 0.010228334 -0.01241487 0.062350117 0.012613408 -0.0011655169 0.063489899 0.010863171 -0.024015671 -0.065862283 0.080628246 -0.016779816 -0.065954976 0.087821327 -0.023293013 -0.065872028 0.084525667 0.028038524 -0.06650383 0.080692023 0.021856166 -0.066429481 0.085045353 0.020383015 -0.06641043 0.082612276 -0.0077937269 0.036497544 -0.028957164 -0.0079947924 0.032321624 -0.040069025 -0.010623009 0.03430751 -0.029588323 -0.041277997 -0.065631159 0.043116193 -0.040321063 -0.065649606 0.056564353 -0.044284817 -0.06559588 0.046975095 -0.030872529 0.023627365 0.013375399 -0.031941511 0.027816353 0.017359152 -0.029218813 0.027988994 0.010909138 -0.040321063 -0.065649606 0.056564353 -0.043646384 -0.065607615 0.054613005 -0.044284817 -0.06559588 0.046975095 -0.022843273 -0.065840513 0.0092273979 -0.02434532 -0.065825328 0.013583746 -0.028849982 -0.06576962 0.013543203 0.020383015 -0.06641043 0.082612276 0.021856166 -0.066429481 0.085045353 0.012031837 -0.066309452 0.08629971 -0.010623009 0.03430751 -0.029588323 -0.011142927 0.037900794 -0.020503996 -0.0077937269 0.036497544 -0.028957164 0.04331705 -0.066678569 0.053111851 0.039144579 -0.066629902 0.05882727 0.040795829 -0.066643141 0.044215821 0.037446108 -0.066591091 0.024333762 0.03918314 -0.066615112 0.027480094 0.036935441 -0.066588283 0.029359763 -0.037548643 0.040796604 0.037683051 -0.036585614 0.036793686 0.031801574 -0.039396591 0.029965738 0.038649846 -0.036585614 0.036793686 0.031801574 -0.037100207 0.028733674 0.029936094 -0.039369266 0.024889594 0.035665464 -0.024015671 -0.065862283 0.080628246 -0.023293013 -0.065872028 0.084525667 -0.027857875 -0.065815277 0.08132942 0.04331705 -0.066678569 0.053111851 0.042259209 -0.066668101 0.058334257 0.039144579 -0.066629902 0.05882727 0.037446108 -0.066591091 0.024333762 0.036935441 -0.066588283 0.029359763 0.033346258 -0.066538952 0.018605933 -0.02434532 -0.065825328 0.013583746 -0.031001307 -0.065746315 0.019593013 -0.028849982 -0.06576962 0.013543203 0.033346258 -0.066538952 0.018605933 0.036935441 -0.066588283 0.029359763 0.027720943 -0.066468507 0.016799411 -0.028849982 -0.06576962 0.013543203 -0.031001307 -0.065746315 0.019593013 -0.032709692 -0.06572406 0.017260024 0.012031837 -0.066309452 0.08629971 0.021856166 -0.066429481 0.085045353 0.01122918 -0.066300824 0.089493878 0.03918314 -0.066615112 0.027480094 0.041228112 -0.066642642 0.032347381 0.036935441 -0.066588283 0.029359763 -0.040321063 -0.065649606 0.056564353 -0.042112675 -0.06562946 0.060745955 -0.043646384 -0.065607615 0.054613005 0.042259209 -0.066668101 0.058334257 0.040578332 -0.066649802 0.063390575 0.039144579 -0.066629902 0.05882727 -0.040321063 -0.065649606 0.056564353 -0.037989084 -0.065681756 0.063517228 -0.042112675 -0.06562946 0.060745955 0.033346258 -0.066538952 0.018605933 0.027720943 -0.066468507 0.016799411 0.027108494 -0.066458985 0.012525262 -0.024015671 -0.065862283 0.080628246 -0.027857875 -0.065815277 0.08132942 -0.031900842 -0.065763876 0.07762561 0.041228112 -0.066642642 0.032347381 0.043043233 -0.066668279 0.039253809 0.036935441 -0.066588283 0.029359763 -0.024015671 -0.065862283 0.080628246 -0.031900842 -0.065763876 0.07762561 -0.0338175 -0.065736659 0.070891581 0.01122918 -0.066300824 0.089493878 0.0021214013 -0.066189431 0.090959385 0.012031837 -0.066309452 0.08629971 -0.031001307 -0.065746315 0.019593013 -0.038201191 -0.065658838 0.02467458 -0.032709692 -0.06572406 0.017260024 0.027108494 -0.066458985 0.012525262 0.027720943 -0.066468507 0.016799411 0.024630187 -0.066429205 0.014189926 0.043043233 -0.066668279 0.039253809 0.040795829 -0.066643141 0.044215821 0.036935441 -0.066588283 0.029359763 0.012031837 -0.066309452 0.08629971 0.0021214013 -0.066189431 0.090959385 0.0015191794 -0.066180751 0.088149063 -0.031001307 -0.065746315 0.019593013 -0.037700772 -0.065668851 0.029849773 -0.038201191 -0.065658838 0.02467458 -0.037989084 -0.065681756 0.063517228 -0.040195502 -0.065655611 0.065535933 -0.042112675 -0.06562946 0.060745955 0.040578332 -0.066649802 0.063390575 0.038299467 -0.066624142 0.068206295 0.039144579 -0.066629902 0.05882727 -0.013164204 0.044339769 -0.0054352214 -0.017184395 0.047385447 0.0031830911 -0.012091561 0.048620775 -0.00077784498 -0.0338175 -0.065736659 0.070891581 -0.031900842 -0.065763876 0.07762561 -0.035316885 -0.065719716 0.073653139 0.038299467 -0.066624142 0.068206295 0.03559633 -0.066590279 0.067190811 0.039144579 -0.066629902 0.05882727 0.027108494 -0.066458985 0.012525262 0.024630187 -0.066429205 0.014189926 0.02343072 -0.066413388 0.012207177 -0.037989084 -0.065681756 0.063517228 -0.0338175 -0.065736659 0.070891581 -0.040195502 -0.065655611 0.065535933 -0.0011161538 0.058558423 0.0057454221 -0.0064177159 0.058082301 0.0061559007 -0.0067186998 0.062205032 0.010228334 0.027108494 -0.066458985 0.012525262 0.02343072 -0.066413388 0.012207177 0.023173228 -0.066409074 0.0097573446 -0.037700772 -0.065668851 0.029849773 -0.040394757 -0.065633878 0.028902546 -0.038201191 -0.065658838 0.02467458 0.0015191794 -0.066180751 0.088149063 0.0021214013 -0.066189431 0.090959385 -0.0070386757 -0.066074967 0.08760307 -0.0338175 -0.065736659 0.070891581 -0.038278583 -0.065680929 0.069222063 -0.040195502 -0.065655611 0.065535933 -0.0064177159 0.058082301 0.0061559007 -0.0045299572 0.053832226 0.00090362813 -0.011424433 0.055272199 0.0055600354 0.038299467 -0.066624142 0.068206295 0.035456218 -0.066591375 0.072710648 0.03559633 -0.066590279 0.067190811 -0.0012088553 0.051512264 -0.0035992886 -0.0060036946 0.047019716 -0.0084667588 -0.0080808578 0.051036131 -0.00089407526 0.043043233 -0.066668279 0.039253809 0.043735873 -0.066681184 0.047800969 0.040795829 -0.066643141 0.044215821 -0.013507465 0.060512058 0.011040332 -0.01241487 0.062350117 0.012613408 -0.0089822849 0.061069392 0.0096687553 -0.0338175 -0.065736659 0.070891581 -0.035316885 -0.065719716 0.073653139 -0.038278583 -0.065680929 0.069222063 -0.0070386757 -0.066074967 0.08760307 0.0021214013 -0.066189431 0.090959385 -0.0092229582 -0.066048861 0.090107933 -0.0010206603 0.032306254 -0.048803914 0.00012098326 0.036554433 -0.036072016 0.0021028239 0.03120923 -0.053920474 -0.011424433 0.055272199 0.0055600354 -0.0089822849 0.061069392 0.0096687553 -0.0064177159 0.058082301 0.0061559007 -0.037700772 -0.065668851 0.029849773 -0.043464392 -0.065602094 0.038543966 -0.040394757 -0.065633878 0.028902546 -0.037700772 -0.065668851 0.029849773 -0.041277997 -0.065631159 0.043116193 -0.043464392 -0.065602094 0.038543966 0.035456218 -0.066591375 0.072710648 0.030389015 -0.066529751 0.074488901 0.03559633 -0.066590279 0.067190811 0.0021028239 0.03120923 -0.053920474 0.00012098326 0.036554433 -0.036072016 0.0058628302 0.035546508 -0.04045701 0.035456218 -0.066591375 0.072710648 0.031777732 -0.066548124 0.077187099 0.030389015 -0.066529751 0.074488901 -0.0070386757 -0.066074967 0.08760307 -0.0092229582 -0.066048861 0.090107933 -0.0098108491 -0.066041961 0.089964405 -0.0070386757 -0.066074967 0.08760307 -0.0098108491 -0.066041961 0.089964405 -0.011721548 -0.066016801 0.086549357 -0.011721548 -0.066016801 0.086549357 -0.0098108491 -0.066041961 0.089964405 -0.016779816 -0.065954976 0.087821327 -0.0078579085 -0.066023752 0.0036598411 -0.010727132 -0.065989919 0.0071312068 -0.017456256 -0.065906741 0.0064858254 -0.0089577651 -0.053535033 0.086821653 -0.0091377404 -0.054115638 0.087600574 -0.008826131 -0.059011187 0.088690571 -0.0091377404 -0.054115638 0.087600574 -0.0098108491 -0.066041961 0.089964405 -0.008826131 -0.059011187 0.088690571 0.00012098326 0.036554433 -0.036072016 -0.0012334485 0.041573003 -0.022364141 0.0016315478 0.041146014 -0.024448842 -0.008826131 -0.059011187 0.088690571 -0.0098108491 -0.066041961 0.089964405 -0.0092229582 -0.066048861 0.090107933 -0.0089577651 -0.053535033 0.086821653 -0.008826131 -0.059011187 0.088690571 -0.0081034144 -0.048514452 0.086021699 -0.0085344287 -0.04375897 0.085461497 -0.0089577651 -0.053535033 0.086821653 -0.0081034144 -0.048514452 0.086021699 -0.0085344287 -0.04375897 0.085461497 -0.0081034144 -0.048514452 0.086021699 -0.0079768505 -0.036790334 0.086108789 -0.015176912 0.052110042 0.0053039752 -0.011424433 0.055272199 0.0055600354 -0.0080808578 0.051036131 -0.00089407526 -0.0086839236 -0.032644704 0.086757928 -0.0085344287 -0.04375897 0.085461497 -0.0079768505 -0.036790334 0.086108789 -0.009125012 -0.021188803 0.089387715 -0.0086839236 -0.032644704 0.086757928 -0.0086737275 -0.022164419 0.090069093 -0.0086737275 -0.022164419 0.090069093 -0.0086839236 -0.032644704 0.086757928 -0.0079768505 -0.036790334 0.086108789 -0.0071606021 0.04326297 0.084144577 -0.0077101081 0.033945549 0.086099863 -0.0066501037 0.04605519 0.081996538 -0.0071606021 0.04326297 0.084144577 -0.0077765528 0.035072565 0.086461633 -0.0077101081 0.033945549 0.086099863 -0.0077765528 0.035072565 0.086461633 -0.0081531238 0.02732465 0.087724179 -0.0077101081 0.033945549 0.086099863 -0.0077101081 0.033945549 0.086099863 -0.0081531238 0.02732465 0.087724179 -0.0081538269 0.024010597 0.087543391 -0.0081531238 0.02732465 0.087724179 -0.0085246135 0.016879681 0.088813953 -0.0081538269 0.024010597 0.087543391 -0.0087396568 0.0090025738 0.089341015 -0.0091118459 -0.010146281 0.089947052 -0.0085246135 0.016879681 0.088813953 -0.0085246135 0.016879681 0.088813953 -0.0091118459 -0.010146281 0.089947052 -0.009125012 -0.021188803 0.089387715 -0.0091118459 -0.010146281 0.089947052 -0.0092584053 -0.021776019 0.089956194 -0.009125012 -0.021188803 0.089387715 -0.0092584053 -0.021776019 0.089956194 -0.0091395415 -0.026892619 0.089133702 -0.009125012 -0.021188803 0.089387715 -0.0091395415 -0.026892619 0.089133702 -0.0086839236 -0.032644704 0.086757928 -0.009125012 -0.021188803 0.089387715 -0.0091395415 -0.026892619 0.089133702 -0.0088287927 -0.032432109 0.087423012 -0.0086839236 -0.032644704 0.086757928 -0.0088287927 -0.032432109 0.087423012 -0.0086759264 -0.037007939 0.086477503 -0.0086839236 -0.032644704 0.086757928 -0.0086839236 -0.032644704 0.086757928 -0.0086759264 -0.037007939 0.086477503 -0.0085344287 -0.04375897 0.085461497 -0.0086759264 -0.037007939 0.086477503 -0.0086418968 -0.041444037 0.086075529 -0.0085344287 -0.04375897 0.085461497 0.0016315478 0.041146014 -0.024448842 -0.0012334485 0.041573003 -0.022364141 -0.00084948767 0.045470413 -0.014360297 -0.017983213 0.034670863 -0.011856633 -0.018354248 0.041823328 -0.0009892825 -0.0154588 0.042334002 -0.0050757807 -0.0086418968 -0.041444037 0.086075529 -0.0089028152 -0.05050711 0.086743377 -0.0085344287 -0.04375897 0.085461497 -0.0085344287 -0.04375897 0.085461497 -0.0089028152 -0.05050711 0.086743377 -0.0089577651 -0.053535033 0.086821653 -0.0089028152 -0.05050711 0.086743377 -0.0091377404 -0.054115638 0.087600574 -0.0089577651 -0.053535033 0.086821653 -0.006670617 0.046880245 0.082138374 -0.0071606021 0.04326297 0.084144577 -0.0066501037 0.04605519 0.081996538 -0.015176912 0.052110042 0.0053039752 -0.023368398 0.056033745 0.0149787 -0.019608533 0.057526302 0.012514048 -0.00084948767 0.045470413 -0.014360297 -0.0012334485 0.041573003 -0.022364141 -0.00098335498 0.047513794 -0.010463382 -0.0096354671 -0.060557518 0.089482725 -0.0097693885 -0.063679658 0.089911006 -0.0098108491 -0.066041961 0.089964405 -0.0096354671 -0.060557518 0.089482725 -0.0098108491 -0.066041961 0.089964405 -0.0091377404 -0.054115638 0.087600574 -0.011375111 0.042961411 -0.010132851 -0.011142927 0.037900794 -0.020503996 -0.014876904 0.038932908 -0.011605412 -0.026431397 0.055295259 0.018143833 -0.025566977 0.045626312 0.012671168 -0.029058378 0.053384293 0.020976495 -0.040568195 -0.033228729 0.052840415 -0.040948141 -0.033129495 0.049174678 -0.040369444 -0.03609924 0.044873692 -0.023451652 -0.051908951 0.080773845 -0.019680355 -0.046627708 0.082051434 -0.024067765 -0.044085011 0.079000726 -0.016493861 -0.050029207 0.084190294 -0.019680355 -0.046627708 0.082051434 -0.023451652 -0.051908951 0.080773845 -0.039674696 -0.036199536 0.054709893 -0.040568195 -0.033228729 0.052840415 -0.039920598 -0.04231916 0.044898622 -0.023368398 0.056033745 0.0149787 -0.019946441 0.059665248 0.014581829 -0.019608533 0.057526302 0.012514048 -0.040369444 -0.03609924 0.044873692 -0.040948141 -0.033129495 0.049174678 -0.04095418 -0.033218909 0.045439254 -0.037653413 -0.046356488 0.061097983 -0.03892133 -0.041352894 0.056254987 -0.039673101 -0.046364374 0.053541441 -0.029864769 -0.039184112 0.073796682 -0.03050762 -0.03333015 0.074431933 -0.033128999 -0.036178362 0.070216738 -0.033128999 -0.036178362 0.070216738 -0.03050762 -0.03333015 0.074431933 -0.033590764 -0.03329299 0.070535406 -0.037737407 -0.051766612 0.063442253 -0.035653252 -0.043934651 0.065218866 -0.037653413 -0.046356488 0.061097983 -0.03892133 -0.041352894 0.056254987 -0.039674696 -0.036199536 0.054709893 -0.04002542 -0.043871775 0.047846764 -0.039920598 -0.04231916 0.044898622 -0.040568195 -0.033228729 0.052840415 -0.040369444 -0.03609924 0.044873692 -0.023451652 -0.051908951 0.080773845 -0.024067765 -0.044085011 0.079000726 -0.0252125 -0.049882714 0.078946002 -0.04002542 -0.043871775 0.047846764 -0.039674696 -0.036199536 0.054709893 -0.039920598 -0.04231916 0.044898622 -0.021764874 -0.054566681 0.082743205 -0.016493861 -0.050029207 0.084190294 -0.023451652 -0.051908951 0.080773845 -0.015219623 -0.05217066 0.085223027 -0.016493861 -0.050029207 0.084190294 -0.021764874 -0.054566681 0.082743205 -0.027689004 -0.041501302 0.075895332 -0.026442762 -0.036323044 0.077626206 -0.029864769 -0.039184112 0.073796682 -0.037737407 -0.051766612 0.063442253 -0.037653413 -0.046356488 0.061097983 -0.039592385 -0.051732391 0.058264822 -0.039592385 -0.051732391 0.058264822 -0.037653413 -0.046356488 0.061097983 -0.039673101 -0.046364374 0.053541441 -0.0252125 -0.049882714 0.078946002 -0.024067765 -0.044085011 0.079000726 -0.028236449 -0.045716971 0.075529836 -0.033128999 -0.036178362 0.070216738 -0.033590764 -0.03329299 0.070535406 -0.036467448 -0.033285711 0.065748721 -0.039673101 -0.046364374 0.053541441 -0.03892133 -0.041352894 0.056254987 -0.04002542 -0.043871775 0.047846764 -0.028236449 -0.045716971 0.075529836 -0.024067765 -0.044085011 0.079000726 -0.027689004 -0.041501302 0.075895332 -0.028236449 -0.045716971 0.075529836 -0.027689004 -0.041501302 0.075895332 -0.029864769 -0.039184112 0.073796682 -0.039592385 -0.051732391 0.058264822 -0.039673101 -0.046364374 0.053541441 -0.040807534 -0.052294474 0.053487364 -0.029864769 -0.039184112 0.073796682 -0.033128999 -0.036178362 0.070216738 -0.035653252 -0.043934651 0.065218866 -0.039080735 -0.038064267 0.037681282 -0.040369444 -0.03609924 0.044873692 -0.04095418 -0.033218909 0.045439254 -0.039080735 -0.038064267 0.037681282 -0.04095418 -0.033218909 0.045439254 -0.040368546 -0.033191357 0.039932836 -0.019383699 0.062031206 0.017316839 -0.026086433 0.059012599 0.020668143 -0.025471566 0.061110929 0.023513798 -0.0012334485 0.041573003 -0.022364141 -0.0077937269 0.036497544 -0.028957164 -0.00098335498 0.047513794 -0.010463382 -0.028236449 -0.045716971 0.075529836 -0.029864769 -0.039184112 0.073796682 -0.031732596 -0.044009373 0.071419947 -0.031732596 -0.044009373 0.071419947 -0.029864769 -0.039184112 0.073796682 -0.035653252 -0.043934651 0.065218866 -0.039673101 -0.046364374 0.053541441 -0.04002542 -0.043871775 0.047846764 -0.041058917 -0.051724106 0.043944947 -0.023451652 -0.051908951 0.080773845 -0.0252125 -0.049882714 0.078946002 -0.028284447 -0.051849268 0.076859787 -0.041488416 -0.057234257 0.057891782 -0.039592385 -0.051732391 0.058264822 -0.040807534 -0.052294474 0.053487364 -0.041058917 -0.051724106 0.043944947 -0.04002542 -0.043871775 0.047846764 -0.040148221 -0.046159033 0.045207538 -0.040148221 -0.046159033 0.045207538 -0.04002542 -0.043871775 0.047846764 -0.039920598 -0.04231916 0.044898622 -0.033128999 -0.036178362 0.070216738 -0.036467448 -0.033285711 0.065748721 -0.035685707 -0.039107993 0.06533616 -0.033399265 -0.049799096 0.07027702 -0.028236449 -0.045716971 0.075529836 -0.031732596 -0.044009373 0.071419947 -0.028284447 -0.051849268 0.076859787 -0.0252125 -0.049882714 0.078946002 -0.028236449 -0.045716971 0.075529836 -0.033539157 -0.046291325 0.069157079 -0.031732596 -0.044009373 0.071419947 -0.035653252 -0.043934651 0.065218866 -0.039920598 -0.04231916 0.044898622 -0.040369444 -0.03609924 0.044873692 -0.038993541 -0.041723326 0.038176466 -0.036467448 -0.033285711 0.065748721 -0.03801981 -0.033204369 0.062381618 -0.038119115 -0.036159661 0.060482118 -0.0079947924 0.032321624 -0.040069025 -0.0066494825 0.036102854 -0.031536851 -0.0035917538 0.031910565 -0.047883749 -0.019946441 0.059665248 0.014581829 -0.023368398 0.056033745 0.0149787 -0.026086433 0.059012599 0.020668143 -0.033399265 -0.049799096 0.07027702 -0.031732596 -0.044009373 0.071419947 -0.033539157 -0.046291325 0.069157079 -0.038993541 -0.041723326 0.038176466 -0.040369444 -0.03609924 0.044873692 -0.039080735 -0.038064267 0.037681282 -0.0088287927 -0.032432109 0.087423012 -0.01299426 -0.033549245 0.085976429 -0.0086759264 -0.037007939 0.086477503 -0.035653252 -0.043934651 0.065218866 -0.033128999 -0.036178362 0.070216738 -0.035685707 -0.039107993 0.06533616 -0.040807534 -0.052294474 0.053487364 -0.039673101 -0.046364374 0.053541441 -0.041289382 -0.052279439 0.048551187 -0.0086418968 -0.041444037 0.086075529 -0.0086759264 -0.037007939 0.086477503 -0.014459054 -0.041667756 0.084328383 -0.041289382 -0.052279439 0.048551187 -0.039673101 -0.046364374 0.053541441 -0.041058917 -0.051724106 0.043944947 -0.040148221 -0.046159033 0.045207538 -0.039920598 -0.04231916 0.044898622 -0.038993541 -0.041723326 0.038176466 -0.014459054 -0.041667756 0.084328383 -0.0086759264 -0.037007939 0.086477503 -0.017271267 -0.03934405 0.083238758 -0.017271267 -0.03934405 0.083238758 -0.0086759264 -0.037007939 0.086477503 -0.01299426 -0.033549245 0.085976429 -0.038119115 -0.036159661 0.060482118 -0.03801981 -0.033204369 0.062381618 -0.040011778 -0.033202395 0.055902261 -0.040148221 -0.046159033 0.045207538 -0.038993541 -0.041723326 0.038176466 -0.039273765 -0.046846349 0.038116157 -0.035685707 -0.039107993 0.06533616 -0.036467448 -0.033285711 0.065748721 -0.038119115 -0.036159661 0.060482118 -0.017271267 -0.03934405 0.083238758 -0.01299426 -0.033549245 0.085976429 -0.017615473 -0.033493761 0.084100448 -0.033170547 -0.052400813 0.071611345 -0.028284447 -0.051849268 0.076859787 -0.028236449 -0.045716971 0.075529836 -0.041058917 -0.051724106 0.043944947 -0.040148221 -0.046159033 0.045207538 -0.040588442 -0.053612977 0.037550356 -0.033170547 -0.052400813 0.071611345 -0.028236449 -0.045716971 0.075529836 -0.033399265 -0.049799096 0.07027702 -0.023130486 0.049157016 0.011139768 -0.023368398 0.056033745 0.0149787 -0.020002149 0.049654365 0.0079595894 -0.017271267 -0.03934405 0.083238758 -0.017615473 -0.033493761 0.084100448 -0.023004979 -0.041560199 0.079752542 -0.017184395 0.047385447 0.0031830911 -0.019896014 0.043430928 0.0031021305 -0.020002149 0.049654365 0.0079595894 -0.023004979 -0.041560199 0.079752542 -0.017615473 -0.033493761 0.084100448 -0.022744779 -0.034645222 0.080844626 -0.040588442 -0.053612977 0.037550356 -0.040148221 -0.046159033 0.045207538 -0.039273765 -0.046846349 0.038116157 -0.0089028152 -0.05050711 0.086743377 -0.0086418968 -0.041444037 0.086075529 -0.014930272 -0.046684731 0.084318265 -0.025471566 0.061110929 0.023513798 -0.028026657 0.060735259 0.028430287 -0.022518044 0.062161226 0.021782534 -0.014930272 -0.046684731 0.084318265 -0.0086418968 -0.041444037 0.086075529 -0.014459054 -0.041667756 0.084328383 -0.031854827 -0.057519399 0.075752199 -0.028284447 -0.051849268 0.076859787 -0.033170547 -0.052400813 0.071611345 -0.035653252 -0.043934651 0.065218866 -0.035685707 -0.039107993 0.06533616 -0.037653413 -0.046356488 0.061097983 -0.0089028152 -0.05050711 0.086743377 -0.014930272 -0.046684731 0.084318265 -0.016493861 -0.050029207 0.084190294 -0.03892133 -0.041352894 0.056254987 -0.035685707 -0.039107993 0.06533616 -0.038119115 -0.036159661 0.060482118 -0.035503428 -0.051567335 0.067708448 -0.033399265 -0.049799096 0.07027702 -0.033539157 -0.046291325 0.069157079 -0.039674696 -0.036199536 0.054709893 -0.040011778 -0.033202395 0.055902261 -0.040568195 -0.033228729 0.052840415 -0.019680355 -0.046627708 0.082051434 -0.014459054 -0.041667756 0.084328383 -0.017271267 -0.03934405 0.083238758 -0.037653413 -0.046356488 0.061097983 -0.035685707 -0.039107993 0.06533616 -0.03892133 -0.041352894 0.056254987 -0.014930272 -0.046684731 0.084318265 -0.014459054 -0.041667756 0.084328383 -0.019680355 -0.046627708 0.082051434 -0.027631126 0.056998588 0.020939304 -0.026086433 0.059012599 0.020668143 -0.023368398 0.056033745 0.0149787 -0.016132319 0.045300595 -0.00023585158 -0.018354248 0.041823328 -0.0009892825 -0.019896014 0.043430928 0.0031021305 -0.0091377404 -0.054115638 0.087600574 -0.0089028152 -0.05050711 0.086743377 -0.015219623 -0.05217066 0.085223027 -0.015219623 -0.05217066 0.085223027 -0.0089028152 -0.05050711 0.086743377 -0.016493861 -0.050029207 0.084190294 -0.038119115 -0.036159661 0.060482118 -0.040011778 -0.033202395 0.055902261 -0.039674696 -0.036199536 0.054709893 -0.033170547 -0.052400813 0.071611345 -0.033399265 -0.049799096 0.07027702 -0.035503428 -0.051567335 0.067708448 -0.026442762 -0.036323044 0.077626206 -0.022744779 -0.034645222 0.080844626 -0.027208498 -0.031302668 0.078449018 -0.023368398 0.056033745 0.0149787 -0.023130486 0.049157016 0.011139768 -0.026431397 0.055295259 0.018143833 -0.035503428 -0.051567335 0.067708448 -0.033539157 -0.046291325 0.069157079 -0.035653252 -0.043934651 0.065218866 -0.026442762 -0.036323044 0.077626206 -0.027208498 -0.031302668 0.078449018 -0.03050762 -0.03333015 0.074431933 -0.023004979 -0.041560199 0.079752542 -0.022744779 -0.034645222 0.080844626 -0.027689004 -0.041501302 0.075895332 -0.023368398 0.056033745 0.0149787 -0.026431397 0.055295259 0.018143833 -0.027631126 0.056998588 0.020939304 -0.016493861 -0.050029207 0.084190294 -0.014930272 -0.046684731 0.084318265 -0.019680355 -0.046627708 0.082051434 -0.03892133 -0.041352894 0.056254987 -0.038119115 -0.036159661 0.060482118 -0.039674696 -0.036199536 0.054709893 -0.026442762 -0.036323044 0.077626206 -0.03050762 -0.03333015 0.074431933 -0.029864769 -0.039184112 0.073796682 -0.027689004 -0.041501302 0.075895332 -0.022744779 -0.034645222 0.080844626 -0.026442762 -0.036323044 0.077626206 -0.024067765 -0.044085011 0.079000726 -0.019680355 -0.046627708 0.082051434 -0.017271267 -0.03934405 0.083238758 -0.017271267 -0.03934405 0.083238758 -0.023004979 -0.041560199 0.079752542 -0.024067765 -0.044085011 0.079000726 -0.024067765 -0.044085011 0.079000726 -0.023004979 -0.041560199 0.079752542 -0.027689004 -0.041501302 0.075895332 -0.037737407 -0.051766612 0.063442253 -0.035503428 -0.051567335 0.067708448 -0.035653252 -0.043934651 0.065218866 0.014525927 0.038431153 -0.031405978 0.017431889 0.040040955 -0.026868731 0.01805119 0.039353568 -0.026927391 -0.036582451 0.041749705 0.05822739 -0.039174214 0.034247849 0.052938234 -0.038601186 0.030646686 0.058580663 -0.036432683 0.029127285 0.065273568 -0.037724745 0.018911304 0.065493353 -0.033896096 0.030518446 0.069600426 0.0095625166 0.061111677 0.009778508 0.0042522051 0.06357298 0.011132945 0.0088281082 0.064668491 0.013287033 0.001817301 0.060579874 0.0079165641 0.0042522051 0.06357298 0.011132945 0.0095625166 0.061111677 0.009778508 -0.028526453 0.05215323 0.065720014 -0.033142503 0.05177208 0.058967013 -0.031455759 0.048970945 0.064434581 -0.028526453 0.05215323 0.065720014 -0.029861504 0.05449586 0.060885001 -0.033142503 0.05177208 0.058967013 -0.029861504 0.05449586 0.060885001 -0.032599818 0.05603056 0.0526249 -0.0335132 0.053564511 0.055923656 -0.037923265 0.043861412 0.047206365 -0.03585913 0.053167261 0.043426737 -0.03896286 0.037183389 0.043198388 -0.03585913 0.053167261 0.043426737 -0.03670546 0.047272049 0.039382145 -0.03896286 0.037183389 0.043198388 -0.029861504 0.05449586 0.060885001 -0.0335132 0.053564511 0.055923656 -0.033142503 0.05177208 0.058967013 -0.030879825 0.058433428 0.029062172 -0.028026657 0.060735259 0.028430287 -0.025471566 0.061110929 0.023513798 -0.030879825 0.058433428 0.029062172 -0.025471566 0.061110929 0.023513798 -0.026086433 0.059012599 0.020668143 -0.036432683 0.029127285 0.065273568 -0.038632058 0.025760494 0.060870014 -0.037724745 0.018911304 0.065493353 -0.031455759 0.048970945 0.064434581 -0.033142503 0.05177208 0.058967013 -0.033424444 0.047268704 0.062206298 -0.038601186 0.030646686 0.058580663 -0.03990528 0.022492476 0.057867214 -0.038632058 0.025760494 0.060870014 -0.037923265 0.043861412 0.047206365 -0.03896286 0.037183389 0.043198388 -0.039240044 0.036429834 0.047688104 -0.033142503 0.05177208 0.058967013 -0.035010152 0.046351891 0.059312545 -0.033424444 0.047268704 0.062206298 -0.03674091 0.011968086 0.068849459 -0.037724745 0.018911304 0.065493353 -0.039019447 0.00083562807 0.065748982 -0.038632058 0.025760494 0.060870014 -0.03990528 0.022492476 0.057867214 -0.039849583 0.014361531 0.061116874 -0.033142503 0.05177208 0.058967013 -0.0335132 0.053564511 0.055923656 -0.035511132 0.049769059 0.054623969 -0.022963155 0.042684302 0.0071666655 -0.020002149 0.049654365 0.0079595894 -0.019896014 0.043430928 0.0031021305 -0.032599818 0.05603056 0.0526249 -0.034331057 0.055562526 0.049177367 -0.0335132 0.053564511 0.055923656 -0.037724745 0.018911304 0.065493353 -0.038632058 0.025760494 0.060870014 -0.039655007 0.0077819051 0.063204408 -0.037724745 0.018911304 0.065493353 -0.039655007 0.0077819051 0.063204408 -0.039019447 0.00083562807 0.065748982 -0.0335132 0.053564511 0.055923656 -0.034331057 0.055562526 0.049177367 -0.035511132 0.049769059 0.054623969 -0.025566977 0.045626312 0.012671168 -0.026431397 0.055295259 0.018143833 -0.023130486 0.049157016 0.011139768 -0.038632058 0.025760494 0.060870014 -0.039849583 0.014361531 0.061116874 -0.039655007 0.0077819051 0.063204408 -0.032033917 0.058379982 0.033091374 -0.028026657 0.060735259 0.028430287 -0.030879825 0.058433428 0.029062172 -0.032599818 0.05603056 0.0526249 -0.033075258 0.05779656 0.043389864 -0.034331057 0.055562526 0.049177367 -0.033142503 0.05177208 0.058967013 -0.035511132 0.049769059 0.054623969 -0.035010152 0.046351891 0.059312545 -0.039019447 0.00083562807 0.065748982 -0.037864815 0.0021879799 0.067976862 -0.03674091 0.011968086 0.068849459 -0.028026657 0.060735259 0.028430287 -0.032033917 0.058379982 0.033091374 -0.031008281 0.059507754 0.034378197 -0.039849583 0.014361531 0.061116874 -0.03990528 0.022492476 0.057867214 -0.041191701 0.0093302773 0.05789113 -0.022963155 0.042684302 0.0071666655 -0.023130486 0.049157016 0.011139768 -0.020002149 0.049654365 0.0079595894 -0.03990528 0.022492476 0.057867214 -0.04018987 0.027288906 0.053033367 -0.041191701 0.0093302773 0.05789113 -0.035511132 0.049769059 0.054623969 -0.034331057 0.055562526 0.049177367 -0.036159605 0.050678328 0.050272267 -0.03896286 0.037183389 0.043198388 -0.037548643 0.040796604 0.037683051 -0.039895669 0.030923218 0.043090969 -0.04018987 0.027288906 0.053033367 -0.039240044 0.036429834 0.047688104 -0.042074699 0.013208599 0.049634941 -0.033424444 0.047268704 0.062206298 -0.035010152 0.046351891 0.059312545 -0.034248706 0.040658388 0.064721175 -0.04018987 0.027288906 0.053033367 -0.042074699 0.013208599 0.049634941 -0.041191701 0.0093302773 0.05789113 -0.039240044 0.036429834 0.047688104 -0.04163504 0.018278526 0.046268668 -0.042074699 0.013208599 0.049634941 -0.019896014 0.043430928 0.0031021305 -0.021931387 0.038903929 0.0023050755 -0.022963155 0.042684302 0.0071666655 -0.039655007 0.0077819051 0.063204408 -0.040918808 -0.0062293983 0.061751988 -0.039019447 0.00083562807 0.065748982 -0.039240044 0.036429834 0.047688104 -0.039895669 0.030923218 0.043090969 -0.04163504 0.018278526 0.046268668 0.0059493701 0.03084488 -0.055481438 0.0058628302 0.035546508 -0.04045701 0.016023289 0.035854675 -0.038295545 -0.033075258 0.05779656 0.043389864 -0.034812983 0.055977821 0.042696778 -0.034331057 0.055562526 0.049177367 -0.039655007 0.0077819051 0.063204408 -0.039849583 0.014361531 0.061116874 -0.040918808 -0.0062293983 0.061751988 -0.039849583 0.014361531 0.061116874 -0.041940369 -0.0076774587 0.058564246 -0.040918808 -0.0062293983 0.061751988 -0.039849583 0.014361531 0.061116874 -0.041191701 0.0093302773 0.05789113 -0.041940369 -0.0076774587 0.058564246 -0.041191701 0.0093302773 0.05789113 -0.042074699 0.013208599 0.049634941 -0.042745672 0.0030702145 0.051049016 -0.041191701 0.0093302773 0.05789113 -0.042646803 -0.007225398 0.055440858 -0.041940369 -0.0076774587 0.058564246 -0.039895669 0.030923218 0.043090969 -0.039396591 0.029965738 0.038649846 -0.040787909 0.021849342 0.040814176 -0.04163504 0.018278526 0.046268668 -0.039895669 0.030923218 0.043090969 -0.04203089 0.012005104 0.042916402 -0.033075258 0.05779656 0.043389864 -0.032546356 0.0585155 0.039717339 -0.034812983 0.055977821 0.042696778 -0.039895669 0.030923218 0.043090969 -0.040787909 0.021849342 0.040814176 -0.04203089 0.012005104 0.042916402 -0.03990528 0.022492476 0.057867214 -0.039174214 0.034247849 0.052938234 -0.04018987 0.027288906 0.053033367 -0.034812983 0.055977821 0.042696778 -0.03585913 0.053167261 0.043426737 -0.036159605 0.050678328 0.050272267 -0.032033917 0.058379982 0.033091374 -0.032546356 0.0585155 0.039717339 -0.031008281 0.059507754 0.034378197 -0.042745672 0.0030702145 0.051049016 -0.042646803 -0.007225398 0.055440858 -0.041191701 0.0093302773 0.05789113 -0.037178945 0.046955589 0.049196031 -0.039240044 0.036429834 0.047688104 -0.039174214 0.034247849 0.052938234 -0.032546356 0.0585155 0.039717339 -0.034185708 0.056802385 0.039234649 -0.034812983 0.055977821 0.042696778 -0.042074699 0.013208599 0.049634941 -0.04163504 0.018278526 0.046268668 -0.042745672 0.0030702145 0.051049016 -0.035511132 0.049769059 0.054623969 -0.036159605 0.050678328 0.050272267 -0.036828868 0.044559583 0.054895639 -0.04203089 0.012005104 0.042916402 -0.040787909 0.021849342 0.040814176 -0.041221667 0.013075286 0.0382258 -0.026149159 0.040086564 0.01082834 -0.025566977 0.045626312 0.012671168 -0.023130486 0.049157016 0.011139768 -0.04163504 0.018278526 0.046268668 -0.042677794 0.003999827 0.043131705 -0.042745672 0.0030702145 0.051049016 -0.04163504 0.018278526 0.046268668 -0.04203089 0.012005104 0.042916402 -0.042677794 0.003999827 0.043131705 -0.03585913 0.053167261 0.043426737 -0.035296094 0.05396001 0.039600927 -0.03670546 0.047272049 0.039382145 -0.036159605 0.050678328 0.050272267 -0.037178945 0.046955589 0.049196031 -0.036828868 0.044559583 0.054895639 -0.03670546 0.047272049 0.039382145 -0.037548643 0.040796604 0.037683051 -0.03896286 0.037183389 0.043198388 -0.04203089 0.012005104 0.042916402 -0.041221667 0.013075286 0.0382258 -0.042677794 0.003999827 0.043131705 -0.033424444 0.047268704 0.062206298 -0.030437095 0.044483062 0.068791725 -0.031455759 0.048970945 0.064434581 -0.033424444 0.047268704 0.062206298 -0.034248706 0.040658388 0.064721175 -0.030437095 0.044483062 0.068791725 -0.042677794 0.003999827 0.043131705 -0.041221667 0.013075286 0.0382258 -0.042400748 -0.0051626163 0.037946176 -0.035010152 0.046351891 0.059312545 -0.035511132 0.049769059 0.054623969 -0.036582451 0.041749705 0.05822739 -0.042400748 -0.0051626163 0.037946176 -0.041221667 0.013075286 0.0382258 -0.041129634 0.0045344294 0.035050195 -0.034248706 0.040658388 0.064721175 -0.035010152 0.046351891 0.059312545 -0.036582451 0.041749705 0.05822739 -0.036159605 0.050678328 0.050272267 -0.03585913 0.053167261 0.043426737 -0.037178945 0.046955589 0.049196031 -0.032546356 0.0585155 0.039717339 -0.032033917 0.058379982 0.033091374 -0.034185708 0.056802385 0.039234649 -0.025566977 0.045626312 0.012671168 -0.029504154 0.041979235 0.017662443 -0.029058378 0.053384293 0.020976495 -0.031555891 0.054412942 0.026287707 -0.033558574 0.055357475 0.033167366 -0.030879825 0.058433428 0.029062172 -0.021931387 0.038903929 0.0023050755 -0.022808557 0.034699231 1.1990183e-05 -0.022963155 0.042684302 0.0071666655 -0.035511132 0.049769059 0.054623969 -0.036828868 0.044559583 0.054895639 -0.036582451 0.041749705 0.05822739 -0.034812983 0.055977821 0.042696778 -0.036159605 0.050678328 0.050272267 -0.034331057 0.055562526 0.049177367 -0.034248706 0.040658388 0.064721175 -0.036582451 0.041749705 0.05822739 -0.036432683 0.029127285 0.065273568 -0.026149159 0.040086564 0.01082834 -0.029504154 0.041979235 0.017662443 -0.025566977 0.045626312 0.012671168 -0.036432683 0.029127285 0.065273568 -0.033896096 0.030518446 0.069600426 -0.034248706 0.040658388 0.064721175 -0.018435592 0.031103812 -0.015965885 -0.023838701 0.029858481 -0.0020438554 -0.022808557 0.034699231 1.1990183e-05 -0.022808557 0.034699231 1.1990183e-05 -0.027082652 0.034849688 0.0096670007 -0.022963155 0.042684302 0.0071666655 -0.033357013 0.049473844 0.028275322 -0.03466206 0.049125046 0.032071773 -0.031555891 0.054412942 0.026287707 -0.023838701 0.029858481 -0.0020438554 -0.027082652 0.034849688 0.0096670007 -0.022808557 0.034699231 1.1990183e-05 -0.034812983 0.055977821 0.042696778 -0.034185708 0.056802385 0.039234649 -0.03585913 0.053167261 0.043426737 -0.036582451 0.041749705 0.05822739 -0.038601186 0.030646686 0.058580663 -0.036432683 0.029127285 0.065273568 -0.039174214 0.034247849 0.052938234 -0.036828868 0.044559583 0.054895639 -0.037178945 0.046955589 0.049196031 -0.037178945 0.046955589 0.049196031 -0.03585913 0.053167261 0.043426737 -0.037923265 0.043861412 0.047206365 -0.037178945 0.046955589 0.049196031 -0.037923265 0.043861412 0.047206365 -0.039240044 0.036429834 0.047688104 -0.036432683 0.029127285 0.065273568 -0.038601186 0.030646686 0.058580663 -0.038632058 0.025760494 0.060870014 -0.034185708 0.056802385 0.039234649 -0.035296094 0.05396001 0.039600927 -0.03585913 0.053167261 0.043426737 -0.036828868 0.044559583 0.054895639 -0.039174214 0.034247849 0.052938234 -0.036582451 0.041749705 0.05822739 -0.03990528 0.022492476 0.057867214 -0.038601186 0.030646686 0.058580663 -0.039174214 0.034247849 0.052938234 -0.039174214 0.034247849 0.052938234 -0.039240044 0.036429834 0.047688104 -0.04018987 0.027288906 0.053033367 -0.030879825 0.058433428 0.029062172 -0.033558574 0.055357475 0.033167366 -0.032033917 0.058379982 0.033091374 -0.03896286 0.037183389 0.043198388 -0.039895669 0.030923218 0.043090969 -0.039240044 0.036429834 0.047688104 -0.037548643 0.040796604 0.037683051 -0.039396591 0.029965738 0.038649846 -0.039895669 0.030923218 0.043090969 0.013633378 0.047828343 -0.0093126418 0.014383766 0.047465328 -0.0099445898 0.01805119 0.039353568 -0.026927391 0.013633378 0.047828343 -0.0093126418 0.01071913 0.056101412 0.0042855027 0.014383766 0.047465328 -0.0099445898 -0.027082652 0.034849688 0.0096670007 -0.023838701 0.029858481 -0.0020438554 -0.024919726 0.026266433 -0.0018688308 0.01071913 0.056101412 0.0042855027 0.01141628 0.055800572 0.0038962152 0.014383766 0.047465328 -0.0099445898 -0.031172426 0.036775228 0.01899536 -0.029504154 0.041979235 0.017662443 -0.026149159 0.040086564 0.01082834 0.01071913 0.056101412 0.0042855027 0.0087827463 0.064039499 0.01345678 0.0093972348 0.064667821 0.013492428 -0.026685787 0.021857172 0.0008788741 -0.024919726 0.026266433 -0.0018688308 -0.019189879 0.027155275 -0.018837832 0.01071913 0.056101412 0.0042855027 0.0093972348 0.064667821 0.013492428 0.01141628 0.055800572 0.0038962152 -0.032033917 0.058379982 0.033091374 -0.033558574 0.055357475 0.033167366 -0.034185708 0.056802385 0.039234649 -0.0066494825 0.036102854 -0.031536851 -0.0010206603 0.032306254 -0.048803914 -0.0035917538 0.031910565 -0.047883749 -0.0066494825 0.036102854 -0.031536851 -0.0077937269 0.036497544 -0.028957164 -0.0012334485 0.041573003 -0.022364141 -0.022963155 0.042684302 0.0071666655 -0.026149159 0.040086564 0.01082834 -0.023130486 0.049157016 0.011139768 -0.018354248 0.041823328 -0.0009892825 -0.021931387 0.038903929 0.0023050755 -0.019896014 0.043430928 0.0031021305 -0.027082652 0.034849688 0.0096670007 -0.031172426 0.036775228 0.01899536 -0.026149159 0.040086564 0.01082834 0.00012098326 0.036554433 -0.036072016 -0.0066494825 0.036102854 -0.031536851 -0.0012334485 0.041573003 -0.022364141 -0.0077937269 0.036497544 -0.028957164 -0.0072725508 0.042745583 -0.015400081 -0.00098335498 0.047513794 -0.010463382 0.014525927 0.038431153 -0.031405978 0.0079320958 0.041369651 -0.024716213 0.017431889 0.040040955 -0.026868731 -0.015492058 0.029359074 -0.027254654 -0.018435592 0.031103812 -0.015965885 -0.017983213 0.034670863 -0.011856633 0.00012098326 0.036554433 -0.036072016 -0.0010206603 0.032306254 -0.048803914 -0.0066494825 0.036102854 -0.031536851 -0.033357013 0.049473844 0.028275322 -0.031444434 0.050768528 0.024272824 -0.037100207 0.028733674 0.029936094 0.017431889 0.040040955 -0.026868731 0.0079320958 0.041369651 -0.024716213 0.0094398111 0.043384142 -0.020180378 -0.0072725508 0.042745583 -0.015400081 -0.0060036946 0.047019716 -0.0084667588 -0.00098335498 0.047513794 -0.010463382 -0.033558574 0.055357475 0.033167366 -0.031555891 0.054412942 0.026287707 -0.03466206 0.049125046 0.032071773 0.016023289 0.035854675 -0.038295545 0.0058628302 0.035546508 -0.04045701 0.014525927 0.038431153 -0.031405978 -0.015492058 0.029359074 -0.027254654 -0.017983213 0.034670863 -0.011856633 -0.010623009 0.03430751 -0.029588323 -0.010623009 0.03430751 -0.029588323 -0.017983213 0.034670863 -0.011856633 -0.014876904 0.038932908 -0.011605412 -0.0058962242 0.06428428 0.013222571 -0.01241487 0.062350117 0.012613408 -0.013236187 0.063613065 0.015607444 -0.027082652 0.034849688 0.0096670007 -0.026149159 0.040086564 0.01082834 -0.022963155 0.042684302 0.0071666655 -0.031444434 0.050768528 0.024272824 -0.031941511 0.027816353 0.017359152 -0.037100207 0.028733674 0.029936094 -0.017983213 0.034670863 -0.011856633 -0.0154588 0.042334002 -0.0050757807 -0.014876904 0.038932908 -0.011605412 0.001817301 0.060579874 0.0079165641 0.010295417 0.058282804 0.0063165985 0.007140513 0.057715047 0.0049599265 0.010295417 0.058282804 0.0063165985 0.011461847 0.054544348 0.00084868335 0.007140513 0.057715047 0.0049599265 -0.0154588 0.042334002 -0.0050757807 -0.018354248 0.041823328 -0.0009892825 -0.016132319 0.045300595 -0.00023585158 -0.017184395 0.047385447 0.0031830911 -0.016132319 0.045300595 -0.00023585158 -0.019896014 0.043430928 0.0031021305 0.0095625166 0.061111677 0.009778508 0.010295417 0.058282804 0.0063165985 0.001817301 0.060579874 0.0079165641 -0.010623009 0.03430751 -0.029588323 -0.01254984 0.031005081 -0.032544669 -0.015492058 0.029359074 -0.027254654 -0.011142927 0.037900794 -0.020503996 -0.010623009 0.03430751 -0.029588323 -0.014876904 0.038932908 -0.011605412 0.0042605842 0.038235188 -0.032422952 0.00012098326 0.036554433 -0.036072016 0.0016315478 0.041146014 -0.024448842 -0.013164204 0.044339769 -0.0054352214 -0.0154588 0.042334002 -0.0050757807 -0.016132319 0.045300595 -0.00023585158 -0.027082652 0.034849688 0.0096670007 -0.029218813 0.027988994 0.010909138 -0.031172426 0.036775228 0.01899536 -0.020002149 0.049654365 0.0079595894 -0.015176912 0.052110042 0.0053039752 -0.017184395 0.047385447 0.0031830911 -0.04117284 -0.0054502334 0.033232164 -0.041129634 0.0045344294 0.035050195 -0.039978418 0.012470126 0.03325763 -0.014876904 0.038932908 -0.011605412 -0.0154588 0.042334002 -0.0050757807 -0.013164204 0.044339769 -0.0054352214 -0.00084948767 0.045470413 -0.014360297 -0.00098335498 0.047513794 -0.010463382 0.0045366171 0.045016032 -0.01664241 -0.03670546 0.047272049 0.039382145 -0.03466206 0.049125046 0.032071773 -0.037548643 0.040796604 0.037683051 -0.019946441 0.059665248 0.014581829 -0.026086433 0.059012599 0.020668143 -0.019383699 0.062031206 0.017316839 -0.033357013 0.049473844 0.028275322 -0.037100207 0.028733674 0.029936094 -0.036585614 0.036793686 0.031801574 -0.023368398 0.056033745 0.0149787 -0.015176912 0.052110042 0.0053039752 -0.020002149 0.049654365 0.0079595894 -0.037829597 -0.0099928649 0.024214363 -0.038170222 -0.0043099085 0.025608467 -0.033436019 0.0037336175 0.016811 -0.01241487 0.062350117 0.012613408 -0.0058962242 0.06428428 0.013222571 -0.0011655169 0.063489899 0.010863171 -0.024919726 0.026266433 -0.0018688308 -0.026685787 0.021857172 0.0008788741 -0.029218813 0.027988994 0.010909138 -0.017184395 0.047385447 0.0031830911 -0.013164204 0.044339769 -0.0054352214 -0.016132319 0.045300595 -0.00023585158 0.0016315478 0.041146014 -0.024448842 -0.00084948767 0.045470413 -0.014360297 0.0045366171 0.045016032 -0.01664241 -0.033686969 0.019178025 0.019170426 -0.037755873 0.012964922 0.027409604 -0.035862532 0.025033845 0.025594199 -0.025471566 0.061110929 0.023513798 -0.022518044 0.062161226 0.021782534 -0.019383699 0.062031206 0.017316839 -0.029218813 0.027988994 0.010909138 -0.026685787 0.021857172 0.0008788741 -0.030872529 0.023627365 0.013375399 0.0094398111 0.043384142 -0.020180378 0.0016315478 0.041146014 -0.024448842 0.0045366171 0.045016032 -0.01664241 -0.0079947924 0.032321624 -0.040069025 -0.010758747 0.030911881 -0.037738878 -0.010623009 0.03430751 -0.029588323 0.0045366171 0.045016032 -0.01664241 -0.0012088553 0.051512264 -0.0035992886 0.0062572951 0.04719631 -0.012498724 -0.029218813 0.027988994 0.010909138 -0.031941511 0.027816353 0.017359152 -0.031172426 0.036775228 0.01899536 -0.013164204 0.044339769 -0.0054352214 -0.011375111 0.042961411 -0.010132851 -0.014876904 0.038932908 -0.011605412 -0.015176912 0.052110042 0.0053039752 -0.012091561 0.048620775 -0.00077784498 -0.017184395 0.047385447 0.0031830911 -0.033686969 0.019178025 0.019170426 -0.035862532 0.025033845 0.025594199 -0.031941511 0.027816353 0.017359152 0.0016315478 0.041146014 -0.024448842 0.0094398111 0.043384142 -0.020180378 0.0079320958 0.041369651 -0.024716213 -0.033558574 0.055357475 0.033167366 -0.035296094 0.05396001 0.039600927 -0.034185708 0.056802385 0.039234649 -0.029361723 0.01846545 0.0077447416 -0.030872529 0.023627365 0.013375399 -0.026685787 0.021857172 0.0008788741 -0.011375111 0.042961411 -0.010132851 -0.013164204 0.044339769 -0.0054352214 -0.0080808578 0.051036131 -0.00089407526 -0.0080808578 0.051036131 -0.00089407526 -0.013164204 0.044339769 -0.0054352214 -0.012091561 0.048620775 -0.00077784498 -0.0079947924 0.032321624 -0.040069025 -0.0077937269 0.036497544 -0.028957164 -0.0066494825 0.036102854 -0.031536851 -0.0011655169 0.063489899 0.010863171 -0.0058962242 0.06428428 0.013222571 -0.0013899782 0.064537957 0.012593221 -0.013236187 0.063613065 0.015607444 -0.019383699 0.062031206 0.017316839 -0.022518044 0.062161226 0.021782534 0.0094398111 0.043384142 -0.020180378 0.0045366171 0.045016032 -0.01664241 0.0062572951 0.04719631 -0.012498724 -0.01241487 0.062350117 0.012613408 -0.019383699 0.062031206 0.017316839 -0.013236187 0.063613065 0.015607444 0.0056210211 0.052121054 -0.0037140038 0.0062572951 0.04719631 -0.012498724 -0.0012088553 0.051512264 -0.0035992886 -0.013507465 0.060512058 0.011040332 -0.011424433 0.055272199 0.0055600354 -0.015176912 0.052110042 0.0053039752 -0.015176912 0.052110042 0.0053039752 -0.0080808578 0.051036131 -0.00089407526 -0.012091561 0.048620775 -0.00077784498 -0.019946441 0.059665248 0.014581829 -0.01241487 0.062350117 0.012613408 -0.013507465 0.060512058 0.011040332 -0.033558574 0.055357475 0.033167366 -0.03670546 0.047272049 0.039382145 -0.035296094 0.05396001 0.039600927 -0.037100207 0.028733674 0.029936094 -0.031941511 0.027816353 0.017359152 -0.035862532 0.025033845 0.025594199 -0.0080808578 0.051036131 -0.00089407526 -0.0060036946 0.047019716 -0.0084667588 -0.011375111 0.042961411 -0.010132851 0.0056210211 0.052121054 -0.0037140038 0.012716949 0.050945189 -0.005008033 0.0062572951 0.04719631 -0.012498724 0.0079320958 0.041369651 -0.024716213 0.014525927 0.038431153 -0.031405978 0.0042605842 0.038235188 -0.032422952 0.0062572951 0.04719631 -0.012498724 0.012716949 0.050945189 -0.005008033 0.014138946 0.04727627 -0.011621773 -0.0089822849 0.061069392 0.0096687553 -0.011424433 0.055272199 0.0055600354 -0.013507465 0.060512058 0.011040332 0.0062572951 0.04719631 -0.012498724 0.014138946 0.04727627 -0.011621773 0.0094398111 0.043384142 -0.020180378 -0.0045299572 0.053832226 0.00090362813 -0.0080808578 0.051036131 -0.00089407526 -0.011424433 0.055272199 0.0055600354 -0.033686969 0.019178025 0.019170426 -0.030872529 0.023627365 0.013375399 -0.032415226 0.010428081 0.014995199 -0.032415226 0.010428081 0.014995199 -0.030872529 0.023627365 0.013375399 -0.029361723 0.01846545 0.0077447416 -0.03466206 0.049125046 0.032071773 -0.03670546 0.047272049 0.039382145 -0.033558574 0.055357475 0.033167366 -0.0080808578 0.051036131 -0.00089407526 -0.0045299572 0.053832226 0.00090362813 -0.0012088553 0.051512264 -0.0035992886 -0.0013899782 0.064537957 0.012593221 0.0088281082 0.064668491 0.013287033 0.0042522051 0.06357298 0.011132945 0.017431889 0.040040955 -0.026868731 0.0094398111 0.043384142 -0.020180378 0.014138946 0.04727627 -0.011621773 -0.0064177159 0.058082301 0.0061559007 -0.0089822849 0.061069392 0.0096687553 -0.0067186998 0.062205032 0.010228334 -0.030872529 0.023627365 0.013375399 -0.033686969 0.019178025 0.019170426 -0.031941511 0.027816353 0.017359152 -0.0012088553 0.051512264 -0.0035992886 -0.00098335498 0.047513794 -0.010463382 -0.0060036946 0.047019716 -0.0084667588 -0.039369266 0.024889594 0.035665464 -0.039396591 0.029965738 0.038649846 -0.036585614 0.036793686 0.031801574 -0.0067186998 0.062205032 0.010228334 -0.0089822849 0.061069392 0.0096687553 -0.01241487 0.062350117 0.012613408 -0.0011161538 0.058558423 0.0057454221 -0.0045299572 0.053832226 0.00090362813 -0.0064177159 0.058082301 0.0061559007 -0.0012088553 0.051512264 -0.0035992886 -0.0045299572 0.053832226 0.00090362813 0.0015465424 0.056009229 0.0024245204 -0.033686969 0.019178025 0.019170426 -0.038170222 -0.0043099085 0.025608467 -0.037755873 0.012964922 0.027409604 0.0045366171 0.045016032 -0.01664241 -0.00098335498 0.047513794 -0.010463382 -0.0012088553 0.051512264 -0.0035992886 -0.035862532 0.025033845 0.025594199 -0.037755873 0.012964922 0.027409604 -0.039978418 0.012470126 0.03325763 -0.038170222 -0.0043099085 0.025608467 -0.033686969 0.019178025 0.019170426 -0.033436019 0.0037336175 0.016811 -0.032415226 0.010428081 0.014995199 -0.033436019 0.0037336175 0.016811 -0.033686969 0.019178025 0.019170426 -0.024919726 0.026266433 -0.0018688308 -0.029218813 0.027988994 0.010909138 -0.027082652 0.034849688 0.0096670007 -0.0045299572 0.053832226 0.00090362813 -0.0011161538 0.058558423 0.0057454221 0.0015465424 0.056009229 0.0024245204 -0.039396591 0.029965738 0.038649846 -0.039369266 0.024889594 0.035665464 -0.040787909 0.021849342 0.040814176 -0.039978418 0.012470126 0.03325763 -0.037100207 0.028733674 0.029936094 -0.035862532 0.025033845 0.025594199 0.0056210211 0.052121054 -0.0037140038 -0.0012088553 0.051512264 -0.0035992886 0.0015465424 0.056009229 0.0024245204 -0.037100207 0.028733674 0.029936094 -0.039978418 0.012470126 0.03325763 -0.039369266 0.024889594 0.035665464 0.007140513 0.057715047 0.0049599265 0.0015465424 0.056009229 0.0024245204 -0.0011161538 0.058558423 0.0057454221 0.0056210211 0.052121054 -0.0037140038 0.0015465424 0.056009229 0.0024245204 0.007140513 0.057715047 0.0049599265 0.0058628302 0.035546508 -0.04045701 0.0042605842 0.038235188 -0.032422952 0.014525927 0.038431153 -0.031405978 -0.040787909 0.021849342 0.040814176 -0.039369266 0.024889594 0.035665464 -0.041221667 0.013075286 0.0382258 0.011461847 0.054544348 0.00084868335 0.0056210211 0.052121054 -0.0037140038 0.007140513 0.057715047 0.0049599265 -0.0013899782 0.064537957 0.012593221 0.0042522051 0.06357298 0.011132945 -0.0011655169 0.063489899 0.010863171 0.0056210211 0.052121054 -0.0037140038 0.011461847 0.054544348 0.00084868335 0.012716949 0.050945189 -0.005008033 -0.037755873 0.012964922 0.027409604 -0.04117284 -0.0054502334 0.033232164 -0.039978418 0.012470126 0.03325763 -0.039369266 0.024889594 0.035665464 -0.041129634 0.0045344294 0.035050195 -0.041221667 0.013075286 0.0382258 -0.039978418 0.012470126 0.03325763 -0.041129634 0.0045344294 0.035050195 -0.039369266 0.024889594 0.035665464 + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079 7080 7081 7082 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 7101 7102 7103 7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 7124 7125 7126 7127 7128 7129 7130 7131 7132 7133 7134 7135 7136 7137 7138 7139 7140 7141 7142 7143 7144 7145 7146 7147 7148 7149 7150 7151 7152 7153 7154 7155 7156 7157 7158 7159 7160 7161 7162 7163 7164 7165 7166 7167 7168 7169 7170 7171 7172 7173 7174 7175 7176 7177 7178 7179 7180 7181 7182 7183 7184 7185 7186 7187 7188 7189 7190 7191 7192 7193 7194 7195 7196 7197 7198 7199 7200 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 7211 7212 7213 7214 7215 7216 7217 7218 7219 7220 7221 7222 7223 7224 7225 7226 7227 7228 7229 7230 7231 7232 7233 7234 7235 7236 7237 7238 7239 7240 7241 7242 7243 7244 7245 7246 7247 7248 7249 7250 7251 7252 7253 7254 7255 7256 7257 7258 7259 7260 7261 7262 7263 7264 7265 7266 7267 7268 7269 7270 7271 7272 7273 7274 7275 7276 7277 7278 7279 7280 7281 7282 7283 7284 7285 7286 7287 7288 7289 7290 7291 7292 7293 7294 7295 7296 7297 7298 7299 7300 7301 7302 7303 7304 7305 7306 7307 7308 7309 7310 7311 7312 7313 7314 7315 7316 7317 7318 7319 7320 7321 7322 7323 7324 7325 7326 7327 7328 7329 7330 7331 7332 7333 7334 7335 7336 7337 7338 7339 7340 7341 7342 7343 7344 7345 7346 7347 7348 7349 7350 7351 7352 7353 7354 7355 7356 7357 7358 7359 7360 7361 7362 7363 7364 7365 7366 7367 7368 7369 7370 7371 7372 7373 7374 7375 7376 7377 7378 7379 7380 7381 7382 7383 7384 7385 7386 7387 7388 7389 7390 7391 7392 7393 7394 7395 7396 7397 7398 7399 7400 7401 7402 7403 7404 7405 7406 7407 7408 7409 7410 7411 7412 7413 7414 7415 7416 7417 7418 7419 7420 7421 7422 7423 7424 7425 7426 7427 7428 7429 7430 7431 7432 7433 7434 7435 7436 7437 7438 7439 7440 7441 7442 7443 7444 7445 7446 7447 7448 7449 7450 7451 7452 7453 7454 7455 7456 7457 7458 7459 7460 7461 7462 7463 7464 7465 7466 7467 7468 7469 7470 7471 7472 7473 7474 7475 7476 7477 7478 7479 7480 7481 7482 7483 7484 7485 7486 7487 7488 7489 7490 7491 7492 7493 7494 7495 7496 7497 7498 7499 7500 7501 7502 7503 7504 7505 7506 7507 7508 7509 7510 7511 7512 7513 7514 7515 7516 7517 7518 7519 7520 7521 7522 7523 7524 7525 7526 7527 7528 7529 7530 7531 7532 7533 7534 7535 7536 7537 7538 7539 7540 7541 7542 7543 7544 7545 7546 7547 7548 7549 7550 7551 7552 7553 7554 7555 7556 7557 7558 7559 7560 7561 7562 7563 7564 7565 7566 7567 7568 7569 7570 7571 7572 7573 7574 7575 7576 7577 7578 7579 7580 7581 7582 7583 7584 7585 7586 7587 7588 7589 7590 7591 7592 7593 7594 7595 7596 7597 7598 7599 7600 7601 7602 7603 7604 7605 7606 7607 7608 7609 7610 7611 7612 7613 7614 7615 7616 7617 7618 7619 7620 7621 7622 7623 7624 7625 7626 7627 7628 7629 7630 7631 7632 7633 7634 7635 7636 7637 7638 7639 7640 7641 7642 7643 7644 7645 7646 7647 7648 7649 7650 7651 7652 7653 7654 7655 7656 7657 7658 7659 7660 7661 7662 7663 7664 7665 7666 7667 7668 7669 7670 7671 7672 7673 7674 7675 7676 7677 7678 7679 7680 7681 7682 7683 7684 7685 7686 7687 7688 7689 7690 7691 7692 7693 7694 7695 7696 7697 7698 7699 7700 7701 7702 7703 7704 7705 7706 7707 7708 7709 7710 7711 7712 7713 7714 7715 7716 7717 7718 7719 7720 7721 7722 7723 7724 7725 7726 7727 7728 7729 7730 7731 7732 7733 7734 7735 7736 7737 7738 7739 7740 7741 7742 7743 7744 7745 7746 7747 7748 7749 7750 7751 7752 7753 7754 7755 7756 7757 7758 7759 7760 7761 7762 7763 7764 7765 7766 7767 7768 7769 7770 7771 7772 7773 7774 7775 7776 7777 7778 7779 7780 7781 7782 7783 7784 7785 7786 7787 7788 7789 7790 7791 7792 7793 7794 7795 7796 7797 7798 7799 7800 7801 7802 7803 7804 7805 7806 7807 7808 7809 7810 7811 7812 7813 7814 7815 7816 7817 7818 7819 7820 7821 7822 7823 7824 7825 7826 7827 7828 7829 7830 7831 7832 7833 7834 7835 7836 7837 7838 7839 7840 7841 7842 7843 7844 7845 7846 7847 7848 7849 7850 7851 7852 7853 7854 7855 7856 7857 7858 7859 7860 7861 7862 7863 7864 7865 7866 7867 7868 7869 7870 7871 7872 7873 7874 7875 7876 7877 7878 7879 7880 7881 7882 7883 7884 7885 7886 7887 7888 7889 7890 7891 7892 7893 7894 7895 7896 7897 7898 7899 7900 7901 7902 7903 7904 7905 7906 7907 7908 7909 7910 7911 7912 7913 7914 7915 7916 7917 7918 7919 7920 7921 7922 7923 7924 7925 7926 7927 7928 7929 7930 7931 7932 7933 7934 7935 7936 7937 7938 7939 7940 7941 7942 7943 7944 7945 7946 7947 7948 7949 7950 7951 7952 7953 7954 7955 7956 7957 7958 7959 7960 7961 7962 7963 7964 7965 7966 7967 7968 7969 7970 7971 7972 7973 7974 7975 7976 7977 7978 7979 7980 7981 7982 7983 7984 7985 7986 7987 7988 7989 7990 7991 7992 7993 7994 7995 7996 7997 7998 7999 8000 8001 8002 8003 8004 8005 8006 8007 8008 8009 8010 8011 8012 8013 8014 8015 8016 8017 8018 8019 8020 8021 8022 8023 8024 8025 8026 8027 8028 8029 8030 8031 8032 8033 8034 8035 8036 8037 8038 8039 8040 8041 8042 8043 8044 8045 8046 8047 8048 8049 8050 8051 8052 8053 8054 8055 8056 8057 8058 8059 8060 8061 8062 8063 8064 8065 8066 8067 8068 8069 8070 8071 8072 8073 8074 8075 8076 8077 8078 8079 8080 8081 8082 8083 8084 8085 8086 8087 8088 8089 8090 8091 8092 8093 8094 8095 8096 8097 8098 8099 8100 8101 8102 8103 8104 8105 8106 8107 8108 8109 8110 8111 8112 8113 8114 8115 8116 8117 8118 8119 8120 8121 8122 8123 8124 8125 8126 8127 8128 8129 8130 8131 8132 8133 8134 8135 8136 8137 8138 8139 8140 8141 8142 8143 8144 8145 8146 8147 8148 8149 8150 8151 8152 8153 8154 8155 8156 8157 8158 8159 8160 8161 8162 8163 8164 8165 8166 8167 8168 8169 8170 8171 8172 8173 8174 8175 8176 8177 8178 8179 8180 8181 8182 8183 8184 8185 8186 8187 8188 8189 8190 8191 8192 8193 8194 8195 8196 8197 8198 8199 8200 8201 8202 8203 8204 8205 8206 8207 8208 8209 8210 8211 8212 8213 8214 8215 8216 8217 8218 8219 8220 8221 8222 8223 8224 8225 8226 8227 8228 8229 8230 8231 8232 8233 8234 8235 8236 8237 8238 8239 8240 8241 8242 8243 8244 8245 8246 8247 8248 8249 8250 8251 8252 8253 8254 8255 8256 8257 8258 8259 8260 8261 8262 8263 8264 8265 8266 8267 8268 8269 8270 8271 8272 8273 8274 8275 8276 8277 8278 8279 8280 8281 8282 8283 8284 8285 8286 8287 8288 8289 8290 8291 8292 8293 8294 8295 8296 8297 8298 8299 8300 8301 8302 8303 8304 8305 8306 8307 8308 8309 8310 8311 8312 8313 8314 8315 8316 8317 8318 8319 8320 8321 8322 8323 8324 8325 8326 8327 8328 8329 8330 8331 8332 8333 8334 8335 8336 8337 8338 8339 8340 8341 8342 8343 8344 8345 8346 8347 8348 8349 8350 8351 8352 8353 8354 8355 8356 8357 8358 8359 8360 8361 8362 8363 8364 8365 8366 8367 8368 8369 8370 8371 8372 8373 8374 8375 8376 8377 8378 8379 8380 8381 8382 8383 8384 8385 8386 8387 8388 8389 8390 8391 8392 8393 8394 8395 8396 8397 8398 8399 8400 8401 8402 8403 8404 8405 8406 8407 8408 8409 8410 8411 8412 8413 8414 8415 8416 8417 8418 8419 8420 8421 8422 8423 8424 8425 8426 8427 8428 8429 8430 8431 8432 8433 8434 8435 8436 8437 8438 8439 8440 8441 8442 8443 8444 8445 8446 8447 8448 8449 8450 8451 8452 8453 8454 8455 8456 8457 8458 8459 8460 8461 8462 8463 8464 8465 8466 8467 8468 8469 8470 8471 8472 8473 8474 8475 8476 8477 8478 8479 8480 8481 8482 8483 8484 8485 8486 8487 8488 8489 8490 8491 8492 8493 8494 8495 8496 8497 8498 8499 8500 8501 8502 8503 8504 8505 8506 8507 8508 8509 8510 8511 8512 8513 8514 8515 8516 8517 8518 8519 8520 8521 8522 8523 8524 8525 8526 8527 8528 8529 8530 8531 8532 8533 8534 8535 8536 8537 8538 8539 8540 8541 8542 8543 8544 8545 8546 8547 8548 8549 8550 8551 8552 8553 8554 8555 8556 8557 8558 8559 8560 8561 8562 8563 8564 8565 8566 8567 8568 8569 8570 8571 8572 8573 8574 8575 8576 8577 8578 8579 8580 8581 8582 8583 8584 8585 8586 8587 8588 8589 8590 8591 8592 8593 8594 8595 8596 8597 8598 8599 8600 8601 8602 8603 8604 8605 8606 8607 8608 8609 8610 8611 8612 8613 8614 8615 8616 8617 8618 8619 8620 8621 8622 8623 8624 8625 8626 8627 8628 8629 8630 8631 8632 8633 8634 8635 8636 8637 8638 8639 8640 8641 8642 8643 8644 8645 8646 8647 8648 8649 8650 8651 8652 8653 8654 8655 8656 8657 8658 8659 8660 8661 8662 8663 8664 8665 8666 8667 8668 8669 8670 8671 8672 8673 8674 8675 8676 8677 8678 8679 8680 8681 8682 8683 8684 8685 8686 8687 8688 8689 8690 8691 8692 8693 8694 8695 8696 8697 8698 8699

+
+
+
+
+ + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + + + + + + + + + + + + + +
diff --git a/external/rlbench/urdfs/panda/meshes/Pandalink6visual_vis_3.dae b/external/rlbench/urdfs/panda/meshes/Pandalink6visual_vis_3.dae new file mode 100644 index 0000000000000000000000000000000000000000..0f17bff0fd438f0f64c1a0713e1985937547a272 --- /dev/null +++ b/external/rlbench/urdfs/panda/meshes/Pandalink6visual_vis_3.dae @@ -0,0 +1,84 @@ + + + + + Assimp + Assimp Exporter + + 2023-09-26T11:24:21 + 2023-09-26T11:24:21 + + Y_UP + + + + + + + + 0 0 0 4.5895327e-41 + + + 0.40000001 0.40000001 0.40000001 4.5893926e-41 + + + 0.40000001 0.40000001 0.40000001 4.5893926e-41 + + + 0.25 0.25 0.25 -3.0261091e+37 + + + + + + + + + + + + + + + + -0.001339097 0.060543343 0.0595957 -0.00033806908 0.060561012 0.058949407 -0.001665579 0.061177824 0.058805238 0.0098810513 0.062002208 0.049960975 0.012717659 0.0623121 0.050793182 0.010244869 0.062639922 0.049780902 -0.001339097 0.060543343 0.0595957 -0.001665579 0.061177824 0.058805238 -0.0022946468 0.060586724 0.058598801 0.012889992 0.06314335 0.049750008 0.010244869 0.062639922 0.049780902 0.012717659 0.0623121 0.050793182 -0.0013479074 0.06074696 0.055461742 -0.0022946468 0.060586724 0.058598801 -0.0012612169 0.061226916 0.055996187 -0.0022946468 0.060586724 0.058598801 -0.001665579 0.061177824 0.058805238 -0.0012612169 0.061226916 0.055996187 0.010332133 0.062842093 0.04909787 0.010244869 0.062639922 0.049780902 0.012889992 0.06314335 0.049750008 -0.0012612169 0.061226916 0.055996187 -0.00051115197 0.061264828 0.055864494 -0.0013479074 0.06074696 0.055461742 -0.0013479074 0.06074696 0.055461742 -0.00051115197 0.061264828 0.055864494 0.00020959288 0.060711633 0.056030326 -0.001665579 0.061177824 0.058805238 -0.00051115197 0.061264828 0.055864494 -0.0012612169 0.061226916 0.055996187 -0.00051115197 0.061264828 0.055864494 -0.001665579 0.061177824 0.058805238 -0.00033806908 0.060561012 0.058949407 0.013172268 0.062658779 0.048863642 0.013357664 0.063009232 0.049416095 0.013738932 0.062567592 0.05016356 -0.00051115197 0.061264828 0.055864494 -0.00033806908 0.060561012 0.058949407 0.00020959288 0.060711633 0.056030326 -0.01106588 0.062953718 0.044103578 -0.010234956 0.063388325 0.044259645 -0.010261827 0.062950812 0.043681018 -0.01052504 0.062577091 0.045625895 -0.010483846 0.063289396 0.045118812 -0.010234956 0.063388325 0.044259645 -0.010234956 0.063388325 0.044259645 -0.01106588 0.062953718 0.044103578 -0.01052504 0.062577091 0.045625895 -0.0076913168 0.063064367 0.045090567 -0.010483846 0.063289396 0.045118812 -0.0079686632 0.062236208 0.046127517 -0.0079686632 0.062236208 0.046127517 -0.010483846 0.063289396 0.045118812 -0.01052504 0.062577091 0.045625895 -0.010234956 0.063388325 0.044259645 -0.010483846 0.063289396 0.045118812 -0.0076913168 0.063064367 0.045090567 -0.0079686632 0.062236208 0.046127517 -0.0071953926 0.062483199 0.044501025 -0.0076913168 0.063064367 0.045090567 -0.010234956 0.063388325 0.044259645 -0.0076913168 0.063064367 0.045090567 -0.0071953926 0.062483199 0.044501025 0.013738932 0.062567592 0.05016356 0.013357664 0.063009232 0.049416095 0.012717659 0.0623121 0.050793182 -0.010234956 0.063388325 0.044259645 -0.0071953926 0.062483199 0.044501025 -0.010261827 0.062950812 0.043681018 0.012717659 0.0623121 0.050793182 0.013357664 0.063009232 0.049416095 0.012889992 0.06314335 0.049750008 0.004610931 0.065029949 0.035903323 0.0032643713 0.065148458 0.035922583 0.0038392833 0.064369015 0.038487852 0.0048250644 0.06468647 0.035883635 0.003673984 0.064932413 0.034911003 0.004610931 0.065029949 0.035903323 0.004610931 0.065029949 0.035903323 0.003673984 0.064932413 0.034911003 0.0032643713 0.065148458 0.035922583 0.010332133 0.062842093 0.04909787 0.013357664 0.063009232 0.049416095 0.010540963 0.062349357 0.048236057 0.010540963 0.062349357 0.048236057 0.013357664 0.063009232 0.049416095 0.013172268 0.062658779 0.048863642 0.0028748892 0.064686596 0.035526231 0.0032643713 0.065148458 0.035922583 0.003673984 0.064932413 0.034911003 0.010332133 0.062842093 0.04909787 0.012889992 0.06314335 0.049750008 0.013357664 0.063009232 0.049416095 0.0024890662 0.064208977 0.038231295 0.0038392833 0.064369015 0.038487852 0.0032643713 0.065148458 0.035922583 0.0028748892 0.064686596 0.035526231 0.0024890662 0.064208977 0.038231295 0.0032643713 0.065148458 0.035922583 0.010540963 0.062349357 0.048236057 0.009580276 0.062123615 0.048922095 0.010332133 0.062842093 0.04909787 0.0041636392 0.06383206 0.038592689 0.0038392833 0.064369015 0.038487852 0.0024949068 0.063747577 0.038620129 0.0024949068 0.063747577 0.038620129 0.0038392833 0.064369015 0.038487852 0.0024890662 0.064208977 0.038231295 0.0024949068 0.063747577 0.038620129 0.0024890662 0.064208977 0.038231295 0.0028748892 0.064686596 0.035526231 0.004610931 0.065029949 0.035903323 0.0038392833 0.064369015 0.038487852 0.0048250644 0.06468647 0.035883635 0.0048250644 0.06468647 0.035883635 0.0038392833 0.064369015 0.038487852 0.0041636392 0.06383206 0.038592689 0.010244869 0.062639922 0.049780902 0.010332133 0.062842093 0.04909787 0.009580276 0.062123615 0.048922095 0.0098810513 0.062002208 0.049960975 0.010244869 0.062639922 0.049780902 0.009580276 0.062123615 0.048922095 + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122

+
+
+
+
+ + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + + + + + + + + + + + + + +
diff --git a/external/rlbench/urdfs/panda/meshes/Pandalink6visual_vis_4.dae b/external/rlbench/urdfs/panda/meshes/Pandalink6visual_vis_4.dae new file mode 100644 index 0000000000000000000000000000000000000000..41ab3e7c81c3eecd053d831fb730997850fea480 --- /dev/null +++ b/external/rlbench/urdfs/panda/meshes/Pandalink6visual_vis_4.dae @@ -0,0 +1,84 @@ + + + + + Assimp + Assimp Exporter + + 2023-09-26T11:24:21 + 2023-09-26T11:24:21 + + Y_UP + + + + + + + + 0 0 0 4.5895327e-41 + + + 0.40000001 0.40000001 0.40000001 4.5893926e-41 + + + 0.40000001 0.40000001 0.40000001 4.5893926e-41 + + + 0.25 0.25 0.25 -3.0261091e+37 + + + + + + + + + + + + + + + + 0.035114538 0.059978012 0.044521146 0.034513954 0.060739264 0.039357301 0.034543078 0.060771022 0.040228434 0.020092899 0.052833162 0.07500536 0.0087819388 0.064138211 0.013473309 -0.0046299719 0.051904541 0.07322564 0.027133124 0.063410625 0.025170637 0.026901513 0.063242219 0.024558008 0.024706556 0.063863225 0.02284288 0.035114538 0.059978012 0.044521146 0.035144363 0.059196066 0.048617668 0.035266876 0.059795536 0.04448618 0.035534151 0.059712049 0.040762477 0.021263501 0.063417569 0.018710867 0.0087819388 0.064138211 0.013473309 0.035144363 0.059196066 0.048617668 0.034261014 0.057974238 0.054687437 0.034999289 0.058394898 0.051577438 0.020092899 0.052833162 0.07500536 0.024272094 0.053386036 0.071982749 0.0087819388 0.064138211 0.013473309 0.033375978 0.057139367 0.057932317 0.032497752 0.057000991 0.059741288 0.031639583 0.056345642 0.061869886 0.035534151 0.059712049 0.040762477 0.0087819388 0.064138211 0.013473309 0.031867098 0.055440921 0.062662415 0.031867098 0.055440921 0.062662415 0.0087819388 0.064138211 0.013473309 0.024272094 0.053386036 0.071982749 0.032497752 0.057000991 0.059741288 0.030451847 0.056142133 0.063764773 0.031639583 0.056345642 0.061869886 0.026721779 0.055102203 0.068730138 0.024682892 0.054606143 0.070843995 0.02658445 0.054826081 0.069049284 0.019336527 0.053755548 0.074822918 0.014936983 0.052628279 0.077552624 0.019426009 0.053482469 0.074903414 0.0087819388 0.064138211 0.013473309 0.021263501 0.063417569 0.018710867 0.012107361 0.063998401 0.014196934 0.034513954 0.060739264 0.039357301 0.035114538 0.059978012 0.044521146 0.035266876 0.059795536 0.04448618 -0.0046299719 0.051904541 0.07322564 0.01135619 0.049817421 0.080351233 0.020092899 0.052833162 0.07500536 -0.0026121074 0.046228841 0.082711503 0.007855013 0.048137669 0.081953913 -0.0046299719 0.051904541 0.07322564 0.024706556 0.063863225 0.02284288 0.026901513 0.063242219 0.024558008 0.021155361 0.064117149 0.019481054 -0.0046299719 0.051904541 0.07322564 0.007855013 0.048137669 0.081953913 0.01135619 0.049817421 0.080351233 0.032915514 0.061596379 0.034192722 0.034543078 0.060771022 0.040228434 0.034513954 0.060739264 0.039357301 0.02658445 0.054826081 0.069049284 0.024682892 0.054606143 0.070843995 0.019426009 0.053482469 0.074903414 0.019426009 0.053482469 0.074903414 0.024682892 0.054606143 0.070843995 0.019336527 0.053755548 0.074822918 -0.0076543437 0.063472137 0.013441889 0.0087869 0.063596442 0.013418875 -0.00016175467 0.063884504 0.012379347 0.035266876 0.059795536 0.04448618 0.035144363 0.059196066 0.048617668 0.034999289 0.058394898 0.051577438 0.0087869 0.063596442 0.013418875 -0.015847323 0.062579587 0.016731717 -0.030510025 0.059067853 0.032986827 0.019426009 0.053482469 0.074903414 0.014936983 0.052628279 0.077552624 0.014208774 0.052048258 0.078151725 0.0087869 0.063596442 0.013418875 -0.030510025 0.059067853 0.032986827 -0.032708872 0.057729106 0.040190019 0.033375978 0.057139367 0.057932317 0.034261014 0.057974238 0.054687437 0.032497752 0.057000991 0.059741288 0.0087869 0.063596442 0.013418875 -0.0076543437 0.063472137 0.013441889 -0.015847323 0.062579587 0.016731717 -0.00016175467 0.063884504 0.012379347 0.0087869 0.063596442 0.013418875 0.0045582228 0.064002581 0.012547555 0.0075198165 0.049408175 0.081637777 0.010124684 0.050281696 0.080585666 0.011927851 0.051320471 0.07946793 0.031639583 0.056345642 0.061869886 0.030451847 0.056142133 0.063764773 0.02658445 0.054826081 0.069049284 -0.028847547 0.053419463 0.062790737 -0.0046705585 0.051764037 0.073401578 -0.032460902 0.055203211 0.053187944 -0.032708872 0.057729106 0.040190019 -0.0046705585 0.051764037 0.073401578 0.0087869 0.063596442 0.013418875 -0.032460902 0.055203211 0.053187944 -0.0046705585 0.051764037 0.073401578 -0.032708872 0.057729106 0.040190019 -0.017962607 0.047451723 0.077646561 -0.0046705585 0.051764037 0.073401578 -0.021295013 0.049297284 0.074227229 -0.0046705585 0.051764037 0.073401578 -0.02569793 0.052466672 0.067516491 -0.021295013 0.049297284 0.074227229 -0.017962607 0.047451723 0.077646561 -0.010066437 0.046146356 0.081104562 -0.0046705585 0.051764037 0.073401578 -0.02569793 0.052466672 0.067516491 -0.0046705585 0.051764037 0.073401578 -0.028847547 0.053419463 0.062790737 -0.004847277 0.047273036 0.082068026 0.0017599737 0.047671873 0.082703367 0.0022028617 0.047995981 0.082608543 0.026901513 0.063242219 0.024558008 0.027133124 0.063410625 0.025170637 0.030467967 0.062638976 0.029754268 0.029270068 0.062759012 0.027552115 0.026901513 0.063242219 0.024558008 0.030467967 0.062638976 0.029754268 0.029270068 0.062759012 0.027552115 0.030467967 0.062638976 0.029754268 0.032129165 0.062091846 0.032809593 -0.013462855 0.063072644 0.040492885 -0.013378588 0.062949389 0.040521245 -0.010511506 0.06389343 0.036175542 -0.010446535 0.063766941 0.036226843 -0.010511506 0.06389343 0.036175542 -0.013378588 0.062949389 0.040521245 0.032915514 0.061596379 0.034192722 0.029270068 0.062759012 0.027552115 0.032129165 0.062091846 0.032809593 0.011927851 0.051320471 0.07946793 0.014208774 0.052048258 0.078151725 0.014936983 0.052628279 0.077552624 -0.0070153149 0.064462095 0.033421464 -0.010446535 0.063766941 0.036226843 -0.0045850184 0.064571559 0.032351021 0.010124684 0.050281696 0.080585666 0.014208774 0.052048258 0.078151725 0.011927851 0.051320471 0.07946793 0.010124684 0.050281696 0.080585666 0.0075198165 0.049408175 0.081637777 0.0059073907 0.048507936 0.082324058 0.0059073907 0.048507936 0.082324058 0.0075198165 0.049408175 0.081637777 0.0042553623 0.048268043 0.082564287 -0.0026229245 0.06487903 0.031661972 -0.0070153149 0.064462095 0.033421464 -0.0045850184 0.064571559 0.032351021 0.034999289 0.058394898 0.051577438 0.034261014 0.057974238 0.054687437 0.033375978 0.057139367 0.057932317 0.02658445 0.054826081 0.069049284 0.030451847 0.056142133 0.063764773 0.026721779 0.055102203 0.068730138 -0.0026229245 0.06487903 0.031661972 -0.0045850184 0.064571559 0.032351021 -7.3908021e-05 0.064894512 0.03133348 0.0076580737 0.064974196 0.013947017 0.011978714 0.06485974 0.01502111 0.0089584701 0.064763464 0.013989095 0.013819313 0.06460651 0.015474773 0.017789515 0.064557873 0.017562587 0.021155361 0.064117149 0.019481054 0.0017599737 0.047671873 0.082703367 0.0042553623 0.048268043 0.082564287 0.0022028617 0.047995981 0.082608543 0.0059073907 0.048507936 0.082324058 0.0042553623 0.048268043 0.082564287 0.0017599737 0.047671873 0.082703367 0.013819313 0.06460651 0.015474773 0.0089584701 0.064763464 0.013989095 0.011978714 0.06485974 0.01502111 0.013819313 0.06460651 0.015474773 0.011978714 0.06485974 0.01502111 0.017789515 0.064557873 0.017562587 0.032129165 0.062091846 0.032809593 0.034543078 0.060771022 0.040228434 0.032915514 0.061596379 0.034192722 0.0054287207 0.06504453 0.031787809 -7.3908021e-05 0.064894512 0.03133348 0.0047485037 0.064899057 0.031681381 -0.03202951 0.056224849 0.052445322 -0.031530023 0.056185342 0.054087061 -0.032301191 0.056956992 0.049744684 -0.032595363 0.05721917 0.047131624 -0.03202951 0.056224849 0.052445322 -0.032301191 0.056956992 0.049744684 -0.032595363 0.05721917 0.047131624 -0.032301191 0.056956992 0.049744684 -0.032430511 0.057795398 0.045571547 -0.010446535 0.063766941 0.036226843 -0.0070153149 0.064462095 0.033421464 -0.010511506 0.06389343 0.036175542 -0.028625306 0.060467929 0.030653711 -0.027515784 0.061057303 0.029107908 -0.024496498 0.061805133 0.024776418 -0.032595363 0.05721917 0.047131624 -0.032430511 0.057795398 0.045571547 -0.031881183 0.058715418 0.039529074 -0.031881183 0.058715418 0.039529074 -0.032430511 0.057795398 0.045571547 -0.032247588 0.058320396 0.042765573 -0.031881183 0.058715418 0.039529074 -0.032247588 0.058320396 0.042765573 -0.031420358 0.059190415 0.038097866 -0.031881183 0.058715418 0.039529074 -0.031420358 0.059190415 0.038097866 -0.030041523 0.060026292 0.034012429 -0.02397228 0.052967116 0.069197685 -0.027340963 0.05433768 0.064079791 -0.024124227 0.05276718 0.069143295 -0.028625306 0.060467929 0.030653711 -0.031881183 0.058715418 0.039529074 -0.030041523 0.060026292 0.034012429 -0.028625306 0.060467929 0.030653711 -0.030041523 0.060026292 0.034012429 -0.027515784 0.061057303 0.029107908 -0.02271373 0.062312156 0.023033943 -0.016478311 0.063451305 0.018262133 -0.020422176 0.062634446 0.020789858 -0.020422176 0.062634446 0.020789858 -0.016478311 0.063451305 0.018262133 -0.014867509 0.063500926 0.017105239 -0.024496498 0.061805133 0.024776418 -0.02271373 0.062312156 0.023033943 -0.020422176 0.062634446 0.020789858 -0.014867509 0.063500926 0.017105239 -0.012472793 0.06396734 0.01619296 -0.01102191 0.063904822 0.015329858 -0.012472793 0.06396734 0.01619296 -0.014867509 0.063500926 0.017105239 -0.016478311 0.063451305 0.018262133 -0.0061337082 0.06453032 0.01412213 -0.00088162778 0.064634167 0.01317687 -0.01102191 0.063904822 0.015329858 -0.01102191 0.063904822 0.015329858 -0.0083982358 0.06436266 0.014711392 -0.0061337082 0.06453032 0.01412213 -0.00088162778 0.064634167 0.01317687 -0.0061337082 0.06453032 0.01412213 -0.0029339003 0.06470935 0.013533936 -0.00088162778 0.064634167 0.01317687 0.0022426937 0.064920574 0.0133361 0.0076580737 0.064974196 0.013947017 0.0089584701 0.064763464 0.013989095 -0.00088162778 0.064634167 0.01317687 0.0076580737 0.064974196 0.013947017 -0.017014552 0.048593074 0.077737786 -0.018752845 0.04913041 0.076406084 -0.014870418 0.048032932 0.078916192 -0.018752845 0.04913041 0.076406084 -0.017014552 0.048593074 0.077737786 -0.020207068 0.050271861 0.074675322 -0.022808846 0.052146427 0.071057461 -0.018752845 0.04913041 0.076406084 -0.020207068 0.050271861 0.074675322 -0.024124227 0.05276718 0.069143295 -0.018752845 0.04913041 0.076406084 -0.022808846 0.052146427 0.071057461 -0.024124227 0.05276718 0.069143295 -0.022808846 0.052146427 0.071057461 -0.02397228 0.052967116 0.069197685 -0.0013272932 0.059501387 0.062899254 -0.0021831589 0.059380215 0.062621705 -0.0065220096 0.059590884 0.061015103 -0.024124227 0.05276718 0.069143295 -0.027340963 0.05433768 0.064079791 -0.029113317 0.05477256 0.061029866 -0.0065220096 0.059590884 0.061015103 -0.0079264697 0.059789542 0.060245935 -0.0013272932 0.059501387 0.062899254 -0.030600846 0.055652589 0.057163801 -0.030623883 0.055292636 0.057568073 -0.029113317 0.05477256 0.061029866 -0.011130893 0.060121763 0.057225294 -0.0079264697 0.059789542 0.060245935 -0.0065220096 0.059590884 0.061015103 -0.030623883 0.055292636 0.057568073 -0.030600846 0.055652589 0.057163801 -0.031530023 0.056185342 0.054087061 -0.010518624 0.060116898 0.058077827 -0.0079264697 0.059789542 0.060245935 -0.011130893 0.060121763 0.057225294 -0.03202951 0.056224849 0.052445322 -0.030623883 0.055292636 0.057568073 -0.031530023 0.056185342 0.054087061 0.026889322 0.063901633 0.033099186 0.029371193 0.06314858 0.032142494 0.024622476 0.064448364 0.030512845 -0.010518624 0.060116898 0.058077827 -0.011130893 0.060121763 0.057225294 -0.013246076 0.06071512 0.054199968 0.028436569 0.063342974 0.029237924 0.027133124 0.063410625 0.025170637 0.024622476 0.064448364 0.030512845 0.026889322 0.063901633 0.033099186 0.027783629 0.063585714 0.035399515 0.029448746 0.063075155 0.035999082 0.028436569 0.063342974 0.029237924 0.029371193 0.06314858 0.032142494 0.030467967 0.062638976 0.029754268 0.032129165 0.062091846 0.032809593 0.030467967 0.062638976 0.029754268 0.029371193 0.06314858 0.032142494 -0.011130893 0.060121763 0.057225294 -0.013268735 0.060638886 0.053909164 -0.013246076 0.06071512 0.054199968 0.030486226 0.05770864 0.060519051 0.030451847 0.056142133 0.063764773 0.032497752 0.057000991 0.059741288 0.030486226 0.05770864 0.060519051 0.029460626 0.058703512 0.059070718 0.028240871 0.056985792 0.064237587 0.013439444 0.054453671 0.075722471 0.014936983 0.052628279 0.077552624 0.019336527 0.053755548 0.074822918 0.01764209 0.065286987 0.033703368 0.015363481 0.065206282 0.035274725 0.019735333 0.064504974 0.039571676 -0.013268735 0.060638886 0.053909164 -0.014564948 0.061321884 0.050509684 -0.013246076 0.06071512 0.054199968 0.01764209 0.065286987 0.033703368 0.019735333 0.064504974 0.039571676 0.023306018 0.064449333 0.037047569 0.028240871 0.056985792 0.064237587 0.029460626 0.058703512 0.059070718 0.026317798 0.057632092 0.064388379 0.013439444 0.054453671 0.075722471 0.012575257 0.052944042 0.077678092 0.014936983 0.052628279 0.077552624 -0.014564948 0.061321884 0.050509684 -0.013268735 0.060638886 0.053909164 -0.014814259 0.061677415 0.047738068 0.030486226 0.05770864 0.060519051 0.028240871 0.056985792 0.064237587 0.030451847 0.056142133 0.063764773 0.019232042 0.06525857 0.032492634 0.024612086 0.0643875 0.034778345 0.021089152 0.065076284 0.030812584 0.021089152 0.065076284 0.030812584 0.024622476 0.064448364 0.030512845 0.023222852 0.06464465 0.028126471 0.012575257 0.052944042 0.077678092 0.013439444 0.054453671 0.075722471 0.010617686 0.053147968 0.077634834 0.013234864 0.059334718 0.066751912 0.017502435 0.059043229 0.066237055 0.015870824 0.059831735 0.064459294 0.024622476 0.064448364 0.030512845 0.022795975 0.06458655 0.025332538 0.023222852 0.06464465 0.028126471 0.012575257 0.052944042 0.077678092 0.011927851 0.051320471 0.07946793 0.014936983 0.052628279 0.077552624 -0.013462855 0.063072644 0.040492885 -0.014814259 0.061677415 0.047738068 -0.013378588 0.062949389 0.040521245 0.012575257 0.052944042 0.077678092 0.010617686 0.053147968 0.077634834 0.011927851 0.051320471 0.07946793 0.028240871 0.056985792 0.064237587 0.026317798 0.057632092 0.064388379 0.024881156 0.055951692 0.068678655 0.024612086 0.0643875 0.034778345 0.023306018 0.064449333 0.037047569 0.027783629 0.063585714 0.035399515 0.028240871 0.056985792 0.064237587 0.024881156 0.055951692 0.068678655 0.026721779 0.055102203 0.068730138 0.028240871 0.056985792 0.064237587 0.026721779 0.055102203 0.068730138 0.030451847 0.056142133 0.063764773 0.015430684 0.061314717 0.055053812 0.015941821 0.061416451 0.053796764 0.013009872 0.060600206 0.058091216 0.010617686 0.053147968 0.077634834 0.0079506403 0.051824193 0.079203665 0.0075198165 0.049408175 0.081637777 0.010617686 0.053147968 0.077634834 0.0075198165 0.049408175 0.081637777 0.011927851 0.051320471 0.07946793 0.024612086 0.0643875 0.034778345 0.027783629 0.063585714 0.035399515 0.026889322 0.063901633 0.033099186 0.011287346 0.060385026 0.059784278 0.013009872 0.060600206 0.058091216 0.007149159 0.059764825 0.061961759 0.024881156 0.055951692 0.068678655 0.026317798 0.057632092 0.064388379 0.023422444 0.056906279 0.067880638 0.026889322 0.063901633 0.033099186 0.029448746 0.063075155 0.035999082 0.029371193 0.06314858 0.032142494 0.028436569 0.063342974 0.029237924 0.024622476 0.064448364 0.030512845 0.029371193 0.06314858 0.032142494 0.011287346 0.060385026 0.059784278 0.007149159 0.059764825 0.061961759 0.0075028343 0.059907474 0.061944265 0.028436569 0.063342974 0.029237924 0.030467967 0.062638976 0.029754268 0.027133124 0.063410625 0.025170637 0.0079506403 0.051824193 0.079203665 0.0042553623 0.048268043 0.082564287 0.0075198165 0.049408175 0.081637777 0.0079506403 0.051824193 0.079203665 0.0026689458 0.049962882 0.080793895 0.0042553623 0.048268043 0.082564287 0.0018888814 0.059559636 0.063135587 0.0075028343 0.059907474 0.061944265 0.007149159 0.059764825 0.061961759 0.016896421 0.058283664 0.068389855 0.01457062 0.057715982 0.070357293 0.020221135 0.057495002 0.068535432 0.0018888814 0.059559636 0.063135587 0.007149159 0.059764825 0.061961759 -0.0021831589 0.059380215 0.062621705 0.032129165 0.062091846 0.032809593 0.029371193 0.06314858 0.032142494 0.032054961 0.062079165 0.037680738 0.0042553623 0.048268043 0.082564287 0.0026689458 0.049962882 0.080793895 0.0022028617 0.047995981 0.082608543 0.014759606 0.060607191 0.061627839 0.012942569 0.060633995 0.06138093 0.010466859 0.060267124 0.063131273 0.0022028617 0.047995981 0.082608543 0.0026689458 0.049962882 0.080793895 -0.0011147126 0.049554609 0.08071246 -0.0013272932 0.059501387 0.062899254 0.0018888814 0.059559636 0.063135587 -0.0021831589 0.059380215 0.062621705 -0.0011147126 0.049554609 0.08071246 -0.004019659 0.049433459 0.08033862 0.0022028617 0.047995981 0.082608543 0.012937811 0.059824862 0.065147094 0.015870824 0.059831735 0.064459294 0.014759606 0.060607191 0.061627839 0.014759606 0.060607191 0.061627839 0.010466859 0.060267124 0.063131273 0.012937811 0.059824862 0.065147094 -0.004019659 0.049433459 0.08033862 -0.004847277 0.047273036 0.082068026 0.0022028617 0.047995981 0.082608543 0.024881156 0.055951692 0.068678655 0.024682892 0.054606143 0.070843995 0.026721779 0.055102203 0.068730138 0.012937811 0.059824862 0.065147094 0.013234864 0.059334718 0.066751912 0.015870824 0.059831735 0.064459294 -0.004019659 0.049433459 0.08033862 -0.0076512471 0.04844711 0.080541924 -0.004847277 0.047273036 0.082068026 0.0025306712 0.065920018 0.029114664 0.010291418 0.065702446 0.031500496 0.0062319394 0.065977886 0.028886151 0.010291418 0.065702446 0.031500496 0.0079426877 0.065856561 0.02932121 0.0062319394 0.065977886 0.028886151 0.0079426877 0.065856561 0.02932121 0.010291418 0.065702446 0.031500496 0.012749933 0.06555286 0.031891584 0.016896421 0.058283664 0.068389855 0.017502435 0.059043229 0.066237055 0.013234864 0.059334718 0.066751912 0.016896421 0.058283664 0.068389855 0.020221135 0.057495002 0.068535432 0.017502435 0.059043229 0.066237055 0.012749933 0.06555286 0.031891584 0.010291418 0.065702446 0.031500496 0.015120368 0.065371893 0.033820096 0.010291418 0.065702446 0.031500496 0.015363481 0.065206282 0.035274725 0.015120368 0.065371893 0.033820096 0.019736886 0.056371298 0.070882343 0.023422444 0.056906279 0.067880638 0.020221135 0.057495002 0.068535432 0.019736886 0.056371298 0.070882343 0.024881156 0.055951692 0.068678655 0.023422444 0.056906279 0.067880638 0.01457062 0.057715982 0.070357293 0.017463198 0.055363607 0.073431142 0.020221135 0.057495002 0.068535432 0.019736886 0.056371298 0.070882343 0.020634996 0.055268265 0.072187915 0.024881156 0.055951692 0.068678655 0.017463198 0.055363607 0.073431142 0.019736886 0.056371298 0.070882343 0.020221135 0.057495002 0.068535432 0.015363481 0.065206282 0.035274725 0.018896986 0.064122945 0.042020198 0.019735333 0.064504974 0.039571676 0.024881156 0.055951692 0.068678655 0.020634996 0.055268265 0.072187915 0.024682892 0.054606143 0.070843995 0.018896986 0.064122945 0.042020198 0.020231577 0.063808396 0.043349408 0.019735333 0.064504974 0.039571676 0.020634996 0.055268265 0.072187915 0.017463198 0.055363607 0.073431142 0.019336527 0.053755548 0.074822918 0.015831888 0.06372159 0.040407602 0.016701939 0.063528344 0.042364735 0.014744997 0.064261504 0.038118504 0.020634996 0.055268265 0.072187915 0.019736886 0.056371298 0.070882343 0.017463198 0.055363607 0.073431142 0.020634996 0.055268265 0.072187915 0.019336527 0.053755548 0.074822918 0.024682892 0.054606143 0.070843995 0.0088278325 0.065568171 0.017547173 0.011375106 0.065251455 0.016647389 0.0076580737 0.064974196 0.013947017 0.0076580737 0.064974196 0.013947017 0.011375106 0.065251455 0.016647389 0.011978714 0.06485974 0.01502111 0.011375106 0.065251455 0.016647389 0.0088278325 0.065568171 0.017547173 0.013719621 0.06539394 0.019209014 0.018896986 0.064122945 0.042020198 0.019715294 0.063313633 0.046855826 0.020231577 0.063808396 0.043349408 0.0054287207 0.06504453 0.031787809 0.0047485037 0.064899057 0.031681381 0.0090848161 0.064777106 0.033303019 0.015363481 0.065206282 0.035274725 0.01764209 0.065286987 0.033703368 0.015120368 0.065371893 0.033820096 0.011375106 0.065251455 0.016647389 0.013719621 0.06539394 0.019209014 0.016128536 0.065017797 0.018501027 0.011375106 0.065251455 0.016647389 0.016128536 0.065017797 0.018501027 0.011978714 0.06485974 0.01502111 0.0090848161 0.064777106 0.033303019 0.0098156901 0.064822517 0.033688299 0.0054287207 0.06504453 0.031787809 0.019715294 0.063313633 0.046855826 0.018872174 0.062274273 0.052754074 0.020634163 0.062969491 0.048241902 0.010466859 0.060267124 0.063131273 0.0055546323 0.059813052 0.064948343 0.012937811 0.059824862 0.065147094 0.014744997 0.064261504 0.038118504 0.0098156901 0.064822517 0.033688299 0.0090848161 0.064777106 0.033303019 0.0090848161 0.064777106 0.033303019 0.014627538 0.064050525 0.038324784 0.014744997 0.064261504 0.038118504 0.016128536 0.065017797 0.018501027 0.017789515 0.064557873 0.017562587 0.011978714 0.06485974 0.01502111 0.016128536 0.065017797 0.018501027 0.013719621 0.06539394 0.019209014 0.018009244 0.065098971 0.021581799 0.016128536 0.065017797 0.018501027 0.018009244 0.065098971 0.021581799 0.020954784 0.064586468 0.021435922 0.016128536 0.065017797 0.018501027 0.020954784 0.064586468 0.021435922 0.017789515 0.064557873 0.017562587 0.014627538 0.064050525 0.038324784 0.015831888 0.06372159 0.040407602 0.014744997 0.064261504 0.038118504 0.020634163 0.062969491 0.048241902 0.018872174 0.062274273 0.052754074 0.018685307 0.061757814 0.055517625 0.01764209 0.065286987 0.033703368 0.023306018 0.064449333 0.037047569 0.019232042 0.06525857 0.032492634 0.020954784 0.064586468 0.021435922 0.018009244 0.065098971 0.021581799 0.022795975 0.06458655 0.025332538 0.018872174 0.062274273 0.052754074 0.016021855 0.061278116 0.05794305 0.018685307 0.061757814 0.055517625 0.020954784 0.064586468 0.021435922 0.021155361 0.064117149 0.019481054 0.017789515 0.064557873 0.017562587 0.012937811 0.059824862 0.065147094 0.010371546 0.059322715 0.066660337 0.013234864 0.059334718 0.066751912 0.0055546323 0.059813052 0.064948343 0.0086176135 0.059732053 0.065388195 0.012937811 0.059824862 0.065147094 0.018685307 0.061757814 0.055517625 0.016021855 0.061278116 0.05794305 0.014759606 0.060607191 0.061627839 0.017376844 0.062709056 0.046583533 0.016701939 0.063528344 0.042364735 0.015831888 0.06372159 0.040407602 0.017487209 0.062616847 0.047818244 0.016701939 0.063528344 0.042364735 0.017376844 0.062709056 0.046583533 0.022795975 0.06458655 0.025332538 0.024706556 0.063863225 0.02284288 0.020954784 0.064586468 0.021435922 0.020954784 0.064586468 0.021435922 0.024706556 0.063863225 0.02284288 0.021155361 0.064117149 0.019481054 0.012937811 0.059824862 0.065147094 0.0086176135 0.059732053 0.065388195 0.010371546 0.059322715 0.066660337 0.021089152 0.065076284 0.030812584 0.024612086 0.0643875 0.034778345 0.024622476 0.064448364 0.030512845 0.013234864 0.059334718 0.066751912 0.01159212 0.058630664 0.068785422 0.016896421 0.058283664 0.068389855 0.022795975 0.06458655 0.025332538 0.027133124 0.063410625 0.025170637 0.024706556 0.063863225 0.02284288 0.017487209 0.062616847 0.047818244 0.017376844 0.062709056 0.046583533 0.015941821 0.061416451 0.053796764 0.022795975 0.06458655 0.025332538 0.024622476 0.064448364 0.030512845 0.027133124 0.063410625 0.025170637 0.013234864 0.059334718 0.066751912 0.010371546 0.059322715 0.066660337 0.01159212 0.058630664 0.068785422 0.024622476 0.064448364 0.030512845 0.024612086 0.0643875 0.034778345 0.026889322 0.063901633 0.033099186 0.016896421 0.058283664 0.068389855 0.01159212 0.058630664 0.068785422 0.01457062 0.057715982 0.070357293 0.0086176135 0.059732053 0.065388195 0.0055546323 0.059813052 0.064948343 0.0017638333 0.059203506 0.066334039 0.01159212 0.058630664 0.068785422 0.013133016 0.056986004 0.07196407 0.01457062 0.057715982 0.070357293 0.015363481 0.065206282 0.035274725 0.010291418 0.065702446 0.031500496 0.0098156901 0.064822517 0.033688299 0.019715294 0.063313633 0.046855826 0.020634163 0.062969491 0.048241902 0.020231577 0.063808396 0.043349408 0.01457062 0.057715982 0.070357293 0.01485769 0.056622688 0.072261348 0.017463198 0.055363607 0.073431142 -0.0013272932 0.059501387 0.062899254 -0.0079264697 0.059789542 0.060245935 -0.0072395452 0.059750717 0.063325308 -0.013462855 0.063072644 0.040492885 -0.0131241 0.064383991 0.035738118 -0.015682701 0.063586302 0.039974954 0.029448746 0.063075155 0.035999082 0.032054961 0.062079165 0.037680738 0.029371193 0.06314858 0.032142494 0.01457062 0.057715982 0.070357293 0.013133016 0.056986004 0.07196407 0.01485769 0.056622688 0.072261348 -7.3908021e-05 0.064894512 0.03133348 -0.0010494814 0.065808974 0.029227316 -0.0026229245 0.06487903 0.031661972 0.032054961 0.062079165 0.037680738 0.029448746 0.063075155 0.035999082 0.030310279 0.062737457 0.037103739 0.032054961 0.062079165 0.037680738 0.034543078 0.060771022 0.040228434 0.032129165 0.062091846 0.032809593 0.032054961 0.062079165 0.037680738 0.030310279 0.062737457 0.037103739 0.031456172 0.062026113 0.041298516 0.032054961 0.062079165 0.037680738 0.031456172 0.062026113 0.041298516 0.033386823 0.061212037 0.041756336 0.032054961 0.062079165 0.037680738 0.033386823 0.061212037 0.041756336 0.034543078 0.060771022 0.040228434 0.0055546323 0.059813052 0.064948343 -0.0013966424 0.059576817 0.065200292 0.0017638333 0.059203506 0.066334039 -0.010511506 0.06389343 0.036175542 -0.0131241 0.064383991 0.035738118 -0.013462855 0.063072644 0.040492885 0.033386823 0.061212037 0.041756336 0.031456172 0.062026113 0.041298516 0.032020804 0.060966145 0.047284689 0.033386823 0.061212037 0.041756336 0.032020804 0.060966145 0.047284689 0.033516388 0.060536016 0.046145801 0.012942569 0.060633995 0.06138093 0.011287346 0.060385026 0.059784278 0.010466859 0.060267124 0.063131273 -0.0072395452 0.059750717 0.063325308 -0.0079264697 0.059789542 0.060245935 -0.01183412 0.060209498 0.060085714 0.01485769 0.056622688 0.072261348 0.013133016 0.056986004 0.07196407 0.013904799 0.055540998 0.07412643 0.033386823 0.061212037 0.041756336 0.035114538 0.059978012 0.044521146 0.034543078 0.060771022 0.040228434 0.033386823 0.061212037 0.041756336 0.033516388 0.060536016 0.046145801 0.035114538 0.059978012 0.044521146 0.033516388 0.060536016 0.046145801 0.035144363 0.059196066 0.048617668 0.035114538 0.059978012 0.044521146 0.033516388 0.060536016 0.046145801 0.032020804 0.060966145 0.047284689 0.03362472 0.059874143 0.049201861 -0.0010494814 0.065808974 0.029227316 -0.0061168098 0.065466039 0.030521266 -0.0026229245 0.06487903 0.031661972 0.033516388 0.060536016 0.046145801 0.03362472 0.059874143 0.049201861 0.035144363 0.059196066 0.048617668 0.03362472 0.059874143 0.049201861 0.032020804 0.060966145 0.047284689 0.031545006 0.060045753 0.052235831 0.018896986 0.064122945 0.042020198 0.017487209 0.062616847 0.047818244 0.019715294 0.063313633 0.046855826 -0.0013966424 0.059576817 0.065200292 -0.0013200374 0.059220031 0.066123992 0.0017638333 0.059203506 0.066334039 0.03362472 0.059874143 0.049201861 0.031545006 0.060045753 0.052235831 0.032906424 0.05930623 0.052818354 0.0098156901 0.064822517 0.033688299 0.010291418 0.065702446 0.031500496 0.0054287207 0.06504453 0.031787809 -0.010511506 0.06389343 0.036175542 -0.0090915747 0.065064542 0.032276183 -0.0131241 0.064383991 0.035738118 0.011287346 0.060385026 0.059784278 0.0075028343 0.059907474 0.061944265 0.010466859 0.060267124 0.063131273 0.012942569 0.060633995 0.06138093 0.013009872 0.060600206 0.058091216 0.011287346 0.060385026 0.059784278 -0.0070153149 0.064462095 0.033421464 -0.0090915747 0.065064542 0.032276183 -0.010511506 0.06389343 0.036175542 -0.0026229245 0.06487903 0.031661972 -0.0061168098 0.065466039 0.030521266 -0.0070153149 0.064462095 0.033421464 0.018896986 0.064122945 0.042020198 0.016701939 0.063528344 0.042364735 0.017487209 0.062616847 0.047818244 0.03362472 0.059874143 0.049201861 0.032906424 0.05930623 0.052818354 0.035144363 0.059196066 0.048617668 0.01485769 0.056622688 0.072261348 0.013439444 0.054453671 0.075722471 0.017463198 0.055363607 0.073431142 0.032906424 0.05930623 0.052818354 0.034261014 0.057974238 0.054687437 0.035144363 0.059196066 0.048617668 -0.0061168098 0.065466039 0.030521266 -0.0090915747 0.065064542 0.032276183 -0.0070153149 0.064462095 0.033421464 0.01485769 0.056622688 0.072261348 0.013904799 0.055540998 0.07412643 0.013439444 0.054453671 0.075722471 0.032906424 0.05930623 0.052818354 0.031545006 0.060045753 0.052235831 0.032215808 0.058396064 0.056659348 0.032906424 0.05930623 0.052818354 0.032215808 0.058396064 0.056659348 0.034261014 0.057974238 0.054687437 0.014759606 0.060607191 0.061627839 0.016021855 0.061278116 0.05794305 0.012942569 0.060633995 0.06138093 0.016021855 0.061278116 0.05794305 0.013009872 0.060600206 0.058091216 0.012942569 0.060633995 0.06138093 -0.014814259 0.061677415 0.047738068 -0.016828954 0.061690129 0.050796952 -0.014564948 0.061321884 0.050509684 0.032215808 0.058396064 0.056659348 0.031545006 0.060045753 0.052235831 0.029460626 0.058703512 0.059070718 0.032215808 0.058396064 0.056659348 0.029460626 0.058703512 0.059070718 0.030486226 0.05770864 0.060519051 0.010466859 0.060267124 0.063131273 0.0075028343 0.059907474 0.061944265 0.0055546323 0.059813052 0.064948343 0.032215808 0.058396064 0.056659348 0.030486226 0.05770864 0.060519051 0.032497752 0.057000991 0.059741288 0.032215808 0.058396064 0.056659348 0.032497752 0.057000991 0.059741288 0.034261014 0.057974238 0.054687437 0.017463198 0.055363607 0.073431142 0.013439444 0.054453671 0.075722471 0.019336527 0.053755548 0.074822918 -0.0079264697 0.059789542 0.060245935 -0.010518624 0.060116898 0.058077827 -0.01183412 0.060209498 0.060085714 0.024612086 0.0643875 0.034778345 0.019232042 0.06525857 0.032492634 0.023306018 0.064449333 0.037047569 -0.021441771 0.058655147 0.060548332 -0.021532768 0.059543073 0.057515528 -0.024411529 0.058296911 0.058566015 -0.020839734 0.063363537 0.025795629 -0.017533354 0.063752368 0.021346821 -0.020306792 0.063143171 0.022707984 -0.022808846 0.052146427 0.071057461 -0.022914851 0.054145601 0.068370864 -0.02397228 0.052967116 0.069197685 -0.023567209 0.062471941 0.026178639 -0.020306792 0.063143171 0.022707984 -0.02271373 0.062312156 0.023033943 -0.014814259 0.061677415 0.047738068 -0.016828926 0.062966175 0.043403376 -0.016828954 0.061690129 0.050796952 -0.024496498 0.061805133 0.024776418 -0.023567209 0.062471941 0.026178639 -0.02271373 0.062312156 0.023033943 -0.022914851 0.054145601 0.068370864 -0.025453262 0.055185165 0.064612754 -0.02397228 0.052967116 0.069197685 -0.02109321 0.056656688 0.065403186 -0.023792513 0.056614507 0.063420951 -0.025453262 0.055185165 0.064612754 0.016021855 0.061278116 0.05794305 0.015430684 0.061314717 0.055053812 0.013009872 0.060600206 0.058091216 -0.020583708 0.058019653 0.062929764 -0.024411529 0.058296911 0.058566015 -0.023792513 0.056614507 0.063420951 -0.013558804 0.065030821 0.025866985 -0.0096712932 0.065477319 0.02415101 -0.012435689 0.065019302 0.022825874 -0.010518624 0.060116898 0.058077827 -0.013246076 0.06071512 0.054199968 -0.01183412 0.060209498 0.060085714 -0.016954588 0.061157782 0.053785264 -0.016828954 0.061690129 0.050796952 -0.018115707 0.062160213 0.047139864 0.015363481 0.065206282 0.035274725 0.016701939 0.063528344 0.042364735 0.018896986 0.064122945 0.042020198 -0.0096712932 0.065477319 0.02415101 -0.010609457 0.065109044 0.021003345 -0.012435689 0.065019302 0.022825874 -0.023792513 0.056614507 0.063420951 -0.026736567 0.056176767 0.061241496 -0.025453262 0.055185165 0.064612754 -0.015014824 0.064598076 0.023270886 -0.014575055 0.064269125 0.020060014 -0.017533354 0.063752368 0.021346821 -0.023792513 0.056614507 0.063420951 -0.024411529 0.058296911 0.058566015 -0.026658358 0.057588909 0.057820249 0.0075028343 0.059907474 0.061944265 0.0018888814 0.059559636 0.063135587 0.0055546323 0.059813052 0.064948343 -0.02397228 0.052967116 0.069197685 -0.025453262 0.055185165 0.064612754 -0.027340963 0.05433768 0.064079791 -0.0051991497 0.06565015 0.029271374 -0.0010494814 0.065808974 0.029227316 0.0025306712 0.065920018 0.029114664 -0.026736567 0.056176767 0.061241496 -0.027340963 0.05433768 0.064079791 -0.025453262 0.055185165 0.064612754 0.010291418 0.065702446 0.031500496 0.0025306712 0.065920018 0.029114664 0.0054287207 0.06504453 0.031787809 -0.020306792 0.063143171 0.022707984 -0.017533354 0.063752368 0.021346821 -0.016478311 0.063451305 0.018262133 0.015363481 0.065206282 0.035274725 0.014744997 0.064261504 0.038118504 0.016701939 0.063528344 0.042364735 -0.013246076 0.06071512 0.054199968 -0.014607405 0.06075839 0.056575418 -0.01183412 0.060209498 0.060085714 -0.013462855 0.063072644 0.040492885 -0.016828926 0.062966175 0.043403376 -0.014814259 0.061677415 0.047738068 0.018872174 0.062274273 0.052754074 0.015430684 0.061314717 0.055053812 0.016021855 0.061278116 0.05794305 0.0055546323 0.059813052 0.064948343 0.0018888814 0.059559636 0.063135587 -0.0013966424 0.059576817 0.065200292 -0.020306792 0.063143171 0.022707984 -0.016478311 0.063451305 0.018262133 -0.02271373 0.062312156 0.023033943 -0.018115707 0.062160213 0.047139864 -0.016828954 0.061690129 0.050796952 -0.016828926 0.062966175 0.043403376 -0.015014824 0.064598076 0.023270886 -0.012435689 0.065019302 0.022825874 -0.014575055 0.064269125 0.020060014 0.0054287207 0.06504453 0.031787809 0.0025306712 0.065920018 0.029114664 -7.3908021e-05 0.064894512 0.03133348 0.0018888814 0.059559636 0.063135587 -0.0013272932 0.059501387 0.062899254 -0.0013966424 0.059576817 0.065200292 -0.023792513 0.056614507 0.063420951 -0.026658358 0.057588909 0.057820249 -0.026736567 0.056176767 0.061241496 0.018872174 0.062274273 0.052754074 0.015941821 0.061416451 0.053796764 0.015430684 0.061314717 0.055053812 -0.017533354 0.063752368 0.021346821 -0.014575055 0.064269125 0.020060014 -0.016478311 0.063451305 0.018262133 -0.026736567 0.056176767 0.061241496 -0.029113317 0.05477256 0.061029866 -0.027340963 0.05433768 0.064079791 -0.026736567 0.056176767 0.061241496 -0.026658358 0.057588909 0.057820249 -0.028912326 0.056455523 0.057767432 -0.012435689 0.065019302 0.022825874 -0.011372426 0.064632334 0.018447513 -0.014575055 0.064269125 0.020060014 -0.026736567 0.056176767 0.061241496 -0.028912326 0.056455523 0.057767432 -0.029113317 0.05477256 0.061029866 -0.013246076 0.06071512 0.054199968 -0.016828954 0.061690129 0.050796952 -0.014607405 0.06075839 0.056575418 -0.0051991497 0.06565015 0.029271374 0.0025306712 0.065920018 0.029114664 0.0032345282 0.065914288 0.02821805 -0.026658358 0.057588909 0.057820249 -0.028414598 0.057829071 0.054675002 -0.028912326 0.056455523 0.057767432 -0.016828926 0.062966175 0.043403376 -0.016548222 0.063557193 0.039897285 -0.018115707 0.062160213 0.047139864 -0.012435689 0.065019302 0.022825874 -0.010609457 0.065109044 0.021003345 -0.011372426 0.064632334 0.018447513 0.0032345282 0.065914288 0.02821805 0.0025306712 0.065920018 0.029114664 0.0062319394 0.065977886 0.028886151 -0.028912326 0.056455523 0.057767432 -0.030600846 0.055652589 0.057163801 -0.029113317 0.05477256 0.061029866 -0.0013966424 0.059576817 0.065200292 -0.0013272932 0.059501387 0.062899254 -0.0072395452 0.059750717 0.063325308 -0.013462855 0.063072644 0.040492885 -0.015682701 0.063586302 0.039974954 -0.016828926 0.062966175 0.043403376 -0.014575055 0.064269125 0.020060014 -0.012472793 0.06396734 0.01619296 -0.016478311 0.063451305 0.018262133 -0.014575055 0.064269125 0.020060014 -0.011372426 0.064632334 0.018447513 -0.012472793 0.06396734 0.01619296 0.018872174 0.062274273 0.052754074 0.017487209 0.062616847 0.047818244 0.015941821 0.061416451 0.053796764 -0.014564948 0.061321884 0.050509684 -0.016828954 0.061690129 0.050796952 -0.013246076 0.06071512 0.054199968 -0.028912326 0.056455523 0.057767432 -0.028414598 0.057829071 0.054675002 -0.030600846 0.055652589 0.057163801 0.015363481 0.065206282 0.035274725 0.0098156901 0.064822517 0.033688299 0.014744997 0.064261504 0.038118504 -0.028414598 0.057829071 0.054675002 -0.031530023 0.056185342 0.054087061 -0.030600846 0.055652589 0.057163801 -0.010609457 0.065109044 0.021003345 -0.0089640645 0.064983964 0.018359469 -0.011372426 0.064632334 0.018447513 -0.028414598 0.057829071 0.054675002 -0.029458079 0.05917792 0.047323573 -0.031189475 0.057697371 0.049699146 0.0025306712 0.065920018 0.029114664 -0.0010494814 0.065808974 0.029227316 -7.3908021e-05 0.064894512 0.03133348 -0.011372426 0.064632334 0.018447513 -0.0089640645 0.064983964 0.018359469 -0.0083982358 0.06436266 0.014711392 0.019715294 0.063313633 0.046855826 0.017487209 0.062616847 0.047818244 0.018872174 0.062274273 0.052754074 -0.016548222 0.063557193 0.039897285 -0.016828926 0.062966175 0.043403376 -0.015682701 0.063586302 0.039974954 -0.028414598 0.057829071 0.054675002 -0.031189475 0.057697371 0.049699146 -0.031530023 0.056185342 0.054087061 -0.011372426 0.064632334 0.018447513 -0.0083982358 0.06436266 0.014711392 -0.012472793 0.06396734 0.01619296 -0.0089640645 0.064983964 0.018359469 -0.0052917968 0.06525556 0.017208382 -0.0083982358 0.06436266 0.014711392 -0.012472793 0.06396734 0.01619296 -0.0083982358 0.06436266 0.014711392 -0.01102191 0.063904822 0.015329858 -0.031189475 0.057697371 0.049699146 -0.032301191 0.056956992 0.049744684 -0.031530023 0.056185342 0.054087061 -0.016548222 0.063557193 0.039897285 -0.015682701 0.063586302 0.039974954 -0.0131241 0.064383991 0.035738118 -0.0083982358 0.06436266 0.014711392 -0.0052917968 0.06525556 0.017208382 -0.0061337082 0.06453032 0.01412213 -0.031189475 0.057697371 0.049699146 -0.029458079 0.05917792 0.047323573 -0.032430511 0.057795398 0.045571547 -0.0131241 0.064383991 0.035738118 -0.012428355 0.064745225 0.033569656 -0.016548222 0.063557193 0.039897285 -0.029458079 0.05917792 0.047323573 -0.030335633 0.059297822 0.04391446 -0.032430511 0.057795398 0.045571547 -0.031189475 0.057697371 0.049699146 -0.032430511 0.057795398 0.045571547 -0.032301191 0.056956992 0.049744684 -0.030335633 0.059297822 0.04391446 -0.029458079 0.05917792 0.047323573 -0.029026048 0.060193453 0.042002257 -0.0052917968 0.06525556 0.017208382 -0.0022162627 0.065419734 0.016729686 -0.0029339003 0.06470935 0.013533936 -0.0052917968 0.06525556 0.017208382 -0.0029339003 0.06470935 0.013533936 -0.0061337082 0.06453032 0.01412213 -0.030335633 0.059297822 0.04391446 -0.032247588 0.058320396 0.042765573 -0.032430511 0.057795398 0.045571547 -0.0029339003 0.06470935 0.013533936 0.0022426937 0.064920574 0.0133361 -0.00088162778 0.064634167 0.01317687 -0.029026048 0.060193453 0.042002257 -0.029482536 0.060359374 0.036521923 -0.030335633 0.059297822 0.04391446 -0.027803347 0.061132949 0.037177857 -0.029482536 0.060359374 0.036521923 -0.029026048 0.060193453 0.042002257 -0.029482536 0.060359374 0.036521923 -0.027113268 0.06147733 0.032567844 -0.030041523 0.060026292 0.034012429 -0.0022162627 0.065419734 0.016729686 0.0022426937 0.064920574 0.0133361 -0.0029339003 0.06470935 0.013533936 -0.0022162627 0.065419734 0.016729686 0.0048820395 0.065595455 0.016807877 0.0022426937 0.064920574 0.0133361 0.0022426937 0.064920574 0.0133361 0.0048820395 0.065595455 0.016807877 0.0076580737 0.064974196 0.013947017 -0.01299201 0.059998896 0.060615811 -0.0072395452 0.059750717 0.063325308 -0.01183412 0.060209498 0.060085714 -0.004019659 0.049433459 0.08033862 -0.0091783544 0.049530763 0.079132311 -0.0076512471 0.04844711 0.080541924 -0.012428355 0.064745225 0.033569656 -0.0131241 0.064383991 0.035738118 -0.0090915747 0.065064542 0.032276183 -0.030335633 0.059297822 0.04391446 -0.031420358 0.059190415 0.038097866 -0.032247588 0.058320396 0.042765573 0.0048820395 0.065595455 0.016807877 0.0088278325 0.065568171 0.017547173 0.0076580737 0.064974196 0.013947017 -0.030335633 0.059297822 0.04391446 -0.029482536 0.060359374 0.036521923 -0.031420358 0.059190415 0.038097866 -0.01299201 0.059998896 0.060615811 -0.01183412 0.060209498 0.060085714 -0.016854616 0.060066193 0.059105635 -0.0076512471 0.04844711 0.080541924 -0.010804799 0.0473857 0.080553338 -0.004847277 0.047273036 0.082068026 -0.0013966424 0.059576817 0.065200292 -0.0072395452 0.059750717 0.063325308 -0.0013200374 0.059220031 0.066123992 -0.0072395452 0.059750717 0.063325308 -0.0049279993 0.059197415 0.065303087 -0.0013200374 0.059220031 0.066123992 -0.027803347 0.061132949 0.037177857 -0.026243132 0.061860684 0.033413846 -0.029482536 0.060359374 0.036521923 -0.0049279993 0.059197415 0.065303087 -0.0072395452 0.059750717 0.063325308 -0.0091598099 0.059537873 0.063275531 -0.0076512471 0.04844711 0.080541924 -0.0091783544 0.049530763 0.079132311 -0.012567898 0.04881702 0.078938626 -0.012428355 0.064745225 0.033569656 -0.0090915747 0.065064542 0.032276183 -0.0061168098 0.065466039 0.030521266 -0.0076512471 0.04844711 0.080541924 -0.012567898 0.04881702 0.078938626 -0.010804799 0.0473857 0.080553338 -0.012428355 0.064745225 0.033569656 -0.0061168098 0.065466039 0.030521266 -0.0075384565 0.065597571 0.028250229 -0.016854616 0.060066193 0.059105635 -0.01183412 0.060209498 0.060085714 -0.014607405 0.06075839 0.056575418 -0.012567898 0.04881702 0.078938626 -0.014870418 0.048032932 0.078916192 -0.010804799 0.0473857 0.080553338 -0.0091598099 0.059537873 0.063275531 -0.0072395452 0.059750717 0.063325308 -0.01299201 0.059998896 0.060615811 -0.026243132 0.061860684 0.033413846 -0.027113268 0.06147733 0.032567844 -0.029482536 0.060359374 0.036521923 -0.029482536 0.060359374 0.036521923 -0.030041523 0.060026292 0.034012429 -0.031420358 0.059190415 0.038097866 -0.012428355 0.064745225 0.033569656 -0.0075384565 0.065597571 0.028250229 -0.012415404 0.064971313 0.031435769 -0.01299201 0.059998896 0.060615811 -0.016854616 0.060066193 0.059105635 -0.015925135 0.059592929 0.0612089 -0.012567898 0.04881702 0.078938626 -0.0091783544 0.049530763 0.079132311 -0.01601859 0.050461978 0.076221488 -0.014607405 0.06075839 0.056575418 -0.016954588 0.061157782 0.053785264 -0.016854616 0.060066193 0.059105635 0.0032345282 0.065914288 0.02821805 -0.0056959274 0.065505818 0.029017912 -0.0051991497 0.06565015 0.029271374 -0.0075384565 0.065597571 0.028250229 -0.010917049 0.06534002 0.028389459 -0.012415404 0.064971313 0.031435769 -0.012567898 0.04881702 0.078938626 -0.017014552 0.048593074 0.077737786 -0.014870418 0.048032932 0.078916192 -0.012567898 0.04881702 0.078938626 -0.01601859 0.050461978 0.076221488 -0.017014552 0.048593074 0.077737786 -0.015925135 0.059592929 0.0612089 -0.016854616 0.060066193 0.059105635 -0.019051561 0.059546951 0.059699323 -0.0056959274 0.065505818 0.029017912 -0.0074626687 0.065469861 0.028108725 -0.0075384565 0.065597571 0.028250229 -0.027113268 0.06147733 0.032567844 -0.027515784 0.061057303 0.029107908 -0.030041523 0.060026292 0.034012429 -0.0051991497 0.06565015 0.029271374 -0.0056959274 0.065505818 0.029017912 -0.0075384565 0.065597571 0.028250229 -0.016954588 0.061157782 0.053785264 -0.014607405 0.06075839 0.056575418 -0.016828954 0.061690129 0.050796952 -0.010917049 0.06534002 0.028389459 -0.014102693 0.064943001 0.02898626 -0.012415404 0.064971313 0.031435769 -0.027113268 0.06147733 0.032567844 -0.022504751 0.062989242 0.027650872 -0.023567209 0.062471941 0.026178639 -0.027113268 0.06147733 0.032567844 -0.026243132 0.061860684 0.033413846 -0.022504751 0.062989242 0.027650872 -0.019051561 0.059546951 0.059699323 -0.017999485 0.058465663 0.063122615 -0.015925135 0.059592929 0.0612089 -0.017501667 0.051318258 0.074725688 -0.020207068 0.050271861 0.074675322 -0.01601859 0.050461978 0.076221488 -0.019051561 0.059546951 0.059699323 -0.020583708 0.058019653 0.062929764 -0.017999485 0.058465663 0.063122615 -0.014102693 0.064943001 0.02898626 -0.010917049 0.06534002 0.028389459 -0.013558804 0.065030821 0.025866985 -0.010372384 0.065023005 0.021286614 -0.010609457 0.065109044 0.021003345 -0.0096712932 0.065477319 0.02415101 -0.027113268 0.06147733 0.032567844 -0.023567209 0.062471941 0.026178639 -0.027515784 0.061057303 0.029107908 -0.0074626687 0.065469861 0.028108725 -0.0096712932 0.065477319 0.02415101 -0.0075384565 0.065597571 0.028250229 -0.010372384 0.065023005 0.021286614 -0.0096712932 0.065477319 0.02415101 -0.0074626687 0.065469861 0.028108725 -0.016954588 0.061157782 0.053785264 -0.018549696 0.060463842 0.056367036 -0.016854616 0.060066193 0.059105635 -0.0075384565 0.065597571 0.028250229 -0.0061168098 0.065466039 0.030521266 -0.0051991497 0.06565015 0.029271374 -0.01601859 0.050461978 0.076221488 -0.020207068 0.050271861 0.074675322 -0.017014552 0.048593074 0.077737786 -0.017501667 0.051318258 0.074725688 -0.019907786 0.05327091 0.071301356 -0.020207068 0.050271861 0.074675322 -0.010609457 0.065109044 0.021003345 -0.010372384 0.065023005 0.021286614 -0.009255345 0.064706311 0.018860662 -0.020583708 0.058019653 0.062929764 -0.02109321 0.056656688 0.065403186 -0.017999485 0.058465663 0.063122615 -0.016854616 0.060066193 0.059105635 -0.018549696 0.060463842 0.056367036 -0.019051561 0.059546951 0.059699323 -0.019051561 0.059546951 0.059699323 -0.018549696 0.060463842 0.056367036 -0.021532768 0.059543073 0.057515528 -0.013558804 0.065030821 0.025866985 -0.016782297 0.064415 0.025785981 -0.014102693 0.064943001 0.02898626 -0.019051561 0.059546951 0.059699323 -0.021441771 0.058655147 0.060548332 -0.020583708 0.058019653 0.062929764 -0.022504751 0.062989242 0.027650872 -0.020839734 0.063363537 0.025795629 -0.023567209 0.062471941 0.026178639 -0.0061168098 0.065466039 0.030521266 -0.0010494814 0.065808974 0.029227316 -0.0051991497 0.06565015 0.029271374 -0.010917049 0.06534002 0.028389459 -0.0075384565 0.065597571 0.028250229 -0.0096712932 0.065477319 0.02415101 -0.019907786 0.05327091 0.071301356 -0.022808846 0.052146427 0.071057461 -0.020207068 0.050271861 0.074675322 -0.019907786 0.05327091 0.071301356 -0.022914851 0.054145601 0.068370864 -0.022808846 0.052146427 0.071057461 -0.016782297 0.064415 0.025785981 -0.013558804 0.065030821 0.025866985 -0.015014824 0.064598076 0.023270886 -0.019907786 0.05327091 0.071301356 -0.021843553 0.054685041 0.068241276 -0.022914851 0.054145601 0.068370864 -0.019051561 0.059546951 0.059699323 -0.021532768 0.059543073 0.057515528 -0.021441771 0.058655147 0.060548332 -0.010609457 0.065109044 0.021003345 -0.009255345 0.064706311 0.018860662 -0.0089640645 0.064983964 0.018359469 -0.016782297 0.064415 0.025785981 -0.017533354 0.063752368 0.021346821 -0.020839734 0.063363537 0.025795629 -0.021441771 0.058655147 0.060548332 -0.024411529 0.058296911 0.058566015 -0.020583708 0.058019653 0.062929764 -0.016782297 0.064415 0.025785981 -0.015014824 0.064598076 0.023270886 -0.017533354 0.063752368 0.021346821 -0.023567209 0.062471941 0.026178639 -0.024496498 0.061805133 0.024776418 -0.027515784 0.061057303 0.029107908 -0.010917049 0.06534002 0.028389459 -0.0096712932 0.065477319 0.02415101 -0.013558804 0.065030821 0.025866985 -0.02109321 0.056656688 0.065403186 -0.020583708 0.058019653 0.062929764 -0.023792513 0.056614507 0.063420951 -0.013558804 0.065030821 0.025866985 -0.012435689 0.065019302 0.022825874 -0.015014824 0.064598076 0.023270886 -0.020839734 0.063363537 0.025795629 -0.020306792 0.063143171 0.022707984 -0.023567209 0.062471941 0.026178639 -0.021843553 0.054685041 0.068241276 -0.02109321 0.056656688 0.065403186 -0.025453262 0.055185165 0.064612754 -0.021843553 0.054685041 0.068241276 -0.025453262 0.055185165 0.064612754 -0.022914851 0.054145601 0.068370864 0.015870824 0.059831735 0.064459294 0.015518808 0.059830338 0.063757747 0.014759606 0.060607191 0.061627839 0.014759606 0.060607191 0.061627839 0.015518808 0.059830338 0.063757747 0.014958411 0.060452744 0.061619159 0.015518808 0.059830338 0.063757747 0.015870824 0.059831735 0.064459294 0.019343954 0.057837088 0.067871526 0.019343954 0.057837088 0.067871526 0.015870824 0.059831735 0.064459294 0.017502435 0.059043229 0.066237055 0.019343954 0.057837088 0.067871526 0.017502435 0.059043229 0.066237055 0.020221135 0.057495002 0.068535432 0.023422444 0.056906279 0.067880638 0.021433363 0.056973573 0.068403602 0.020221135 0.057495002 0.068535432 0.020221135 0.057495002 0.068535432 0.021433363 0.056973573 0.068403602 0.019343954 0.057837088 0.067871526 0.023422444 0.056906279 0.067880638 0.023155047 0.056758601 0.067727961 0.021433363 0.056973573 0.068403602 0.032020804 0.060966145 0.047284689 0.031215314 0.061875101 0.041195031 0.031628486 0.060331751 0.049909417 0.031545006 0.060045753 0.052235831 0.031628486 0.060331751 0.049909417 0.030169051 0.059055585 0.056540273 0.031628486 0.060331751 0.049909417 0.031545006 0.060045753 0.052235831 0.032020804 0.060966145 0.047284689 0.031215314 0.061875101 0.041195031 0.032020804 0.060966145 0.047284689 0.031456172 0.062026113 0.041298516 0.031215314 0.061875101 0.041195031 0.031456172 0.062026113 0.041298516 0.030310279 0.062737457 0.037103739 0.028192991 0.058163572 0.061024185 0.023155047 0.056758601 0.067727961 0.026317798 0.057632092 0.064388379 0.0045873383 0.065419704 0.016976725 -0.0022162627 0.065419734 0.016729686 -0.0039255363 0.065163016 0.017225245 0.026317798 0.057632092 0.064388379 0.029460626 0.058703512 0.059070718 0.028192991 0.058163572 0.061024185 0.029355926 0.062768608 0.036204878 0.031215314 0.061875101 0.041195031 0.030310279 0.062737457 0.037103739 0.030169051 0.059055585 0.056540273 0.029460626 0.058703512 0.059070718 0.031545006 0.060045753 0.052235831 0.023155047 0.056758601 0.067727961 0.023422444 0.056906279 0.067880638 0.026317798 0.057632092 0.064388379 0.029460626 0.058703512 0.059070718 0.030169051 0.059055585 0.056540273 0.028192991 0.058163572 0.061024185 0.030310279 0.062737457 0.037103739 0.029448746 0.063075155 0.035999082 0.029355926 0.062768608 0.036204878 0.029448746 0.063075155 0.035999082 0.027916154 0.063337579 0.035561837 0.029355926 0.062768608 0.036204878 0.027916154 0.063337579 0.035561837 0.029448746 0.063075155 0.035999082 0.027783629 0.063585714 0.035399515 0.020775013 0.064412333 0.038507834 0.027783629 0.063585714 0.035399515 0.023306018 0.064449333 0.037047569 0.0045873383 0.065419704 0.016976725 0.0048820395 0.065595455 0.016807877 -0.0022162627 0.065419734 0.016729686 0.020775013 0.064412333 0.038507834 0.027916154 0.063337579 0.035561837 0.027783629 0.063585714 0.035399515 0.019735333 0.064504974 0.039571676 0.020231577 0.063808396 0.043349408 0.020775013 0.064412333 0.038507834 0.019735333 0.064504974 0.039571676 0.020775013 0.064412333 0.038507834 0.023306018 0.064449333 0.037047569 0.019490471 0.061992172 0.053816136 0.020634163 0.062969491 0.048241902 0.018685307 0.061757814 0.055517625 0.014759606 0.060607191 0.061627839 0.019490471 0.061992172 0.053816136 0.018685307 0.061757814 0.055517625 0.019490471 0.061992172 0.053816136 0.014759606 0.060607191 0.061627839 0.014958411 0.060452744 0.061619159 0.0032345282 0.065914288 0.02821805 0.0062319394 0.065977886 0.028886151 0.0079426877 0.065856561 0.02932121 0.012749933 0.06555286 0.031891584 0.015120368 0.065371893 0.033820096 0.016939109 0.065104537 0.033712983 0.01764209 0.065286987 0.033703368 0.016939109 0.065104537 0.033712983 0.015120368 0.065371893 0.033820096 0.016939109 0.065104537 0.033712983 0.019232042 0.06525857 0.032492634 0.021089152 0.065076284 0.030812584 0.016939109 0.065104537 0.033712983 0.023222852 0.06464465 0.028126471 0.022403087 0.064610653 0.02932677 0.01764209 0.065286987 0.033703368 0.019232042 0.06525857 0.032492634 0.016939109 0.065104537 0.033712983 0.016939109 0.065104537 0.033712983 0.021089152 0.065076284 0.030812584 0.023222852 0.06464465 0.028126471 0.022839492 0.064386867 0.025919909 0.023222852 0.06464465 0.028126471 0.022795975 0.06458655 0.025332538 0.023140546 0.064394794 0.027229913 0.023222852 0.06464465 0.028126471 0.022839492 0.064386867 0.025919909 0.022403087 0.064610653 0.02932677 0.023222852 0.06464465 0.028126471 0.023140546 0.064394794 0.027229913 -0.009255345 0.064706311 0.018860662 -0.0052917968 0.06525556 0.017208382 -0.0089640645 0.064983964 0.018359469 0.020524565 0.064665698 0.023603557 0.022839492 0.064386867 0.025919909 0.022795975 0.06458655 0.025332538 -0.009255345 0.064706311 0.018860662 -0.0039255363 0.065163016 0.017225245 -0.0052917968 0.06525556 0.017208382 0.018009244 0.065098971 0.021581799 0.013719621 0.06539394 0.019209014 0.01203179 0.065247327 0.0187712 0.018009244 0.065098971 0.021581799 0.01203179 0.065247327 0.0187712 0.020524565 0.064665698 0.023603557 0.01203179 0.065247327 0.0187712 0.013719621 0.06539394 0.019209014 0.0088278325 0.065568171 0.017547173 -0.0052917968 0.06525556 0.017208382 -0.0039255363 0.065163016 0.017225245 -0.0022162627 0.065419734 0.016729686 0.020524565 0.064665698 0.023603557 0.022795975 0.06458655 0.025332538 0.018009244 0.065098971 0.021581799 0.0088278325 0.065568171 0.017547173 0.0045873383 0.065419704 0.016976725 0.01203179 0.065247327 0.0187712 0.0045873383 0.065419704 0.016976725 0.0088278325 0.065568171 0.017547173 0.0048820395 0.065595455 0.016807877 -0.004019659 0.049433459 0.08033862 -0.0011147126 0.049554609 0.08071246 -0.0036090047 0.049371403 0.080116361 0.0040277974 0.050088629 0.080493346 -0.0011147126 0.049554609 0.08071246 0.0026689458 0.049962882 0.080793895 0.0040277974 0.050088629 0.080493346 -0.0036090047 0.049371403 0.080116361 -0.0011147126 0.049554609 0.08071246 0.0040277974 0.050088629 0.080493346 0.0079506403 0.051824193 0.079203665 0.0058921902 0.050691932 0.079960831 0.0026689458 0.049962882 0.080793895 0.0079506403 0.051824193 0.079203665 0.0040277974 0.050088629 0.080493346 0.012914446 0.054056652 0.075833723 0.010617686 0.053147968 0.077634834 0.013439444 0.054453671 0.075722471 0.010617686 0.053147968 0.077634834 0.0090940874 0.052418739 0.078176588 0.0079506403 0.051824193 0.079203665 0.0090940874 0.052418739 0.078176588 0.010617686 0.053147968 0.077634834 0.012914446 0.054056652 0.075833723 0.0058921902 0.050691932 0.079960831 0.0079506403 0.051824193 0.079203665 0.0090940874 0.052418739 0.078176588 0.013904799 0.055540998 0.07412643 0.013685464 0.055796646 0.073475599 0.013439444 0.054453671 0.075722471 0.013439444 0.054453671 0.075722471 0.013685464 0.055796646 0.073475599 0.012914446 0.054056652 0.075833723 -0.01601859 0.050461978 0.076221488 -0.0091783544 0.049530763 0.079132311 -0.011469643 0.049662191 0.07801646 0.013904799 0.055540998 0.07412643 0.013133016 0.056986004 0.07196407 0.013685464 0.055796646 0.073475599 0.01159212 0.058630664 0.068785422 0.013685464 0.055796646 0.073475599 0.013133016 0.056986004 0.07196407 0.0084583461 0.05956636 0.065462962 0.010371546 0.059322715 0.066660337 0.0086176135 0.059732053 0.065388195 0.0084583461 0.05956636 0.065462962 0.0086176135 0.059732053 0.065388195 0.0017638333 0.059203506 0.066334039 -0.020839734 0.063363537 0.025795629 -0.02055721 0.06324055 0.025879696 -0.01908554 0.06354627 0.025288133 -0.020839734 0.063363537 0.025795629 -0.01908554 0.06354627 0.025288133 -0.016782297 0.064415 0.025785981 -0.01908554 0.06354627 0.025288133 -0.01666449 0.064268187 0.026102453 -0.016782297 0.064415 0.025785981 -0.02884702 0.058476396 0.050533954 -0.028414598 0.057829071 0.054675002 -0.02689724 0.057429064 0.057203729 -0.028414598 0.057829071 0.054675002 -0.02884702 0.058476396 0.050533954 -0.029458079 0.05917792 0.047323573 -0.029458079 0.05917792 0.047323573 -0.028679719 0.060224626 0.041450504 -0.029026048 0.060193453 0.042002257 -0.025356332 0.061956313 0.032255527 -0.026243132 0.061860684 0.033413846 -0.027803347 0.061132949 0.037177857 -0.020839734 0.063363537 0.025795629 -0.022504751 0.062989242 0.027650872 -0.02055721 0.06324055 0.025879696 -0.0036090047 0.049371403 0.080116361 -0.011469643 0.049662191 0.07801646 -0.0091783544 0.049530763 0.079132311 -0.022504751 0.062989242 0.027650872 -0.025356332 0.061956313 0.032255527 -0.02055721 0.06324055 0.025879696 -0.026243132 0.061860684 0.033413846 -0.025356332 0.061956313 0.032255527 -0.022504751 0.062989242 0.027650872 -0.028679719 0.060224626 0.041450504 -0.027803347 0.061132949 0.037177857 -0.029026048 0.060193453 0.042002257 -0.027803347 0.061132949 0.037177857 -0.028679719 0.060224626 0.041450504 -0.025356332 0.061956313 0.032255527 -0.028679719 0.060224626 0.041450504 -0.029458079 0.05917792 0.047323573 -0.02884702 0.058476396 0.050533954 -0.026658358 0.057588909 0.057820249 -0.024411529 0.058296911 0.058566015 -0.02689724 0.057429064 0.057203729 -0.028414598 0.057829071 0.054675002 -0.026658358 0.057588909 0.057820249 -0.02689724 0.057429064 0.057203729 -0.024411529 0.058296911 0.058566015 -0.018429061 0.060305871 0.056020211 -0.024982195 0.057982903 0.058287736 -0.024411529 0.058296911 0.058566015 -0.024982195 0.057982903 0.058287736 -0.02689724 0.057429064 0.057203729 -0.018429061 0.060305871 0.056020211 -0.024411529 0.058296911 0.058566015 -0.021532768 0.059543073 0.057515528 -0.018429061 0.060305871 0.056020211 -0.021532768 0.059543073 0.057515528 -0.018549696 0.060463842 0.056367036 -0.018429061 0.060305871 0.056020211 -0.016954588 0.061157782 0.053785264 -0.017169908 0.060898781 0.053964768 -0.018549696 0.060463842 0.056367036 -0.016954588 0.061157782 0.053785264 -0.018429061 0.060305871 0.056020211 -0.015729051 0.063821867 0.038002044 -0.017140865 0.063225739 0.041219618 -0.016548222 0.063557193 0.039897285 -0.017169908 0.060898781 0.053964768 -0.016954588 0.061157782 0.053785264 -0.018115707 0.062160213 0.047139864 -0.012428355 0.064745225 0.033569656 -0.015729051 0.063821867 0.038002044 -0.016548222 0.063557193 0.039897285 -0.004019659 0.049433459 0.08033862 -0.0036090047 0.049371403 0.080116361 -0.0091783544 0.049530763 0.079132311 -0.012998597 0.064438887 0.034179438 -0.015729051 0.063821867 0.038002044 -0.012428355 0.064745225 0.033569656 -0.016548222 0.063557193 0.039897285 -0.017140865 0.063225739 0.041219618 -0.018115707 0.062160213 0.047139864 -0.012415404 0.064971313 0.031435769 -0.01292995 0.064787284 0.030661892 -0.012384925 0.064663 0.032402415 -0.012428355 0.064745225 0.033569656 -0.012415404 0.064971313 0.031435769 -0.012384925 0.064663 0.032402415 -0.012998597 0.064438887 0.034179438 -0.012428355 0.064745225 0.033569656 -0.012384925 0.064663 0.032402415 -0.014102693 0.064943001 0.02898626 -0.01666449 0.064268187 0.026102453 -0.01292995 0.064787284 0.030661892 -0.01292995 0.064787284 0.030661892 -0.012415404 0.064971313 0.031435769 -0.014102693 0.064943001 0.02898626 -0.01666449 0.064268187 0.026102453 -0.014102693 0.064943001 0.02898626 -0.016782297 0.064415 0.025785981 -0.015925135 0.059592929 0.0612089 -0.014493443 0.059662685 0.060695235 -0.01299201 0.059998896 0.060615811 -0.01299201 0.059998896 0.060615811 -0.014493443 0.059662685 0.060695235 -0.0091598099 0.059537873 0.063275531 -0.017999485 0.058465663 0.063122615 -0.02109321 0.056656688 0.065403186 -0.021091541 0.056308951 0.065557763 -0.017999485 0.058465663 0.063122615 -0.014493443 0.059662685 0.060695235 -0.015925135 0.059592929 0.0612089 -0.021843553 0.054685041 0.068241276 -0.021091541 0.056308951 0.065557763 -0.02109321 0.056656688 0.065403186 -0.021433702 0.054310169 0.068494588 -0.021091541 0.056308951 0.065557763 -0.021843553 0.054685041 0.068241276 -0.019907786 0.05327091 0.071301356 -0.016665559 0.050718028 0.07528013 -0.021843553 0.054685041 0.068241276 -0.01601859 0.050461978 0.076221488 -0.011469643 0.049662191 0.07801646 -0.016665559 0.050718028 0.07528013 -0.017501667 0.051318258 0.074725688 -0.016665559 0.050718028 0.07528013 -0.019907786 0.05327091 0.071301356 -0.021433702 0.054310169 0.068494588 -0.021843553 0.054685041 0.068241276 -0.016665559 0.050718028 0.07528013 -0.016665559 0.050718028 0.07528013 -0.017501667 0.051318258 0.074725688 -0.01601859 0.050461978 0.076221488 + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619

+
+
+
+
+ + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + + + + + + + + + + + + + +
diff --git a/external/rlbench/urdfs/panda/meshes/Pandalink6visual_vis_5.dae b/external/rlbench/urdfs/panda/meshes/Pandalink6visual_vis_5.dae new file mode 100644 index 0000000000000000000000000000000000000000..0d07c6203bb1715ae2d1fc95e16cb8ffe8eb0e32 --- /dev/null +++ b/external/rlbench/urdfs/panda/meshes/Pandalink6visual_vis_5.dae @@ -0,0 +1,84 @@ + + + + + Assimp + Assimp Exporter + + 2023-09-26T11:24:21 + 2023-09-26T11:24:21 + + Y_UP + + + + + + + + 0 0 0 4.5895327e-41 + + + 0.30000001 0.30000001 0.30000001 4.5893926e-41 + + + 0.30000001 0.30000001 0.30000001 4.5893926e-41 + + + 0.25 0.25 0.25 3.6295857e-33 + + + + + + + + + + + + + + + + 0.025132131 0.062318854 0.052788559 0.02382955 0.062589951 0.052471396 0.027283285 0.061917767 0.052537046 0.0001072495 0.062237505 0.044517606 0.0019707347 0.062041797 0.045723338 0.0018159163 0.062288247 0.044456761 0.001601288 0.061376423 0.049692828 0.0014418378 0.061548147 0.048494536 0.0012606091 0.061524447 0.048623808 -0.023284338 0.062709749 0.042483333 -0.021397177 0.06328278 0.041353565 -0.024865435 0.06229778 0.042239465 0.0026212751 0.062309779 0.044496112 0.0018159163 0.062288247 0.044456761 0.0019707347 0.062041797 0.045723338 0.0014666703 0.06203527 0.045685381 0.0019707347 0.062041797 0.045723338 0.0001072495 0.062237505 0.044517606 0.0001072495 0.062237505 0.044517606 -0.00054495892 0.061719164 0.047248088 0.00077598426 0.061777644 0.046991747 0.0014666703 0.06203527 0.045685381 0.0001072495 0.062237505 0.044517606 0.00077598426 0.061777644 0.046991747 0.0059081181 0.061711978 0.049015358 0.0010659312 0.062757351 0.0421893 0.0029234132 0.062135946 0.045433585 -0.00054495892 0.061719164 0.047248088 -0.0016241947 0.061666131 0.047585193 -0.00063727243 0.061689336 0.047423046 0.00077598426 0.061777644 0.046991747 -0.00054495892 0.061719164 0.047248088 -0.00063727243 0.061689336 0.047423046 0.001601288 0.061376423 0.049692828 0.00089166581 0.061409071 0.04932439 0.0002105976 0.061061159 0.051920407 0.0014418378 0.061548147 0.048494536 0.00077598426 0.061777644 0.046991747 -0.00063727243 0.061689336 0.047423046 0.0030637442 0.061941985 0.04651124 0.0019707347 0.062041797 0.045723338 0.0014666703 0.06203527 0.045685381 0.0001072495 0.062237505 0.044517606 0.0010659312 0.062757351 0.0421893 -0.001255417 0.061783534 0.046884917 0.003246841 0.061970063 0.046404339 0.0029234132 0.062135946 0.045433585 0.0019707347 0.062041797 0.045723338 -0.001255417 0.061783534 0.046884917 0.0010659312 0.062757351 0.0421893 -0.0034773047 0.06154494 0.048579659 0.0061438782 0.066648826 0.024340587 0.0066320272 0.066642642 0.024448872 0.0073067229 0.066579103 0.022560365 0.003246841 0.061970063 0.046404339 0.0019707347 0.062041797 0.045723338 0.0030637442 0.061941985 0.04651124 0.00047300564 0.061606109 0.047993712 -0.00063727243 0.061689336 0.047423046 0.00089166581 0.061409071 0.04932439 0.00089166581 0.061409071 0.04932439 -0.00063727243 0.061689336 0.047423046 -0.0016241947 0.061666131 0.047585193 0.0059081181 0.061711978 0.049015358 0.0039989823 0.061940335 0.046795957 0.001601288 0.061376423 0.049692828 0.0039989823 0.061940335 0.046795957 0.0029234132 0.062135946 0.045433585 0.003246841 0.061970063 0.046404339 0.0030637442 0.061941985 0.04651124 0.00077598426 0.061777644 0.046991747 0.0034278675 0.061879572 0.04696922 0.0059081181 0.061711978 0.049015358 0.001601288 0.061376423 0.049692828 0.0002105976 0.061061159 0.051920407 0.0002105976 0.061061159 0.051920407 -0.0016241947 0.061666131 0.047585193 -0.0034773047 0.06154494 0.048579659 0.0034278675 0.061879572 0.04696922 0.00077598426 0.061777644 0.046991747 0.0014418378 0.061548147 0.048494536 0.0012507989 0.062332191 0.044166654 0.0010659312 0.062757351 0.0421893 0.0001072495 0.062237505 0.044517606 0.0034278675 0.061879572 0.04696922 0.003246841 0.061970063 0.046404339 0.0030637442 0.061941985 0.04651124 0.0018159163 0.062288247 0.044456761 0.0010659312 0.062757351 0.0421893 0.0012507989 0.062332191 0.044166654 0.0059081181 0.061711978 0.049015358 0.0029234132 0.062135946 0.045433585 0.0039989823 0.061940335 0.046795957 0.0026212751 0.062309779 0.044496112 0.0010659312 0.062757351 0.0421893 0.0018159163 0.062288247 0.044456761 0.0014418378 0.061548147 0.048494536 0.00047300564 0.061606109 0.047993712 0.0012606091 0.061524447 0.048623808 0.0012606091 0.061524447 0.048623808 0.00047300564 0.061606109 0.047993712 0.00089166581 0.061409071 0.04932439 0.00089166581 0.061409071 0.04932439 -0.0016241947 0.061666131 0.047585193 0.0002105976 0.061061159 0.051920407 0.0039989823 0.061940335 0.046795957 0.0034278675 0.061879572 0.04696922 0.001601288 0.061376423 0.049692828 0.0001072495 0.062237505 0.044517606 -0.001255417 0.061783534 0.046884917 -0.00054495892 0.061719164 0.047248088 0.0010659312 0.062757351 0.0421893 0.0026212751 0.062309779 0.044496112 0.0029234132 0.062135946 0.045433585 0.001601288 0.061376423 0.049692828 0.0034278675 0.061879572 0.04696922 0.0014418378 0.061548147 0.048494536 -0.0016241947 0.061666131 0.047585193 -0.001255417 0.061783534 0.046884917 -0.0034773047 0.06154494 0.048579659 -0.028624658 0.059522383 0.048437607 -0.02752611 0.058424775 0.05479322 -0.028227381 0.059457641 0.050618216 -0.026349192 0.0586178 0.056797098 -0.027475983 0.059133306 0.053502437 -0.02752611 0.058424775 0.05479322 -0.027166521 0.061784565 0.038266558 -0.024349034 0.062822491 0.031637114 -0.026166957 0.061996251 0.034882449 -0.024349034 0.062822491 0.031637114 -0.025798375 0.06254293 0.035459444 -0.022568775 0.063612364 0.029824488 -0.02002327 0.06414932 0.026644927 -0.024349034 0.062822491 0.031637114 -0.022568775 0.063612364 0.029824488 -0.0034597388 0.056903176 0.071709223 -0.0042378879 0.056565516 0.07212282 -0.0047545875 0.055559356 0.073593907 -0.0034597388 0.056903176 0.071709223 -0.0047545875 0.055559356 0.073593907 -0.0033164602 0.055511657 0.073943838 -0.028124709 0.060173489 0.04816369 -0.028227381 0.059457641 0.050618216 -0.027475983 0.059133306 0.053502437 -0.025798375 0.06254293 0.035459444 -0.027166521 0.061784565 0.038266558 -0.028082142 0.060980245 0.043193325 -0.028624658 0.059522383 0.048437607 -0.028227381 0.059457641 0.050618216 -0.028124709 0.060173489 0.04816369 -0.026166957 0.061996251 0.034882449 -0.024349034 0.062822491 0.031637114 -0.021858664 0.063241757 0.027941201 -0.028624658 0.059522383 0.048437607 -0.028124709 0.060173489 0.04816369 -0.028082142 0.060980245 0.043193325 -0.027166521 0.061784565 0.038266558 -0.025798375 0.06254293 0.035459444 -0.024349034 0.062822491 0.031637114 -0.0042378879 0.056565516 0.07212282 -0.0061353734 0.055996135 0.072630361 -0.0052118739 0.056262519 0.072412968 -0.0034597388 0.056903176 0.071709223 -0.0061353734 0.055996135 0.072630361 -0.0042378879 0.056565516 0.07212282 -0.028624658 0.059522383 0.048437607 -0.028082142 0.060980245 0.043193325 -0.028410798 0.060564559 0.042886633 -0.027645076 0.061270159 0.039068114 -0.028082142 0.060980245 0.043193325 -0.027166521 0.061784565 0.038266558 -0.028410798 0.060564559 0.042886633 -0.028082142 0.060980245 0.043193325 -0.027645076 0.061270159 0.039068114 -0.027645076 0.061270159 0.039068114 -0.027166521 0.061784565 0.038266558 -0.026166957 0.061996251 0.034882449 -0.024349034 0.062822491 0.031637114 -0.020227486 0.063626416 0.026212793 -0.021858664 0.063241757 0.027941201 -0.024349034 0.062822491 0.031637114 -0.02002327 0.06414932 0.026644927 -0.020227486 0.063626416 0.026212793 -0.028227381 0.059457641 0.050618216 -0.02752611 0.058424775 0.05479322 -0.027475983 0.059133306 0.053502437 -0.0047545875 0.055559356 0.073593907 -0.0061353734 0.055996135 0.072630361 -0.0033164602 0.055511657 0.073943838 -0.023021473 0.059874505 0.0567648 -0.019046232 0.060784452 0.055671699 -0.019251294 0.061135918 0.055211194 -0.024249971 0.0588516 0.057752039 -0.01906682 0.060144145 0.05591587 -0.019046232 0.060784452 0.055671699 -0.024249971 0.0588516 0.057752039 -0.023021473 0.059874505 0.0567648 -0.024773497 0.059110284 0.057335917 -0.01906682 0.060144145 0.05591587 -0.024249971 0.0588516 0.057752039 -0.024876019 0.058094218 0.057898302 -0.023021473 0.059874505 0.0567648 -0.024249971 0.0588516 0.057752039 -0.019046232 0.060784452 0.055671699 -0.026349192 0.0586178 0.056797098 -0.026584078 0.058026507 0.057047922 -0.0250772 0.058625635 0.057724949 -0.024773497 0.059110284 0.057335917 -0.026349192 0.0586178 0.056797098 -0.0250772 0.058625635 0.057724949 -0.0052118739 0.056262519 0.072412968 -0.0061353734 0.055996135 0.072630361 -0.0047545875 0.055559356 0.073593907 -0.0250772 0.058625635 0.057724949 -0.024876019 0.058094218 0.057898302 -0.024249971 0.0588516 0.057752039 -0.024773497 0.059110284 0.057335917 -0.0250772 0.058625635 0.057724949 -0.024249971 0.0588516 0.057752039 -0.024876019 0.058094218 0.057898302 -0.0250772 0.058625635 0.057724949 -0.026584078 0.058026507 0.057047922 -0.026349192 0.0586178 0.056797098 -0.02752611 0.058424775 0.05479322 -0.026584078 0.058026507 0.057047922 -0.0051101027 0.056360878 0.072279856 -0.0053477618 0.056018785 0.072774254 -0.0052482239 0.05574004 0.073218673 -0.017546976 0.064787515 0.026857106 -0.017469108 0.064046748 0.026000038 -0.019158553 0.063812681 0.025750445 -0.02002327 0.06414932 0.026644927 -0.019158553 0.063812681 0.025750445 -0.020227486 0.063626416 0.026212793 -0.017546976 0.064787515 0.026857106 -0.019158553 0.063812681 0.025750445 -0.02002327 0.06414932 0.026644927 0.0039991317 0.061941169 0.046796016 0.0032471265 0.061970655 0.046404187 0.0034279614 0.061879333 0.04696906 -0.0005447726 0.061721426 0.047248337 -0.0012550738 0.061784364 0.046884932 -0.0016241042 0.061667442 0.047585271 -0.017546976 0.064787515 0.026857106 -0.016734248 0.064108245 0.026547562 -0.017469108 0.064046748 0.026000038 0.0029236672 0.062136896 0.045433734 0.0026215396 0.062310252 0.044496048 0.001970645 0.062043708 0.045723572 0.0018161404 0.062288601 0.044456597 0.00010757834 0.062238216 0.044517681 0.00067244051 0.062188551 0.044806693 -0.019251294 0.061135918 0.055211194 -0.017619176 0.060812782 0.054174587 -0.0180587 0.06143117 0.053794503 0.0016015671 0.061376777 0.04969269 0.0012608168 0.061525039 0.048623454 0.00089183886 0.061411574 0.049324438 0.00085355603 0.061762922 0.04710431 -0.00061841641 0.061687075 0.047426961 0.0014419699 0.061549693 0.048494577 0.0030590293 0.06193978 0.046511039 0.0014669335 0.062035386 0.045685302 0.00077662244 0.061780378 0.046991639 -0.0017135107 0.0607046 0.055973295 -0.0042885835 0.060693108 0.057082344 -0.0022815194 0.060580961 0.058599859 0.0093742721 0.065324932 0.035248127 0.0068814834 0.064246625 0.037794203 0.011935592 0.06503652 0.037312061 -0.018497063 0.061540201 0.053736459 -0.019251294 0.061135918 0.055211194 -0.0180587 0.06143117 0.053794503 0.00080847729 0.060815647 0.054483037 -0.0017135107 0.0607046 0.055973295 -0.00031286132 0.060558237 0.058867712 -0.019046232 0.060784452 0.055671699 -0.01906682 0.060144145 0.05591587 -0.017619176 0.060812782 0.054174587 0.0063469331 0.061128177 0.054011311 0.0041892147 0.061290141 0.05120514 0.00080847729 0.060815647 0.054483037 -0.019251294 0.061135918 0.055211194 -0.019046232 0.060784452 0.055671699 -0.017619176 0.060812782 0.054174587 -0.015479077 0.063903622 0.036667928 -0.013445426 0.064798333 0.033747673 -0.015605143 0.064332567 0.036429491 0.0068814834 0.064246625 0.037794203 0.004257421 0.063885354 0.03842131 0.0023266743 0.063918076 0.037961833 -0.015605143 0.064332567 0.036429491 -0.013734838 0.065198943 0.033156719 -0.018086648 0.063983463 0.039773617 -0.018545778 0.061798237 0.047566663 -0.017497169 0.062944546 0.040862136 -0.018820224 0.062924951 0.044786327 -0.015605143 0.064332567 0.036429491 -0.018290859 0.063572966 0.041565008 -0.017497169 0.062944546 0.040862136 -0.017497169 0.062944546 0.040862136 -0.018290859 0.063572966 0.041565008 -0.018820224 0.062924951 0.044786327 -0.018820224 0.062924951 0.044786327 -0.019278906 0.063197151 0.04409977 -0.019472566 0.062661558 0.04715937 -0.018819982 0.062290203 0.047754604 -0.018820224 0.062924951 0.044786327 -0.019472566 0.062661558 0.04715937 -0.018545778 0.061798237 0.047566663 -0.018820224 0.062924951 0.044786327 -0.018819982 0.062290203 0.047754604 -0.0042885835 0.060693108 0.057082344 -0.0076816124 0.060812138 0.058856159 -0.0042830179 0.06056831 0.060783189 0.010571112 0.062344935 0.048235092 0.0085308151 0.062409911 0.046263576 0.0087065743 0.06167452 0.051190563 -0.018290859 0.063572966 0.041565008 -0.015605143 0.064332567 0.036429491 -0.018086648 0.063983463 0.039773617 -0.018290859 0.063572966 0.041565008 -0.019278906 0.063197151 0.04409977 -0.018820224 0.062924951 0.044786327 -0.010181202 0.061799716 0.050001487 -0.013471999 0.062836163 0.046234049 -0.012088007 0.061633985 0.053462464 0.0064136456 0.065524936 0.033650536 0.0068814834 0.064246625 0.037794203 0.0093742721 0.065324932 0.035248127 -0.0180587 0.06143117 0.053794503 -0.019472566 0.062661558 0.04715937 -0.018497063 0.061540201 0.053736459 -0.018819982 0.062290203 0.047754604 -0.019472566 0.062661558 0.04715937 -0.0180587 0.06143117 0.053794503 -0.018545778 0.061798237 0.047566663 -0.018819982 0.062290203 0.047754604 -0.0180587 0.06143117 0.053794503 -0.0017135107 0.0607046 0.055973295 -0.0035131255 0.060902789 0.053691197 -0.0042885835 0.060693108 0.057082344 0.015835825 0.063877329 0.044625822 0.012734017 0.063054249 0.045986228 0.01598171 0.063210435 0.048477061 -0.019278906 0.063197151 0.04409977 -0.018290859 0.063572966 0.041565008 -0.018086648 0.063983463 0.039773617 0.004257421 0.063885354 0.03842131 0.0068814834 0.064246625 0.037794203 0.0037747228 0.064929023 0.034921315 -0.0180587 0.06143117 0.053794503 -0.017619176 0.060812782 0.054174587 -0.018545778 0.061798237 0.047566663 -0.013734838 0.065198943 0.033156719 -0.015605143 0.064332567 0.036429491 -0.013445426 0.064798333 0.033747673 -0.017497169 0.062944546 0.040862136 -0.015479077 0.063903622 0.036667928 -0.015605143 0.064332567 0.036429491 -0.01386884 0.065348573 0.031398226 -0.013734838 0.065198943 0.033156719 -0.013082782 0.0650369 0.031892788 -0.0076388721 0.062565349 0.044195108 -0.010537297 0.062577479 0.04562021 -0.010181202 0.061799716 0.050001487 -0.01386884 0.065348573 0.031398226 -0.013082782 0.0650369 0.031892788 -0.013201668 0.06468942 0.030907054 -0.015479077 0.063903622 0.036667928 -0.012788609 0.064551271 0.032392442 -0.013445426 0.064798333 0.033747673 -0.013082782 0.0650369 0.031892788 -0.012788609 0.064551271 0.032392442 -0.013201668 0.06468942 0.030907054 -0.013445426 0.064798333 0.033747673 -0.012788609 0.064551271 0.032392442 -0.013082782 0.0650369 0.031892788 0.0087065743 0.06167452 0.051190563 0.0041892147 0.061290141 0.05120514 0.0063469331 0.061128177 0.054011311 -0.013734838 0.065198943 0.033156719 -0.013445426 0.064798333 0.033747673 -0.013082782 0.0650369 0.031892788 0.0023266743 0.063918076 0.037961833 -0.00038418232 0.06360653 0.038793154 -0.0020135685 0.062482856 0.043352772 -0.01522963 0.065269843 0.029954374 -0.01386884 0.065348573 0.031398226 -0.01498208 0.065129571 0.029463222 -0.01498208 0.065129571 0.029463222 -0.017546976 0.064787515 0.026857106 -0.01522963 0.065269843 0.029954374 0.0087065743 0.06167452 0.051190563 0.0062351371 0.061898485 0.047987342 0.0041892147 0.061290141 0.05120514 0.00080847729 0.060815647 0.054483037 -0.0035131255 0.060902789 0.053691197 -0.0017135107 0.0607046 0.055973295 -0.017546976 0.064787515 0.026857106 -0.01498208 0.065129571 0.029463222 -0.016734248 0.064108245 0.026547562 -0.0020135685 0.062482856 0.043352772 -0.0064661284 0.063398913 0.040277109 -0.0076388721 0.062565349 0.044195108 -0.01498208 0.065129571 0.029463222 -0.013201668 0.06468942 0.030907054 -0.016734248 0.064108245 0.026547562 -0.010537297 0.062577479 0.04562021 -0.013471999 0.062836163 0.046234049 -0.010181202 0.061799716 0.050001487 -0.013201668 0.06468942 0.030907054 -0.01498208 0.065129571 0.029463222 -0.01386884 0.065348573 0.031398226 -0.017469108 0.064046748 0.026000038 -0.016734248 0.064108245 0.026547562 -0.017468838 0.061781935 0.025559194 0.0068814834 0.064246625 0.037794203 0.0064136456 0.065524936 0.033650536 0.0037747228 0.064929023 0.034921315 -0.019158553 0.063812681 0.025750445 -0.019924674 0.062041368 0.025733143 -0.020227486 0.063626416 0.026212793 -0.017469108 0.064046748 0.026000038 -0.017468838 0.061781935 0.025559194 -0.019158553 0.063812681 0.025750445 -0.022859164 0.062381145 0.045489568 -0.024341121 0.062342398 0.043101329 -0.024633581 0.061766889 0.046401709 -0.018912818 0.064510152 0.033833221 -0.019527407 0.064488277 0.030674202 -0.022727212 0.063614115 0.034117308 -0.0017588778 0.061167654 0.051022105 0.00080847729 0.060815647 0.054483037 0.0041892147 0.061290141 0.05120514 -0.016109748 0.064901866 0.033982102 -0.01522963 0.065269843 0.029954374 -0.018912818 0.064510152 0.033833221 -0.023021473 0.059874505 0.0567648 -0.02412748 0.061060127 0.050775066 -0.024773497 0.059110284 0.057335917 -0.016109748 0.064901866 0.033982102 -0.013734838 0.065198943 0.033156719 -0.01386884 0.065348573 0.031398226 -0.02412748 0.061060127 0.050775066 -0.0261265 0.059914257 0.052752484 -0.024773497 0.059110284 0.057335917 0.0037747228 0.064929023 0.034921315 0.00078773464 0.064762272 0.035031218 0.0023266743 0.063918076 0.037961833 0.0023266743 0.063918076 0.037961833 0.00078773464 0.064762272 0.035031218 -0.00038418232 0.06360653 0.038793154 -0.022859164 0.062381145 0.045489568 -0.022451157 0.062978581 0.041982554 -0.024341121 0.062342398 0.043101329 -0.010537297 0.062577479 0.04562021 -0.011005975 0.062959567 0.044040456 -0.013471999 0.062836163 0.046234049 0.0087065743 0.06167452 0.051190563 0.0085308151 0.062409911 0.046263576 0.0062351371 0.061898485 0.047987342 0.012734017 0.063054249 0.045986228 0.0085308151 0.062409911 0.046263576 0.010571112 0.062344935 0.048235092 -0.022727212 0.063614115 0.034117308 -0.022568775 0.063612364 0.029824488 -0.025798375 0.06254293 0.035459444 -0.019278906 0.063197151 0.04409977 -0.01989086 0.063942 0.038386397 -0.022451157 0.062978581 0.041982554 0.015835825 0.063877329 0.044625822 0.01196879 0.063649662 0.042532712 0.012734017 0.063054249 0.045986228 -0.0076816124 0.060812138 0.058856159 -0.0083523402 0.061106868 0.054754488 -0.010324374 0.061199956 0.05621643 0.00080847729 0.060815647 0.054483037 -0.0017588778 0.061167654 0.051022105 -0.0035131255 0.060902789 0.053691197 -0.0042885835 0.060693108 0.057082344 -0.0083523402 0.061106868 0.054754488 -0.0076816124 0.060812138 0.058856159 -0.016109748 0.064901866 0.033982102 -0.01386884 0.065348573 0.031398226 -0.01522963 0.065269843 0.029954374 -0.022727212 0.063614115 0.034117308 -0.019527407 0.064488277 0.030674202 -0.022568775 0.063612364 0.029824488 -0.011005975 0.062959567 0.044040456 -0.012576818 0.0635603 0.042204894 -0.013471999 0.062836163 0.046234049 -0.018086648 0.063983463 0.039773617 -0.01989086 0.063942 0.038386397 -0.019278906 0.063197151 0.04409977 -0.0076388721 0.062565349 0.044195108 -0.01121701 0.064068377 0.039458062 -0.011005975 0.062959567 0.044040456 0.01196879 0.063649662 0.042532712 0.0085308151 0.062409911 0.046263576 0.012734017 0.063054249 0.045986228 -0.018497063 0.061540201 0.053736459 -0.019472566 0.062661558 0.04715937 -0.021356888 0.061805114 0.05045322 -0.018912818 0.064510152 0.033833221 -0.01522963 0.065269843 0.029954374 -0.019527407 0.064488277 0.030674202 -0.026798161 0.061189823 0.045465074 -0.028082142 0.060980245 0.043193325 -0.028124709 0.060173489 0.04816369 -0.022451157 0.062978581 0.041982554 -0.01989086 0.063942 0.038386397 -0.023291716 0.063271575 0.037656918 -0.026798161 0.061189823 0.045465074 -0.026083253 0.062067121 0.040934578 -0.028082142 0.060980245 0.043193325 -0.024341121 0.062342398 0.043101329 -0.023827374 0.062682882 0.041619185 -0.026083253 0.062067121 0.040934578 -0.022451157 0.062978581 0.041982554 -0.023291716 0.063271575 0.037656918 -0.023827374 0.062682882 0.041619185 -0.024773497 0.059110284 0.057335917 -0.0261265 0.059914257 0.052752484 -0.027475983 0.059133306 0.053502437 0.015835825 0.063877329 0.044625822 0.014928392 0.064400494 0.041110467 0.01196879 0.063649662 0.042532712 -0.0035131255 0.060902789 0.053691197 -0.0083523402 0.061106868 0.054754488 -0.0042885835 0.060693108 0.057082344 -0.021356888 0.061805114 0.05045322 -0.024633581 0.061766889 0.046401709 -0.02412748 0.061060127 0.050775066 -0.024773497 0.059110284 0.057335917 -0.027475983 0.059133306 0.053502437 -0.026349192 0.0586178 0.056797098 -0.023827374 0.062682882 0.041619185 -0.023291716 0.063271575 0.037656918 -0.026083253 0.062067121 0.040934578 -0.00038418232 0.06360653 0.038793154 -0.0064661284 0.063398913 0.040277109 -0.0020135685 0.062482856 0.043352772 -0.019472566 0.062661558 0.04715937 -0.019278906 0.063197151 0.04409977 -0.021356888 0.061805114 0.05045322 -0.01522963 0.065269843 0.029954374 -0.017546976 0.064787515 0.026857106 -0.019527407 0.064488277 0.030674202 -0.01121701 0.064068377 0.039458062 -0.012576818 0.0635603 0.042204894 -0.011005975 0.062959567 0.044040456 0.0037747228 0.064929023 0.034921315 0.0064136456 0.065524936 0.033650536 0.00078773464 0.064762272 0.035031218 -0.0064661284 0.063398913 0.040277109 -0.01121701 0.064068377 0.039458062 -0.0076388721 0.062565349 0.044195108 0.013291343 0.061855674 0.05595516 0.0087065743 0.06167452 0.051190563 0.010095557 0.06125864 0.058920998 0.00078773464 0.064762272 0.035031218 -0.0028085476 0.064501114 0.035838723 -0.00038418232 0.06360653 0.038793154 0.0085308151 0.062409911 0.046263576 0.0054138568 0.062521316 0.044250004 0.0062351371 0.061898485 0.047987342 -0.021356888 0.061805114 0.05045322 -0.022859164 0.062381145 0.045489568 -0.024633581 0.061766889 0.046401709 0.010095557 0.06125864 0.058920998 0.0063469331 0.061128177 0.054011311 0.0069537526 0.060852569 0.060833402 0.0064136456 0.065524936 0.033650536 -0.00097786076 0.06544885 0.032968652 0.00078773464 0.064762272 0.035031218 -0.0017588778 0.061167654 0.051022105 -0.0035614595 0.061562844 0.048462272 -0.0035131255 0.060902789 0.053691197 0.0069537526 0.060852569 0.060833402 0.0022106967 0.060611941 0.058308683 0.00022902036 0.060503852 0.06183156 -0.019527407 0.064488277 0.030674202 -0.02002327 0.06414932 0.026644927 -0.022568775 0.063612364 0.029824488 0.013291343 0.061855674 0.05595516 0.015160806 0.062533297 0.052282523 0.0087065743 0.06167452 0.051190563 -0.00038418232 0.06360653 0.038793154 -0.0028085476 0.064501114 0.035838723 -0.0064661284 0.063398913 0.040277109 -0.0035131255 0.060902789 0.053691197 -0.010181202 0.061799716 0.050001487 -0.0083523402 0.061106868 0.054754488 0.01196879 0.063649662 0.042532712 0.0092872316 0.063835837 0.040235814 0.0085308151 0.062409911 0.046263576 -0.021356888 0.061805114 0.05045322 -0.019278906 0.063197151 0.04409977 -0.022859164 0.062381145 0.045489568 0.014928392 0.064400494 0.041110467 0.011935592 0.06503652 0.037312061 0.01196879 0.063649662 0.042532712 -0.02412748 0.061060127 0.050775066 -0.028124709 0.060173489 0.04816369 -0.0261265 0.059914257 0.052752484 -0.0083523402 0.061106868 0.054754488 -0.012088007 0.061633985 0.053462464 -0.010324374 0.061199956 0.05621643 -0.018086648 0.063983463 0.039773617 -0.016109748 0.064901866 0.033982102 -0.01989086 0.063942 0.038386397 0.00078773464 0.064762272 0.035031218 -0.00097786076 0.06544885 0.032968652 -0.0028085476 0.064501114 0.035838723 0.010095557 0.06125864 0.058920998 0.0087065743 0.06167452 0.051190563 0.0063469331 0.061128177 0.054011311 0.011935592 0.06503652 0.037312061 0.0092872316 0.063835837 0.040235814 0.01196879 0.063649662 0.042532712 0.0085308151 0.062409911 0.046263576 0.0092872316 0.063835837 0.040235814 0.0054138568 0.062521316 0.044250004 -0.019527407 0.064488277 0.030674202 -0.017546976 0.064787515 0.026857106 -0.02002327 0.06414932 0.026644927 -0.01989086 0.063942 0.038386397 -0.018912818 0.064510152 0.033833221 -0.023291716 0.063271575 0.037656918 -0.00097786076 0.06544885 0.032968652 -0.0073340083 0.064887591 0.035355952 -0.0028085476 0.064501114 0.035838723 -0.0035614595 0.061562844 0.048462272 -0.010181202 0.061799716 0.050001487 -0.0035131255 0.060902789 0.053691197 -0.0261265 0.059914257 0.052752484 -0.028124709 0.060173489 0.04816369 -0.027475983 0.059133306 0.053502437 -0.0028085476 0.064501114 0.035838723 -0.0073340083 0.064887591 0.035355952 -0.0064661284 0.063398913 0.040277109 -0.0073340083 0.064887591 0.035355952 -0.0094077839 0.064508095 0.037185967 -0.0064661284 0.063398913 0.040277109 -0.0064661284 0.063398913 0.040277109 -0.0094077839 0.064508095 0.037185967 -0.01121701 0.064068377 0.039458062 -0.026083253 0.062067121 0.040934578 -0.023291716 0.063271575 0.037656918 -0.025798375 0.06254293 0.035459444 -0.01989086 0.063942 0.038386397 -0.016109748 0.064901866 0.033982102 -0.018912818 0.064510152 0.033833221 -0.028124709 0.060173489 0.04816369 -0.02412748 0.061060127 0.050775066 -0.024633581 0.061766889 0.046401709 -0.0083523402 0.061106868 0.054754488 -0.010181202 0.061799716 0.050001487 -0.012088007 0.061633985 0.053462464 0.0022106967 0.060611941 0.058308683 -0.00031286132 0.060558237 0.058867712 0.00022902036 0.060503852 0.06183156 -0.026798161 0.061189823 0.045465074 -0.028124709 0.060173489 0.04816369 -0.024633581 0.061766889 0.046401709 -0.024341121 0.062342398 0.043101329 -0.026798161 0.061189823 0.045465074 -0.024633581 0.061766889 0.046401709 -0.024341121 0.062342398 0.043101329 -0.026083253 0.062067121 0.040934578 -0.026798161 0.061189823 0.045465074 -0.026083253 0.062067121 0.040934578 -0.025798375 0.06254293 0.035459444 -0.028082142 0.060980245 0.043193325 -0.019278906 0.063197151 0.04409977 -0.022451157 0.062978581 0.041982554 -0.022859164 0.062381145 0.045489568 -0.023291716 0.063271575 0.037656918 -0.018912818 0.064510152 0.033833221 -0.022727212 0.063614115 0.034117308 -0.018497063 0.061540201 0.053736459 -0.021356888 0.061805114 0.05045322 -0.019251294 0.061135918 0.055211194 -0.019251294 0.061135918 0.055211194 -0.02412748 0.061060127 0.050775066 -0.023021473 0.059874505 0.0567648 -0.018086648 0.063983463 0.039773617 -0.013734838 0.065198943 0.033156719 -0.016109748 0.064901866 0.033982102 0.012772475 0.062298674 0.050790228 0.0087065743 0.06167452 0.051190563 0.015160806 0.062533297 0.052282523 -0.019251294 0.061135918 0.055211194 -0.021356888 0.061805114 0.05045322 -0.02412748 0.061060127 0.050775066 0.0092872316 0.063835837 0.040235814 0.0068814834 0.064246625 0.037794203 0.0054138568 0.062521316 0.044250004 -0.023291716 0.063271575 0.037656918 -0.022727212 0.063614115 0.034117308 -0.025798375 0.06254293 0.035459444 0.00022902036 0.060503852 0.06183156 -0.00031286132 0.060558237 0.058867712 -0.0042830179 0.06056831 0.060783189 0.017530123 0.059696183 0.06509424 0.016100727 0.060630515 0.063053764 0.015582175 0.059981424 0.063088581 0.019556176 0.057958279 0.067539655 0.017530123 0.059696183 0.06509424 0.015582175 0.059981424 0.063088581 0.015160806 0.062533297 0.052282523 0.01598171 0.063210435 0.048477061 0.012772475 0.062298674 0.050790228 0.020891456 0.058336407 0.067605898 0.019020017 0.059513189 0.065811425 0.019869292 0.058467712 0.067426585 0.0069537526 0.060852569 0.060833402 0.0063469331 0.061128177 0.054011311 0.0022106967 0.060611941 0.058308683 0.01598171 0.063210435 0.048477061 0.013164713 0.062648617 0.048874393 0.012772475 0.062298674 0.050790228 -0.0022815194 0.060580961 0.058599859 -0.0042830179 0.06056831 0.060783189 -0.00031286132 0.060558237 0.058867712 0.017530123 0.059696183 0.06509424 0.019869292 0.058467712 0.067426585 0.019020017 0.059513189 0.065811425 -0.0035614595 0.061562844 0.048462272 -0.0076388721 0.062565349 0.044195108 -0.010181202 0.061799716 0.050001487 0.0054138568 0.062521316 0.044250004 0.0023266743 0.063918076 0.037961833 -0.0020135685 0.062482856 0.043352772 0.019869292 0.058467712 0.067426585 0.017530123 0.059696183 0.06509424 0.019556176 0.057958279 0.067539655 -0.0020135685 0.062482856 0.043352772 -0.0076388721 0.062565349 0.044195108 -0.0035614595 0.061562844 0.048462272 0.019020017 0.059513189 0.065811425 0.016210938 0.060986232 0.062042747 0.016100727 0.060630515 0.063053764 0.0054138568 0.062521316 0.044250004 0.0068814834 0.064246625 0.037794203 0.0023266743 0.063918076 0.037961833 0.017530123 0.059696183 0.06509424 0.019020017 0.059513189 0.065811425 0.016100727 0.060630515 0.063053764 0.019869292 0.058467712 0.067426585 0.019556176 0.057958279 0.067539655 0.020891456 0.058336407 0.067605898 0.0022106967 0.060611941 0.058308683 0.00080847729 0.060815647 0.054483037 -0.00031286132 0.060558237 0.058867712 0.012772475 0.062298674 0.050790228 0.010571112 0.062344935 0.048235092 0.0087065743 0.06167452 0.051190563 0.0063469331 0.061128177 0.054011311 0.00080847729 0.060815647 0.054483037 0.0022106967 0.060611941 0.058308683 0.011935592 0.06503652 0.037312061 0.0068814834 0.064246625 0.037794203 0.0092872316 0.063835837 0.040235814 0.020891456 0.058336407 0.067605898 0.019556176 0.057958279 0.067539655 0.022113597 0.057371616 0.067922987 0.01598171 0.063210435 0.048477061 0.012734017 0.063054249 0.045986228 0.013164713 0.062648617 0.048874393 0.013164713 0.062648617 0.048874393 0.012734017 0.063054249 0.045986228 0.010571112 0.062344935 0.048235092 -0.0022815194 0.060580961 0.058599859 -0.0042885835 0.060693108 0.057082344 -0.0042830179 0.06056831 0.060783189 0.020891456 0.058336407 0.067605898 0.022113597 0.057371616 0.067922987 0.022587443 0.057961293 0.067396313 0.016055254 0.061030261 0.061020374 0.015377978 0.060285702 0.061589748 0.015582175 0.059981424 0.063088581 0.016055254 0.061030261 0.061020374 0.015582175 0.059981424 0.063088581 0.016100727 0.060630515 0.063053764 0.016100727 0.060630515 0.063053764 0.016210938 0.060986232 0.062042747 0.016055254 0.061030261 0.061020374 0.015377978 0.060285702 0.061589748 0.016055254 0.061030261 0.061020374 0.018157609 0.061077598 0.057529338 -0.0047498709 0.065032862 0.033260744 -0.0098022316 0.064247318 0.036494039 -0.0073340083 0.064887591 0.035355952 -0.0047498709 0.065032862 0.033260744 -0.0078520672 0.064351656 0.034613099 -0.0098022316 0.064247318 0.036494039 0.020157127 0.061840948 0.053244416 0.018157609 0.061077598 0.057529338 0.019687001 0.062055595 0.055948656 0.019687001 0.062055595 0.055948656 0.021434311 0.062881827 0.052062429 0.02123387 0.062994227 0.050089315 -0.013550976 0.062823176 0.042113766 -0.013581457 0.063104235 0.043247886 -0.012758142 0.063111573 0.040172789 0.02123387 0.062994227 0.050089315 0.020157127 0.061840948 0.053244416 0.019687001 0.062055595 0.055948656 0.021434311 0.062881827 0.052062429 0.021986274 0.063737586 0.047168367 0.02123387 0.062994227 0.050089315 0.018157609 0.061077598 0.057529338 0.016055254 0.061030261 0.061020374 0.019687001 0.062055595 0.055948656 0.020040024 0.062124223 0.056162272 0.021434311 0.062881827 0.052062429 0.019687001 0.062055595 0.055948656 0.016055254 0.061030261 0.061020374 0.020040024 0.062124223 0.056162272 0.019687001 0.062055595 0.055948656 0.021097384 0.062829398 0.047833476 0.020157127 0.061840948 0.053244416 0.02123387 0.062994227 0.050089315 0.020580722 0.064611509 0.041054215 0.021411456 0.063628875 0.046506431 0.021986274 0.063737586 0.047168367 -0.0079456754 0.060563404 0.059260145 -0.01183155 0.060513999 0.055628195 -0.0092517408 0.060163282 0.058581505 0.021097384 0.062829398 0.047833476 0.021411456 0.063628875 0.046506431 0.020080553 0.063910976 0.040992428 -0.0079456754 0.060563404 0.059260145 -0.0092517408 0.060163282 0.058581505 -0.0079119056 0.060026791 0.059650395 0.020080553 0.063910976 0.040992428 0.021411456 0.063628875 0.046506431 0.020580722 0.064611509 0.041054215 0.02123387 0.062994227 0.050089315 0.021986274 0.063737586 0.047168367 0.021411456 0.063628875 0.046506431 -0.0079456754 0.060563404 0.059260145 -0.0079119056 0.060026791 0.059650395 -0.0047192033 0.059808347 0.061423793 -0.003877301 0.06019301 0.061529856 -0.0079456754 0.060563404 0.059260145 -0.0047192033 0.059808347 0.061423793 0.021411456 0.063628875 0.046506431 0.021097384 0.062829398 0.047833476 0.02123387 0.062994227 0.050089315 -0.003877301 0.06019301 0.061529856 -0.0047192033 0.059808347 0.061423793 -0.0014654081 0.059579052 0.062395938 0.016210938 0.060986232 0.062042747 0.020040024 0.062124223 0.056162272 0.016055254 0.061030261 0.061020374 -0.003877301 0.06019301 0.061529856 -0.0014654081 0.059579052 0.062395938 0.0017451025 0.060216535 0.062388282 0.029226605 0.063570164 0.037677985 0.030500812 0.06269151 0.043131068 0.030129245 0.06277734 0.038615927 0.030500812 0.06269151 0.043131068 0.031021519 0.062191214 0.044501644 0.030962417 0.062112544 0.042068921 0.031021519 0.062191214 0.044501644 0.030500812 0.06269151 0.043131068 0.03081914 0.061561435 0.049236145 0.0032017236 0.065504342 0.032360379 -0.00097786076 0.06544885 0.032968652 0.0064136456 0.065524936 0.033650536 0.031021519 0.062191214 0.044501644 0.03081914 0.061561435 0.049236145 0.031237965 0.060820129 0.049666435 0.026921311 0.058390163 0.062463131 0.024715513 0.05804275 0.065402873 0.022113597 0.057371616 0.067922987 0.030737467 0.060618792 0.052467469 0.029258717 0.059284691 0.057876725 0.031237965 0.060820129 0.049666435 0.029483873 0.063304327 0.037251029 0.029226605 0.063570164 0.037677985 0.030129245 0.06277734 0.038615927 0.031237965 0.060820129 0.049666435 0.030962417 0.062112544 0.042068921 0.031021519 0.062191214 0.044501644 -0.00097786076 0.06544885 0.032968652 0.00078671885 0.065410458 0.032147802 -0.0047498709 0.065032862 0.033260744 0.029258717 0.059284691 0.057876725 0.028918758 0.059902199 0.057756186 0.026921311 0.058390163 0.062463131 -0.0094077839 0.064508095 0.037185967 -0.0098022316 0.064247318 0.036494039 -0.011315966 0.064004235 0.038549595 -0.012576818 0.0635603 0.042204894 -0.011315966 0.064004235 0.038549595 -0.012758142 0.063111573 0.040172789 -0.012576818 0.0635603 0.042204894 -0.012758142 0.063111573 0.040172789 -0.013581457 0.063104235 0.043247886 -0.013581457 0.063104235 0.043247886 -0.014426991 0.061869532 0.046900865 -0.013471999 0.062836163 0.046234049 0.024639746 0.058702774 0.064563513 0.024715513 0.05804275 0.065402873 0.026708461 0.059010949 0.062182557 0.030129245 0.06277734 0.038615927 0.030500812 0.06269151 0.043131068 0.030962417 0.062112544 0.042068921 0.030737467 0.060618792 0.052467469 0.03081914 0.061561435 0.049236145 0.030099208 0.060670897 0.053905904 0.031237965 0.060820129 0.049666435 0.03081914 0.061561435 0.049236145 0.030737467 0.060618792 0.052467469 -0.010324374 0.061199956 0.05621643 -0.011795175 0.061225723 0.054978691 -0.01183155 0.060513999 0.055628195 0.030737467 0.060618792 0.052467469 0.030099208 0.060670897 0.053905904 0.028918758 0.059902199 0.057756186 -0.0079456754 0.060563404 0.059260145 -0.010324374 0.061199956 0.05621643 -0.01183155 0.060513999 0.055628195 0.029258717 0.059284691 0.057876725 0.030737467 0.060618792 0.052467469 0.028918758 0.059902199 0.057756186 0.028918758 0.059902199 0.057756186 0.026708461 0.059010949 0.062182557 0.026921311 0.058390163 0.062463131 0.00022902036 0.060503852 0.06183156 -0.0042830179 0.06056831 0.060783189 -0.003877301 0.06019301 0.061529856 0.00022902036 0.060503852 0.06183156 -0.003877301 0.06019301 0.061529856 0.0017451025 0.060216535 0.062388282 0.024715513 0.05804275 0.065402873 0.024639746 0.058702774 0.064563513 0.022587443 0.057961293 0.067396313 0.0015236101 0.065000772 0.031736009 -0.0014972232 0.064994581 0.03201611 0.00078671885 0.065410458 0.032147802 -0.00097786076 0.06544885 0.032968652 -0.0047498709 0.065032862 0.033260744 -0.0073340083 0.064887591 0.035355952 0.022113597 0.057371616 0.067922987 0.024715513 0.05804275 0.065402873 0.022587443 0.057961293 0.067396313 0.024715513 0.05804275 0.065402873 0.026921311 0.058390163 0.062463131 0.026708461 0.059010949 0.062182557 0.027819663 0.063898355 0.036352247 0.028699173 0.063293114 0.036311097 0.026687348 0.063658655 0.036023922 -0.0094077839 0.064508095 0.037185967 -0.0073340083 0.064887591 0.035355952 -0.0098022316 0.064247318 0.036494039 0.029226605 0.063570164 0.037677985 0.028699173 0.063293114 0.036311097 0.027819663 0.063898355 0.036352247 -0.01121701 0.064068377 0.039458062 -0.0094077839 0.064508095 0.037185967 -0.011315966 0.064004235 0.038549595 0.029226605 0.063570164 0.037677985 0.027819663 0.063898355 0.036352247 0.026384585 0.064377829 0.037207451 -0.01121701 0.064068377 0.039458062 -0.011315966 0.064004235 0.038549595 -0.012576818 0.0635603 0.042204894 0.027819663 0.063898355 0.036352247 0.026687348 0.063658655 0.036023922 0.02373584 0.064641267 0.037964012 0.030129245 0.06277734 0.038615927 0.028699173 0.063293114 0.036311097 0.029483873 0.063304327 0.037251029 -0.013471999 0.062836163 0.046234049 -0.012576818 0.0635603 0.042204894 -0.013581457 0.063104235 0.043247886 -0.013801916 0.06225327 0.048990797 -0.013471999 0.062836163 0.046234049 -0.014426991 0.061869532 0.046900865 -0.013801916 0.06225327 0.048990797 -0.014426991 0.061869532 0.046900865 -0.014187837 0.061485264 0.049698588 -0.013801916 0.06225327 0.048990797 -0.014187837 0.061485264 0.049698588 -0.013220429 0.06093213 0.053022049 0.029226605 0.063570164 0.037677985 0.029483873 0.063304327 0.037251029 0.028699173 0.063293114 0.036311097 -0.011795175 0.061225723 0.054978691 -0.013801916 0.06225327 0.048990797 -0.013220429 0.06093213 0.053022049 0.027819663 0.063898355 0.036352247 0.02373584 0.064641267 0.037964012 0.026384585 0.064377829 0.037207451 0.02373584 0.064641267 0.037964012 0.021754844 0.064903162 0.039419942 0.026384585 0.064377829 0.037207451 -0.0076816124 0.060812138 0.058856159 -0.010324374 0.061199956 0.05621643 -0.0079456754 0.060563404 0.059260145 0.021754844 0.064903162 0.039419942 0.02373584 0.064641267 0.037964012 0.021384245 0.064697079 0.038906757 0.020754825 0.064129189 0.039035071 0.021384245 0.064697079 0.038906757 0.026687348 0.063658655 0.036023922 0.026687348 0.063658655 0.036023922 0.021384245 0.064697079 0.038906757 0.02373584 0.064641267 0.037964012 0.021754844 0.064903162 0.039419942 0.021384245 0.064697079 0.038906757 0.020580722 0.064611509 0.041054215 0.020580722 0.064611509 0.041054215 0.021384245 0.064697079 0.038906757 0.020615559 0.064668439 0.040048454 0.020615559 0.064668439 0.040048454 0.020080553 0.063910976 0.040992428 0.020580722 0.064611509 0.041054215 -0.0042830179 0.06056831 0.060783189 -0.0079456754 0.060563404 0.059260145 -0.003877301 0.06019301 0.061529856 0.020615559 0.064668439 0.040048454 0.020754825 0.064129189 0.039035071 0.020080553 0.063910976 0.040992428 0.021384245 0.064697079 0.038906757 0.020754825 0.064129189 0.039035071 0.020615559 0.064668439 0.040048454 0.024857603 0.060968727 0.058185548 0.02220135 0.060210098 0.062294561 0.025951043 0.06020591 0.059752189 0.020040024 0.062124223 0.056162272 0.016210938 0.060986232 0.062042747 0.019715192 0.061429836 0.059340879 0.00078671885 0.065410458 0.032147802 -0.0014972232 0.064994581 0.03201611 -0.0047498709 0.065032862 0.033260744 0.028293958 0.063726678 0.039754324 0.025773263 0.064281203 0.04005618 0.028020257 0.063205525 0.045035522 0.023602847 0.063458338 0.048194632 0.021434311 0.062881827 0.052062429 0.025127729 0.062318552 0.052785952 0.026881397 0.062975742 0.047988053 0.029240448 0.06194111 0.05008027 0.028020257 0.063205525 0.045035522 -0.0047498709 0.065032862 0.033260744 -0.0014972232 0.064994581 0.03201611 -0.0078520672 0.064351656 0.034613099 -0.010324374 0.061199956 0.05621643 -0.012088007 0.061633985 0.053462464 -0.011795175 0.061225723 0.054978691 0.029240448 0.06194111 0.05008027 0.026881397 0.062975742 0.047988053 0.026736861 0.062238678 0.051729534 0.024857603 0.060968727 0.058185548 0.025951043 0.06020591 0.059752189 0.028557973 0.061030995 0.054587141 -0.0098022316 0.064247318 0.036494039 -0.0078520672 0.064351656 0.034613099 -0.011215281 0.063579679 0.037762195 -0.0079456754 0.060563404 0.059260145 -0.0042830179 0.06056831 0.060783189 -0.0076816124 0.060812138 0.058856159 0.024857603 0.060968727 0.058185548 0.028557973 0.061030995 0.054587141 0.026007975 0.062012814 0.053398471 0.025951043 0.06020591 0.059752189 0.02220135 0.060210098 0.062294561 0.024639746 0.058702774 0.064563513 -0.011315966 0.064004235 0.038549595 -0.0098022316 0.064247318 0.036494039 -0.011215281 0.063579679 0.037762195 0.028020257 0.063205525 0.045035522 0.03081914 0.061561435 0.049236145 0.030500812 0.06269151 0.043131068 0.019715192 0.061429836 0.059340879 0.016210938 0.060986232 0.062042747 0.020257372 0.060668077 0.061908629 -0.012758142 0.063111573 0.040172789 -0.011315966 0.064004235 0.038549595 -0.011215281 0.063579679 0.037762195 0.020580722 0.064611509 0.041054215 0.021986274 0.063737586 0.047168367 0.021754844 0.064903162 0.039419942 0.025127729 0.062318552 0.052785952 0.026736861 0.062238678 0.051729534 0.026881397 0.062975742 0.047988053 0.021754844 0.064903162 0.039419942 0.021986274 0.063737586 0.047168367 0.024940202 0.063998438 0.043680407 -0.013581457 0.063104235 0.043247886 -0.013550976 0.062823176 0.042113766 -0.014426991 0.061869532 0.046900865 0.028020257 0.063205525 0.045035522 0.029240448 0.06194111 0.05008027 0.03081914 0.061561435 0.049236145 0.021434311 0.062881827 0.052062429 0.023096025 0.061755795 0.056523412 0.025127729 0.062318552 0.052785952 0.025951043 0.06020591 0.059752189 0.026708461 0.059010949 0.062182557 0.028918758 0.059902199 0.057756186 -0.012088007 0.061633985 0.053462464 -0.013801916 0.06225327 0.048990797 -0.011795175 0.061225723 0.054978691 0.021754844 0.064903162 0.039419942 0.025773263 0.064281203 0.04005618 0.026384585 0.064377829 0.037207451 0.025127729 0.062318552 0.052785952 0.023096025 0.061755795 0.056523412 0.026007975 0.062012814 0.053398471 0.021754844 0.064903162 0.039419942 0.024940202 0.063998438 0.043680407 0.025773263 0.064281203 0.04005618 0.020257372 0.060668077 0.061908629 0.019020017 0.059513189 0.065811425 0.02220135 0.060210098 0.062294561 0.025951043 0.06020591 0.059752189 0.024639746 0.058702774 0.064563513 0.026708461 0.059010949 0.062182557 -0.011795175 0.061225723 0.054978691 -0.013220429 0.06093213 0.053022049 -0.01183155 0.060513999 0.055628195 -0.012088007 0.061633985 0.053462464 -0.013471999 0.062836163 0.046234049 -0.013801916 0.06225327 0.048990797 0.026384585 0.064377829 0.037207451 0.025773263 0.064281203 0.04005618 0.028293958 0.063726678 0.039754324 0.016210938 0.060986232 0.062042747 0.019020017 0.059513189 0.065811425 0.020257372 0.060668077 0.061908629 0.0041866591 0.064941853 0.031965651 0.0015236101 0.065000772 0.031736009 0.0032017236 0.065504342 0.032360379 0.00078671885 0.065410458 0.032147802 0.0032017236 0.065504342 0.032360379 0.0015236101 0.065000772 0.031736009 0.029240448 0.06194111 0.05008027 0.030099208 0.060670897 0.053905904 0.03081914 0.061561435 0.049236145 0.026736861 0.062238678 0.051729534 0.028557973 0.061030995 0.054587141 0.029240448 0.06194111 0.05008027 0.0032017236 0.065504342 0.032360379 0.00078671885 0.065410458 0.032147802 -0.00097786076 0.06544885 0.032968652 0.026384585 0.064377829 0.037207451 0.028293958 0.063726678 0.039754324 0.029226605 0.063570164 0.037677985 0.024940202 0.063998438 0.043680407 0.028020257 0.063205525 0.045035522 0.025773263 0.064281203 0.04005618 0.026736861 0.062238678 0.051729534 0.026007975 0.062012814 0.053398471 0.028557973 0.061030995 0.054587141 0.02220135 0.060210098 0.062294561 0.019020017 0.059513189 0.065811425 0.024639746 0.058702774 0.064563513 0.020040024 0.062124223 0.056162272 0.019715192 0.061429836 0.059340879 0.021434311 0.062881827 0.052062429 0.021986274 0.063737586 0.047168367 0.023602847 0.063458338 0.048194632 0.024940202 0.063998438 0.043680407 0.021434311 0.062881827 0.052062429 0.019715192 0.061429836 0.059340879 0.023096025 0.061755795 0.056523412 0.029240448 0.06194111 0.05008027 0.028557973 0.061030995 0.054587141 0.030099208 0.060670897 0.053905904 0.0028248769 0.059687041 0.062574171 0.0072810762 0.06041529 0.06132533 0.0036266712 0.06021414 0.06229715 0.0028248769 0.059687041 0.062574171 0.0087428438 0.060200706 0.060803868 0.0072810762 0.06041529 0.06132533 0.019020017 0.059513189 0.065811425 0.020891456 0.058336407 0.067605898 0.024639746 0.058702774 0.064563513 0.0072810762 0.06041529 0.06132533 0.010251409 0.06084279 0.05965871 0.010095557 0.06125864 0.058920998 0.0087428438 0.060200706 0.060803868 0.010251409 0.06084279 0.05965871 0.0072810762 0.06041529 0.06132533 0.023096025 0.061755795 0.056523412 0.024857603 0.060968727 0.058185548 0.026007975 0.062012814 0.053398471 0.024639746 0.058702774 0.064563513 0.020891456 0.058336407 0.067605898 0.022587443 0.057961293 0.067396313 0.015663229 0.062079236 0.05294117 0.013303827 0.061524328 0.056686468 0.015027351 0.061460447 0.054666318 0.015663229 0.062079236 0.05294117 0.015027351 0.061460447 0.054666318 0.016530439 0.06220017 0.050741747 0.015663229 0.062079236 0.05294117 0.016530439 0.06220017 0.050741747 0.016385123 0.063093208 0.048623223 0.023602847 0.063458338 0.048194632 0.026881397 0.062975742 0.047988053 0.024940202 0.063998438 0.043680407 0.024940202 0.063998438 0.043680407 0.026881397 0.062975742 0.047988053 0.028020257 0.063205525 0.045035522 0.019715192 0.061429836 0.059340879 0.020257372 0.060668077 0.061908629 0.023096025 0.061755795 0.056523412 0.015758408 0.063785225 0.041370373 0.016632965 0.063396692 0.045639813 0.016801417 0.063009918 0.044874795 0.014388518 0.064107642 0.038734101 0.014928392 0.064400494 0.041110467 0.015758408 0.063785225 0.041370373 0.013540617 0.064755172 0.038528536 0.014388518 0.064107642 0.038734101 0.011417584 0.065058678 0.036019351 0.028293958 0.063726678 0.039754324 0.028020257 0.063205525 0.045035522 0.030500812 0.06269151 0.043131068 0.011417584 0.065058678 0.036019351 0.014388518 0.064107642 0.038734101 0.011127162 0.064701296 0.0352262 0.028293958 0.063726678 0.039754324 0.030500812 0.06269151 0.043131068 0.029226605 0.063570164 0.037677985 0.021986274 0.063737586 0.047168367 0.021434311 0.062881827 0.052062429 0.023602847 0.063458338 0.048194632 0.028557973 0.061030995 0.054587141 0.028918758 0.059902199 0.057756186 0.030099208 0.060670897 0.053905904 0.023602847 0.063458338 0.048194632 0.025127729 0.062318552 0.052785952 0.026881397 0.062975742 0.047988053 0.023096025 0.061755795 0.056523412 0.020257372 0.060668077 0.061908629 0.02220135 0.060210098 0.062294561 0.0066787461 0.06543009 0.033202816 0.011127162 0.064701296 0.0352262 0.0067250412 0.065023087 0.032748066 0.023096025 0.061755795 0.056523412 0.02220135 0.060210098 0.062294561 0.024857603 0.060968727 0.058185548 0.028557973 0.061030995 0.054587141 0.025951043 0.06020591 0.059752189 0.028918758 0.059902199 0.057756186 0.0066787461 0.06543009 0.033202816 0.0067250412 0.065023087 0.032748066 0.0041866591 0.064941853 0.031965651 0.0098319612 0.059445605 0.06741517 0.0096989432 0.059089202 0.066501983 0.0082546035 0.059826434 0.06684003 0.0066787461 0.06543009 0.033202816 0.0041866591 0.064941853 0.031965651 0.0032017236 0.065504342 0.032360379 0.0073549827 0.05915492 0.065776594 0.0074989265 0.05964487 0.066124499 0.0096989432 0.059089202 0.066501983 0.0096989432 0.059089202 0.066501983 0.0074989265 0.05964487 0.066124499 0.0082546035 0.059826434 0.06684003 -0.010309165 0.05097232 0.077977769 -0.010050259 0.050432514 0.078248769 -0.0046903677 0.050825592 0.07943096 -0.01654283 0.051586851 0.074979953 -0.013383103 0.050829507 0.076920755 -0.015651492 0.051813684 0.075514533 0.0028248769 0.059687041 0.062574171 0.0017451025 0.060216535 0.062388282 -0.0014654081 0.059579052 0.062395938 -0.010309165 0.05097232 0.077977769 -0.013383103 0.050829507 0.076920755 -0.010050259 0.050432514 0.078248769 -0.015651492 0.051813684 0.075514533 -0.013383103 0.050829507 0.076920755 -0.010309165 0.05097232 0.077977769 -0.0020702444 0.05044454 0.080024645 0.0019460743 0.050715864 0.080266349 0.0025881091 0.051236413 0.080096416 0.00022902036 0.060503852 0.06183156 0.0017451025 0.060216535 0.062388282 0.0069537526 0.060852569 0.060833402 0.0028248769 0.059687041 0.062574171 0.0036266712 0.06021414 0.06229715 0.0017451025 0.060216535 0.062388282 0.0025881091 0.051236413 0.080096416 -0.0046903677 0.050825592 0.07943096 -0.0020702444 0.05044454 0.080024645 -0.010050259 0.050432514 0.078248769 -0.0020702444 0.05044454 0.080024645 -0.0046903677 0.050825592 0.07943096 0.013303827 0.061524328 0.056686468 0.010251409 0.06084279 0.05965871 0.012034031 0.06060167 0.058504 0.0073862355 0.053126637 0.078374997 0.0044292891 0.051729124 0.079813153 0.0055069928 0.051274266 0.07980521 0.0055069928 0.051274266 0.07980521 0.0044292891 0.051729124 0.079813153 0.0019460743 0.050715864 0.080266349 0.0019460743 0.050715864 0.080266349 0.0044292891 0.051729124 0.079813153 0.0025881091 0.051236413 0.080096416 0.016632965 0.063396692 0.045639813 0.016385123 0.063093208 0.048623223 0.016801417 0.063009918 0.044874795 0.012308554 0.054709069 0.07589899 0.012427562 0.055412829 0.075314432 0.0073862355 0.053126637 0.078374997 0.014928392 0.064400494 0.041110467 0.016632965 0.063396692 0.045639813 0.015758408 0.063785225 0.041370373 0.012308554 0.054709069 0.07589899 0.0073862355 0.053126637 0.078374997 0.0055069928 0.051274266 0.07980521 0.014928392 0.064400494 0.041110467 0.014388518 0.064107642 0.038734101 0.013540617 0.064755172 0.038528536 -0.015651492 0.051813684 0.075514533 -0.018038988 0.053850491 0.072135426 -0.01654283 0.051586851 0.074979953 -0.018038988 0.053850491 0.072135426 -0.020934517 0.055740595 0.068036325 -0.019377131 0.053870425 0.07094644 -0.01654283 0.051586851 0.074979953 -0.018038988 0.053850491 0.072135426 -0.019377131 0.053870425 0.07094644 -0.02121295 0.05478698 0.068201415 -0.019377131 0.053870425 0.07094644 -0.020934517 0.055740595 0.068036325 0.011417584 0.065058678 0.036019351 0.011127162 0.064701296 0.0352262 0.0066787461 0.06543009 0.033202816 -0.014477459 0.057106432 0.068524256 -0.013196657 0.058432687 0.066345401 -0.018181944 0.0582042 0.065086395 -0.0058037303 0.056500509 0.071910128 -0.0091277305 0.056219742 0.071579546 -0.0084233573 0.054696131 0.074052654 -0.0048837205 0.053960655 0.07582736 -0.0046217362 0.055033721 0.07438606 -0.0084233573 0.054696131 0.074052654 -0.0084233573 0.054696131 0.074052654 -0.0046217362 0.055033721 0.07438606 -0.0058037303 0.056500509 0.071910128 0.0069537526 0.060852569 0.060833402 0.0072810762 0.06041529 0.06132533 0.010095557 0.06125864 0.058920998 -0.013196657 0.058432687 0.066345401 -0.015054628 0.059263039 0.063928448 -0.018181944 0.0582042 0.065086395 0.013303827 0.061524328 0.056686468 0.010095557 0.06125864 0.058920998 0.010251409 0.06084279 0.05965871 0.0087428438 0.060200706 0.060803868 0.012034031 0.06060167 0.058504 0.010251409 0.06084279 0.05965871 -0.014718799 0.059918676 0.062186267 -0.018181944 0.0582042 0.065086395 -0.015054628 0.059263039 0.063928448 0.013291343 0.061855674 0.05595516 0.013303827 0.061524328 0.056686468 0.015663229 0.062079236 0.05294117 -0.014477459 0.057106432 0.068524256 -0.018626386 0.056338865 0.06832239 -0.015388378 0.055363182 0.071073443 0.015663229 0.062079236 0.05294117 0.015160806 0.062533297 0.052282523 0.013291343 0.061855674 0.05595516 0.015160806 0.062533297 0.052282523 0.015663229 0.062079236 0.05294117 0.016385123 0.063093208 0.048623223 0.015160806 0.062533297 0.052282523 0.016385123 0.063093208 0.048623223 0.01598171 0.063210435 0.048477061 -0.011076635 0.052560098 0.076053344 -0.014587693 0.053394072 0.074007861 -0.015651492 0.051813684 0.075514533 -0.0058514187 0.059236195 0.066583797 -0.015054628 0.059263039 0.063928448 -0.013196657 0.058432687 0.066345401 -0.014477459 0.057106432 0.068524256 -0.018181944 0.0582042 0.065086395 -0.018626386 0.056338865 0.06832239 -0.0091277305 0.056219742 0.071579546 -0.015388378 0.055363182 0.071073443 -0.0084233573 0.054696131 0.074052654 0.013540617 0.064755172 0.038528536 0.011417584 0.065058678 0.036019351 0.011935592 0.06503652 0.037312061 0.0093742721 0.065324932 0.035248127 0.011935592 0.06503652 0.037312061 0.011417584 0.065058678 0.036019351 -0.0068671885 0.058072574 0.068869561 -0.014477459 0.057106432 0.068524256 -0.0091277305 0.056219742 0.071579546 -0.0048837205 0.053960655 0.07582736 -0.0084233573 0.054696131 0.074052654 -0.011076635 0.052560098 0.076053344 0.0093742721 0.065324932 0.035248127 0.011417584 0.065058678 0.036019351 0.0066787461 0.06543009 0.033202816 -0.0048837205 0.053960655 0.07582736 -0.011076635 0.052560098 0.076053344 -0.0060748933 0.052151658 0.077755749 -0.0058514187 0.059236195 0.066583797 -0.013590587 0.060096569 0.061993852 -0.015054628 0.059263039 0.063928448 -0.014587693 0.053394072 0.074007861 -0.015388378 0.055363182 0.071073443 -0.018038988 0.053850491 0.072135426 0.0093742721 0.065324932 0.035248127 0.0066787461 0.06543009 0.033202816 0.0064136456 0.065524936 0.033650536 -0.014587693 0.053394072 0.074007861 -0.018038988 0.053850491 0.072135426 -0.015651492 0.051813684 0.075514533 0.0032017236 0.065504342 0.032360379 0.0064136456 0.065524936 0.033650536 0.0066787461 0.06543009 0.033202816 -0.015388378 0.055363182 0.071073443 -0.018626386 0.056338865 0.06832239 -0.018038988 0.053850491 0.072135426 -0.0068671885 0.058072574 0.068869561 -0.013196657 0.058432687 0.066345401 -0.014477459 0.057106432 0.068524256 -0.018038988 0.053850491 0.072135426 -0.018626386 0.056338865 0.06832239 -0.020934517 0.055740595 0.068036325 -0.0084233573 0.054696131 0.074052654 -0.015388378 0.055363182 0.071073443 -0.014587693 0.053394072 0.074007861 0.016632965 0.063396692 0.045639813 0.01598171 0.063210435 0.048477061 0.016385123 0.063093208 0.048623223 -0.018626386 0.056338865 0.06832239 -0.018181944 0.0582042 0.065086395 -0.020519253 0.056617927 0.066837117 0.014928392 0.064400494 0.041110467 0.015835825 0.063877329 0.044625822 0.016632965 0.063396692 0.045639813 -0.0060748933 0.052151658 0.077755749 -0.010309165 0.05097232 0.077977769 -0.0046903677 0.050825592 0.07943096 -0.0060748933 0.052151658 0.077755749 -0.011076635 0.052560098 0.076053344 -0.010309165 0.05097232 0.077977769 -0.018626386 0.056338865 0.06832239 -0.020519253 0.056617927 0.066837117 -0.020934517 0.055740595 0.068036325 -0.0091277305 0.056219742 0.071579546 -0.014477459 0.057106432 0.068524256 -0.015388378 0.055363182 0.071073443 -0.0058514187 0.059236195 0.066583797 -0.0068671885 0.058072574 0.068869561 -0.00022706184 0.057119194 0.07192684 -0.0084233573 0.054696131 0.074052654 -0.014587693 0.053394072 0.074007861 -0.011076635 0.052560098 0.076053344 -0.013590587 0.060096569 0.061993852 -0.014718799 0.059918676 0.062186267 -0.015054628 0.059263039 0.063928448 -0.011076635 0.052560098 0.076053344 -0.015651492 0.051813684 0.075514533 -0.010309165 0.05097232 0.077977769 -0.0068671885 0.058072574 0.068869561 -0.0091277305 0.056219742 0.071579546 -0.0058037303 0.056500509 0.071910128 0.010095557 0.06125864 0.058920998 0.013303827 0.061524328 0.056686468 0.013291343 0.061855674 0.05595516 0.015027351 0.061460447 0.054666318 0.013303827 0.061524328 0.056686468 0.012034031 0.06060167 0.058504 -0.0058514187 0.059236195 0.066583797 -0.013196657 0.058432687 0.066345401 -0.0068671885 0.058072574 0.068869561 0.012308554 0.054709069 0.07589899 0.013088093 0.05469691 0.075034112 0.012427562 0.055412829 0.075314432 0.013278116 0.055546116 0.074115925 0.013088093 0.05469691 0.075034112 0.013101067 0.056079999 0.073169127 0.012822104 0.056363139 0.073623419 0.013088093 0.05469691 0.075034112 0.013278116 0.055546116 0.074115925 0.012427562 0.055412829 0.075314432 0.013088093 0.05469691 0.075034112 0.012822104 0.056363139 0.073623419 0.012822104 0.056363139 0.073623419 0.013278116 0.055546116 0.074115925 0.013101067 0.056079999 0.073169127 0.016530439 0.06220017 0.050741747 0.016801417 0.063009918 0.044874795 0.016385123 0.063093208 0.048623223 0.012822104 0.056363139 0.073623419 0.01119554 0.057866782 0.07158874 0.011900687 0.056552891 0.07376948 0.011935592 0.06503652 0.037312061 0.014928392 0.064400494 0.041110467 0.013540617 0.064755172 0.038528536 0.0098319612 0.059445605 0.06741517 0.010249217 0.058813591 0.069643728 0.010951577 0.058536254 0.069568343 0.0082546035 0.059826434 0.06684003 0.010249217 0.058813591 0.069643728 0.0098319612 0.059445605 0.06741517 0.0098319612 0.059445605 0.06741517 0.010951577 0.058536254 0.069568343 0.0096989432 0.059089202 0.066501983 0.01598171 0.063210435 0.048477061 0.016632965 0.063396692 0.045639813 0.015835825 0.063877329 0.044625822 0.013101067 0.056079999 0.073169127 0.0096989432 0.059089202 0.066501983 0.010951577 0.058536254 0.069568343 0.012822104 0.056363139 0.073623419 0.010951577 0.058536254 0.069568343 0.01119554 0.057866782 0.07158874 0.013101067 0.056079999 0.073169127 0.010951577 0.058536254 0.069568343 0.012822104 0.056363139 0.073623419 0.01119554 0.057866782 0.07158874 0.010951577 0.058536254 0.069568343 0.010249217 0.058813591 0.069643728 -0.021309497 0.055387683 0.066814244 -0.020840762 0.056456111 0.066237956 -0.020734634 0.056144252 0.065721825 -0.020840762 0.056456111 0.066237956 -0.021309497 0.055387683 0.066814244 -0.020934517 0.055740595 0.068036325 -0.020519253 0.056617927 0.066837117 -0.020840762 0.056456111 0.066237956 -0.020934517 0.055740595 0.068036325 -0.020934517 0.055740595 0.068036325 -0.021309497 0.055387683 0.066814244 -0.02121295 0.05478698 0.068201415 0.0088760145 0.054929934 0.076190792 0.0040585245 0.053787116 0.077371299 0.0073862355 0.053126637 0.078374997 0.003079341 0.055553645 0.074851885 -0.00077687443 0.053682886 0.076902054 0.0040585245 0.053787116 0.077371299 0.0040585245 0.053787116 0.077371299 0.0044292891 0.051729124 0.079813153 0.0073862355 0.053126637 0.078374997 -0.00022706184 0.057119194 0.07192684 -0.0028548916 0.056327954 0.07278157 0.003079341 0.055553645 0.074851885 0.0017451025 0.060216535 0.062388282 0.0036266712 0.06021414 0.06229715 0.0069537526 0.060852569 0.060833402 0.01119554 0.057866782 0.07158874 0.0078657512 0.056645721 0.073626429 0.011900687 0.056552891 0.07376948 -0.00022706184 0.057119194 0.07192684 -0.0068671885 0.058072574 0.068869561 -0.0058037303 0.056500509 0.071910128 0.0036266712 0.06021414 0.06229715 0.0072810762 0.06041529 0.06132533 0.0069537526 0.060852569 0.060833402 0.011900687 0.056552891 0.07376948 0.0078657512 0.056645721 0.073626429 0.0088760145 0.054929934 0.076190792 -0.0058037303 0.056500509 0.071910128 -0.0028548916 0.056327954 0.07278157 -0.00022706184 0.057119194 0.07192684 0.0088498602 0.05788964 0.071514271 -0.00022706184 0.057119194 0.07192684 0.0078657512 0.056645721 0.073626429 -4.0499981e-05 0.059163865 0.067813724 -0.00022706184 0.057119194 0.07192684 0.0088498602 0.05788964 0.071514271 0.011900687 0.056552891 0.07376948 0.012427562 0.055412829 0.075314432 0.012822104 0.056363139 0.073623419 0.0040585245 0.053787116 0.077371299 -0.00077687443 0.053682886 0.076902054 0.0044292891 0.051729124 0.079813153 0.012038283 0.065559611 0.019251108 0.015516046 0.065955527 0.02159054 0.016311429 0.065698229 0.021584099 0.0044292891 0.051729124 0.079813153 -0.00077687443 0.053682886 0.076902054 -0.0020692928 0.052382935 0.078250729 0.012038283 0.065559611 0.019251108 0.011385308 0.066138647 0.019637758 0.015516046 0.065955527 0.02159054 0.0087182615 0.065924868 0.018382516 0.011385308 0.066138647 0.019637758 0.012038283 0.065559611 0.019251108 -0.0028548916 0.056327954 0.07278157 -0.0046217362 0.055033721 0.07438606 0.003079341 0.055553645 0.074851885 0.011900687 0.056552891 0.07376948 0.0088760145 0.054929934 0.076190792 0.012427562 0.055412829 0.075314432 0.003079341 0.055553645 0.074851885 -0.0048837205 0.053960655 0.07582736 -0.00077687443 0.053682886 0.076902054 0.0044292891 0.051729124 0.079813153 -0.0020692928 0.052382935 0.078250729 0.0025881091 0.051236413 0.080096416 0.014684499 0.065483145 0.02043771 0.016311429 0.065698229 0.021584099 0.019083885 0.065254375 0.023162056 0.019083885 0.065254375 0.023162056 0.016311429 0.065698229 0.021584099 0.018680548 0.065682404 0.023504194 0.016311429 0.065698229 0.021584099 0.015516046 0.065955527 0.02159054 0.018680548 0.065682404 0.023504194 0.022179849 0.064743362 0.025677823 0.018680548 0.065682404 0.023504194 0.021990694 0.06532608 0.026587436 0.006104331 0.065706357 0.017654136 0.0087182615 0.065924868 0.018382516 0.012038283 0.065559611 0.019251108 0.003079341 0.055553645 0.074851885 -0.0046217362 0.055033721 0.07438606 -0.0048837205 0.053960655 0.07582736 0.0064154118 0.066243723 0.018256674 0.011385308 0.066138647 0.019637758 0.0087182615 0.065924868 0.018382516 -0.00022706184 0.057119194 0.07192684 0.003079341 0.055553645 0.074851885 0.0078657512 0.056645721 0.073626429 0.014684499 0.065483145 0.02043771 0.012038283 0.065559611 0.019251108 0.016311429 0.065698229 0.021584099 -0.00077687443 0.053682886 0.076902054 -0.0048837205 0.053960655 0.07582736 -0.0020692928 0.052382935 0.078250729 -0.0020692928 0.052382935 0.078250729 -0.0046903677 0.050825592 0.07943096 0.0025881091 0.051236413 0.080096416 0.0078657512 0.056645721 0.073626429 0.003079341 0.055553645 0.074851885 0.0040585245 0.053787116 0.077371299 0.0078657512 0.056645721 0.073626429 0.0040585245 0.053787116 0.077371299 0.0088760145 0.054929934 0.076190792 0.019083885 0.065254375 0.023162056 0.018680548 0.065682404 0.023504194 0.022179849 0.064743362 0.025677823 0.021990694 0.06532608 0.026587436 0.02174522 0.0652714 0.02901661 0.022581141 0.064974688 0.027412917 0.02174522 0.0652714 0.02901661 0.022077944 0.064703353 0.029114049 0.022581141 0.064974688 0.027412917 -0.0048837205 0.053960655 0.07582736 -0.0060748933 0.052151658 0.077755749 -0.0020692928 0.052382935 0.078250729 -0.0020692928 0.052382935 0.078250729 -0.0060748933 0.052151658 0.077755749 -0.0046903677 0.050825592 0.07943096 0.0088760145 0.054929934 0.076190792 0.0073862355 0.053126637 0.078374997 0.012427562 0.055412829 0.075314432 0.022581141 0.064974688 0.027412917 0.022179849 0.064743362 0.025677823 0.021990694 0.06532608 0.026587436 -4.0499981e-05 0.059163865 0.067813724 -0.0058514187 0.059236195 0.066583797 -0.00022706184 0.057119194 0.07192684 0.010249217 0.058813591 0.069643728 0.0088498602 0.05788964 0.071514271 0.01119554 0.057866782 0.07158874 0.010249217 0.058813591 0.069643728 0.0082546035 0.059826434 0.06684003 -4.0499981e-05 0.059163865 0.067813724 0.010249217 0.058813591 0.069643728 -4.0499981e-05 0.059163865 0.067813724 0.0088498602 0.05788964 0.071514271 0.0088498602 0.05788964 0.071514271 0.0078657512 0.056645721 0.073626429 0.01119554 0.057866782 0.07158874 0.0087211588 0.066538192 0.028142763 0.011202774 0.065454446 0.030315243 0.015807023 0.065980174 0.032567225 0.015807023 0.065980174 0.032567225 0.011202774 0.065454446 0.030315243 0.015890375 0.065731183 0.033034123 0.0035781825 0.059271924 0.066984609 -4.0499981e-05 0.059163865 0.067813724 0.0082546035 0.059826434 0.06684003 0.0037107232 0.058844652 0.066557474 0.0012042164 0.058639314 0.066665865 0.0035781825 0.059271924 0.066984609 0.0035781825 0.059271924 0.066984609 0.0082546035 0.059826434 0.06684003 0.0074989265 0.05964487 0.066124499 -0.0058514187 0.059236195 0.066583797 -4.0499981e-05 0.059163865 0.067813724 -0.002188592 0.059056714 0.066792645 0.0012042164 0.058639314 0.066665865 -0.0032163321 0.058666378 0.066152856 -0.002188592 0.059056714 0.066792645 0.0073549827 0.05915492 0.065776594 0.0035781825 0.059271924 0.066984609 0.0074989265 0.05964487 0.066124499 0.0037107232 0.058844652 0.066557474 0.0035781825 0.059271924 0.066984609 0.0073549827 0.05915492 0.065776594 0.0054488499 0.065713614 0.028081495 0.0083480189 0.065703571 0.028952263 0.0054979431 0.066301122 0.027816385 0.0083480189 0.065703571 0.028952263 0.011202774 0.065454446 0.030315243 0.0087211588 0.066538192 0.028142763 0.0083480189 0.065703571 0.028952263 0.0087211588 0.066538192 0.028142763 0.0054979431 0.066301122 0.027816385 0.0012042164 0.058639314 0.066665865 -0.002188592 0.059056714 0.066792645 0.0035781825 0.059271924 0.066984609 -4.0499981e-05 0.059163865 0.067813724 0.0035781825 0.059271924 0.066984609 -0.002188592 0.059056714 0.066792645 -0.0087355245 0.058994748 0.063991547 -0.010472219 0.059672602 0.06367261 -0.0055152103 0.059205584 0.06610126 0.011202774 0.065454446 0.030315243 0.014786088 0.065184273 0.032941461 0.015890375 0.065731183 0.033034123 -0.010472219 0.059672602 0.06367261 -0.0058514187 0.059236195 0.066583797 -0.0055152103 0.059205584 0.06610126 -0.0087355245 0.058994748 0.063991547 -0.0055152103 0.059205584 0.06610126 -0.0032163321 0.058666378 0.066152856 -0.002188592 0.059056714 0.066792645 -0.0055152103 0.059205584 0.06610126 -0.0058514187 0.059236195 0.066583797 -0.0032163321 0.058666378 0.066152856 -0.0055152103 0.059205584 0.06610126 -0.002188592 0.059056714 0.066792645 -0.013590587 0.060096569 0.061993852 -0.0058514187 0.059236195 0.066583797 -0.010472219 0.059672602 0.06367261 -0.013590587 0.060096569 0.061993852 -0.010472219 0.059672602 0.06367261 -0.012673934 0.060029797 0.06183584 -0.012673934 0.060029797 0.06183584 -0.010472219 0.059672602 0.06367261 -0.0087355245 0.058994748 0.063991547 -0.012673934 0.060029797 0.06183584 -0.0087355245 0.058994748 0.063991547 -0.012361103 0.059446082 0.061313476 -0.013590587 0.060096569 0.061993852 -0.013384405 0.059581395 0.061014861 -0.01502538 0.059677754 0.06159148 -0.01502538 0.059677754 0.06159148 -0.013384405 0.059581395 0.061014861 -0.015407456 0.059218358 0.061557073 -0.014718799 0.059918676 0.062186267 -0.013590587 0.060096569 0.061993852 -0.01502538 0.059677754 0.06159148 0.0054979431 0.066301122 0.027816385 0.0087211588 0.066538192 0.028142763 0.002790268 0.066598408 0.026910607 0.00074579654 0.066348493 0.027297439 -0.0013136019 0.066501118 0.026970303 -0.0051396992 0.065939434 0.02838764 0.0054979431 0.066301122 0.027816385 0.00080355367 0.06577 0.027638739 0.0054488499 0.065713614 0.028081495 -0.012673934 0.060029797 0.06183584 -0.012361103 0.059446082 0.061313476 -0.013384405 0.059581395 0.061014861 -0.013590587 0.060096569 0.061993852 -0.012673934 0.060029797 0.06183584 -0.013384405 0.059581395 0.061014861 -0.018842572 0.057905581 0.065109164 -0.01502538 0.059677754 0.06159148 -0.020734634 0.056144252 0.065721825 -0.020519253 0.056617927 0.066837117 -0.018181944 0.0582042 0.065086395 -0.018842572 0.057905581 0.065109164 -0.020519253 0.056617927 0.066837117 -0.018842572 0.057905581 0.065109164 -0.020840762 0.056456111 0.066237956 -0.020840762 0.056456111 0.066237956 -0.018842572 0.057905581 0.065109164 -0.020734634 0.056144252 0.065721825 -0.015407456 0.059218358 0.061557073 -0.020734634 0.056144252 0.065721825 -0.01502538 0.059677754 0.06159148 0.00074579654 0.066348493 0.027297439 -0.0012968333 0.065552481 0.027793009 0.00080355367 0.06577 0.027638739 -0.0013136019 0.066501118 0.026970303 0.00074579654 0.066348493 0.027297439 0.002790268 0.066598408 0.026910607 -0.018842572 0.057905581 0.065109164 -0.014718799 0.059918676 0.062186267 -0.01502538 0.059677754 0.06159148 -0.018181944 0.0582042 0.065086395 -0.014718799 0.059918676 0.062186267 -0.018842572 0.057905581 0.065109164 -0.0085868817 0.065497153 0.019188648 -0.0082757287 0.065188676 0.018789155 -0.0095095225 0.0651614 0.019830868 0.00080355367 0.06577 0.027638739 0.0054979431 0.066301122 0.027816385 0.00074579654 0.066348493 0.027297439 -0.0012968333 0.065552481 0.027793009 -0.0051396992 0.065939434 0.02838764 -0.0048600151 0.065413959 0.02857681 0.0054979431 0.066301122 0.027816385 0.002790268 0.066598408 0.026910607 0.00074579654 0.066348493 0.027297439 -0.0089043956 0.065708742 0.019921094 -0.0085868817 0.065497153 0.019188648 -0.0095095225 0.0651614 0.019830868 0.00074579654 0.066348493 0.027297439 -0.0051396992 0.065939434 0.02838764 -0.0012968333 0.065552481 0.027793009 -0.0089043956 0.065708742 0.019921094 -0.0095095225 0.0651614 0.019830868 -0.0096783657 0.065598391 0.021287719 -0.0096783657 0.065598391 0.021287719 -0.0095095225 0.0651614 0.019830868 -0.0098225037 0.065140158 0.022158202 -0.0089043956 0.065708742 0.019921094 -0.0096783657 0.065598391 0.021287719 -0.009043145 0.065912962 0.021953817 -0.0096783657 0.065598391 0.021287719 -0.0079015745 0.066164739 0.024651801 -0.009043145 0.065912962 0.021953817 -0.0079015745 0.066164739 0.024651801 -0.0071174596 0.066062607 0.027244043 -0.00561684 0.066349231 0.0257027 0.002790268 0.066598408 0.026910607 0.0049971472 0.066680297 0.025204141 -0.00053519319 0.06661126 0.02445103 -0.00053519319 0.06661126 0.02445103 0.0026729724 0.066554248 0.020725451 -0.003424488 0.066376969 0.021263419 -0.0013136019 0.066501118 0.026970303 -0.00561684 0.066349231 0.0257027 -0.0071174596 0.066062607 0.027244043 -0.009043145 0.065912962 0.021953817 -0.0039217318 0.066002451 0.018308131 -0.0089043956 0.065708742 0.019921094 -0.009043145 0.065912962 0.021953817 -0.003424488 0.066376969 0.021263419 -0.0039217318 0.066002451 0.018308131 -0.0098225037 0.065140158 0.022158202 -0.0079015745 0.066164739 0.024651801 -0.0096783657 0.065598391 0.021287719 -0.0070310789 0.065443061 0.027911939 -0.0071174596 0.066062607 0.027244043 -0.0098225037 0.065140158 0.022158202 -0.0098225037 0.065140158 0.022158202 -0.0071174596 0.066062607 0.027244043 -0.0079015745 0.066164739 0.024651801 0.0074864742 0.066534124 0.02175229 0.0064154118 0.066243723 0.018256674 0.0026729724 0.066554248 0.020725451 -0.0071174596 0.066062607 0.027244043 -0.0070310789 0.065443061 0.027911939 -0.0062061842 0.06588614 0.028214462 -0.0062061842 0.06588614 0.028214462 -0.0070310789 0.065443061 0.027911939 -0.0048600151 0.065413959 0.02857681 -0.0062061842 0.06588614 0.028214462 -0.0048600151 0.065413959 0.02857681 -0.0051396992 0.065939434 0.02838764 0.0053136721 0.066632532 0.023003504 0.0049971472 0.066680297 0.025204141 0.0079520736 0.066603191 0.023582257 -0.0071174596 0.066062607 0.027244043 -0.0062061842 0.06588614 0.028214462 -0.0051396992 0.065939434 0.02838764 -0.0071174596 0.066062607 0.027244043 -0.0051396992 0.065939434 0.02838764 -0.0013136019 0.066501118 0.026970303 -0.0013136019 0.066501118 0.026970303 0.002790268 0.066598408 0.026910607 -0.00053519319 0.06661126 0.02445103 0.0026729724 0.066554248 0.020725451 0.0064154118 0.066243723 0.018256674 -0.0039217318 0.066002451 0.018308131 0.0026729724 0.066554248 0.020725451 0.0053136721 0.066632532 0.023003504 0.0074864742 0.066534124 0.02175229 0.0049971472 0.066680297 0.025204141 0.0053136721 0.066632532 0.023003504 0.0026729724 0.066554248 0.020725451 -0.00561684 0.066349231 0.0257027 -0.00053519319 0.06661126 0.02445103 -0.003424488 0.066376969 0.021263419 -0.0079015745 0.066164739 0.024651801 -0.003424488 0.066376969 0.021263419 -0.009043145 0.065912962 0.021953817 0.015414531 0.066186376 0.024296511 0.018680548 0.065682404 0.023504194 0.015516046 0.065955527 0.02159054 -0.003424488 0.066376969 0.021263419 0.0026729724 0.066554248 0.020725451 -0.0039217318 0.066002451 0.018308131 0.002790268 0.066598408 0.026910607 0.0087211588 0.066538192 0.028142763 0.0049971472 0.066680297 0.025204141 -0.00561684 0.066349231 0.0257027 -0.003424488 0.066376969 0.021263419 -0.0079015745 0.066164739 0.024651801 -0.0013136019 0.066501118 0.026970303 -0.00053519319 0.06661126 0.02445103 -0.00561684 0.066349231 0.0257027 -0.00053519319 0.06661126 0.02445103 0.0049971472 0.066680297 0.025204141 0.0026729724 0.066554248 0.020725451 0.0074864742 0.066534124 0.02175229 0.011425514 0.066436574 0.022757633 0.0064154118 0.066243723 0.018256674 0.006104331 0.065706357 0.017654136 0.0064154118 0.066243723 0.018256674 0.0087182615 0.065924868 0.018382516 -0.00072828849 0.0655853 0.017327391 0.0028886364 0.065969706 0.017523875 0.006104331 0.065706357 0.017654136 0.006104331 0.065706357 0.017654136 0.0028886364 0.065969706 0.017523875 0.0064154118 0.066243723 0.018256674 0.015414531 0.066186376 0.024296511 0.019710878 0.065744437 0.026704438 0.018680548 0.065682404 0.023504194 0.016907919 0.066116765 0.028560288 0.020388998 0.065684304 0.029682346 0.019710878 0.065744437 0.026704438 0.0028886364 0.065969706 0.017523875 -0.00072828849 0.0655853 0.017327391 -0.0033852372 0.0657878 0.017840818 -0.0039217318 0.066002451 0.018308131 0.0028886364 0.065969706 0.017523875 -0.0033852372 0.0657878 0.017840818 0.0087211588 0.066538192 0.028142763 0.015807023 0.065980174 0.032567225 0.011177083 0.066534057 0.026636822 0.0064154118 0.066243723 0.018256674 0.011425514 0.066436574 0.022757633 0.011385308 0.066138647 0.019637758 -0.0033852372 0.0657878 0.017840818 -0.0082757287 0.065188676 0.018789155 -0.0085868817 0.065497153 0.019188648 0.011425514 0.066436574 0.022757633 0.015516046 0.065955527 0.02159054 0.011385308 0.066138647 0.019637758 0.020388998 0.065684304 0.029682346 0.021990694 0.06532608 0.026587436 0.019710878 0.065744437 0.026704438 0.011177083 0.066534057 0.026636822 0.016907919 0.066116765 0.028560288 0.015414531 0.066186376 0.024296511 -0.0039217318 0.066002451 0.018308131 -0.0085868817 0.065497153 0.019188648 -0.0089043956 0.065708742 0.019921094 0.018680548 0.065682404 0.023504194 0.019710878 0.065744437 0.026704438 0.021990694 0.06532608 0.026587436 0.011425514 0.066436574 0.022757633 0.015414531 0.066186376 0.024296511 0.015516046 0.065955527 0.02159054 -0.0033852372 0.0657878 0.017840818 -0.00072828849 0.0655853 0.017327391 -0.0082757287 0.065188676 0.018789155 0.011177083 0.066534057 0.026636822 0.015414531 0.066186376 0.024296511 0.011425514 0.066436574 0.022757633 -0.0039217318 0.066002451 0.018308131 -0.0033852372 0.0657878 0.017840818 -0.0085868817 0.065497153 0.019188648 0.016907919 0.066116765 0.028560288 0.011177083 0.066534057 0.026636822 0.015807023 0.065980174 0.032567225 0.0064154118 0.066243723 0.018256674 0.0028886364 0.065969706 0.017523875 -0.0039217318 0.066002451 0.018308131 0.015807023 0.065980174 0.032567225 0.020388998 0.065684304 0.029682346 0.016907919 0.066116765 0.028560288 0.015414531 0.066186376 0.024296511 0.016907919 0.066116765 0.028560288 0.019710878 0.065744437 0.026704438 0.0049971472 0.066680297 0.025204141 0.0087211588 0.066538192 0.028142763 0.011177083 0.066534057 0.026636822 0.0049971472 0.066680297 0.025204141 0.011177083 0.066534057 0.026636822 0.0079520736 0.066603191 0.023582257 0.01780924 0.065039031 0.032887887 0.02174522 0.0652714 0.02901661 0.017553864 0.065400288 0.03293357 0.0079520736 0.066603191 0.023582257 0.011425514 0.066436574 0.022757633 0.0074864742 0.066534124 0.02175229 0.02174522 0.0652714 0.02901661 0.020388998 0.065684304 0.029682346 0.017319586 0.065770119 0.032716237 0.017319586 0.065770119 0.032716237 0.020388998 0.065684304 0.029682346 0.015807023 0.065980174 0.032567225 0.0079520736 0.066603191 0.023582257 0.011177083 0.066534057 0.026636822 0.011425514 0.066436574 0.022757633 0.015890375 0.065731183 0.033034123 0.014786088 0.065184273 0.032941461 0.016123828 0.065096647 0.03336706 0.022077944 0.064703353 0.029114049 0.02174522 0.0652714 0.02901661 0.01780924 0.065039031 0.032887887 0.02174522 0.0652714 0.02901661 0.017319586 0.065770119 0.032716237 0.017553864 0.065400288 0.03293357 0.015890375 0.065731183 0.033034123 0.016123828 0.065096647 0.03336706 0.017553864 0.065400288 0.03293357 0.021990694 0.06532608 0.026587436 0.020388998 0.065684304 0.029682346 0.02174522 0.0652714 0.02901661 0.017319586 0.065770119 0.032716237 0.015890375 0.065731183 0.033034123 0.017553864 0.065400288 0.03293357 0.015807023 0.065980174 0.032567225 0.015890375 0.065731183 0.033034123 0.017319586 0.065770119 0.032716237 0.017553864 0.065400288 0.03293357 0.016123828 0.065096647 0.03336706 0.01780924 0.065039031 0.032887887 + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039

+
+
+
+
+ + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + + + + + + + + + + + + + +
diff --git a/external/rlbench/urdfs/panda/meshes/Pandalink6visual_vis_6.dae b/external/rlbench/urdfs/panda/meshes/Pandalink6visual_vis_6.dae new file mode 100644 index 0000000000000000000000000000000000000000..505bc612b4eb34415dce6cca513adad2f779c7a8 --- /dev/null +++ b/external/rlbench/urdfs/panda/meshes/Pandalink6visual_vis_6.dae @@ -0,0 +1,84 @@ + + + + + Assimp + Assimp Exporter + + 2023-09-26T11:24:21 + 2023-09-26T11:24:21 + + Y_UP + + + + + + + + 0 0 0 4.5895327e-41 + + + 0.74000001 0.74000001 0.74000001 4.5893926e-41 + + + 0.74000001 0.74000001 0.74000001 4.5893926e-41 + + + 0.25 0.25 0.25 -3.0261091e+37 + + + + + + + + + + + + + + + + 0.026973082 -0.054311752 -0.006827286 0.0092533305 -0.054428536 -0.012383777 0.02770976 -0.055442926 -0.010210766 0.041397955 -0.046371732 -0.071391843 0.023647906 -0.0090332674 0.010695677 0.039564762 -0.053880852 -0.063550986 0.039564762 -0.053880852 -0.063550986 0.023647906 -0.0090332674 0.010695677 0.038528603 -0.056892537 -0.059049949 0.0081802309 -0.054214958 -0.007535337 0.0092533305 -0.054428536 -0.012383777 0.026973082 -0.054311752 -0.006827286 0.038528603 -0.056892537 -0.059049949 0.023647906 -0.0090332674 0.010695677 0.036285233 -0.061232708 -0.049182784 0.036285233 -0.061232708 -0.049182784 0.023647906 -0.0090332674 0.010695677 0.035107918 -0.062503316 -0.043947972 0.035107918 -0.062503316 -0.043947972 0.023647906 -0.0090332674 0.010695677 0.033913989 -0.063149132 -0.038603332 0.033913989 -0.063149132 -0.038603332 0.023647906 -0.0090332674 0.010695677 0.03271934 -0.063161433 -0.033220157 0.039257783 -0.014357297 -0.083036669 0.0442123 -0.0084139742 -0.081948832 0.044040002 -0.022399021 -0.081955992 0.034937724 -0.0084003685 -0.084008522 0.0442123 -0.0084139742 -0.081948832 0.039257783 -0.014357297 -0.083036669 0.03271934 -0.063161433 -0.033220157 0.023647906 -0.0090332674 0.010695677 0.030661479 -0.061626952 -0.023859911 0.034901999 -0.018440658 -0.084410049 0.034937724 -0.0084003685 -0.084008522 0.039257783 -0.014357297 -0.083036669 0.034901999 -0.018440658 -0.084410049 0.039257783 -0.014357297 -0.083036669 0.044040002 -0.022399021 -0.081955992 0.023143627 -0.066408172 0.0097535504 0.0042556408 -0.066172212 0.0032112405 0.015509452 -0.066312268 0.0059059854 0.023143627 -0.066408172 0.0097535504 -0.007763193 -0.066024378 0.0036481128 0.0042556408 -0.066172212 0.0032112405 -0.007763193 -0.066024378 0.0036481128 0.023143627 -0.066408172 0.0097535504 0.028008422 -0.066501074 0.076677062 0.030661479 -0.061626952 -0.023859911 0.023647906 -0.0090332674 0.010695677 0.028369511 -0.057315491 -0.013288671 -0.0032810632 -0.060227763 0.002892667 0.0083658388 -0.061943348 0.003840399 0.0042556408 -0.066172212 0.0032112405 0.023380108 -0.059234474 0.0090894951 0.024146417 -0.055606995 0.0058348291 0.023143627 -0.066408172 0.0097535504 0.028369511 -0.057315491 -0.013288671 0.023647906 -0.0090332674 0.010695677 0.02770976 -0.055442926 -0.010210766 0.0442123 -0.0084139742 -0.081948832 0.023647906 -0.0090332674 0.010695677 0.044040002 -0.022399021 -0.081955992 0.035080243 0.032511201 -0.038499828 0.023647906 -0.0090332674 0.010695677 0.036254678 0.031851031 -0.043829717 0.036254678 0.031851031 -0.043829717 0.023647906 -0.0090332674 0.010695677 0.037397556 0.030570311 -0.049052279 0.037397556 0.030570311 -0.049052279 0.023647906 -0.0090332674 0.010695677 0.038493842 0.028685762 -0.054098696 0.038493842 0.028685762 -0.054098696 0.023647906 -0.0090332674 0.010695677 0.039529271 0.026222203 -0.05890302 0.039529271 0.026222203 -0.05890302 0.023647906 -0.0090332674 0.010695677 0.040490035 0.023212202 -0.063401587 0.040490035 0.023212202 -0.063401587 0.023647906 -0.0090332674 0.010695677 0.041363478 0.019695228 -0.067535155 0.041363478 0.019695228 -0.067535155 0.023647906 -0.0090332674 0.010695677 0.04213836 0.015717411 -0.071250081 0.04213836 0.015717411 -0.071250081 0.023647906 -0.0090332674 0.010695677 0.042804152 0.011331313 -0.074496523 0.042804152 0.011331313 -0.074496523 0.023647906 -0.0090332674 0.010695677 0.043352377 0.0065946006 -0.077232622 0.043352377 0.0065946006 -0.077232622 0.023647906 -0.0090332674 0.010695677 0.043775585 0.0015695782 -0.079421461 0.043775585 0.0015695782 -0.079421461 0.023647906 -0.0090332674 0.010695677 0.0442123 -0.0084139742 -0.081948832 0.0083658388 -0.061943348 0.003840399 0.015509452 -0.066312268 0.0059059854 0.0042556408 -0.066172212 0.0032112405 0.035080243 0.032511201 -0.038499828 0.033889886 0.03254243 -0.033133432 0.023647906 -0.0090332674 0.010695677 0.033889886 0.03254243 -0.033133432 0.032698978 0.031943616 -0.027799854 0.023647906 -0.0090332674 0.010695677 0.0083658388 -0.061943348 0.003840399 0.023380108 -0.059234474 0.0090894951 0.015509452 -0.066312268 0.0059059854 0.023380108 -0.059234474 0.0090894951 0.023143627 -0.066408172 0.0097535504 0.015509452 -0.066312268 0.0059059854 0.032698978 0.031943616 -0.027799854 0.031523418 0.030722817 -0.022570139 0.023647906 -0.0090332674 0.010695677 0.023647906 -0.0090332674 0.010695677 0.024392193 0.0020736288 0.0079637049 0.02396249 -0.0031543758 0.0096070906 0.031523418 0.030722817 -0.022570139 0.030378649 0.028896453 -0.017513275 0.023647906 -0.0090332674 0.010695677 0.023647906 -0.0090332674 0.010695677 0.024946468 0.00707315 0.0057456973 0.024392193 0.0020736288 0.0079637049 0.030378649 0.028896453 -0.017513275 0.029279558 0.026488574 -0.012695125 0.023647906 -0.0090332674 0.010695677 0.023647906 -0.0090332674 0.010695677 0.025617892 0.011778099 0.0029830735 0.024946468 0.00707315 0.0057456973 0.029279558 0.026488574 -0.012695125 0.028240863 0.023530025 -0.0081793191 0.023647906 -0.0090332674 0.010695677 0.023647906 -0.0090332674 0.010695677 0.026397973 0.016126329 -0.00028880619 0.025617892 0.011778099 0.0029830735 0.028240863 0.023530025 -0.0081793191 0.027276011 0.020061204 -0.0040257256 0.023647906 -0.0090332674 0.010695677 0.023647906 -0.0090332674 0.010695677 0.027276011 0.020061204 -0.0040257256 0.026397973 0.016126329 -0.00028880619 -0.0032810632 -0.060227763 0.002892667 0.0042556408 -0.066172212 0.0032112405 -0.007763193 -0.066024378 0.0036481128 0.02770976 -0.055442926 -0.010210766 0.023647906 -0.0090332674 0.010695677 0.026973082 -0.054311752 -0.006827286 0.026120098 -0.018241707 -0.086371124 0.034937724 -0.0084003685 -0.084008522 0.034901999 -0.018440658 -0.084410049 0.026120098 -0.018241707 -0.086371124 0.026097948 -0.005974967 -0.085584037 0.034937724 -0.0084003685 -0.084008522 0.02499746 -0.054438472 0.0020692628 0.023647906 -0.0090332674 0.010695677 0.024146417 -0.055606995 0.0058348291 0.034937724 -0.0084003685 -0.084008522 0.026097948 -0.005974967 -0.085584037 0.0442123 -0.0084139742 -0.081948832 0.026973082 -0.054311752 -0.006827286 0.023647906 -0.0090332674 0.010695677 0.02499746 -0.054438472 0.0020692628 0.026097948 -0.005974967 -0.085584037 0.025559308 0.0038725189 -0.082604788 0.0442123 -0.0084139742 -0.081948832 0.025559308 0.0038725189 -0.082604788 0.043775585 0.0015695782 -0.079421461 0.0442123 -0.0084139742 -0.081948832 0.025559308 0.0038725189 -0.082604788 0.043352377 0.0065946006 -0.077232622 0.043775585 0.0015695782 -0.079421461 0.025559308 0.0038725189 -0.082604788 0.025083903 0.0087919673 -0.080186501 0.043352377 0.0065946006 -0.077232622 0.025083903 0.0087919673 -0.080186501 0.042804152 0.011331313 -0.074496523 0.043352377 0.0065946006 -0.077232622 0.025083903 0.0087919673 -0.080186501 0.024486056 0.013397211 -0.077234134 0.042804152 0.011331313 -0.074496523 0.024146417 -0.055606995 0.0058348291 0.023647906 -0.0090332674 0.010695677 0.023143627 -0.066408172 0.0097535504 0.024486056 0.013397211 -0.077234134 0.04213836 0.015717411 -0.071250081 0.042804152 0.011331313 -0.074496523 0.024486056 0.013397211 -0.077234134 0.023773773 0.017626535 -0.073787093 0.04213836 0.015717411 -0.071250081 0.023773773 0.017626535 -0.073787093 0.041363478 0.019695228 -0.067535155 0.04213836 0.015717411 -0.071250081 0.023773773 0.017626535 -0.073787093 0.022956299 0.021424409 -0.069890156 0.041363478 0.019695228 -0.067535155 0.022956299 0.021424409 -0.069890156 0.040490035 0.023212202 -0.063401587 0.041363478 0.019695228 -0.067535155 0.044040002 -0.022399021 -0.081955992 0.023647906 -0.0090332674 0.010695677 0.043377016 -0.032182977 -0.079515964 0.043377016 -0.032182977 -0.079515964 0.023647906 -0.0090332674 0.010695677 0.042833082 -0.037223611 -0.077347487 0.042833082 -0.037223611 -0.077347487 0.023647906 -0.0090332674 0.010695677 0.042170439 -0.041974306 -0.074627064 0.042170439 -0.041974306 -0.074627064 0.023647906 -0.0090332674 0.010695677 0.041397955 -0.046371732 -0.071391843 0.022956299 0.021424409 -0.069890156 0.022044526 0.024741132 -0.065595187 0.040490035 0.023212202 -0.063401587 0.022044526 0.024741132 -0.065595187 0.039529271 0.026222203 -0.05890302 0.040490035 0.023212202 -0.063401587 0.022044526 0.024741132 -0.065595187 0.021050449 0.027532591 -0.06095887 0.039529271 0.026222203 -0.05890302 0.0092533305 -0.054428536 -0.012383777 0.028369511 -0.057315491 -0.013288671 0.02770976 -0.055442926 -0.010210766 0.021050449 0.027532591 -0.06095887 0.038493842 0.028685762 -0.054098696 0.039529271 0.026222203 -0.05890302 0.021050449 0.027532591 -0.06095887 0.019987162 0.029762533 -0.056041952 0.038493842 0.028685762 -0.054098696 0.0092533305 -0.054428536 -0.012383777 0.01143639 -0.05959617 -0.022512164 0.028369511 -0.057315491 -0.013288671 0.01143639 -0.05959617 -0.022512164 0.030661479 -0.061626952 -0.023859911 0.028369511 -0.057315491 -0.013288671 0.019987162 0.029762533 -0.056041952 0.037397556 0.030570311 -0.049052279 0.038493842 0.028685762 -0.054098696 0.019987162 0.029762533 -0.056041952 0.018868789 0.03140077 -0.050909527 0.037397556 0.030570311 -0.049052279 0.01143639 -0.05959617 -0.022512164 0.013394137 -0.062245198 -0.031483531 0.030661479 -0.061626952 -0.023859911 0.018868789 0.03140077 -0.050909527 0.036254678 0.031851031 -0.043829717 0.037397556 0.030570311 -0.049052279 0.018868789 0.03140077 -0.050909527 0.01770982 0.032426532 -0.045629136 0.036254678 0.031851031 -0.043829717 0.013394137 -0.062245198 -0.031483531 0.03271934 -0.063161433 -0.033220157 0.030661479 -0.061626952 -0.023859911 0.017697206 -0.057193242 0.004748622 0.024146417 -0.055606995 0.0058348291 0.023380108 -0.059234474 0.0090894951 0.013394137 -0.062245198 -0.031483531 0.014570719 -0.062912241 -0.036823612 0.03271934 -0.063161433 -0.033220157 0.01770982 0.032426532 -0.045629136 0.035080243 0.032511201 -0.038499828 0.036254678 0.031851031 -0.043829717 0.01770982 0.032426532 -0.045629136 0.01652571 0.032825358 -0.040270295 0.035080243 0.032511201 -0.038499828 0.014570719 -0.062912241 -0.036823612 0.01576362 -0.062947847 -0.042201448 0.03271934 -0.063161433 -0.033220157 0.01576362 -0.062947847 -0.042201448 0.033913989 -0.063149132 -0.038603332 0.03271934 -0.063161433 -0.033220157 0.01652571 0.032825358 -0.040270295 0.033889886 0.03254243 -0.033133432 0.035080243 0.032511201 -0.038499828 0.01652571 0.032825358 -0.040270295 0.01533213 0.032592915 -0.034903869 0.033889886 0.03254243 -0.033133432 0.01576362 -0.062947847 -0.042201448 0.035107918 -0.062503316 -0.043947972 0.033913989 -0.063149132 -0.038603332 0.01533213 0.032592915 -0.034903869 0.032698978 0.031943616 -0.027799854 0.033889886 0.03254243 -0.033133432 0.01533213 0.032592915 -0.034903869 0.014144697 0.031731911 -0.029600635 0.032698978 0.031943616 -0.027799854 0.01576362 -0.062947847 -0.042201448 0.01813503 -0.061129477 -0.052787352 0.035107918 -0.062503316 -0.043947972 0.01813503 -0.061129477 -0.052787352 0.036285233 -0.061232708 -0.049182784 0.035107918 -0.062503316 -0.043947972 0.014144697 0.031731911 -0.029600635 0.031523418 0.030722817 -0.022570139 0.032698978 0.031943616 -0.027799854 0.014144697 0.031731911 -0.029600635 0.012979073 0.030253628 -0.024430139 0.031523418 0.030722817 -0.022570139 0.01813503 -0.061129477 -0.052787352 0.038528603 -0.056892537 -0.059049949 0.036285233 -0.061232708 -0.049182784 0.012979073 0.030253628 -0.024430139 0.030378649 0.028896453 -0.017513275 0.031523418 0.030722817 -0.022570139 0.012979073 0.030253628 -0.024430139 0.011850527 0.028177226 -0.019460527 0.030378649 0.028896453 -0.017513275 0.01813503 -0.061129477 -0.052787352 0.020383609 -0.056885626 -0.062683105 0.038528603 -0.056892537 -0.059049949 0.011850527 0.028177226 -0.019460527 0.029279558 0.026488574 -0.012695125 0.030378649 0.028896453 -0.017513275 -0.0071379603 -0.056534022 0.0013515948 0.010911515 -0.054501034 -0.0017548973 0.00053906126 -0.056979917 0.0011365156 0.011850527 0.028177226 -0.019460527 0.010774093 0.025530331 -0.014757733 0.029279558 0.026488574 -0.012695125 0.020383609 -0.056885626 -0.062683105 0.039564762 -0.053880852 -0.063550986 0.038528603 -0.056892537 -0.059049949 0.010774093 0.025530331 -0.014757733 0.028240863 0.023530025 -0.0081793191 0.029279558 0.026488574 -0.012695125 0.010774093 0.025530331 -0.014757733 0.0097639663 0.02234856 -0.010383601 0.028240863 0.023530025 -0.0081793191 0.020383609 -0.056885626 -0.062683105 0.022390611 -0.050440289 -0.071367346 0.039564762 -0.053880852 -0.063550986 0.022390611 -0.050440289 -0.071367346 0.041397955 -0.046371732 -0.071391843 0.039564762 -0.053880852 -0.063550986 0.0097639663 0.02234856 -0.010383601 0.027276011 0.020061204 -0.0040257256 0.028240863 0.023530025 -0.0081793191 0.010911515 -0.054501034 -0.0017548973 0.02499746 -0.054438472 0.0020692628 0.024146417 -0.055606995 0.0058348291 0.0097639663 0.02234856 -0.010383601 0.0088334391 0.018672673 -0.0063957502 0.027276011 0.020061204 -0.0040257256 0.0088334391 0.018672673 -0.0063957502 0.026397973 0.016126329 -0.00028880619 0.027276011 0.020061204 -0.0040257256 0.0088334391 0.018672673 -0.0063957502 0.0079948073 0.014551782 -0.0028471195 0.026397973 0.016126329 -0.00028880619 0.022390611 -0.050440289 -0.071367346 0.024050523 -0.042132225 -0.078382693 0.041397955 -0.046371732 -0.071391843 0.024050523 -0.042132225 -0.078382693 0.042170439 -0.041974306 -0.074627064 0.041397955 -0.046371732 -0.071391843 0.0079948073 0.014551782 -0.0028471195 0.025617892 0.011778099 0.0029830735 0.026397973 0.016126329 -0.00028880619 0.0079948073 0.014551782 -0.0028471195 0.0072589507 0.010040256 0.00021616583 0.025617892 0.011778099 0.0029830735 -0.007763193 -0.066024378 0.0036481128 -0.0071379603 -0.056534022 0.0013515948 -0.0032810632 -0.060227763 0.002892667 0.024050523 -0.042132225 -0.078382693 0.042833082 -0.037223611 -0.077347487 0.042170439 -0.041974306 -0.074627064 0.0072589507 0.010040256 0.00021616583 0.024946468 0.00707315 0.0057456973 0.025617892 0.011778099 0.0029830735 0.0072589507 0.010040256 0.00021616583 0.0062452075 0.0013127568 0.0042960243 0.024946468 0.00707315 0.0057456973 0.024050523 -0.042132225 -0.078382693 0.025275903 -0.032399856 -0.08335977 0.042833082 -0.037223611 -0.077347487 0.025275903 -0.032399856 -0.08335977 0.043377016 -0.032182977 -0.079515964 0.042833082 -0.037223611 -0.077347487 0.0062452075 0.0013127568 0.0042960243 0.024392193 0.0020736288 0.0079637049 0.024946468 0.00707315 0.0057456973 0.025275903 -0.032399856 -0.08335977 0.025704352 -0.027157413 -0.08499711 0.043377016 -0.032182977 -0.079515964 0.025704352 -0.027157413 -0.08499711 0.044040002 -0.022399021 -0.081955992 0.043377016 -0.032182977 -0.079515964 0.0062452075 0.0013127568 0.0042960243 0.02396249 -0.0031543758 0.0096070906 0.024392193 0.0020736288 0.0079637049 0.0062452075 0.0013127568 0.0042960243 0.023647906 -0.0090332674 0.010695677 0.02396249 -0.0031543758 0.0096070906 0.025704352 -0.027157413 -0.08499711 0.034901999 -0.018440658 -0.084410049 0.044040002 -0.022399021 -0.081955992 0.025704352 -0.027157413 -0.08499711 0.026120098 -0.018241707 -0.086371124 0.034901999 -0.018440658 -0.084410049 -0.0045690201 -0.053556196 -0.010057987 0.0081802309 -0.054214958 -0.007535337 -0.0059455317 -0.054071892 -0.0038832074 0.02499746 -0.054438472 0.0020692628 0.010911515 -0.054501034 -0.0017548973 0.026973082 -0.054311752 -0.006827286 0.026973082 -0.054311752 -0.006827286 0.010911515 -0.054501034 -0.0017548973 0.0081802309 -0.054214958 -0.007535337 0.010911515 -0.054501034 -0.0017548973 -0.0059455317 -0.054071892 -0.0038832074 0.0081802309 -0.054214958 -0.007535337 0.010911515 -0.054501034 -0.0017548973 0.024146417 -0.055606995 0.0058348291 0.017697206 -0.057193242 0.004748622 0.017697206 -0.057193242 0.004748622 0.023380108 -0.059234474 0.0090894951 0.017145399 -0.059489518 0.0059930538 -0.0059455317 -0.054071892 -0.0038832074 0.010911515 -0.054501034 -0.0017548973 -0.0071379603 -0.056534022 0.0013515948 0.0032921415 -0.05931709 0.0026145375 0.017697206 -0.057193242 0.004748622 -0.0032810632 -0.060227763 0.002892667 -0.0032810632 -0.060227763 0.002892667 0.017697206 -0.057193242 0.004748622 0.0083658388 -0.061943348 0.003840399 0.00053906126 -0.056979917 0.0011365156 0.010911515 -0.054501034 -0.0017548973 0.017697206 -0.057193242 0.004748622 -0.0032810632 -0.060227763 0.002892667 0.00053906126 -0.056979917 0.0011365156 0.0032921415 -0.05931709 0.0026145375 0.0083658388 -0.061943348 0.003840399 0.017145399 -0.059489518 0.0059930538 0.023380108 -0.059234474 0.0090894951 0.00053906126 -0.056979917 0.0011365156 0.017697206 -0.057193242 0.004748622 0.0032921415 -0.05931709 0.0026145375 -0.0071379603 -0.056534022 0.0013515948 0.00053906126 -0.056979917 0.0011365156 -0.0032810632 -0.060227763 0.002892667 0.017697206 -0.057193242 0.004748622 0.017145399 -0.059489518 0.0059930538 0.0083658388 -0.061943348 0.003840399 + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443

+
+
+
+
+ + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + + + + + + + + + + + + + +
diff --git a/external/rlbench/urdfs/panda/meshes/Pandalink7respondable_coll_1.dae b/external/rlbench/urdfs/panda/meshes/Pandalink7respondable_coll_1.dae new file mode 100644 index 0000000000000000000000000000000000000000..f81c68331f1b0837ce26a1a4bac63de501acc2e6 --- /dev/null +++ b/external/rlbench/urdfs/panda/meshes/Pandalink7respondable_coll_1.dae @@ -0,0 +1,84 @@ + + + + + Assimp + Assimp Exporter + + 2023-09-26T11:24:21 + 2023-09-26T11:24:21 + + Y_UP + + + + + + + + 0 0 0 4.5895327e-41 + + + 0.61245358 0.93350136 0.79117107 4.5893926e-41 + + + 0.61245358 0.93350136 0.79117107 4.5893926e-41 + + + 0.25 0.25 0.25 -3.0261091e+37 + + + + + + + + + + + + + + + + 0.027385851 0.022130296 -0.0044280738 0.027385181 -0.023052324 -0.0039115539 0.027404217 0.00021108428 -0.014387039 -0.027342843 -0.030439029 0.048863579 0.017260531 -0.029189724 0.04986209 0.005199973 -0.0038682385 0.070790589 0.027406976 0.029404582 0.0083138142 0.027386466 0.030558558 0.018314064 0.027385851 0.022130296 -0.0044280738 0.011028834 -0.030807387 -0.066559069 0.015078209 -0.031105259 -0.063705094 0.017264729 -0.043882459 0.013660322 0.011028834 -0.030807387 -0.066559069 0.017264729 -0.043882459 0.013660322 0.002910234 -0.031197693 -0.066050738 0.017264729 -0.043882459 0.013660322 -0.027290238 -0.043760154 0.011769072 0.002910234 -0.031197693 -0.066050738 -0.027361898 -0.043879963 0.021628728 -0.027290238 -0.043760154 0.011769072 0.017264729 -0.043882459 0.013660322 -0.027413458 -0.033411145 -0.011487566 -0.027411368 -0.021546435 -0.02160272 -0.0027667657 -0.029912032 -0.065261163 0.014972799 -0.0090197884 -0.068405151 0.013355845 0.0087597184 -0.06963446 0.015489698 0.013985963 -0.067583799 0.027385851 0.022130296 -0.0044280738 0.027386466 0.030558558 0.018314064 0.027390616 0.019079575 0.041413698 0.027390616 0.019079575 0.041413698 0.027386466 0.030558558 0.018314064 0.027388038 0.028222179 0.029096561 0.016577229 -0.029644949 -0.063137643 0.02742338 -0.030460706 0.012856039 0.017264729 -0.043882459 0.013660322 0.02742338 -0.030460706 0.012856039 0.027386621 -0.029775068 0.024182105 0.017353689 -0.043583818 0.022287969 0.016577229 -0.029644949 -0.063137643 0.017264729 -0.043882459 0.013660322 0.015078209 -0.031105259 -0.063705094 0.015289381 -0.02873625 -0.065905839 0.016577229 -0.029644949 -0.063137643 0.014693916 -0.030217078 -0.065622218 0.027404217 0.00021108428 -0.014387039 0.016409941 -0.0045397584 -0.066548035 0.016643191 0.029893994 -0.062726244 -0.027413698 0.033058345 -0.011876843 -0.0027465948 0.030007908 -0.065231234 -0.027411276 0.020006137 -0.022379594 0.005199973 -0.0038682385 0.070790589 0.0052998704 0.0036512825 0.070911519 -0.027374849 -0.0015978969 0.060977641 0.005199973 -0.0038682385 0.070790589 0.0096649863 -0.0022047395 0.070706092 0.010312442 -9.8237651e-05 0.070675604 0.0096649863 -0.0022047395 0.070706092 0.005199973 -0.0038682385 0.070790589 0.01756377 -0.022019466 0.054839034 0.017260531 -0.029189724 0.04986209 0.01756377 -0.022019466 0.054839034 0.005199973 -0.0038682385 0.070790589 -0.027359119 -0.02168327 0.055330612 -0.027342843 -0.030439029 0.048863579 0.005199973 -0.0038682385 0.070790589 0.017390454 -0.032439068 0.046576746 -0.027342843 -0.030439029 0.048863579 -0.027308561 -0.036637269 0.041577403 -0.027308561 -0.036637269 0.041577403 -0.027312778 -0.041308343 0.032468226 0.017426893 -0.039764699 0.035570867 0.017390454 -0.032439068 0.046576746 0.017260531 -0.029189724 0.04986209 -0.027342843 -0.030439029 0.048863579 0.01756377 -0.022019466 0.054839034 0.017260531 -0.029189724 0.04986209 0.02738958 -0.017746877 0.042194065 0.02738665 -0.026041016 0.033288307 0.017426893 -0.039764699 0.035570867 0.027386621 -0.029775068 0.024182105 0.017426893 -0.039764699 0.035570867 0.01727514 -0.042308137 0.028847339 0.027386621 -0.029775068 0.024182105 -0.027312778 -0.041308343 0.032468226 0.01727514 -0.042308137 0.028847339 0.017426893 -0.039764699 0.035570867 0.013099805 -0.029183593 -0.067448445 0.00914222 -0.016052252 -0.070251554 0.013732374 -0.016925868 -0.068757579 0.011028834 -0.030807387 -0.066559069 0.002910234 -0.031197693 -0.066050738 0.0064074919 -0.029399453 -0.068570606 0.027385851 0.022130296 -0.0044280738 0.027404217 0.00021108428 -0.014387039 0.016643191 0.029893994 -0.062726244 0.027385181 -0.023052324 -0.0039115539 0.016577229 -0.029644949 -0.063137643 0.027404217 0.00021108428 -0.014387039 0.027386621 -0.029775068 0.024182105 0.01727514 -0.042308137 0.028847339 0.017353689 -0.043583818 0.022287969 0.027385181 -0.023052324 -0.0039115539 0.02742338 -0.030460706 0.012856039 0.016577229 -0.029644949 -0.063137643 -0.027373763 -0.040901147 0.00049590197 -0.027413458 -0.033411145 -0.011487566 -0.0027667657 -0.029912032 -0.065261163 -0.0027465948 0.030007908 -0.065231234 -0.027413698 0.033058345 -0.011876843 -0.027408972 0.038982086 -0.0031978711 -0.0027465948 0.030007908 -0.065231234 -0.027408972 0.038982086 -0.0031978711 -0.027327828 0.042883735 0.0069412361 0.017340915 0.04361156 0.012283784 -0.027327828 0.042883735 0.0069412361 -0.027304167 0.04388234 0.013797527 0.014415586 0.031306889 -0.064028755 0.013408007 0.029912284 -0.066877969 0.0098551307 0.030705377 -0.066772059 -0.0027667657 -0.029912032 -0.065261163 -0.027411368 -0.021546435 -0.02160272 -0.027423318 3.8822411e-05 -0.02708135 -0.027423318 3.8822411e-05 -0.02708135 -0.0021074859 -0.018321291 -0.067863442 -0.0027667657 -0.029912032 -0.065261163 0.027388038 0.028222179 0.029096561 0.017406348 0.03674686 0.041011166 0.027390616 0.019079575 0.041413698 0.010312442 -9.8237651e-05 0.070675604 0.0094185891 0.0023680411 0.07071612 0.005199973 -0.0038682385 0.070790589 -0.027342808 0.0092549622 0.060081452 0.0052998704 0.0036512825 0.070911519 -0.027350236 0.022800138 0.054618679 -0.027359119 -0.02168327 0.055330612 0.005199973 -0.0038682385 0.070790589 -0.027409703 -0.011983948 0.059326738 0.027390616 0.019079575 0.041413698 0.027388448 0.0031850655 0.047599819 0.027386704 -0.0074800048 0.046683107 0.027388448 0.0031850655 0.047599819 0.018154752 0.014306263 0.057848886 0.010312442 -9.8237651e-05 0.070675604 0.027388448 0.0031850655 0.047599819 0.027390616 0.019079575 0.041413698 0.018154752 0.014306263 0.057848886 0.01756377 -0.022019466 0.054839034 0.017753344 -0.013313915 0.05852985 0.0096649863 -0.0022047395 0.070706092 0.011028834 -0.030807387 -0.066559069 0.013099805 -0.029183593 -0.067448445 0.014693916 -0.030217078 -0.065622218 0.016643191 0.029893994 -0.062726244 0.027406976 0.029404582 0.0083138142 0.027385851 0.022130296 -0.0044280738 0.0027586371 -0.022538684 -0.069475383 0.00056508172 -0.029529085 -0.06782946 0.00024992239 -0.018615754 -0.069302961 -0.001109525 -0.0045140395 -0.069473274 0.00024992239 -0.018615754 -0.069302961 -0.0021074859 -0.018321291 -0.067863442 0.013355845 0.0087597184 -0.06963446 0.011187584 0.02034062 -0.069350414 0.014277758 0.028761327 -0.066848069 0.014277758 0.028761327 -0.066848069 0.015489698 0.013985963 -0.067583799 0.013355845 0.0087597184 -0.06963446 0.014693916 -0.030217078 -0.065622218 0.016577229 -0.029644949 -0.063137643 0.015078209 -0.031105259 -0.063705094 0.016577229 -0.029644949 -0.063137643 0.016409941 -0.0045397584 -0.066548035 0.027404217 0.00021108428 -0.014387039 -0.0010516178 0.029943235 -0.066869341 0.0022139717 0.029299965 -0.068353303 -0.0010102898 0.020776978 -0.068462603 -0.027411276 0.020006137 -0.022379594 -0.0027465948 0.030007908 -0.065231234 -0.027423318 3.8822411e-05 -0.02708135 -0.0027465948 0.030007908 -0.065231234 -0.0027711303 0.01423178 -0.067457817 -0.027423318 3.8822411e-05 -0.02708135 -0.0029716932 -0.0056540687 -0.067571729 -0.0021074859 -0.018321291 -0.067863442 -0.027423318 3.8822411e-05 -0.02708135 0.015614757 0.02973422 -0.064940654 0.013408007 0.029912284 -0.066877969 0.014415586 0.031306889 -0.064028755 0.015489698 0.013985963 -0.067583799 0.014277758 0.028761327 -0.066848069 0.015614757 0.02973422 -0.064940654 0.015489698 0.013985963 -0.067583799 0.015614757 0.02973422 -0.064940654 0.016643191 0.029893994 -0.062726244 0.016643191 0.029893994 -0.062726244 0.015614757 0.02973422 -0.064940654 0.014415586 0.031306889 -0.064028755 0.017340915 0.04361156 0.012283784 0.016643191 0.029893994 -0.062726244 0.014415586 0.031306889 -0.064028755 -0.027304167 0.04388234 0.013797527 0.017293679 0.043861311 0.018228438 0.017340915 0.04361156 0.012283784 0.017406348 0.03674686 0.041011166 -0.027316559 0.036598895 0.041592207 0.01723526 0.032727085 0.046363275 0.017406348 0.03674686 0.041011166 0.01723526 0.032727085 0.046363275 0.027390616 0.019079575 0.041413698 0.0094185891 0.0023680411 0.07071612 0.0052998704 0.0036512825 0.070911519 0.005199973 -0.0038682385 0.070790589 -0.02734011 0.029966302 0.049307633 0.01723526 0.032727085 0.046363275 -0.027316559 0.036598895 0.041592207 0.0052998704 0.0036512825 0.070911519 -0.027342808 0.0092549622 0.060081452 -0.027374849 -0.0015978969 0.060977641 -0.02734011 0.029966302 0.049307633 -0.027350236 0.022800138 0.054618679 0.0052998704 0.0036512825 0.070911519 -0.027374849 -0.0015978969 0.060977641 -0.027409703 -0.011983948 0.059326738 0.005199973 -0.0038682385 0.070790589 0.02738958 -0.017746877 0.042194065 0.017753344 -0.013313915 0.05852985 0.01756377 -0.022019466 0.054839034 0.027386704 -0.0074800048 0.046683107 0.017753344 -0.013313915 0.05852985 0.02738958 -0.017746877 0.042194065 0.018154752 0.014306263 0.057848886 0.0094185891 0.0023680411 0.07071612 0.010312442 -9.8237651e-05 0.070675604 -0.027308561 -0.036637269 0.041577403 0.017426893 -0.039764699 0.035570867 0.017193981 -0.036451224 0.041604225 -0.027308561 -0.036637269 0.041577403 0.017193981 -0.036451224 0.041604225 0.017390454 -0.032439068 0.046576746 0.017390454 -0.032439068 0.046576746 0.02738958 -0.017746877 0.042194065 0.017260531 -0.029189724 0.04986209 0.013099805 -0.029183593 -0.067448445 0.0064074919 -0.029399453 -0.068570606 0.00914222 -0.016052252 -0.070251554 0.013732374 -0.016925868 -0.068757579 0.014972799 -0.0090197884 -0.068405151 0.015289381 -0.02873625 -0.065905839 0.0064074919 -0.029399453 -0.068570606 0.00056508172 -0.029529085 -0.06782946 0.0027586371 -0.022538684 -0.069475383 0.016577229 -0.029644949 -0.063137643 0.015289381 -0.02873625 -0.065905839 0.016409941 -0.0045397584 -0.066548035 -0.027373763 -0.040901147 0.00049590197 -0.0012677163 -0.030904807 -0.065246753 -0.027290238 -0.043760154 0.011769072 0.00056508172 -0.029529085 -0.06782946 0.002910234 -0.031197693 -0.066050738 -0.0012677163 -0.030904807 -0.065246753 0.0064074919 -0.029399453 -0.068570606 0.002910234 -0.031197693 -0.066050738 0.00056508172 -0.029529085 -0.06782946 -0.0027667657 -0.029912032 -0.065261163 -0.0012677163 -0.030904807 -0.065246753 -0.027373763 -0.040901147 0.00049590197 -0.00031585147 0.0093083903 -0.069732994 0.0021746536 -0.0042625125 -0.070839174 -0.001109525 -0.0045140395 -0.069473274 -0.00031585147 0.0093083903 -0.069732994 0.0029991353 0.010243457 -0.070714176 0.0021746536 -0.0042625125 -0.070839174 0.013355845 0.0087597184 -0.06963446 0.012114778 -0.0076354491 -0.070160612 0.0089343647 0.0049461336 -0.070911475 0.017264729 -0.043882459 0.013660322 0.02742338 -0.030460706 0.012856039 0.017353689 -0.043583818 0.022287969 0.013732374 -0.016925868 -0.068757579 0.015289381 -0.02873625 -0.065905839 0.013099805 -0.029183593 -0.067448445 0.013408007 0.029912284 -0.066877969 0.0099583659 0.029519366 -0.068147413 0.0098551307 0.030705377 -0.066772059 0.017340915 0.04361156 0.012283784 -2.6991331e-05 0.031471808 -0.064432137 -0.027327828 0.042883735 0.0069412361 0.014415586 0.031306889 -0.064028755 -2.6991331e-05 0.031471808 -0.064432137 0.017340915 0.04361156 0.012283784 0.014415586 0.031306889 -0.064028755 0.0098551307 0.030705377 -0.066772059 -2.6991331e-05 0.031471808 -0.064432137 0.016643191 0.029893994 -0.062726244 0.017340915 0.04361156 0.012283784 0.027406976 0.029404582 0.0083138142 -0.027305657 0.043825224 0.021936527 0.017293679 0.043861311 0.018228438 -0.027304167 0.04388234 0.013797527 -0.027305657 0.043825224 0.021936527 0.017144466 0.043139093 0.025587481 0.017293679 0.043861311 0.018228438 -0.027319023 0.041355249 0.032273378 0.017144466 0.043139093 0.025587481 -0.027305657 0.043825224 0.021936527 0.017408382 0.025937529 0.052377105 0.0094185891 0.0023680411 0.07071612 0.018154752 0.014306263 0.057848886 0.027388448 0.0031850655 0.047599819 0.010312442 -9.8237651e-05 0.070675604 0.027386704 -0.0074800048 0.046683107 0.017753344 -0.013313915 0.05852985 0.010312442 -9.8237651e-05 0.070675604 0.0096649863 -0.0022047395 0.070706092 0.010312442 -9.8237651e-05 0.070675604 0.017753344 -0.013313915 0.05852985 0.027386704 -0.0074800048 0.046683107 0.02738665 -0.026041016 0.033288307 0.017390454 -0.032439068 0.046576746 0.017193981 -0.036451224 0.041604225 0.02742338 -0.030460706 0.012856039 0.02738665 -0.026041016 0.033288307 0.027386621 -0.029775068 0.024182105 0.02738958 -0.017746877 0.042194065 0.02738665 -0.026041016 0.033288307 0.027386704 -0.0074800048 0.046683107 0.027385181 -0.023052324 -0.0039115539 0.02738665 -0.026041016 0.033288307 0.02742338 -0.030460706 0.012856039 0.027386704 -0.0074800048 0.046683107 0.02738665 -0.026041016 0.033288307 0.027390616 0.019079575 0.041413698 0.02738665 -0.026041016 0.033288307 0.02738958 -0.017746877 0.042194065 0.017390454 -0.032439068 0.046576746 -0.027361898 -0.043879963 0.021628728 0.01727514 -0.042308137 0.028847339 -0.027312778 -0.041308343 0.032468226 0.017353689 -0.043583818 0.022287969 0.01727514 -0.042308137 0.028847339 -0.027361898 -0.043879963 0.021628728 0.011028834 -0.030807387 -0.066559069 0.0064074919 -0.029399453 -0.068570606 0.013099805 -0.029183593 -0.067448445 0.011028834 -0.030807387 -0.066559069 0.014693916 -0.030217078 -0.065622218 0.015078209 -0.031105259 -0.063705094 0.016409941 -0.0045397584 -0.066548035 0.014972799 -0.0090197884 -0.068405151 0.015489698 0.013985963 -0.067583799 -0.0012677163 -0.030904807 -0.065246753 0.002910234 -0.031197693 -0.066050738 -0.027290238 -0.043760154 0.011769072 0.0021746536 -0.0042625125 -0.070839174 0.00024992239 -0.018615754 -0.069302961 -0.001109525 -0.0045140395 -0.069473274 0.00024992239 -0.018615754 -0.069302961 0.0021746536 -0.0042625125 -0.070839174 0.0027586371 -0.022538684 -0.069475383 0.012114778 -0.0076354491 -0.070160612 0.013732374 -0.016925868 -0.068757579 0.00914222 -0.016052252 -0.070251554 0.015489698 0.013985963 -0.067583799 0.016643191 0.029893994 -0.062726244 0.016409941 -0.0045397584 -0.066548035 -0.0029716932 -0.0056540687 -0.067571729 -0.0027711303 0.01423178 -0.067457817 -0.001109525 -0.0045140395 -0.069473274 -0.001109525 -0.0045140395 -0.069473274 -0.0027711303 0.01423178 -0.067457817 -0.00031585147 0.0093083903 -0.069732994 -0.00031585147 0.0093083903 -0.069732994 -0.0027711303 0.01423178 -0.067457817 -0.0010102898 0.020776978 -0.068462603 -0.00031585147 0.0093083903 -0.069732994 -0.0010102898 0.020776978 -0.068462603 0.0029991353 0.010243457 -0.070714176 0.0022139717 0.029299965 -0.068353303 0.0029991353 0.010243457 -0.070714176 -0.0010102898 0.020776978 -0.068462603 0.013355845 0.0087597184 -0.06963446 0.0089343647 0.0049461336 -0.070911475 0.011187584 0.02034062 -0.069350414 0.0063534621 0.029137801 -0.068657488 0.011187584 0.02034062 -0.069350414 0.0089343647 0.0049461336 -0.070911475 0.0063534621 0.029137801 -0.068657488 0.0089343647 0.0049461336 -0.070911475 0.0029991353 0.010243457 -0.070714176 0.0029991353 0.010243457 -0.070714176 0.0022139717 0.029299965 -0.068353303 0.0063534621 0.029137801 -0.068657488 0.017406348 0.03674686 0.041011166 0.027388038 0.028222179 0.029096561 0.017489651 0.040865496 0.032829933 0.015289381 -0.02873625 -0.065905839 0.014693916 -0.030217078 -0.065622218 0.013099805 -0.029183593 -0.067448445 -0.027327828 0.042883735 0.0069412361 -2.6991331e-05 0.031471808 -0.064432137 -0.0027465948 0.030007908 -0.065231234 -2.6991331e-05 0.031471808 -0.064432137 -0.0010516178 0.029943235 -0.066869341 -0.0027465948 0.030007908 -0.065231234 -0.0010516178 0.029943235 -0.066869341 0.0031537507 0.030608999 -0.067105427 0.0022139717 0.029299965 -0.068353303 0.0031537507 0.030608999 -0.067105427 -2.6991331e-05 0.031471808 -0.064432137 0.0098551307 0.030705377 -0.066772059 -0.027423318 3.8822411e-05 -0.02708135 -0.0027711303 0.01423178 -0.067457817 -0.0029716932 -0.0056540687 -0.067571729 0.017144466 0.043139093 0.025587481 -0.027319023 0.041355249 0.032273378 0.017489651 0.040865496 0.032829933 0.017408382 0.025937529 0.052377105 0.0052998704 0.0036512825 0.070911519 0.0094185891 0.0023680411 0.07071612 0.017408382 0.025937529 0.052377105 0.018154752 0.014306263 0.057848886 0.027390616 0.019079575 0.041413698 0.01723526 0.032727085 0.046363275 0.017408382 0.025937529 0.052377105 0.027390616 0.019079575 0.041413698 0.013732374 -0.016925868 -0.068757579 0.012114778 -0.0076354491 -0.070160612 0.014972799 -0.0090197884 -0.068405151 0.013355845 0.0087597184 -0.06963446 0.014972799 -0.0090197884 -0.068405151 0.012114778 -0.0076354491 -0.070160612 0.015289381 -0.02873625 -0.065905839 0.014972799 -0.0090197884 -0.068405151 0.016409941 -0.0045397584 -0.066548035 0.0029991353 0.010243457 -0.070714176 0.0089343647 0.0049461336 -0.070911475 0.0021746536 -0.0042625125 -0.070839174 0.0027586371 -0.022538684 -0.069475383 0.00914222 -0.016052252 -0.070251554 0.0064074919 -0.029399453 -0.068570606 0.00914222 -0.016052252 -0.070251554 0.0089343647 0.0049461336 -0.070911475 0.012114778 -0.0076354491 -0.070160612 0.0021746536 -0.0042625125 -0.070839174 0.00914222 -0.016052252 -0.070251554 0.0027586371 -0.022538684 -0.069475383 -0.0027465948 0.030007908 -0.065231234 -0.0010516178 0.029943235 -0.066869341 -0.0010102898 0.020776978 -0.068462603 0.011187584 0.02034062 -0.069350414 0.0063534621 0.029137801 -0.068657488 0.0099583659 0.029519366 -0.068147413 0.017293679 0.043861311 0.018228438 0.017144466 0.043139093 0.025587481 0.027386466 0.030558558 0.018314064 0.017489651 0.040865496 0.032829933 0.027388038 0.028222179 0.029096561 0.017144466 0.043139093 0.025587481 0.027386466 0.030558558 0.018314064 0.017144466 0.043139093 0.025587481 0.027388038 0.028222179 0.029096561 0.0031537507 0.030608999 -0.067105427 0.0098551307 0.030705377 -0.066772059 0.0099583659 0.029519366 -0.068147413 -0.0027711303 0.01423178 -0.067457817 -0.0027465948 0.030007908 -0.065231234 -0.0010102898 0.020776978 -0.068462603 -0.0012677163 -0.030904807 -0.065246753 -0.0027667657 -0.029912032 -0.065261163 0.00056508172 -0.029529085 -0.06782946 -0.0027667657 -0.029912032 -0.065261163 -0.0016572922 -0.029135145 -0.066755801 0.00056508172 -0.029529085 -0.06782946 -0.0021074859 -0.018321291 -0.067863442 -0.0016572922 -0.029135145 -0.066755801 -0.0027667657 -0.029912032 -0.065261163 0.015614757 0.02973422 -0.064940654 0.014277758 0.028761327 -0.066848069 0.013408007 0.029912284 -0.066877969 0.011187584 0.02034062 -0.069350414 0.013408007 0.029912284 -0.066877969 0.014277758 0.028761327 -0.066848069 0.0099583659 0.029519366 -0.068147413 0.013408007 0.029912284 -0.066877969 0.011187584 0.02034062 -0.069350414 0.017340915 0.04361156 0.012283784 0.027386466 0.030558558 0.018314064 0.027406976 0.029404582 0.0083138142 0.017426893 -0.039764699 0.035570867 0.02738665 -0.026041016 0.033288307 0.017193981 -0.036451224 0.041604225 0.0099583659 0.029519366 -0.068147413 0.0063534621 0.029137801 -0.068657488 0.0031537507 0.030608999 -0.067105427 0.0031537507 0.030608999 -0.067105427 0.0063534621 0.029137801 -0.068657488 0.0022139717 0.029299965 -0.068353303 -0.0010516178 0.029943235 -0.066869341 -2.6991331e-05 0.031471808 -0.064432137 0.0031537507 0.030608999 -0.067105427 -0.0021074859 -0.018321291 -0.067863442 -0.0029716932 -0.0056540687 -0.067571729 -0.001109525 -0.0045140395 -0.069473274 0.017293679 0.043861311 0.018228438 0.027386466 0.030558558 0.018314064 0.017340915 0.04361156 0.012283784 0.017489651 0.040865496 0.032829933 -0.027319023 0.041355249 0.032273378 0.017406348 0.03674686 0.041011166 -0.027316559 0.036598895 0.041592207 0.017406348 0.03674686 0.041011166 -0.027319023 0.041355249 0.032273378 0.0021746536 -0.0042625125 -0.070839174 0.0089343647 0.0049461336 -0.070911475 0.00914222 -0.016052252 -0.070251554 0.017264729 -0.043882459 0.013660322 0.017353689 -0.043583818 0.022287969 -0.027361898 -0.043879963 0.021628728 -0.0021074859 -0.018321291 -0.067863442 0.00024992239 -0.018615754 -0.069302961 -0.0016572922 -0.029135145 -0.066755801 0.00056508172 -0.029529085 -0.06782946 -0.0016572922 -0.029135145 -0.066755801 0.00024992239 -0.018615754 -0.069302961 0.017408382 0.025937529 0.052377105 0.01723526 0.032727085 0.046363275 -0.02734011 0.029966302 0.049307633 0.0052998704 0.0036512825 0.070911519 0.017408382 0.025937529 0.052377105 -0.02734011 0.029966302 0.049307633 -0.027413698 0.033058345 -0.011876843 -0.027411276 0.020006137 -0.022379594 -0.027409703 -0.011983948 0.059326738 -0.027290238 -0.043760154 0.011769072 -0.027361898 -0.043879963 0.021628728 -0.027409703 -0.011983948 0.059326738 -0.027423318 3.8822411e-05 -0.02708135 -0.027411368 -0.021546435 -0.02160272 -0.027409703 -0.011983948 0.059326738 -0.027413458 -0.033411145 -0.011487566 -0.027409703 -0.011983948 0.059326738 -0.027411368 -0.021546435 -0.02160272 -0.027312778 -0.041308343 0.032468226 -0.027308561 -0.036637269 0.041577403 -0.027409703 -0.011983948 0.059326738 -0.027342808 0.0092549622 0.060081452 -0.027350236 0.022800138 0.054618679 -0.027409703 -0.011983948 0.059326738 -0.027304167 0.04388234 0.013797527 -0.027327828 0.042883735 0.0069412361 -0.027409703 -0.011983948 0.059326738 -0.027305657 0.043825224 0.021936527 -0.027304167 0.04388234 0.013797527 -0.027409703 -0.011983948 0.059326738 -0.02734011 0.029966302 0.049307633 -0.027409703 -0.011983948 0.059326738 -0.027350236 0.022800138 0.054618679 -0.027342843 -0.030439029 0.048863579 -0.027409703 -0.011983948 0.059326738 -0.027308561 -0.036637269 0.041577403 -0.027361898 -0.043879963 0.021628728 -0.027312778 -0.041308343 0.032468226 -0.027409703 -0.011983948 0.059326738 -0.027413698 0.033058345 -0.011876843 -0.027409703 -0.011983948 0.059326738 -0.027408972 0.038982086 -0.0031978711 -0.027423318 3.8822411e-05 -0.02708135 -0.027409703 -0.011983948 0.059326738 -0.027411276 0.020006137 -0.022379594 -0.027316559 0.036598895 0.041592207 -0.027409703 -0.011983948 0.059326738 -0.02734011 0.029966302 0.049307633 -0.027359119 -0.02168327 0.055330612 -0.027409703 -0.011983948 0.059326738 -0.027342843 -0.030439029 0.048863579 -0.027373763 -0.040901147 0.00049590197 -0.027409703 -0.011983948 0.059326738 -0.027413458 -0.033411145 -0.011487566 -0.027408972 0.038982086 -0.0031978711 -0.027409703 -0.011983948 0.059326738 -0.027327828 0.042883735 0.0069412361 -0.027319023 0.041355249 0.032273378 -0.027305657 0.043825224 0.021936527 -0.027409703 -0.011983948 0.059326738 -0.027342808 0.0092549622 0.060081452 -0.027409703 -0.011983948 0.059326738 -0.027374849 -0.0015978969 0.060977641 -0.027373763 -0.040901147 0.00049590197 -0.027290238 -0.043760154 0.011769072 -0.027409703 -0.011983948 0.059326738 -0.027316559 0.036598895 0.041592207 -0.027319023 0.041355249 0.032273378 -0.027409703 -0.011983948 0.059326738 0.027385851 0.022130296 -0.0044280738 0.02738665 -0.026041016 0.033288307 0.027385181 -0.023052324 -0.0039115539 0.027390616 0.019079575 0.041413698 0.02738665 -0.026041016 0.033288307 0.027385851 0.022130296 -0.0044280738 + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599

+
+
+
+
+ + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + + + + + + + + + + + + + +
diff --git a/external/rlbench/urdfs/panda/meshes/Pandalink7visual_vis_1.dae b/external/rlbench/urdfs/panda/meshes/Pandalink7visual_vis_1.dae new file mode 100644 index 0000000000000000000000000000000000000000..f1b72f5209443c07722d9e8f2088290e1f8820b8 --- /dev/null +++ b/external/rlbench/urdfs/panda/meshes/Pandalink7visual_vis_1.dae @@ -0,0 +1,84 @@ + + + + + Assimp + Assimp Exporter + + 2023-09-26T11:24:21 + 2023-09-26T11:24:21 + + Y_UP + + + + + + + + 0 0 0 4.5895327e-41 + + + 0.40000001 0.40000001 0.40000001 4.5893926e-41 + + + 0.40000001 0.40000001 0.40000001 4.5893926e-41 + + + 0.25 0.25 0.25 3.6295857e-33 + + + + + + + + + + + + + + + + -0.012373693 0.032658134 -0.054697845 -0.0050869067 0.03029873 -0.056897726 -0.014942534 0.030334821 -0.054094683 -0.012373693 0.032658134 -0.054697845 -0.014942534 0.030334821 -0.054094683 -0.013607389 0.032722164 -0.051733937 -0.013607389 0.032722164 -0.051733937 -0.014942534 0.030334821 -0.054094683 -0.01387227 0.034017507 -0.032415364 -0.01387227 0.034017507 -0.032415364 -0.014942534 0.030334821 -0.054094683 -0.014933888 0.032205995 -0.029962663 -0.014933888 0.032205995 -0.029962663 0.0025683611 0.032804511 -0.02660666 -0.010632399 0.032588102 -0.027749332 0.0024223258 0.032586306 -0.053869683 0.0040807058 0.030346707 -0.051924326 -0.00072861486 0.030303521 -0.056357592 -0.00056762237 0.032549798 -0.05573675 -0.00072861486 0.030303521 -0.056357592 -0.0050869067 0.03029873 -0.056897726 -0.0050869067 0.03029873 -0.056897726 -0.012373693 0.032658134 -0.054697845 -0.00056762237 0.032549798 -0.05573675 -0.010632399 0.032588102 -0.027749332 0.0025683611 0.032804511 -0.02660666 0.0012016267 0.035029851 -0.027096771 -0.01387227 0.034017507 -0.032415364 -0.01387227 0.034017868 -0.032415554 -0.013607389 0.032722164 -0.051733937 -0.0063952832 0.034982432 -0.027364243 -0.010632399 0.032588102 -0.027749332 0.0012016267 0.035029851 -0.027096771 -0.014933888 0.032205995 -0.029962663 -0.010632399 0.032588102 -0.027749332 -0.013825718 0.034141138 -0.031603541 -0.013825718 0.034141138 -0.031603541 -0.01387227 0.034017507 -0.032415364 -0.014933888 0.032205995 -0.029962663 0.007992859 0.033653185 -0.036615726 0.0080144964 0.032161225 -0.030243035 0.0098285032 0.031286117 -0.03681973 0.0012016267 0.035029851 -0.027096771 0.0025683611 0.032804511 -0.02660666 0.0054283109 0.034804542 -0.028247409 0.007992859 0.033653185 -0.036615726 0.0098285032 0.031286117 -0.03681973 0.0075832559 0.033438526 -0.038424805 0.0054283109 0.034804542 -0.028247409 0.0025683611 0.032804511 -0.02660666 0.0080144964 0.032161225 -0.030243035 0.007992859 0.033653185 -0.036615726 0.0054283109 0.034804542 -0.028247409 0.0080144964 0.032161225 -0.030243035 -0.00072861486 0.030303521 -0.056357592 -0.00056762237 0.032549798 -0.05573675 0.0024223258 0.032586306 -0.053869683 -0.013639394 0.034179073 -0.032436162 -0.013607389 0.032722164 -0.051733937 -0.01387227 0.034017868 -0.032415554 -0.013607389 0.032722164 -0.051733937 -0.013639394 0.034179073 -0.032436162 -0.012373693 0.032658134 -0.054697845 -0.00072861486 0.030303521 -0.056357592 -0.014942534 0.030334821 -0.054094683 -0.0050869067 0.03029873 -0.056897726 -0.013294462 0.034198932 -0.032491568 -0.013825718 0.034141138 -0.031603541 -0.0063952832 0.034982432 -0.027364243 -0.01370037 0.034166768 -0.032430679 -0.013825718 0.034141138 -0.031603541 -0.013294462 0.034198932 -0.032491568 0.0054283109 0.034804542 -0.028247409 -0.0063952832 0.034982432 -0.027364243 0.0012016267 0.035029851 -0.027096771 0.0013765647 0.03200623 -0.035623536 -0.013294462 0.034198932 -0.032491568 0.0054283109 0.034804542 -0.028247409 -0.014933888 0.032205995 -0.029962663 0.0098285032 0.031286117 -0.03681973 0.0080144964 0.032161225 -0.030243035 -0.0063952832 0.034982432 -0.027364243 0.0054283109 0.034804542 -0.028247409 -0.013294462 0.034198932 -0.032491568 0.0054283109 0.034804542 -0.028247409 0.0074689342 0.033475444 -0.038392033 0.0013765647 0.03200623 -0.035623536 0.007992859 0.033653185 -0.036615726 0.0074689342 0.033475444 -0.038392033 0.0054283109 0.034804542 -0.028247409 0.0024223258 0.032586306 -0.053869683 0.0074689342 0.033475444 -0.038392033 0.0075832559 0.033438526 -0.038424805 -0.0085428404 0.032172482 -0.036379103 -0.012373693 0.032658134 -0.054697845 -0.013639394 0.034179073 -0.032436162 -0.0085428404 0.032172482 -0.036379103 -0.013639394 0.034179073 -0.032436162 -0.013294462 0.034198932 -0.032491568 0.0013765647 0.03200623 -0.035623536 -0.0085428404 0.032172482 -0.036379103 -0.013294462 0.034198932 -0.032491568 0.0013765647 0.03200623 -0.035623536 0.0074689342 0.033475444 -0.038392033 0.0024223258 0.032586306 -0.053869683 -0.014933888 0.032205995 -0.029962663 0.0080144964 0.032161225 -0.030243035 0.0025683611 0.032804511 -0.02660666 0.0040807058 0.030346707 -0.051924326 -0.014942534 0.030334821 -0.054094683 -0.00072861486 0.030303521 -0.056357592 -0.00056762237 0.032549798 -0.05573675 0.0013765647 0.03200623 -0.035623536 0.0024223258 0.032586306 -0.053869683 0.0098285032 0.031286117 -0.03681973 -0.014942534 0.030334821 -0.054094683 0.0040807058 0.030346707 -0.051924326 -0.012373693 0.032658134 -0.054697845 0.0013765647 0.03200623 -0.035623536 -0.00056762237 0.032549798 -0.05573675 -0.0085428404 0.032172482 -0.036379103 0.0013765647 0.03200623 -0.035623536 -0.012373693 0.032658134 -0.054697845 -0.010632399 0.032588102 -0.027749332 -0.0063952832 0.034982432 -0.027364243 -0.013825718 0.034141138 -0.031603541 -0.013825718 0.034141138 -0.031603541 -0.01370037 0.034166768 -0.032430679 -0.01387227 0.034017868 -0.032415554 -0.013825718 0.034141138 -0.031603541 -0.01387227 0.034017868 -0.032415554 -0.01387227 0.034017507 -0.032415364 -0.01387227 0.034017507 -0.032415364 -0.01387227 0.034017868 -0.032415554 -0.01387227 0.034017507 -0.032415364 -0.01387227 0.034017507 -0.032415364 -0.01387227 0.034017507 -0.032415364 -0.01387227 0.034017507 -0.032415364 -0.01370037 0.034166768 -0.032430679 -0.013639394 0.034179073 -0.032436162 -0.01387227 0.034017868 -0.032415554 0.0075832559 0.033438526 -0.038424805 0.0040807058 0.030346707 -0.051924326 0.0024223258 0.032586306 -0.053869683 0.0098285032 0.031286117 -0.03681973 0.0040807058 0.030346707 -0.051924326 0.0075832559 0.033438526 -0.038424805 + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146

+
+
+
+
+ + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + + + + + + + + + + + + + +
diff --git a/external/rlbench/urdfs/panda/meshes/Pandalink7visual_vis_2.dae b/external/rlbench/urdfs/panda/meshes/Pandalink7visual_vis_2.dae new file mode 100644 index 0000000000000000000000000000000000000000..cdb42a49b60f78745286ea59aec3dce6353ffc88 --- /dev/null +++ b/external/rlbench/urdfs/panda/meshes/Pandalink7visual_vis_2.dae @@ -0,0 +1,84 @@ + + + + + Assimp + Assimp Exporter + + 2023-09-26T11:24:21 + 2023-09-26T11:24:21 + + Y_UP + + + + + + + + 0 0 0 4.5895327e-41 + + + 0.98000002 0.98000002 0.98000002 4.5893926e-41 + + + 0.98000002 0.98000002 0.98000002 4.5893926e-41 + + + 0.25 0.25 0.25 -3.0261091e+37 + + + + + + + + + + + + + + + + -0.0053650215 -0.039155811 -0.0029721609 -0.0048147514 -0.039175071 -0.0029345453 0.0012001323 -0.03930961 -0.0028952053 -0.007909663 -0.038917441 -0.0034322527 -0.0053650215 -0.039155811 -0.0029721609 0.0012001323 -0.03930961 -0.0028952053 0.0012001358 0.04003026 -0.0035564594 -0.0049456395 0.039125975 -0.0029597345 -0.0093692578 0.038572606 -0.0040060128 -0.014928943 0.02601108 -0.021964954 -0.01499546 0.035540596 -0.011095506 -0.01529587 0.027899446 -0.022264024 -0.014794596 0.03277703 -0.032322027 -0.014971323 0.033037968 -0.032406483 -0.014796384 0.032799017 -0.032167193 -0.014794596 0.03277703 -0.032322027 -0.014799722 0.03276198 -0.032422267 -0.014971323 0.033037968 -0.032406483 -0.014971562 0.033030562 -0.032460026 -0.014971323 0.033037968 -0.032406483 -0.014799722 0.03276198 -0.032422267 -0.014668593 0.031415381 -0.053267892 -0.015196451 0.031854209 -0.046876509 -0.014799722 0.03276198 -0.032422267 0.018554563 0.030095104 -0.016430756 0.018110389 0.034941453 -0.01620153 0.018877024 0.034017712 -0.010760032 0.018110389 0.034941453 -0.01620153 0.018624183 0.036351476 -0.010689226 0.018877024 0.034017712 -0.010760032 0.017573113 0.03334444 -0.019150326 0.018554563 0.030095104 -0.016430756 0.017592961 0.023594247 -0.021283036 -0.014989622 0.031742673 -0.033254404 -0.013887412 0.032363582 -0.029203104 -0.014930675 0.030379968 -0.052368015 -0.014930675 0.030379968 -0.052368015 -0.014823802 0.031773884 -0.034175109 -0.014989622 0.031742673 -0.033254404 -0.014930675 0.030379968 -0.052368015 -0.014668593 0.031415381 -0.053267892 -0.014799722 0.03276198 -0.032422267 0.018877024 0.034017712 -0.010760032 0.018624183 0.036351476 -0.010689226 0.018204685 0.036171045 -0.0079010408 -0.014823802 0.031773884 -0.034175109 -0.014930675 0.030379968 -0.052368015 -0.014799722 0.03276198 -0.032422267 0.017573113 0.03334444 -0.019150326 0.018110389 0.034941453 -0.01620153 0.018554563 0.030095104 -0.016430756 -0.013887412 0.032363582 -0.029203104 -0.014823802 0.031773884 -0.034175109 -0.014799722 0.03276198 -0.032422267 0.00060033379 0.039815076 -0.008331934 -0.0057999534 0.04018848 -0.0071498016 0.00060033414 0.040528927 -0.0053110095 -0.0057999534 0.04018848 -0.0071498016 -0.0051311888 0.040315114 -0.0042576529 0.00060033414 0.040528927 -0.0053110095 0.00060033414 0.040528927 -0.0053110095 -0.0051311888 0.040315114 -0.0042576529 0.0012001358 0.04003026 -0.0035564594 -0.0057999534 0.04018848 -0.0071498016 0.00060033379 0.039815076 -0.008331934 -0.014153784 0.036817145 -0.016235674 0.0012001358 0.04003026 -0.0035564594 -0.0051311888 0.040315114 -0.0042576529 -0.0043668784 0.039154265 -0.002931498 -0.01499546 0.035540596 -0.011095506 -0.012964909 0.038132053 -0.0081557343 -0.012591784 0.038629174 -0.010487917 -0.015668577 0.035489526 -0.018436542 -0.01489008 0.035383269 -0.021118984 -0.017133482 0.030780001 -0.038594902 -0.015668577 0.035489526 -0.018436542 -0.014153784 0.036817145 -0.016235674 -0.01489008 0.035383269 -0.021118984 -0.015668577 0.035489526 -0.018436542 -0.017133482 0.030780001 -0.038594902 -0.017347582 0.030970084 -0.031565383 -0.014153784 0.036817145 -0.016235674 -0.012591784 0.038629174 -0.010487917 -0.0057999534 0.04018848 -0.0071498016 -0.0012758487 0.028999409 -0.068033084 0.00098155742 0.017556597 -0.068562485 -0.0023467063 0.019808915 -0.069549464 0.0011402257 0.029245822 -0.066904411 0.00098155742 0.017556597 -0.068562485 -0.0012758487 0.028999409 -0.068033084 -0.017133482 0.030780001 -0.038594902 -0.01489008 0.035383269 -0.021118984 -0.014971383 0.033037957 -0.032406412 -0.0057999534 0.04018848 -0.0071498016 -0.012591784 0.038629174 -0.010487917 -0.0082588233 0.040127769 -0.0058986517 -0.0082588233 0.040127769 -0.0058986517 -0.0051311888 0.040315114 -0.0042576529 -0.0057999534 0.04018848 -0.0071498016 -0.015668577 0.035489526 -0.018436542 -0.017347582 0.030970084 -0.031565383 -0.017008072 0.032043263 -0.022046641 -0.015668577 0.035489526 -0.018436542 -0.017008072 0.032043263 -0.022046641 -0.01581425 0.034710538 -0.01425489 -0.0043668784 0.039154265 -0.002931498 -0.0093692578 0.038572606 -0.0040060128 -0.0049456395 0.039125975 -0.0029597345 0.0011402257 0.029245822 -0.066904411 0.0020087247 0.023843134 -0.067028813 0.00098155742 0.017556597 -0.068562485 0.010422994 -0.0015788538 -0.046391081 0.0056909216 0.020728441 -0.060187872 0.010914138 0.010689454 -0.044200037 -7.3206924e-05 0.0081643173 -0.069793329 0.00098155742 0.017556597 -0.068562485 0.0019494172 0.0060709803 -0.068493098 -0.015668577 0.035489526 -0.018436542 -0.01581425 0.034710538 -0.01425489 -0.01499546 0.035540596 -0.011095506 -0.012964909 0.038132053 -0.0081557343 -0.012225691 0.037407398 -0.0060079084 -0.0093692578 0.038572606 -0.0040060128 -0.014153784 0.036817145 -0.016235674 -0.015668577 0.035489526 -0.018436542 -0.01499546 0.035540596 -0.011095506 0.0020087247 0.023843134 -0.067028813 0.0029873739 0.028805584 -0.065100759 0.004050184 0.018533058 -0.064676739 0.0029873739 0.028805584 -0.065100759 0.0020087247 0.023843134 -0.067028813 0.0011402257 0.029245822 -0.066904411 -0.012591784 0.038629174 -0.010487917 -0.012964909 0.038132053 -0.0081557343 -0.0082588233 0.040127769 -0.0058986517 0.004050184 0.018533058 -0.064676739 0.0056730406 0.029131552 -0.058604881 0.0056909216 0.020728441 -0.060187872 -0.012591784 0.038629174 -0.010487917 -0.014153784 0.036817145 -0.016235674 -0.01499546 0.035540596 -0.011095506 -0.0082588233 0.040127769 -0.0058986517 -0.0093692578 0.038572606 -0.0040060128 -0.0051311888 0.040315114 -0.0042576529 -0.012964909 0.038132053 -0.0081557343 -0.0093692578 0.038572606 -0.0040060128 -0.0082588233 0.040127769 -0.0058986517 0.0029873739 0.028805584 -0.065100759 0.0056730406 0.029131552 -0.058604881 0.004050184 0.018533058 -0.064676739 0.0056909216 0.020728441 -0.060187872 0.012952439 0.010879447 -0.037556853 0.010914138 0.010689454 -0.044200037 -0.0051311888 0.040315114 -0.0042576529 -0.0093692578 0.038572606 -0.0040060128 -0.0043668784 0.039154265 -0.002931498 -0.016561814 0.031690158 -0.038266551 -0.015196451 0.031854209 -0.046876509 -0.016669044 0.030738903 -0.057752527 -0.017133482 0.030780001 -0.038594902 -0.017390439 0.02897585 -0.056773353 -0.017347582 0.030970084 -0.031565383 -0.017133482 0.030780001 -0.038594902 -0.016669044 0.030738903 -0.057752527 -0.017390439 0.02897585 -0.056773353 -0.016561814 0.031690158 -0.038266551 -0.014971383 0.033037957 -0.032406412 -0.015196451 0.031854209 -0.046876509 -0.014971383 0.033037957 -0.032406412 -0.016561814 0.031690158 -0.038266551 -0.017133482 0.030780001 -0.038594902 -0.016669044 0.030738903 -0.057752527 -0.017133482 0.030780001 -0.038594902 -0.016561814 0.031690158 -0.038266551 0.00060033286 0.037049308 -0.015548577 -0.014153784 0.036817145 -0.016235674 0.00060033379 0.039815076 -0.008331934 -0.010842091 0.033695489 -0.027225658 -0.014796384 0.032799017 -0.032167193 -0.01489008 0.035383269 -0.021118984 0.00060033228 0.035479132 -0.020145806 -0.01489008 0.035383269 -0.021118984 -0.014153784 0.036817145 -0.016235674 -0.004797888 0.013972282 -0.070331842 -0.0023467063 0.019808915 -0.069549464 -0.0023294217 0.007957885 -0.070478961 -0.01489008 0.035383269 -0.021118984 -0.014796384 0.032799017 -0.032167193 -0.014971383 0.033037957 -0.032406412 -0.014796384 0.032799017 -0.032167193 -0.014971323 0.033037968 -0.032406483 -0.014971383 0.033037957 -0.032406412 -0.01489008 0.035383269 -0.021118984 0.00060033228 0.035479132 -0.020145806 0.00059919909 0.033859931 -0.026038008 0.00060033286 0.037049308 -0.015548577 0.00060033228 0.035479132 -0.020145806 -0.014153784 0.036817145 -0.016235674 -0.010842091 0.033695489 -0.027225658 -0.01489008 0.035383269 -0.021118984 0.00059919909 0.033859931 -0.026038008 -0.014971383 0.033037957 -0.032406412 -0.014971562 0.033030562 -0.032460026 -0.014799722 0.03276198 -0.032422267 -0.014971383 0.033037957 -0.032406412 -0.014799722 0.03276198 -0.032422267 -0.015196451 0.031854209 -0.046876509 -0.014026116 0.031589825 -0.062503554 -0.015196451 0.031854209 -0.046876509 -0.014668593 0.031415381 -0.053267892 -0.014026116 0.031589825 -0.062503554 -0.014668593 0.031415381 -0.053267892 -0.013996193 0.031334791 -0.054892357 -0.004797888 0.013972282 -0.070331842 -0.0017494689 -0.0020602439 -0.070549399 -0.0047996771 -0.0053853444 -0.07079912 0.016004197 0.0038727424 -0.027937064 0.012952439 0.010879447 -0.037556853 0.016694717 0.015844975 -0.025111118 -0.0053997743 0.031588145 -0.064355478 -0.013996193 0.031334791 -0.054892357 -0.0053995945 0.031269979 -0.057460379 -0.014026116 0.031589825 -0.062503554 -0.013996193 0.031334791 -0.054892357 -0.0053997743 0.031588145 -0.064355478 -0.01490212 0.034584742 -0.010085161 -0.012225691 0.037407398 -0.0060079084 -0.012964909 0.038132053 -0.0081557343 -0.0023467063 0.019808915 -0.069549464 -7.3206924e-05 0.0081643173 -0.069793329 -0.0023294217 0.007957885 -0.070478961 -0.01490212 0.034584742 -0.010085161 -0.012964909 0.038132053 -0.0081557343 -0.01499546 0.035540596 -0.011095506 -0.015259691 0.0158675 -0.028151684 -0.014931568 0.0053946897 -0.028964806 -0.014928943 0.02601108 -0.021964954 -0.004797888 0.013972282 -0.070331842 -0.0023294217 0.007957885 -0.070478961 -0.0017494689 -0.0020602439 -0.070549399 -0.017347582 0.030970084 -0.031565383 -0.017384062 0.0032533477 -0.037036974 -0.017291732 0.025834756 -0.031895924 -0.0017494689 -0.0020602439 -0.070549399 -7.3206924e-05 0.0081643173 -0.069793329 0.0007880202 -0.0013200296 -0.069492728 -0.015514323 -0.00050165842 -0.031646606 -0.014931568 0.0053946897 -0.028964806 -0.015259691 0.0158675 -0.028151684 -0.017087111 -0.0021035834 -0.035230987 -0.015514323 -0.00050165842 -0.031646606 -0.015543946 0.010491595 -0.030523812 -0.015543946 0.010491595 -0.030523812 -0.015514323 -0.00050165842 -0.031646606 -0.015259691 0.0158675 -0.028151684 -0.017384062 0.0032533477 -0.037036974 -0.016992219 0.015971161 -0.033072475 -0.017291732 0.025834756 -0.031895924 -0.0047996156 0.029116547 -0.068409801 -0.0023467063 0.019808915 -0.069549464 -0.004797888 0.013972282 -0.070331842 -0.017087111 -0.0021035834 -0.035230987 -0.015543946 0.010491595 -0.030523812 -0.016992219 0.015971161 -0.033072475 0.017573113 0.03334444 -0.019150326 0.0056909216 0.020728441 -0.060187872 0.0056730406 0.029131552 -0.058604881 -0.017291732 0.025834756 -0.031895924 -0.014928943 0.02601108 -0.021964954 -0.01529587 0.027899446 -0.022264024 -0.015543946 0.010491595 -0.030523812 -0.015259691 0.0158675 -0.028151684 -0.016992219 0.015971161 -0.033072475 -0.017384062 0.0032533477 -0.037036974 -0.017087111 -0.0021035834 -0.035230987 -0.016992219 0.015971161 -0.033072475 -0.015259691 0.0158675 -0.028151684 -0.014928943 0.02601108 -0.021964954 -0.016992219 0.015971161 -0.033072475 0.00098155742 0.017556597 -0.068562485 0.0033950089 0.0078136828 -0.066656455 0.0019494172 0.0060709803 -0.068493098 -0.0023294217 0.007957885 -0.070478961 -7.3206924e-05 0.0081643173 -0.069793329 -0.0017494689 -0.0020602439 -0.070549399 -0.016992219 0.015971161 -0.033072475 -0.014928943 0.02601108 -0.021964954 -0.017291732 0.025834756 -0.031895924 -0.017291732 0.025834756 -0.031895924 -0.017008072 0.032043263 -0.022046641 -0.017347582 0.030970084 -0.031565383 -0.01529587 0.027899446 -0.022264024 -0.01499546 0.035540596 -0.011095506 -0.01581425 0.034710538 -0.01425489 -0.01581425 0.034710538 -0.01425489 -0.017008072 0.032043263 -0.022046641 -0.01529587 0.027899446 -0.022264024 -0.017008072 0.032043263 -0.022046641 -0.017291732 0.025834756 -0.031895924 -0.01529587 0.027899446 -0.022264024 -0.017103266 0.0291215 -0.060687911 -0.016669044 0.030738903 -0.057752527 -0.016291451 0.02890572 -0.063894086 -0.016291451 0.02890572 -0.063894086 -0.014246296 0.030043136 -0.065902926 -0.013302576 0.028845668 -0.067205049 0.016004197 0.0038727424 -0.027937064 0.013211122 -0.00089203008 -0.036791243 0.012952439 0.010879447 -0.037556853 -0.013302576 0.028845668 -0.067205049 -0.014246296 0.030043136 -0.065902926 -0.011366677 0.030791169 -0.066053949 -0.0054000132 0.029099898 -0.0684269 -0.011366677 0.030791169 -0.066053949 -0.0053997743 0.031588145 -0.064355478 -0.016291451 0.02890572 -0.063894086 -0.016669044 0.030738903 -0.057752527 -0.014026116 0.031589825 -0.062503554 -0.014246296 0.030043136 -0.065902926 -0.016291451 0.02890572 -0.063894086 -0.014026116 0.031589825 -0.062503554 -0.014246296 0.030043136 -0.065902926 -0.014026116 0.031589825 -0.062503554 -0.011366677 0.030791169 -0.066053949 0.0045099137 0.0010480956 -0.064862467 0.0056909216 0.020728441 -0.060187872 0.006106365 -0.00090072479 -0.060769472 -0.011366677 0.030791169 -0.066053949 -0.0095534436 0.028883899 -0.068251349 -0.013302576 0.028845668 -0.067205049 -0.011366677 0.030791169 -0.066053949 -0.014026116 0.031589825 -0.062503554 -0.0053997743 0.031588145 -0.064355478 -0.0054000132 0.029099898 -0.0684269 -0.0095534436 0.028883899 -0.068251349 -0.011366677 0.030791169 -0.066053949 -0.016669044 0.030738903 -0.057752527 -0.017103266 0.0291215 -0.060687911 -0.017390439 0.02897585 -0.056773353 0.013444892 0.0083465576 -0.036079794 0.012952439 0.010879447 -0.037556853 0.013211122 -0.00089203008 -0.036791243 -0.016669044 0.030738903 -0.057752527 -0.015196451 0.031854209 -0.046876509 -0.014026116 0.031589825 -0.062503554 -0.010842091 0.033695489 -0.027225658 -0.013887412 0.032363582 -0.029203104 -0.014796384 0.032799017 -0.032167193 -0.0069238013 0.032909092 -0.026183546 -0.013887412 0.032363582 -0.029203104 -0.010842091 0.033695489 -0.027225658 -0.014796384 0.032799017 -0.032167193 -0.013887412 0.032363582 -0.029203104 -0.014799722 0.03276198 -0.032422267 0.00059919909 0.033859931 -0.026038008 -0.0069238013 0.032909092 -0.026183546 -0.010842091 0.033695489 -0.027225658 -0.0093121035 0.03049203 -0.057128824 -0.0053995945 0.031269979 -0.057460379 -0.013996193 0.031334791 -0.054892357 -0.014930675 0.030379968 -0.052368015 -0.0093121035 0.03049203 -0.057128824 -0.013996193 0.031334791 -0.054892357 -0.014668593 0.031415381 -0.053267892 -0.014930675 0.030379968 -0.052368015 -0.013996193 0.031334791 -0.054892357 -0.0043574674 0.030314239 -0.057532676 -0.0053995945 0.031269979 -0.057460379 -0.0093121035 0.03049203 -0.057128824 -0.012898457 0.0058950568 -0.069733508 -0.011374605 0.0082044229 -0.070141822 -0.010453952 -0.0038241805 -0.070472442 -0.017103266 0.0291215 -0.060687911 -0.016291451 0.02890572 -0.063894086 -0.016922366 0.013974023 -0.063831158 -0.011374605 0.0082044229 -0.070141822 -0.012898457 0.0058950568 -0.069733508 -0.012995732 0.019596141 -0.068670884 -0.012995732 0.019596141 -0.068670884 -0.0095534436 0.028883899 -0.068251349 -0.011374605 0.0082044229 -0.070141822 -0.016004693 0.011145146 -0.066651635 -0.016291451 0.02890572 -0.063894086 -0.015519928 0.021199612 -0.066471055 -0.011374605 0.0082044229 -0.070141822 -0.0095534436 0.028883899 -0.068251349 -0.0087190391 0.012260912 -0.070323028 -0.017204655 -0.0086934706 -0.062397663 -0.017103266 0.0291215 -0.060687911 -0.016922366 0.013974023 -0.063831158 -0.0087190391 0.012260912 -0.070323028 -0.0095534436 0.028883899 -0.068251349 -0.0077366354 0.019216133 -0.069770649 -0.0087190391 0.012260912 -0.070323028 -0.0053997757 0.014738822 -0.070272565 -0.0053995973 0.0044652978 -0.07083562 0.0056909216 0.020728441 -0.060187872 0.016694717 0.015844975 -0.025111118 0.012952439 0.010879447 -0.037556853 0.017573113 0.03334444 -0.019150326 0.017592961 0.023594247 -0.021283036 0.0056909216 0.020728441 -0.060187872 -0.017204655 -0.0086934706 -0.062397663 -0.017390439 0.02897585 -0.056773353 -0.017103266 0.0291215 -0.060687911 -7.3206924e-05 0.0081643173 -0.069793329 0.0019494172 0.0060709803 -0.068493098 0.0007880202 -0.0013200296 -0.069492728 -0.016922366 0.013974023 -0.063831158 -0.016291451 0.02890572 -0.063894086 -0.016004693 0.011145146 -0.066651635 -0.0087190391 0.012260912 -0.070323028 -0.0077366354 0.019216133 -0.069770649 -0.0053997757 0.014738822 -0.070272565 -0.0077366354 0.019216133 -0.069770649 -0.0095534436 0.028883899 -0.068251349 -0.0054000132 0.029099898 -0.0684269 0.0019494172 0.0060709803 -0.068493098 0.0026154986 -0.0060224286 -0.067783423 0.0007880202 -0.0013200296 -0.069492728 -0.016922366 0.013974023 -0.063831158 -0.016004693 0.011145146 -0.066651635 -0.016528619 -0.010377335 -0.06552051 -0.0053997757 0.014738822 -0.070272565 -0.0077366354 0.019216133 -0.069770649 -0.0054000132 0.029099898 -0.0684269 -0.017390439 0.02897585 -0.056773353 -0.017204655 -0.0086934706 -0.062397663 -0.017373873 -0.029252412 -0.057142209 -0.011374605 0.0082044229 -0.070141822 -0.0087190391 0.012260912 -0.070323028 -0.0053995973 0.0044652978 -0.07083562 -0.016291451 0.02890572 -0.063894086 -0.013302576 0.028845668 -0.067205049 -0.015519928 0.021199612 -0.066471055 0.0056909216 0.020728441 -0.060187872 0.017592961 0.023594247 -0.021283036 0.016694717 0.015844975 -0.025111118 0.00098155742 0.017556597 -0.068562485 0.0020087247 0.023843134 -0.067028813 0.0033950089 0.0078136828 -0.066656455 0.0033950089 0.0078136828 -0.066656455 0.004050184 0.018533058 -0.064676739 0.0045099137 0.0010480956 -0.064862467 -0.015519928 0.021199612 -0.066471055 -0.013302576 0.028845668 -0.067205049 -0.012995732 0.019596141 -0.068670884 -0.014448714 0.0073372978 -0.068772972 -0.015519928 0.021199612 -0.066471055 -0.012995732 0.019596141 -0.068670884 -0.014448714 0.0073372978 -0.068772972 -0.012995732 0.019596141 -0.068670884 -0.012898457 0.0058950568 -0.069733508 0.0020087247 0.023843134 -0.067028813 0.004050184 0.018533058 -0.064676739 0.0033950089 0.0078136828 -0.066656455 -0.015519928 0.021199612 -0.066471055 -0.014448714 0.0073372978 -0.068772972 -0.016004693 0.011145146 -0.066651635 -0.012995732 0.019596141 -0.068670884 -0.013302576 0.028845668 -0.067205049 -0.0095534436 0.028883899 -0.068251349 -0.0023467063 0.019808915 -0.069549464 0.00098155742 0.017556597 -0.068562485 -7.3206924e-05 0.0081643173 -0.069793329 0.0056909216 0.020728441 -0.060187872 0.010422994 -0.0015788538 -0.046391081 0.006106365 -0.00090072479 -0.060769472 0.0019763613 -0.033221446 -0.026104532 0.0012006664 -0.033949576 -0.026034238 -0.012039075 -0.033495843 -0.027912641 -0.012039075 -0.033495843 -0.027912641 -0.014971386 -0.033097629 -0.032389969 -0.01476122 -0.032907922 -0.031831328 -0.014799724 -0.032821599 -0.03240598 -0.01476122 -0.032907922 -0.031831328 -0.014971386 -0.033097629 -0.032389969 -0.014799724 -0.032821618 -0.032406077 -0.014799724 -0.032821599 -0.03240598 -0.014971386 -0.033097629 -0.032389969 -0.014971386 -0.033097629 -0.032389969 -0.014971505 -0.033090197 -0.032443658 -0.014799724 -0.032821618 -0.032406077 -0.014823864 -0.032123789 -0.030932024 -0.014396797 -0.032294627 -0.029856721 -0.012039075 -0.033495843 -0.027912641 0.0026154986 -0.0060224286 -0.067783423 0.0033950089 0.0078136828 -0.066656455 0.0045099137 0.0010480956 -0.064862467 -0.014877926 -0.032016877 -0.032227993 -0.014823864 -0.032123789 -0.030932024 -0.014649997 -0.03228157 -0.031032063 -0.014989625 -0.031802706 -0.033238642 -0.014877926 -0.032016877 -0.032227993 -0.014839183 -0.031810235 -0.034065951 0.0019494172 0.0060709803 -0.068493098 0.0033950089 0.0078136828 -0.066656455 0.0026154986 -0.0060224286 -0.067783423 -0.015390706 -0.030047406 -0.054174516 -0.014994333 -0.03132638 -0.037298381 -0.014922928 -0.031250291 -0.038487919 0.004050184 0.018533058 -0.064676739 0.0056909216 0.020728441 -0.060187872 0.0045099137 0.0010480956 -0.064862467 -0.0047996156 0.029116547 -0.068409801 -0.0012758487 0.028999409 -0.068033084 -0.0023467063 0.019808915 -0.069549464 -0.014823864 -0.032123789 -0.030932024 -0.014989625 -0.031802706 -0.033238642 -0.014994333 -0.03132638 -0.037298381 -0.015390706 -0.030047406 -0.054174516 -0.014922928 -0.031250291 -0.038487919 -0.014838707 -0.031383745 -0.038007062 -0.014839183 -0.031810235 -0.034065951 -0.014838707 -0.031383745 -0.038007062 -0.014994333 -0.03132638 -0.037298381 -0.014877926 -0.032016877 -0.032227993 -0.014799724 -0.032821618 -0.032406077 -0.014839183 -0.031810235 -0.034065951 -0.014839183 -0.031810235 -0.034065951 -0.014799724 -0.032821618 -0.032406077 -0.014838707 -0.031383745 -0.038007062 -0.015390706 -0.030047406 -0.054174516 -0.014838707 -0.031383745 -0.038007062 -0.014799724 -0.032821618 -0.032406077 -0.015390706 -0.030047406 -0.054174516 -0.014799724 -0.032821618 -0.032406077 -0.01518519 -0.031668615 -0.056479592 -0.014930856 -0.030450819 -0.052335527 -0.015390706 -0.030047406 -0.054174516 -0.01518519 -0.031668615 -0.056479592 0.00059919764 -0.039825421 -0.0084346374 0.00059913826 -0.040529605 -0.005870543 -0.0077619031 -0.040251717 -0.0054597687 -0.0077619031 -0.040251717 -0.0054597687 0.00059913826 -0.040529605 -0.005870543 0.00059979415 -0.040433347 -0.0041995915 0.00059979415 -0.040433347 -0.0041995915 0.0012001323 -0.03930961 -0.0028952053 -0.0048147514 -0.039175071 -0.0029345453 -0.014646181 -0.036984049 -0.014824542 -0.014305242 -0.036594778 -0.017049814 -0.011425146 -0.039185576 -0.0092816576 -0.014646181 -0.036984049 -0.014824542 -0.011425146 -0.039185576 -0.0092816576 -0.01265157 -0.038476672 -0.0079590967 -0.010201283 -0.039310556 -0.0053454107 -0.007909663 -0.038917441 -0.0034322527 -0.012597091 -0.037206165 -0.0063876519 -0.012597091 -0.037206165 -0.0063876519 -0.01265157 -0.038476672 -0.0079590967 -0.010201283 -0.039310556 -0.0053454107 -0.01265157 -0.038476672 -0.0079590967 -0.011425146 -0.039185576 -0.0092816576 -0.010201283 -0.039310556 -0.0053454107 -0.007909663 -0.038917441 -0.0034322527 -0.0077619031 -0.040251717 -0.0054597687 0.00059979415 -0.040433347 -0.0041995915 -0.011425146 -0.039185576 -0.0092816576 0.00059919764 -0.039825421 -0.0084346374 -0.0077619031 -0.040251717 -0.0054597687 -0.01738454 -0.030115496 -0.036770541 -0.016316781 -0.033896185 -0.016726319 -0.017382273 -0.029254014 -0.031143172 -0.016159186 -0.034733236 -0.019461678 -0.014971386 -0.033097707 -0.032390006 -0.014646181 -0.036984049 -0.014824542 -0.016316781 -0.033896185 -0.016726319 -0.01738454 -0.030115496 -0.036770541 -0.016159186 -0.034733236 -0.019461678 -0.016159186 -0.034733236 -0.019461678 -0.01647545 -0.031485923 -0.042612217 -0.014971386 -0.033097707 -0.032390006 -0.007909663 -0.038917441 -0.0034322527 -0.010201283 -0.039310556 -0.0053454107 -0.0077619031 -0.040251717 -0.0054597687 -0.016316781 -0.033896185 -0.016726319 -0.016159186 -0.034733236 -0.019461678 -0.014651665 -0.037093978 -0.012535425 -0.014646181 -0.036984049 -0.014824542 -0.014651665 -0.037093978 -0.012535425 -0.016159186 -0.034733236 -0.019461678 -0.014651665 -0.037093978 -0.012535425 -0.014917322 -0.035161067 -0.010589992 -0.016316781 -0.033896185 -0.016726319 -0.014917322 -0.035161067 -0.010589992 -0.014651665 -0.037093978 -0.012535425 -0.01265157 -0.038476672 -0.0079590967 -0.011425146 -0.039185576 -0.0092816576 -0.014305242 -0.036594778 -0.017049814 0.00059919764 -0.039825421 -0.0084346374 -0.0077619031 -0.040251717 -0.0054597687 -0.010201283 -0.039310556 -0.0053454107 -0.011425146 -0.039185576 -0.0092816576 -0.007909663 -0.038917441 -0.0034322527 0.00059979415 -0.040433347 -0.0041995915 -0.0048147514 -0.039175071 -0.0029345453 -0.014646181 -0.036984049 -0.014824542 -0.01265157 -0.038476672 -0.0079590967 -0.014651665 -0.037093978 -0.012535425 -0.017373873 -0.029252412 -0.057142209 -0.016636265 -0.030916264 -0.055722747 -0.01647545 -0.031485923 -0.042612217 -0.01647545 -0.031485923 -0.042612217 -0.014971505 -0.033090197 -0.032443658 -0.014971386 -0.033097707 -0.032390006 -0.01647545 -0.031485923 -0.042612217 -0.014799724 -0.032821618 -0.032406077 -0.014971505 -0.033090197 -0.032443658 -0.017373873 -0.029252412 -0.057142209 -0.01647545 -0.031485923 -0.042612217 -0.016159186 -0.034733236 -0.019461678 -0.017373873 -0.029252412 -0.057142209 -0.016159186 -0.034733236 -0.019461678 -0.01738454 -0.030115496 -0.036770541 -0.01647545 -0.031485923 -0.042612217 -0.01518519 -0.031668615 -0.056479592 -0.014799724 -0.032821618 -0.032406077 -0.014305242 -0.036594778 -0.017049814 -0.012039075 -0.033495843 -0.027912641 0.0012006664 -0.033949576 -0.026034238 -0.014971386 -0.033097629 -0.032389969 -0.012039075 -0.033495843 -0.027912641 -0.014971386 -0.033097707 -0.032390006 0.0012006664 -0.033949576 -0.026034238 0.00060038862 -0.035523646 -0.020158259 -0.014305242 -0.036594778 -0.017049814 -0.014305242 -0.036594778 -0.017049814 0.00060038862 -0.035523646 -0.020158259 0.00059919764 -0.039825421 -0.0084346374 -0.014305242 -0.036594778 -0.017049814 -0.014646181 -0.036984049 -0.014824542 -0.012039075 -0.033495843 -0.027912641 -0.012039075 -0.033495843 -0.027912641 -0.014646181 -0.036984049 -0.014824542 -0.014971386 -0.033097707 -0.032390006 -0.0053996579 -0.031673465 -0.064468123 -0.0053995978 -0.031311426 -0.057427227 -0.01174356 -0.031669073 -0.063875653 -0.01518519 -0.031668615 -0.056479592 -0.01174356 -0.031669073 -0.063875653 -0.013994825 -0.031384856 -0.054768037 -0.013994825 -0.031384856 -0.054768037 -0.01174356 -0.031669073 -0.063875653 -0.0053995978 -0.031311426 -0.057427227 -0.016257836 -0.028992156 -0.063959099 -0.015013709 -0.029798044 -0.06549567 -0.014816179 -0.031188048 -0.063401945 -0.010323896 -0.028987715 -0.068102479 -0.015013709 -0.029798044 -0.06549567 -0.012711897 -0.029049477 -0.067428544 -0.016636265 -0.030916264 -0.055722747 -0.014816179 -0.031188048 -0.063401945 -0.01518519 -0.031668615 -0.056479592 -0.010323896 -0.028987715 -0.068102479 -0.0053997776 -0.029214339 -0.068401523 -0.0053996579 -0.031673465 -0.064468123 -0.01647545 -0.031485923 -0.042612217 -0.016636265 -0.030916264 -0.055722747 -0.01518519 -0.031668615 -0.056479592 -0.014816179 -0.031188048 -0.063401945 -0.016928865 -0.029117245 -0.061702006 -0.016257836 -0.028992156 -0.063959099 -0.014816179 -0.031188048 -0.063401945 -0.016636265 -0.030916264 -0.055722747 -0.016928865 -0.029117245 -0.061702006 -0.014816179 -0.031188048 -0.063401945 -0.01174356 -0.031669073 -0.063875653 -0.01518519 -0.031668615 -0.056479592 -0.014816179 -0.031188048 -0.063401945 -0.015013709 -0.029798044 -0.06549567 -0.010323896 -0.028987715 -0.068102479 -0.010323896 -0.028987715 -0.068102479 -0.01174356 -0.031669073 -0.063875653 -0.014816179 -0.031188048 -0.063401945 -0.010323896 -0.028987715 -0.068102479 -0.0053996579 -0.031673465 -0.064468123 -0.01174356 -0.031669073 -0.063875653 -0.017373873 -0.029252412 -0.057142209 -0.016928865 -0.029117245 -0.061702006 -0.016636265 -0.030916264 -0.055722747 -0.017390439 0.02897585 -0.056773353 -0.017373873 -0.029252412 -0.057142209 -0.017384062 0.0032533477 -0.037036974 -0.017384062 0.0032533477 -0.037036974 -0.01738454 -0.030115496 -0.036770541 -0.017382273 -0.029254014 -0.031143172 -0.017390439 0.02897585 -0.056773353 -0.017384062 0.0032533477 -0.037036974 -0.017347582 0.030970084 -0.031565383 -0.017373873 -0.029252412 -0.057142209 -0.01738454 -0.030115496 -0.036770541 -0.017384062 0.0032533477 -0.037036974 0.014833563 0.032987408 -0.026730912 0.0097203767 0.030846706 -0.044144925 0.012501591 0.033743378 -0.028601961 -0.014917322 -0.035161067 -0.010589992 -0.015526066 -0.026545607 -0.024464572 -0.016316781 -0.033896185 -0.016726319 -0.015526066 -0.026545607 -0.024464572 -0.017264852 -0.026997913 -0.030905705 -0.016316781 -0.033896185 -0.016726319 -0.016316781 -0.033896185 -0.016726319 -0.017264852 -0.026997913 -0.030905705 -0.017382273 -0.029254014 -0.031143172 -0.017156074 -0.015241035 -0.03398082 -0.017264852 -0.026997913 -0.030905705 -0.015526066 -0.026545607 -0.024464572 -0.015107223 -0.0087384554 -0.0294929 -0.017156074 -0.015241035 -0.03398082 -0.015526066 -0.026545607 -0.024464572 -0.014931568 0.0053946897 -0.028964806 -0.015514323 -0.00050165842 -0.031646606 -0.014917978 -0.01669368 -0.025965631 -0.015514323 -0.00050165842 -0.031646606 -0.017156074 -0.015241035 -0.03398082 -0.015107223 -0.0087384554 -0.0294929 -0.015514323 -0.00050165842 -0.031646606 -0.017087111 -0.0021035834 -0.035230987 -0.017156074 -0.015241035 -0.03398082 -0.014917978 -0.01669368 -0.025965631 -0.015514323 -0.00050165842 -0.031646606 -0.015107223 -0.0087384554 -0.0294929 -0.017087111 -0.0021035834 -0.035230987 -0.017384062 0.0032533477 -0.037036974 -0.017156074 -0.015241035 -0.03398082 -0.014917978 -0.01669368 -0.025965631 -0.015526066 -0.026545607 -0.024464572 -0.014917322 -0.035161067 -0.010589992 -0.017156074 -0.015241035 -0.03398082 -0.017384062 0.0032533477 -0.037036974 -0.017264852 -0.026997913 -0.030905705 -0.015107223 -0.0087384554 -0.0294929 -0.015526066 -0.026545607 -0.024464572 -0.014917978 -0.01669368 -0.025965631 -0.017384062 0.0032533477 -0.037036974 -0.017382273 -0.029254014 -0.031143172 -0.017264852 -0.026997913 -0.030905705 -0.014928943 0.02601108 -0.021964954 -0.01490212 0.034584742 -0.010085161 -0.01499546 0.035540596 -0.011095506 -0.014928943 0.02601108 -0.021964954 -0.014931568 0.0053946897 -0.028964806 -0.01490212 0.034584742 -0.010085161 -0.014931568 0.0053946897 -0.028964806 -0.014894731 -0.034680281 -0.01001331 -0.01490212 0.034584742 -0.010085161 -0.014931568 0.0053946897 -0.028964806 -0.014917978 -0.01669368 -0.025965631 -0.014894731 -0.034680281 -0.01001331 -0.014917978 -0.01669368 -0.025965631 -0.014917322 -0.035161067 -0.010589992 -0.014894731 -0.034680281 -0.01001331 -0.014894731 -0.034680281 -0.01001331 -0.014917322 -0.035161067 -0.010589992 -0.01265157 -0.038476672 -0.0079590967 -0.012597091 -0.037206165 -0.0063876519 -0.014894731 -0.034680281 -0.01001331 -0.01265157 -0.038476672 -0.0079590967 -0.01476122 -0.032907922 -0.031831328 -0.014649997 -0.03228157 -0.031032063 -0.012039075 -0.033495843 -0.027912641 -0.014877926 -0.032016877 -0.032227993 -0.014649997 -0.03228157 -0.031032063 -0.01476122 -0.032907922 -0.031831328 -0.014799724 -0.032821618 -0.032406077 -0.014877926 -0.032016877 -0.032227993 -0.01476122 -0.032907922 -0.031831328 -0.011404527 -0.030399337 -0.056737315 -0.014930856 -0.030450819 -0.052335527 -0.013994825 -0.031384856 -0.054768037 -0.0053995978 -0.031311426 -0.057427227 -0.011404527 -0.030399337 -0.056737315 -0.013994825 -0.031384856 -0.054768037 -0.013994825 -0.031384856 -0.054768037 -0.014930856 -0.030450819 -0.052335527 -0.01518519 -0.031668615 -0.056479592 -0.015013709 -0.029798044 -0.06549567 -0.016257836 -0.028992156 -0.063959099 -0.01502247 -0.016160939 -0.067626521 -0.010437502 -0.0099180909 -0.07024999 -0.013255848 -0.0099345474 -0.069374964 -0.010453952 -0.0038241805 -0.070472442 -0.0053995983 -0.014782256 -0.070260435 -0.012014284 -0.022734053 -0.068666764 -0.010437502 -0.0099180909 -0.07024999 -0.01502247 -0.016160939 -0.067626521 -0.014904929 -0.003852956 -0.068441197 -0.013255848 -0.0099345474 -0.069374964 -0.0053996574 -0.0053619915 -0.070805065 -0.010453952 -0.0038241805 -0.070472442 -0.0053995973 0.0044652978 -0.07083562 -0.016928865 -0.029117245 -0.061702006 -0.017373873 -0.029252412 -0.057142209 -0.017204655 -0.0086934706 -0.062397663 -0.014904929 -0.003852956 -0.068441197 -0.01502247 -0.016160939 -0.067626521 -0.016004693 0.011145146 -0.066651635 -0.010453952 -0.0038241805 -0.070472442 -0.011374605 0.0082044229 -0.070141822 -0.0053995973 0.0044652978 -0.07083562 -0.012014284 -0.022734053 -0.068666764 -0.013255848 -0.0099345474 -0.069374964 -0.010437502 -0.0099180909 -0.07024999 -0.0053995983 -0.014782256 -0.070260435 -0.010437502 -0.0099180909 -0.07024999 -0.0053996574 -0.0053619915 -0.070805065 0.0048115151 0.03084253 -0.059156172 0.0014526739 0.031586301 -0.06200856 0.0087032234 0.032196671 -0.041192215 -0.0019637458 0.030397465 -0.066999227 0.0011402257 0.029245822 -0.066904411 -0.0012758487 0.028999409 -0.068033084 -0.012014284 -0.022734053 -0.068666764 -0.014131858 -0.022828378 -0.067629665 -0.013255848 -0.0099345474 -0.069374964 -0.016928865 -0.029117245 -0.061702006 -0.017204655 -0.0086934706 -0.062397663 -0.016528619 -0.010377335 -0.06552051 -0.010453952 -0.0038241805 -0.070472442 -0.013255848 -0.0099345474 -0.069374964 -0.012898457 0.0058950568 -0.069733508 -0.01502247 -0.016160939 -0.067626521 -0.016528619 -0.010377335 -0.06552051 -0.016004693 0.011145146 -0.066651635 -0.013255848 -0.0099345474 -0.069374964 -0.014904929 -0.003852956 -0.068441197 -0.012898457 0.0058950568 -0.069733508 -0.014904929 -0.003852956 -0.068441197 -0.014448714 0.0073372978 -0.068772972 -0.012898457 0.0058950568 -0.069733508 -0.014904929 -0.003852956 -0.068441197 -0.016004693 0.011145146 -0.066651635 -0.014448714 0.0073372978 -0.068772972 -0.016528619 -0.010377335 -0.06552051 -0.017204655 -0.0086934706 -0.062397663 -0.016922366 0.013974023 -0.063831158 -0.0053996574 -0.0053619915 -0.070805065 -0.010437502 -0.0099180909 -0.07024999 -0.010453952 -0.0038241805 -0.070472442 0.0022440443 0.03008729 -0.065266564 0.0011402257 0.029245822 -0.066904411 -0.0019637458 0.030397465 -0.066999227 -0.014131858 -0.022828378 -0.067629665 -0.01502247 -0.016160939 -0.067626521 -0.013255848 -0.0099345474 -0.069374964 -0.016257836 -0.028992156 -0.063959099 -0.016528619 -0.010377335 -0.06552051 -0.01502247 -0.016160939 -0.067626521 -0.0053997776 -0.029214339 -0.068401523 -0.010323896 -0.028987715 -0.068102479 -0.0053995983 -0.014782256 -0.070260435 -0.010323896 -0.028987715 -0.068102479 -0.012711897 -0.029049477 -0.067428544 -0.012014284 -0.022734053 -0.068666764 -0.012711897 -0.029049477 -0.067428544 -0.014131858 -0.022828378 -0.067629665 -0.012014284 -0.022734053 -0.068666764 -0.016257836 -0.028992156 -0.063959099 -0.016928865 -0.029117245 -0.061702006 -0.016528619 -0.010377335 -0.06552051 -0.012711897 -0.029049477 -0.067428544 -0.015013709 -0.029798044 -0.06549567 -0.014131858 -0.022828378 -0.067629665 -0.010323896 -0.028987715 -0.068102479 -0.012014284 -0.022734053 -0.068666764 -0.0053995983 -0.014782256 -0.070260435 -0.015013709 -0.029798044 -0.06549567 -0.01502247 -0.016160939 -0.067626521 -0.014131858 -0.022828378 -0.067629665 0.00060032948 -0.036548156 -0.015849838 0.00059913826 -0.040529605 -0.005870543 0.00059919764 -0.039825421 -0.0084346374 0.00060032948 -0.036548156 -0.015849838 0.00059919764 -0.039825421 -0.0084346374 0.00060038862 -0.035523646 -0.020158259 0.0012006664 -0.033949576 -0.026034238 0.00060032948 -0.036548156 -0.015849838 0.00060038862 -0.035523646 -0.020158259 -0.0054000132 0.029099898 -0.0684269 -0.0053995973 0.0044652978 -0.07083562 -0.0053997757 0.014738822 -0.070272565 0.00060033379 0.039815076 -0.008331934 0.00060033414 0.040528927 -0.0053110095 0.00060033286 0.037049308 -0.015548577 0.00059919909 0.033859931 -0.026038008 0.00060033228 0.035479132 -0.020145806 0.00060033286 0.037049308 -0.015548577 0.018686822 -0.0077404347 -0.027185066 0.016097894 -0.0050875 -0.027729956 0.018655233 0.00060848129 -0.027865661 0.016694717 0.015844975 -0.025111118 0.017592961 0.023594247 -0.021283036 0.01865422 0.021881165 -0.022176007 0.01867079 0.012603404 -0.02605656 0.016694717 0.015844975 -0.025111118 0.01865422 0.021881165 -0.022176007 0.0011402257 0.029245822 -0.066904411 0.0022440443 0.03008729 -0.065266564 0.0029873739 0.028805584 -0.065100759 0.016930094 -0.018432381 -0.024059305 0.016097894 -0.0050875 -0.027729956 0.018686822 -0.0077404347 -0.027185066 0.018676331 -0.018670853 -0.02380814 0.016930094 -0.018432381 -0.024059305 0.018686822 -0.0077404347 -0.027185066 0.016004197 0.0038727424 -0.027937064 0.016694717 0.015844975 -0.025111118 0.01867079 0.012603404 -0.02605656 0.018655233 0.00060848129 -0.027865661 0.016004197 0.0038727424 -0.027937064 0.01867079 0.012603404 -0.02605656 0.017742386 -0.025100196 -0.020437431 0.016930094 -0.018432381 -0.024059305 0.018676331 -0.018670853 -0.02380814 0.016097894 -0.0050875 -0.027729956 0.016004197 0.0038727424 -0.027937064 0.018655233 0.00060848129 -0.027865661 0.017742386 -0.025100196 -0.020437431 0.018676331 -0.018670853 -0.02380814 0.018469624 -0.029360522 -0.017099608 0.017592961 0.023594247 -0.021283036 0.018554563 0.030095104 -0.016430756 0.01865422 0.021881165 -0.022176007 0.0188502 0.0072291899 -0.026290981 0.018554563 0.030095104 -0.016430756 0.018877024 0.034017712 -0.010760032 0.01865422 0.021881165 -0.022176007 0.018554563 0.030095104 -0.016430756 0.0188502 0.0072291899 -0.026290981 0.01867079 0.012603404 -0.02605656 0.01865422 0.021881165 -0.022176007 0.0188502 0.0072291899 -0.026290981 0.018655233 0.00060848129 -0.027865661 0.01867079 0.012603404 -0.02605656 0.0188502 0.0072291899 -0.026290981 0.018686822 -0.0077404347 -0.027185066 0.018655233 0.00060848129 -0.027865661 0.0188502 0.0072291899 -0.026290981 0.018676331 -0.018670853 -0.02380814 0.018686822 -0.0077404347 -0.027185066 0.0188502 0.0072291899 -0.026290981 0.018676331 -0.018670853 -0.02380814 0.0188502 0.0072291899 -0.026290981 0.018833034 -0.03439457 -0.010344201 0.018469624 -0.029360522 -0.017099608 0.018676331 -0.018670853 -0.02380814 0.018833034 -0.03439457 -0.010344201 0.0092959302 -0.03201253 -0.032768641 0.0074410341 -0.032595824 -0.027993646 0.0093357461 -0.031444646 -0.036267091 0.0092959302 -0.03201253 -0.032768641 0.0092039006 -0.032054551 -0.031874537 0.0074410341 -0.032595824 -0.027993646 0.0074410341 -0.032595824 -0.027993646 0.0012006664 -0.033949576 -0.026034238 0.0019763613 -0.033221446 -0.026104532 0.0044979332 -0.030449595 -0.052746229 0.0093357461 -0.031444646 -0.036267091 0.008818496 -0.031210488 -0.038548253 0.0074543855 -0.032567814 -0.028295999 0.0012006664 -0.033949576 -0.026034238 0.0074410341 -0.032595824 -0.027993646 0.008082022 -0.0324382 -0.029110366 0.0074410341 -0.032595824 -0.027993646 0.0090027945 -0.032167464 -0.031150272 0.001401054 -0.030360246 -0.05715869 0.0011012426 -0.030100966 -0.057353977 -0.005704714 -0.030355958 -0.05846737 0.0056730406 0.029131552 -0.058604881 0.0029873739 0.028805584 -0.065100759 0.0022440443 0.03008729 -0.065266564 0.0097203767 0.030846706 -0.044144925 0.0048115151 0.03084253 -0.059156172 0.0087032234 0.032196671 -0.041192215 -0.015390706 -0.030047406 -0.054174516 -0.014930856 -0.030450819 -0.052335527 -0.011941386 -0.03006052 -0.057627678 0.0044979332 -0.030449595 -0.052746229 0.0011012426 -0.030100966 -0.057353977 0.001401054 -0.030360246 -0.05715869 0.0044979332 -0.030449595 -0.052746229 0.001401054 -0.030360246 -0.05715869 0.0013371579 -0.030407427 -0.056130651 0.001401054 -0.030360246 -0.05715869 -0.005704714 -0.030355958 -0.05846737 -0.011404527 -0.030399337 -0.056737315 -0.011404527 -0.030399337 -0.056737315 -0.005704714 -0.030355958 -0.05846737 -0.011941386 -0.03006052 -0.057627678 -0.011404527 -0.030399337 -0.056737315 -0.011941386 -0.03006052 -0.057627678 -0.014930856 -0.030450819 -0.052335527 -0.0047996175 -0.031021737 -0.057347734 -0.0053995978 -0.031311426 -0.057427227 -0.0047996175 -0.031021729 -0.057360027 -0.0053996579 -0.031673465 -0.064468123 -0.0047996175 -0.031047089 -0.059488885 -0.0053995978 -0.031311426 -0.057427227 -0.0053995978 -0.031311426 -0.057427227 -0.0047996175 -0.031047089 -0.059488885 -0.0047996175 -0.031021729 -0.057360027 -0.0053997776 -0.029214339 -0.068401523 -0.0047996184 -0.02951904 -0.068300262 -0.0047996184 -0.030537678 -0.067139246 -0.0053996579 -0.031673465 -0.064468123 -0.0053997776 -0.029214339 -0.068401523 -0.0047996184 -0.030537678 -0.067139246 0.0012004896 -0.040564042 -0.0054168762 0.0012001904 -0.03622872 -0.01799809 0.001200847 -0.040150858 -0.0074860258 0.00060032948 -0.036548156 -0.015849838 0.0012006664 -0.033949576 -0.026034238 0.0012001904 -0.03622872 -0.01799809 0.00060032948 -0.036548156 -0.015849838 0.0012001904 -0.03622872 -0.01799809 0.0012004896 -0.040564042 -0.0054168762 0.00059913826 -0.040529605 -0.005870543 0.00060032948 -0.036548156 -0.015849838 0.0012004896 -0.040564042 -0.0054168762 0.00059913826 -0.040529605 -0.005870543 0.0012004896 -0.040564042 -0.0054168762 0.0012001323 -0.03930961 -0.0028952053 0.00059913826 -0.040529605 -0.005870543 0.0012001323 -0.03930961 -0.0028952053 0.00059979415 -0.040433347 -0.0041995915 0.0012004896 -0.040564042 -0.0054168762 0.001200847 -0.040150858 -0.0074860258 0.012568228 -0.040130321 -0.0067077167 0.0012001323 -0.03930961 -0.0028952053 0.0012004896 -0.040564042 -0.0054168762 0.011788003 -0.039551172 -0.0034828419 0.011788003 -0.039551172 -0.0034828419 0.0012004896 -0.040564042 -0.0054168762 0.012568228 -0.040130321 -0.0067077167 0.012568228 -0.040130321 -0.0067077167 0.015631547 -0.036314633 -0.017982645 0.016538732 -0.038371682 -0.010359822 0.012568228 -0.040130321 -0.0067077167 0.015093379 -0.039612889 -0.0061984011 0.011788003 -0.039551172 -0.0034828419 0.014497988 -0.038931195 -0.0040994734 0.011788003 -0.039551172 -0.0034828419 0.015093379 -0.039612889 -0.0061984011 0.017635813 -0.035827637 -0.016261041 0.016538732 -0.038371682 -0.010359822 0.015631547 -0.036314633 -0.017982645 0.017282836 -0.037321251 -0.0062055364 0.014497988 -0.038931195 -0.0040994734 0.017674558 -0.037956171 -0.0076061394 0.017674558 -0.037956171 -0.0076061394 0.016538732 -0.038371682 -0.010359822 0.017635813 -0.035827637 -0.016261041 0.018527381 -0.035813916 -0.013205672 0.017635813 -0.035827637 -0.016261041 0.017843118 -0.033559754 -0.018220207 0.017674558 -0.037956171 -0.0076061394 0.014497988 -0.038931195 -0.0040994734 0.015093379 -0.039612889 -0.0061984011 0.017674558 -0.037956171 -0.0076061394 0.015093379 -0.039612889 -0.0061984011 0.016538732 -0.038371682 -0.010359822 0.017674558 -0.037956171 -0.0076061394 0.018527381 -0.035813916 -0.013205672 0.018833034 -0.03439457 -0.010344201 0.018527381 -0.035813916 -0.013205672 0.017674558 -0.037956171 -0.0076061394 0.017635813 -0.035827637 -0.016261041 0.001200847 -0.040150858 -0.0074860258 0.015631547 -0.036314633 -0.017982645 0.012568228 -0.040130321 -0.0067077167 0.016538732 -0.038371682 -0.010359822 0.015093379 -0.039612889 -0.0061984011 0.012568228 -0.040130321 -0.0067077167 0.0012006664 -0.033949576 -0.026034238 0.0081056859 -0.034447979 -0.024134584 0.0012001904 -0.03622872 -0.01799809 0.0081056859 -0.034447979 -0.024134584 0.012502839 -0.033799242 -0.028599961 0.015631547 -0.036314633 -0.017982645 0.015631547 -0.036314633 -0.017982645 0.001200847 -0.040150858 -0.0074860258 0.0012001904 -0.03622872 -0.01799809 0.0070527694 -0.033612143 -0.027982851 0.0081056859 -0.034447979 -0.024134584 0.0012006664 -0.033949576 -0.026034238 0.012502839 -0.033799242 -0.028599961 0.0081056859 -0.034447979 -0.024134584 0.0070527694 -0.033612143 -0.027982851 0.015631547 -0.036314633 -0.017982645 0.0012001904 -0.03622872 -0.01799809 0.0081056859 -0.034447979 -0.024134584 0.0090135233 -0.032274418 -0.037246626 0.012502839 -0.033799242 -0.028599961 0.0070527694 -0.033612143 -0.027982851 0.0077234986 -0.032039836 -0.04438575 0.0040796869 -0.031459827 -0.05353687 0.0030279625 -0.031657204 -0.059351429 0.0040796869 -0.031459827 -0.05353687 0.0077234986 -0.032039836 -0.04438575 0.0090135233 -0.032274418 -0.037246626 0.0077234986 -0.032039836 -0.04438575 0.012502839 -0.033799242 -0.028599961 0.0090135233 -0.032274418 -0.037246626 -0.00074012368 -0.031219652 -0.056834772 -0.0047996175 -0.031021737 -0.057347734 0.0040796869 -0.031459827 -0.05353687 0.014833563 0.032987408 -0.026730912 0.017573113 0.03334444 -0.019150326 0.0097203767 0.030846706 -0.044144925 0.0040796869 -0.031459827 -0.05353687 -0.0047996175 -0.031021737 -0.057347734 -0.0053996579 -0.031673465 -0.064468123 0.0030279625 -0.031657204 -0.059351429 0.0040796869 -0.031459827 -0.05353687 -0.0053996579 -0.031673465 -0.064468123 0.0077234986 -0.032039836 -0.04438575 0.0047524441 -0.031082114 -0.058667324 0.012319495 -0.03172927 -0.035249874 0.013774564 -0.030776314 -0.031744078 0.012319495 -0.03172927 -0.035249874 0.0056397188 -0.029278662 -0.058672316 0.0047524441 -0.031082114 -0.058667324 0.0077234986 -0.032039836 -0.04438575 0.0030279625 -0.031657204 -0.059351429 0.0047524441 -0.031082114 -0.058667324 0.0025086862 -0.030230239 -0.064853549 0.0041391714 -0.0292415 -0.062846385 0.0041391714 -0.0292415 -0.062846385 0.0025086862 -0.030230239 -0.064853549 0.0018002253 -0.029257691 -0.066382937 0.00029789025 -0.030654557 -0.065976046 0.0030279625 -0.031657204 -0.059351429 -0.0053996579 -0.031673465 -0.064468123 0.00029789025 -0.030654557 -0.065976046 -0.0047996184 -0.030537678 -0.067139246 0.00012819572 -0.029021664 -0.067552082 -0.0047996184 -0.030537678 -0.067139246 -0.0047996184 -0.02951904 -0.068300262 -0.0033429405 -0.029020421 -0.068358086 0.012319495 -0.03172927 -0.035249874 0.013774564 -0.030776314 -0.031744078 0.017635813 -0.035827637 -0.016261041 0.012502839 -0.033799242 -0.028599961 0.012319495 -0.03172927 -0.035249874 0.017635813 -0.035827637 -0.016261041 0.012319495 -0.03172927 -0.035249874 0.012502839 -0.033799242 -0.028599961 0.0077234986 -0.032039836 -0.04438575 0.012319495 -0.03172927 -0.035249874 0.0047524441 -0.031082114 -0.058667324 0.0041391714 -0.0292415 -0.062846385 0.0056397188 -0.029278662 -0.058672316 0.012319495 -0.03172927 -0.035249874 0.0041391714 -0.0292415 -0.062846385 0.0025086862 -0.030230239 -0.064853549 0.0047524441 -0.031082114 -0.058667324 0.0030279625 -0.031657204 -0.059351429 0.0018002253 -0.029257691 -0.066382937 0.00029789025 -0.030654557 -0.065976046 0.00012819572 -0.029021664 -0.067552082 0.0018002253 -0.029257691 -0.066382937 0.0025086862 -0.030230239 -0.064853549 0.00029789025 -0.030654557 -0.065976046 0.0030279625 -0.031657204 -0.059351429 0.00029789025 -0.030654557 -0.065976046 0.0025086862 -0.030230239 -0.064853549 0.017635813 -0.035827637 -0.016261041 0.013774564 -0.030776314 -0.031744078 0.017843118 -0.033559754 -0.018220207 -0.0047996184 -0.030537678 -0.067139246 -0.0033429405 -0.029020421 -0.068358086 0.00012819572 -0.029021664 -0.067552082 0.015631547 -0.036314633 -0.017982645 0.012502839 -0.033799242 -0.028599961 0.017635813 -0.035827637 -0.016261041 0.00029789025 -0.030654557 -0.065976046 -0.0053996579 -0.031673465 -0.064468123 -0.0047996184 -0.030537678 -0.067139246 0.017282836 -0.037321251 -0.0062055364 0.017674558 -0.037956171 -0.0076061394 0.018833034 -0.03439457 -0.010344201 0.017843118 -0.033559754 -0.018220207 0.017742386 -0.025100196 -0.020437431 0.018469624 -0.029360522 -0.017099608 0.018527381 -0.035813916 -0.013205672 0.018469624 -0.029360522 -0.017099608 0.018833034 -0.03439457 -0.010344201 0.018527381 -0.035813916 -0.013205672 0.017843118 -0.033559754 -0.018220207 0.018469624 -0.029360522 -0.017099608 0.0092039006 -0.032054551 -0.031874537 0.0092959302 -0.03201253 -0.032768641 0.0070527694 -0.033612143 -0.027982851 0.0090027945 -0.032167464 -0.031150272 0.0092039006 -0.032054551 -0.031874537 0.0070527694 -0.033612143 -0.027982851 -0.0047996156 0.029116547 -0.068409801 -0.0019637458 0.030397465 -0.066999227 -0.0012758487 0.028999409 -0.068033084 0.008082022 -0.0324382 -0.029110366 0.0090027945 -0.032167464 -0.031150272 0.0070527694 -0.033612143 -0.027982851 0.0074543855 -0.032567814 -0.028295999 0.008082022 -0.0324382 -0.029110366 0.0070527694 -0.033612143 -0.027982851 0.0012006664 -0.033949576 -0.026034238 0.0074543855 -0.032567814 -0.028295999 0.0070527694 -0.033612143 -0.027982851 0.0090714591 -0.031483456 -0.037000816 0.0044979332 -0.030449595 -0.052746229 0.0090135233 -0.032274418 -0.037246626 0.0093357461 -0.031444646 -0.036267091 0.0090714591 -0.031483456 -0.037000816 0.0090135233 -0.032274418 -0.037246626 0.012501591 0.033743378 -0.028601961 0.015649671 0.036288928 -0.01791326 0.017440194 0.037128855 -0.01315374 0.0093584554 -0.031920377 -0.03356706 0.0093357461 -0.031444646 -0.036267091 0.0090135233 -0.032274418 -0.037246626 0.012501591 0.033743378 -0.028601961 0.017440194 0.037128855 -0.01315374 0.014833563 0.032987408 -0.026730912 0.0092959302 -0.03201253 -0.032768641 0.0093584554 -0.031920377 -0.03356706 0.0090135233 -0.032274418 -0.037246626 0.0070527694 -0.033612143 -0.027982851 0.0092959302 -0.03201253 -0.032768641 0.0090135233 -0.032274418 -0.037246626 0.017573113 0.03334444 -0.019150326 0.014833563 0.032987408 -0.026730912 0.018110389 0.034941453 -0.01620153 0.0090135233 -0.032274418 -0.037246626 0.0044979332 -0.030449595 -0.052746229 0.0040796869 -0.031459827 -0.05353687 0.0014526739 0.031586301 -0.06200856 0.0048115151 0.03084253 -0.059156172 0.0022440443 0.03008729 -0.065266564 -0.00074012368 -0.031219652 -0.056834772 0.001401054 -0.030360246 -0.05715869 -0.0047996175 -0.031021737 -0.057347734 0.0040796869 -0.031459827 -0.05353687 0.0013371579 -0.030407427 -0.056130651 -0.00074012368 -0.031219652 -0.056834772 0.0044979332 -0.030449595 -0.052746229 0.0013371579 -0.030407427 -0.056130651 0.0040796869 -0.031459827 -0.05353687 -0.0047996175 -0.031021737 -0.057347734 -0.011404527 -0.030399337 -0.056737315 -0.0053995978 -0.031311426 -0.057427227 0.001401054 -0.030360246 -0.05715869 -0.011404527 -0.030399337 -0.056737315 -0.0047996175 -0.031021737 -0.057347734 0.013451567 -0.0087693632 -0.036041111 0.013088098 -0.010600853 -0.03707137 0.011491409 -0.010474331 -0.036469359 0.013451567 -0.0087693632 -0.036041111 0.011491409 -0.010474331 -0.036469359 0.011889806 -0.0083300918 -0.035780948 0.013088098 -0.010600853 -0.03707137 0.011261513 -0.011042503 -0.043051623 0.011491409 -0.010474331 -0.036469359 0.0091886418 -0.010963676 -0.043679591 0.011491409 -0.010474331 -0.036469359 0.011261513 -0.011042503 -0.043051623 0.0041391714 -0.0292415 -0.062846385 0.004891383 -0.015864385 -0.063082039 0.0058509582 -0.015688919 -0.060352098 0.00073187199 -0.017357932 -0.068729818 0.0018002253 -0.029257691 -0.066382937 0.00012819572 -0.029021664 -0.067552082 0.0018002253 -0.029257691 -0.066382937 0.00073187199 -0.017357932 -0.068729818 0.0029784904 -0.017410534 -0.066600554 0.013088098 -0.010600853 -0.03707137 0.016930094 -0.018432381 -0.024059305 0.017742386 -0.025100196 -0.020437431 0.017742386 -0.025100196 -0.020437431 0.013774564 -0.030776314 -0.031744078 0.0058509582 -0.015688919 -0.060352098 0.017742386 -0.025100196 -0.020437431 0.0058509582 -0.015688919 -0.060352098 0.013088098 -0.010600853 -0.03707137 0.013088098 -0.010600853 -0.03707137 0.016097894 -0.0050875 -0.027729956 0.016930094 -0.018432381 -0.024059305 -0.0053997743 0.031588145 -0.064355478 0.0022440443 0.03008729 -0.065266564 -0.0019637458 0.030397465 -0.066999227 0.00012819572 -0.029021664 -0.067552082 -0.0026828782 -0.013409551 -0.070206732 0.00073187199 -0.017357932 -0.068729818 0.013088098 -0.010600853 -0.03707137 0.0058509582 -0.015688919 -0.060352098 0.011261513 -0.011042503 -0.043051623 0.013088098 -0.010600853 -0.03707137 0.013451567 -0.0087693632 -0.036041111 0.016097894 -0.0050875 -0.027729956 0.010661055 -0.01013127 -0.045093298 0.0058509582 -0.015688919 -0.060352098 0.006106365 -0.00090072479 -0.060769472 0.013451567 -0.0087693632 -0.036041111 0.013211122 -0.00089203008 -0.036791243 0.016097894 -0.0050875 -0.027729956 0.0058509582 -0.015688919 -0.060352098 0.010661055 -0.01013127 -0.045093298 0.011261513 -0.011042503 -0.043051623 0.0014526739 0.031586301 -0.06200856 0.0022440443 0.03008729 -0.065266564 -0.0053997743 0.031588145 -0.064355478 0.0029784904 -0.017410534 -0.066600554 0.00073187199 -0.017357932 -0.068729818 0.0026154986 -0.0060224286 -0.067783423 0.00012819572 -0.029021664 -0.067552082 -0.0033429405 -0.029020421 -0.068358086 -0.0026828782 -0.013409551 -0.070206732 -0.0026828782 -0.013409551 -0.070206732 -0.0047996184 -0.02951904 -0.068300262 -0.0047996179 -0.014506316 -0.070280932 -6.730693e-05 -0.011095459 -0.069639966 -0.0026828782 -0.013409551 -0.070206732 -0.0017494689 -0.0020602439 -0.070549399 0.0029784904 -0.017410534 -0.066600554 0.0026154986 -0.0060224286 -0.067783423 0.004891383 -0.015864385 -0.063082039 0.017742386 -0.025100196 -0.020437431 0.017843118 -0.033559754 -0.018220207 0.013774564 -0.030776314 -0.031744078 -0.0026828782 -0.013409551 -0.070206732 -0.0047996179 -0.014506316 -0.070280932 -0.0047996771 -0.0053853444 -0.07079912 -6.730693e-05 -0.011095459 -0.069639966 -0.0017494689 -0.0020602439 -0.070549399 0.0007880202 -0.0013200296 -0.069492728 0.0026154986 -0.0060224286 -0.067783423 0.00073187199 -0.017357932 -0.068729818 0.0007880202 -0.0013200296 -0.069492728 0.013211122 -0.00089203008 -0.036791243 0.016004197 0.0038727424 -0.027937064 0.016097894 -0.0050875 -0.027729956 0.00073187199 -0.017357932 -0.068729818 -0.0026828782 -0.013409551 -0.070206732 -6.730693e-05 -0.011095459 -0.069639966 0.006106365 -0.00090072479 -0.060769472 0.004891383 -0.015864385 -0.063082039 0.0045099137 0.0010480956 -0.064862467 0.010661055 -0.01013127 -0.045093298 0.006106365 -0.00090072479 -0.060769472 0.010422994 -0.0015788538 -0.046391081 -0.0026828782 -0.013409551 -0.070206732 -0.0047996771 -0.0053853444 -0.07079912 -0.0017494689 -0.0020602439 -0.070549399 0.00073187199 -0.017357932 -0.068729818 -6.730693e-05 -0.011095459 -0.069639966 0.0007880202 -0.0013200296 -0.069492728 -0.0033429405 -0.029020421 -0.068358086 -0.0047996184 -0.02951904 -0.068300262 -0.0026828782 -0.013409551 -0.070206732 0.013774564 -0.030776314 -0.031744078 0.0056397188 -0.029278662 -0.058672316 0.0058509582 -0.015688919 -0.060352098 0.0058509582 -0.015688919 -0.060352098 0.0056397188 -0.029278662 -0.058672316 0.0041391714 -0.0292415 -0.062846385 0.004891383 -0.015864385 -0.063082039 0.0026154986 -0.0060224286 -0.067783423 0.0045099137 0.0010480956 -0.064862467 0.0022440443 0.03008729 -0.065266564 0.0048115151 0.03084253 -0.059156172 0.0056730406 0.029131552 -0.058604881 0.0097203767 0.030846706 -0.044144925 0.0087032234 0.032196671 -0.041192215 0.012501591 0.033743378 -0.028601961 0.0029784904 -0.017410534 -0.066600554 0.0041391714 -0.0292415 -0.062846385 0.0018002253 -0.029257691 -0.066382937 0.0058509582 -0.015688919 -0.060352098 0.004891383 -0.015864385 -0.063082039 0.006106365 -0.00090072479 -0.060769472 0.0041391714 -0.0292415 -0.062846385 0.0029784904 -0.017410534 -0.066600554 0.004891383 -0.015864385 -0.063082039 -0.0053996574 -0.0053619915 -0.070805065 -0.004797888 0.013972282 -0.070331842 -0.0047996771 -0.0053853444 -0.07079912 0.0056730406 0.029131552 -0.058604881 0.0048115151 0.03084253 -0.059156172 0.0097203767 0.030846706 -0.044144925 -0.0053996574 -0.0053619915 -0.070805065 -0.0047996771 -0.0053853444 -0.07079912 -0.0053995983 -0.014782256 -0.070260435 -0.0053995983 -0.014782256 -0.070260435 -0.0047996771 -0.0053853444 -0.07079912 -0.0047996179 -0.014506316 -0.070280932 -0.0053995983 -0.014782256 -0.070260435 -0.0047996179 -0.014506316 -0.070280932 -0.0047996184 -0.02951904 -0.068300262 -0.0053995983 -0.014782256 -0.070260435 -0.0047996184 -0.02951904 -0.068300262 -0.0053997776 -0.029214339 -0.068401523 0.010422994 -0.0015788538 -0.046391081 0.0086363452 -0.0085732238 -0.045632184 0.010661055 -0.01013127 -0.045093298 0.010661055 -0.01013127 -0.045093298 0.0086363452 -0.0085732238 -0.045632184 0.0091886418 -0.010963676 -0.043679591 0.010661055 -0.01013127 -0.045093298 0.0091886418 -0.010963676 -0.043679591 0.011261513 -0.011042503 -0.043051623 0.010422994 -0.0015788538 -0.046391081 0.0084411995 0.00090673118 -0.046239737 0.0086363452 -0.0085732238 -0.045632184 0.012952439 0.010879447 -0.037556853 0.013444892 0.0083465576 -0.036079794 0.011616877 0.010391226 -0.036680266 0.010914138 0.010689454 -0.044200037 0.0087191965 0.0086529562 -0.045550216 0.010422994 -0.0015788538 -0.046391081 0.013444892 0.0083465576 -0.036079794 0.013211122 -0.00089203008 -0.036791243 0.0118848 0.00887617 -0.035802253 0.013451567 -0.0087693632 -0.036041111 0.011889806 -0.0083300918 -0.035780948 0.013211122 -0.00089203008 -0.036791243 0.011616877 0.010391226 -0.036680266 0.013444892 0.0083465576 -0.036079794 0.0118848 0.00887617 -0.035802253 0.0098481085 0.010774316 -0.04255259 0.010914138 0.010689454 -0.044200037 0.011616877 0.010391226 -0.036680266 0.010914138 0.010689454 -0.044200037 0.012952439 0.010879447 -0.037556853 0.011616877 0.010391226 -0.036680266 0.0056730406 0.029131552 -0.058604881 0.0097203767 0.030846706 -0.044144925 0.017573113 0.03334444 -0.019150326 0.0084411995 0.00090673118 -0.046239737 0.010422994 -0.0015788538 -0.046391081 0.0087191965 0.0086529562 -0.045550216 0.0087191965 0.0086529562 -0.045550216 0.010914138 0.010689454 -0.044200037 0.0098481085 0.010774316 -0.04255259 0.00044666728 0.031300012 -0.056626905 0.0024249456 0.030329792 -0.055476088 0.004523268 0.031322762 -0.052238293 0.00907325 0.032078169 -0.03140419 0.0072817737 0.032538775 -0.028162854 0.0092159435 0.032028146 -0.032276522 0.0012001358 0.04003026 -0.0035564594 0.013962384 0.039132491 -0.0039494727 0.010980662 0.040332414 -0.0047424375 0.010980662 0.040332414 -0.0047424375 0.00060033414 0.040528927 -0.0053110095 0.0012001358 0.04003026 -0.0035564594 0.0072817737 0.032538775 -0.028162854 -0.0069238013 0.032909092 -0.026183546 0.00059919909 0.033859931 -0.026038008 0.00907325 0.032078169 -0.03140419 0.0091935322 0.031306509 -0.037024982 0.0072817737 0.032538775 -0.028162854 -0.0047996147 0.030949701 -0.057375357 -0.0053995945 0.031269979 -0.057460379 -0.0047997334 0.030950904 -0.057338841 -0.0047997339 0.030974938 -0.059567474 -0.0053997743 0.031588145 -0.064355478 -0.0053995945 0.031269979 -0.057460379 -0.0047997339 0.030974938 -0.059567474 -0.0053995945 0.031269979 -0.057460379 -0.0047996147 0.030949701 -0.057375357 -0.004797888 0.013972282 -0.070331842 -0.0053996574 -0.0053619915 -0.070805065 -0.0053995973 0.0044652978 -0.07083562 -0.004797888 0.013972282 -0.070331842 -0.0053995973 0.0044652978 -0.07083562 -0.0054000132 0.029099898 -0.0684269 -0.004797888 0.013972282 -0.070331842 -0.0054000132 0.029099898 -0.0684269 -0.0047996156 0.029116547 -0.068409801 0.00060033414 0.040528927 -0.0053110095 0.010980662 0.040332414 -0.0047424375 0.011518832 0.039803047 -0.0081609581 -0.0047996156 0.029116547 -0.068409801 -0.0054000132 0.029099898 -0.0684269 -0.0053997743 0.031588145 -0.064355478 -0.0053997743 0.031588145 -0.064355478 -0.0047997339 0.030974938 -0.059567474 -0.0047997334 0.030950904 -0.057338841 -0.0053996579 -0.031673465 -0.064468123 -0.0047996175 -0.031021737 -0.057347734 -0.0047996175 -0.031047089 -0.059488885 0.0012004931 0.040223215 -0.0071042767 0.00060033414 0.040528927 -0.0053110095 0.011518832 0.039803047 -0.0081609581 -0.0043574674 0.030314239 -0.057532676 0.0024249456 0.030329792 -0.055476088 0.00044666728 0.031300012 -0.056626905 -0.0043574674 0.030314239 -0.057532676 0.00044666728 0.031300012 -0.056626905 -0.0047997334 0.030950904 -0.057338841 0.0024249456 0.030329792 -0.055476088 0.0044766571 0.030376069 -0.052831579 0.004523268 0.031322762 -0.052238293 -0.0043574674 0.030314239 -0.057532676 -0.0047997334 0.030950904 -0.057338841 -0.0053995945 0.031269979 -0.057460379 0.0091935322 0.031306509 -0.037024982 0.004523268 0.031322762 -0.052238293 0.0044766571 0.030376069 -0.052831579 0.008983247 0.032197304 -0.037376009 0.004523268 0.031322762 -0.052238293 0.0091935322 0.031306509 -0.037024982 0.0072817737 0.032538775 -0.028162854 0.004634195 0.033819269 -0.026590785 0.0084469849 0.033257544 -0.029708389 0.0092159435 0.032028146 -0.032276522 0.0072817737 0.032538775 -0.028162854 0.0084469849 0.033257544 -0.029708389 0.0072817737 0.032538775 -0.028162854 0.00059919909 0.033859931 -0.026038008 0.004634195 0.033819269 -0.026590785 0.0091935322 0.031306509 -0.037024982 0.0092159435 0.032028146 -0.032276522 0.008983247 0.032197304 -0.037376009 0.008983247 0.032197304 -0.037376009 0.0092159435 0.032028146 -0.032276522 0.0084469849 0.033257544 -0.029708389 0.00060033414 0.040528927 -0.0053110095 0.0012004931 0.040223215 -0.0071042767 0.0012001339 0.035783947 -0.019171827 0.00059919909 0.033859931 -0.026038008 0.00060033286 0.037049308 -0.015548577 0.0012001339 0.035783947 -0.019171827 0.0012001339 0.035783947 -0.019171827 0.00060033286 0.037049308 -0.015548577 0.00060033414 0.040528927 -0.0053110095 -0.0053997743 0.031588145 -0.064355478 -0.0019637458 0.030397465 -0.066999227 -0.0047996156 0.029116547 -0.068409801 0.017440194 0.037128855 -0.01315374 0.015649671 0.036288928 -0.01791326 0.014751729 0.039562773 -0.0073167761 0.017440194 0.037128855 -0.01315374 0.017865296 0.037641272 -0.0077322926 0.018624183 0.036351476 -0.010689226 0.017440194 0.037128855 -0.01315374 0.018624183 0.036351476 -0.010689226 0.018110389 0.034941453 -0.01620153 0.017440194 0.037128855 -0.01315374 0.018110389 0.034941453 -0.01620153 0.014833563 0.032987408 -0.026730912 0.014751729 0.039562773 -0.0073167761 0.010980662 0.040332414 -0.0047424375 0.013962384 0.039132491 -0.0039494727 0.014751729 0.039562773 -0.0073167761 0.013962384 0.039132491 -0.0039494727 0.017865296 0.037641272 -0.0077322926 0.014751729 0.039562773 -0.0073167761 0.017865296 0.037641272 -0.0077322926 0.017440194 0.037128855 -0.01315374 0.017865296 0.037641272 -0.0077322926 0.013962384 0.039132491 -0.0039494727 0.018204685 0.036171045 -0.0079010408 0.018204685 0.036171045 -0.0079010408 0.018624183 0.036351476 -0.010689226 0.017865296 0.037641272 -0.0077322926 0.010980662 0.040332414 -0.0047424375 0.014751729 0.039562773 -0.0073167761 0.011518832 0.039803047 -0.0081609581 0.014751729 0.039562773 -0.0073167761 0.015649671 0.036288928 -0.01791326 0.011518832 0.039803047 -0.0081609581 0.011518832 0.039803047 -0.0081609581 0.015649671 0.036288928 -0.01791326 0.0012004931 0.040223215 -0.0071042767 0.015649671 0.036288928 -0.01791326 0.0012001339 0.035783947 -0.019171827 0.0012004931 0.040223215 -0.0071042767 -0.0053997743 0.031588145 -0.064355478 0.00044666728 0.031300012 -0.056626905 0.0014526739 0.031586301 -0.06200856 -0.0047997334 0.030950904 -0.057338841 0.00044666728 0.031300012 -0.056626905 -0.0053997743 0.031588145 -0.064355478 0.00044666728 0.031300012 -0.056626905 0.004523268 0.031322762 -0.052238293 0.0014526739 0.031586301 -0.06200856 0.004523268 0.031322762 -0.052238293 0.0087032234 0.032196671 -0.041192215 0.0014526739 0.031586301 -0.06200856 0.0087032234 0.032196671 -0.041192215 0.004523268 0.031322762 -0.052238293 0.008983247 0.032197304 -0.037376009 0.015649671 0.036288928 -0.01791326 0.012501591 0.033743378 -0.028601961 0.004634195 0.033819269 -0.026590785 0.012501591 0.033743378 -0.028601961 0.0084469849 0.033257544 -0.029708389 0.004634195 0.033819269 -0.026590785 0.008983247 0.032197304 -0.037376009 0.012501591 0.033743378 -0.028601961 0.0087032234 0.032196671 -0.041192215 0.0012001339 0.035783947 -0.019171827 0.015649671 0.036288928 -0.01791326 0.00059919909 0.033859931 -0.026038008 0.00059919909 0.033859931 -0.026038008 0.015649671 0.036288928 -0.01791326 0.004634195 0.033819269 -0.026590785 0.012501591 0.033743378 -0.028601961 0.008983247 0.032197304 -0.037376009 0.0084469849 0.033257544 -0.029708389 + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610

+
+
+
+
+ + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + + + + + + + + + + + + + +
diff --git a/external/rlbench/urdfs/panda/meshes/Pandalink7visual_vis_3.dae b/external/rlbench/urdfs/panda/meshes/Pandalink7visual_vis_3.dae new file mode 100644 index 0000000000000000000000000000000000000000..24bf279764c58424692826dedae98b51b96976c6 --- /dev/null +++ b/external/rlbench/urdfs/panda/meshes/Pandalink7visual_vis_3.dae @@ -0,0 +1,84 @@ + + + + + Assimp + Assimp Exporter + + 2023-09-26T11:24:21 + 2023-09-26T11:24:21 + + Y_UP + + + + + + + + 0 0 0 4.5895327e-41 + + + 0.69999999 0.69999999 0.69999999 4.5893926e-41 + + + 0.69999999 0.69999999 0.69999999 4.5893926e-41 + + + 0.25 0.25 0.25 3.6295857e-33 + + + + + + + + + + + + + + + + -0.009239913 -0.0016777936 0.069604203 -0.0089132795 -0.0031708688 0.069807269 -0.0048544421 -0.0029203254 0.069601476 -0.010666372 -3.3476332e-05 0.06939286 -0.0089132795 -0.0031708688 0.069807269 -0.009239913 -0.0016777936 0.069604203 -0.0021780743 0.00022381509 0.069204174 -0.0048544421 -0.0029203254 0.069601476 -0.0058685555 -0.0040370156 0.06897147 -0.0058685555 -0.0040370156 0.06897147 -0.0048544421 -0.0029203254 0.069601476 -0.0089132795 -0.0031708688 0.069807269 -0.0071209683 -0.0032383474 0.069166645 -0.0058685555 -0.0040370156 0.06897147 -0.010666372 -3.3476332e-05 0.06939286 -0.0058685555 -0.0040370156 0.06897147 -0.0089132795 -0.0031708688 0.069807269 -0.010666372 -3.3476332e-05 0.06939286 -0.003773333 0.0019921816 0.069164306 -0.0021780743 0.00022381509 0.069204174 -0.0071209683 -0.0032383474 0.069166645 -0.0021780743 0.00022381509 0.069204174 -0.0058685555 -0.0040370156 0.06897147 -0.0071209683 -0.0032383474 0.069166645 -0.027399309 0.00033595393 -0.0046157087 -0.027399428 0.0030445429 -0.0090148281 -0.026931413 0.0013246553 -0.005422256 -0.0071209683 -0.0032383474 0.069166645 -0.010666372 -3.3476332e-05 0.06939286 -0.0093580503 0.001477843 0.06916745 -0.0021780743 0.00022381509 0.069204174 -0.003773333 0.0019921816 0.069164306 -0.0039269938 0.003333335 0.069708712 -0.0093580503 0.001477843 0.06916745 -0.0061779036 0.004256113 0.069388218 -0.003773333 0.0019921816 0.069164306 -0.003773333 0.0019921816 0.069164306 -0.0061779036 0.004256113 0.069388218 -0.0039269938 0.003333335 0.069708712 -0.010666372 -3.3476332e-05 0.06939286 -0.009441914 0.0026744481 0.068968743 -0.0093580503 0.001477843 0.06916745 -0.0093580503 0.001477843 0.06916745 -0.009441914 0.0026744481 0.068968743 -0.0061779036 0.004256113 0.069388218 -0.0061779036 0.004256113 0.069388218 -0.009441914 0.0026744481 0.068968743 -0.0065083518 0.0033066373 0.069591224 -0.0061779036 0.004256113 0.069388218 -0.0065083518 0.0033066373 0.069591224 -0.0039269938 0.003333335 0.069708712 -0.0021780743 0.00022381509 0.069204174 -0.0065083518 0.0033066373 0.069591224 -0.0048544421 -0.0029203254 0.069601476 -0.010666372 -3.3476332e-05 0.06939286 -0.009239913 -0.0016777936 0.069604203 -0.009441914 0.0026744481 0.068968743 -0.0039269938 0.003333335 0.069708712 -0.0065083518 0.0033066373 0.069591224 -0.0021780743 0.00022381509 0.069204174 -0.009441914 0.0026744481 0.068968743 -0.009239913 -0.0016777936 0.069604203 -0.0065083518 0.0033066373 0.069591224 -0.0094341049 0.0023539115 0.070833854 -0.0073943152 0.0032513125 0.070028462 -0.0091456184 -0.0020181595 0.070033118 -0.0091456184 -0.0020181595 0.070033118 -0.0036387455 -0.0030120076 0.070057869 -0.0068335547 -0.0038227616 0.070835635 -0.0036539449 0.002008856 0.070032127 -0.0036387455 -0.0030120076 0.070057869 -0.0091456184 -0.0020181595 0.070033118 -0.0091456184 -0.0020181595 0.070033118 -0.0094375024 -0.0023614042 0.070834346 -0.0094341049 0.0023539115 0.070833854 -0.0068335547 -0.0038227616 0.070835635 -0.0094375024 -0.0023614042 0.070834346 -0.0091456184 -0.0020181595 0.070033118 -0.0036539449 0.002008856 0.070032127 -0.0029000058 0.00038551769 0.070752762 -0.0036387455 -0.0030120076 0.070057869 -0.0059771552 -0.00017914863 0.069933407 -0.0063855662 -0.0021679527 0.069934852 -0.0055530085 -0.0018811859 0.069933601 -0.0029000058 0.00038551769 0.070752762 -0.0040189638 0.0011884958 0.069933929 -0.0041513457 0.00059091637 0.069932796 -0.0029000058 0.00038551769 0.070752762 -0.0041513457 0.00059091637 0.069932796 -0.0059771552 -0.00017914863 0.069933407 -0.0068335547 0.0038138889 0.070833713 -0.0059999241 0.0025705642 0.069932103 -0.0073998584 0.0011820071 0.07083106 -0.0063855662 -0.0021679527 0.069934852 -0.0073998584 0.0011820071 0.07083106 -0.0094375024 -0.0023614042 0.070834346 -0.0029000058 0.00038551769 0.070752762 -0.0068335547 0.0038138889 0.070833713 -0.0073998584 0.0011820071 0.07083106 -0.0062344088 0.0018304446 0.069932431 -0.0068335547 0.0038138889 0.070833713 -0.0094341049 0.0023539115 0.070833854 -0.0040189638 0.0011884958 0.069933929 -0.0029000058 0.00038551769 0.070752762 -0.0073998584 0.0011820071 0.07083106 -0.027399305 0.00034823359 0.045384172 -0.027399544 0.0030596475 0.040989749 -0.02693129 0.0024343131 0.04348008 -0.0055530085 -0.0018811859 0.069933601 -0.0068335547 -0.0038227616 0.070835635 -0.0036387455 -0.0030120076 0.070057869 -0.0073998584 0.0011820071 0.07083106 -0.0059771552 -0.00017914863 0.069933407 -0.0041513457 0.00059091637 0.069932796 -0.0029000058 0.00038551769 0.070752762 -0.0055530085 -0.0018811859 0.069933601 -0.0036387455 -0.0030120076 0.070057869 -0.0073998584 0.0011820071 0.07083106 -0.0094341049 0.0023539115 0.070833854 -0.0081949243 0.00018896176 0.069932893 -0.0081949243 0.00018896176 0.069932893 -0.0094341049 0.0023539115 0.070833854 -0.0094375024 -0.0023614042 0.070834346 -0.0059999241 0.0025705642 0.069932103 -0.0068335547 0.0038138889 0.070833713 -0.0062344088 0.0018304446 0.069932431 -0.0073998584 0.0011820071 0.07083106 -0.0048655285 0.0009444757 0.069932655 -0.0040189638 0.0011884958 0.069933929 -0.0062344088 0.0018304446 0.069932431 -0.0094341049 0.0023539115 0.070833854 -0.007345797 0.0019020626 0.069932424 -0.0094341049 0.0023539115 0.070833854 -0.0081589241 0.0019383299 0.069932312 -0.007345797 0.0019020626 0.069932424 -0.0059771552 -0.00017914863 0.069933407 -0.0073998584 0.0011820071 0.07083106 -0.0068027391 0.00020818086 0.06993331 -0.0073998584 0.0011820071 0.07083106 -0.0063855662 -0.0021679527 0.069934852 -0.0068027391 0.00020818086 0.06993331 -0.0029000058 0.00038551769 0.070752762 -0.0059771552 -0.00017914863 0.069933407 -0.0040528192 -0.0006911275 0.069933131 -0.0059771552 -0.00017914863 0.069933407 -0.0048719659 -0.00095979264 0.069933139 -0.0040528192 -0.0006911275 0.069933131 -0.027399305 -0.024657656 0.020390518 -0.027399307 -0.021946115 0.015996119 -0.02693129 -0.022571715 0.018486205 -0.0059771552 -0.00017914863 0.069933407 -0.0055530085 -0.0018811859 0.069933601 -0.0048719659 -0.00095979264 0.069933139 -0.0068335547 -0.0038227616 0.070835635 -0.0074667349 -0.0014059065 0.069933258 -0.0073587908 -0.0019310457 0.069933735 -0.0068335547 -0.0038227616 0.070835635 -0.0063855662 -0.0021679527 0.069934852 -0.0074667349 -0.0014059065 0.069933258 -0.0063855662 -0.0021679527 0.069934852 -0.0094375024 -0.0023614042 0.070834346 -0.0074667349 -0.0014059065 0.069933258 -0.0094375024 -0.0023614042 0.070834346 -0.0079997191 -0.0021249314 0.069934368 -0.0074667349 -0.0014059065 0.069933258 -0.0081949243 0.00018896176 0.069932893 -0.0094375024 -0.0023614042 0.070834346 -0.0089890966 0.0002183802 0.069932759 -0.0094375024 -0.0023614042 0.070834346 -0.0084189186 -0.0004266137 0.069934376 -0.0089890966 0.0002183802 0.069932759 -0.0094375024 -0.0023614042 0.070834346 -0.0073998584 0.0011820071 0.07083106 -0.0084189186 -0.0004266137 0.069934376 -0.0073998584 0.0011820071 0.07083106 -0.0081949243 0.00018896176 0.069932893 -0.0084189186 -0.0004266137 0.069934376 -0.0079997191 -0.0021249314 0.069934368 -0.0068335547 -0.0038227616 0.070835635 -0.0073587908 -0.0019310457 0.069933735 -0.0068335547 -0.0038227616 0.070835635 -0.0079997191 -0.0021249314 0.069934368 -0.0094375024 -0.0023614042 0.070834346 -0.0068335547 -0.0038227616 0.070835635 -0.0059472336 -0.0025967341 0.069933459 -0.0063855662 -0.0021679527 0.069934852 -0.0068335547 -0.0038227616 0.070835635 -0.0055530085 -0.0018811859 0.069933601 -0.0059472336 -0.0025967341 0.069933459 -0.0055530085 -0.0018811859 0.069933601 -0.0041513457 -0.0013192419 0.069933288 -0.0048719659 -0.00095979264 0.069933139 -0.027399905 0.015857331 -0.0089385081 -0.027399905 0.0084717469 -0.0088190697 -0.02690018 0.0092559662 -0.0086350515 -0.0055530085 -0.0018811859 0.069933601 -0.0029000058 0.00038551769 0.070752762 -0.0041513457 -0.0013192419 0.069933288 -0.027399905 0.015857331 -0.0089385081 -0.02690018 0.0092559662 -0.0086350515 -0.026898988 0.013151112 -0.0087722084 -0.0029000058 0.00038551769 0.070752762 -0.0040528192 -0.0006911275 0.069933131 -0.0041513457 -0.0013192419 0.069933288 -0.0063855662 -0.0021679527 0.069934852 -0.0066002621 -0.00041729931 0.069933869 -0.0068027391 0.00020818086 0.06993331 -0.0063855662 -0.0021679527 0.069934852 -0.0059771552 -0.00017914863 0.069933407 -0.0066002621 -0.00041729931 0.069933869 -0.0094341049 0.0023539115 0.070833854 -0.0073998584 0.0011820071 0.07083106 -0.0081589241 0.0019383299 0.069932312 -0.027399905 0.0053840564 -0.0047196248 -0.02689708 0.0062885457 -0.005833433 -0.027399905 0.0084717469 -0.0088190697 -0.0073998584 0.0011820071 0.07083106 -0.0076324358 0.001273274 0.069933638 -0.0081589241 0.0019383299 0.069932312 -0.0073998584 0.0011820071 0.07083106 -0.007345797 0.0019020626 0.069932424 -0.0076324358 0.001273274 0.069933638 -0.0073998584 0.0011820071 0.07083106 -0.0062344088 0.0018304446 0.069932431 -0.007345797 0.0019020626 0.069932424 -0.0073998584 0.0011820071 0.07083106 -0.0056380047 0.0017524519 0.069932938 -0.0062344088 0.0018304446 0.069932431 -0.026897319 0.01610576 0.0091976514 -0.026900001 0.012947865 0.0047508804 -0.02690006 0.010333104 0.0025002577 -0.0073998584 0.0011820071 0.07083106 -0.0059999241 0.0025705642 0.069932103 -0.0056380047 0.0017524519 0.069932938 -0.0048655285 0.0009444757 0.069932655 -0.0073998584 0.0011820071 0.07083106 -0.0041513457 0.00059091637 0.069932796 -0.0036539449 0.002008856 0.070032127 -0.0068335547 0.0038138889 0.070833713 -0.0029000058 0.00038551769 0.070752762 -0.0094341049 0.0023539115 0.070833854 -0.0068335547 0.0038138889 0.070833713 -0.0073943152 0.0032513125 0.070028462 -0.026895348 -0.0257867 0.030620482 -0.027400021 -0.023539294 0.036586337 -0.026899938 -0.020595685 0.037720852 -0.0073943152 0.0032513125 0.070028462 -0.0068335547 0.0038138889 0.070833713 -0.0036539449 0.002008856 0.070032127 -0.026899341 -0.026205136 0.028621424 -0.027400021 -0.023539294 0.036586337 -0.026895348 -0.0257867 0.030620482 -0.02690018 0.0092559662 -0.0086350515 -0.017899759 0.0074943774 -0.0075270785 -0.017899759 0.011446053 -0.009061818 -0.02690018 0.0092559662 -0.0086350515 -0.027399905 0.0084717469 -0.0088190697 -0.017899759 0.0074943774 -0.0075270785 -0.0078835497 -0.0030644415 0.0687337 -0.0067963614 0.0033769561 0.068732105 -0.009634437 0.0023959088 0.068709515 -0.0078835497 -0.0030644415 0.0687337 -0.009634437 0.0023959088 0.068709515 -0.0098161716 -0.0034853586 0.068112589 -0.0067353267 0.0048689954 0.068092398 -0.0067963614 0.0033769561 0.068732105 -0.0030820384 -0.00076583651 0.068733126 -0.0016475931 -0.0011047893 0.068108998 -0.0030820384 -0.00076583651 0.068733126 -0.0078835497 -0.0030644415 0.0687337 -0.027399905 0.0053840564 -0.0047196248 -0.017899759 0.0077655539 0.00090933626 -0.017899759 0.0057670046 -0.0039088051 -0.027399905 0.0053840564 -0.0047196248 -0.027399905 0.0068534217 0.00069545809 -0.017899759 0.0077655539 0.00090933626 -0.0078835497 -0.0030644415 0.0687337 -0.0057215109 -0.0048337746 0.068107329 -0.0034307255 -0.0038772207 0.068104595 -0.026898988 0.013151112 -0.0087722084 -0.02690018 0.0092559662 -0.0086350515 -0.017899759 0.011446053 -0.009061818 -0.02689708 0.0062885457 -0.005833433 -0.027399905 0.0053840564 -0.0047196248 -0.017899759 0.0057670046 -0.0039088051 -0.026898988 0.013151112 -0.0087722084 -0.017899759 0.011446053 -0.009061818 -0.017899759 0.013464338 -0.0086407047 -0.0016475931 -0.0011047893 0.068108998 -0.0078835497 -0.0030644415 0.0687337 -0.0034307255 -0.0038772207 0.068104595 -0.0095366258 -0.0025688657 0.061633613 -0.0098161716 -0.0034853586 0.068112589 -0.0098927636 -0.0020755704 0.063953951 -0.02689708 0.0062885457 -0.005833433 -0.017899759 0.0057670046 -0.0039088051 -0.017899759 0.0074943774 -0.0075270785 -0.027399905 0.0084717469 -0.0088190697 -0.02689708 0.0062885457 -0.005833433 -0.017899759 0.0074943774 -0.0075270785 -0.0098204631 -0.0034995433 0.064802885 -0.0098161716 -0.0034853586 0.068112589 -0.0095366258 -0.0025688657 0.061633613 -0.017899755 -0.0066936929 0.034593508 -0.027399901 -0.0061820983 0.034490794 -0.017899755 -0.01269495 0.029816579 -0.0030820384 -0.00076583651 0.068733126 -0.0016475931 -0.0011047893 0.068108998 -0.0016379374 -0.0011061063 0.064808153 -0.0015986582 -0.0011066283 0.061653342 -0.0030820384 -0.00076583651 0.068733126 -0.0016379374 -0.0011061063 0.064808153 -0.027399901 -0.0061820983 0.034490794 -0.026899997 -0.014415847 0.027831271 -0.017899755 -0.01269495 0.029816579 -0.0078835497 -0.0030644415 0.0687337 -0.0098161716 -0.0034853586 0.068112589 -0.0057215109 -0.0048337746 0.068107329 -0.0025024435 0.0010933056 0.061632816 -0.0030820384 -0.00076583651 0.068733126 -0.0015986582 -0.0011066283 0.061653342 -0.026895348 -0.0257867 0.030620482 -0.026899938 -0.020595685 0.037720852 -0.017899696 -0.023657365 0.034139276 -0.026895348 -0.0257867 0.030620482 -0.017899696 -0.023657365 0.034139276 -0.017899875 -0.025770519 0.030688925 -0.009634437 0.0023959088 0.068709515 -0.010831716 -0.0020246636 0.068116747 -0.0098161716 -0.0034853586 0.068112589 -0.0098161716 -0.0034853586 0.068112589 -0.010831716 -0.0020246636 0.068116747 -0.010856153 -0.0020246219 0.064814314 -0.0098927636 -0.0020755704 0.063953951 -0.0098161716 -0.0034853586 0.068112589 -0.010856153 -0.0020246219 0.064814314 -0.016734011 -0.024086649 -0.019683344 -0.017875262 -0.020218007 -0.021235533 -0.016644724 -0.016866023 -0.023505175 -0.0098927636 -0.0020755704 0.063953951 -0.010856153 -0.0020246219 0.064814314 -0.0098928232 0.0020633133 0.063952811 -0.0098928232 0.0020633133 0.063952811 -0.011616888 0.0024683673 0.061632369 -0.0098927636 -0.0020755704 0.063953951 -0.011616888 0.0024683673 0.061632369 -0.0098928232 0.0020633133 0.063952811 -0.0095366258 0.002555822 0.061632305 -0.0076511526 0.0056299921 0.061631646 -0.011616888 0.0024683673 0.061632369 -0.0095366258 0.002555822 0.061632305 -0.005518558 0.0057145283 0.061631612 -0.0076511526 0.0056299921 0.061631646 -0.0095366258 0.002555822 0.061632305 -0.0095366258 -0.0025688657 0.061633613 -0.011729838 -0.0022656929 0.06163355 -0.0094135422 -0.0049316706 0.06163419 -0.00096971006 0.0019209539 0.061632536 -0.005518558 0.0057145283 0.061631612 -0.0025024435 0.0010933056 0.061632816 -0.00096971006 0.0019209539 0.061632536 -0.0025024435 0.0010933056 0.061632816 -0.0020179171 -0.0038160118 0.061634008 -0.0020179171 -0.0038160118 0.061634008 -0.0025024435 0.0010933056 0.061632816 -0.0015986582 -0.0011066283 0.061653342 -0.0020179171 -0.0038160118 0.061634008 -0.0094135422 -0.0049316706 0.06163419 -0.0055186171 -0.0057276557 0.061634474 -0.0055186171 -0.0057276557 0.061634474 -0.0094135422 -0.0049316706 0.06163419 -0.0069404859 -0.0056692096 0.059134182 -0.011729838 -0.0022656929 0.06163355 -0.011616888 0.0024683673 0.061632369 -0.011856558 -0.0015622313 0.059133075 -0.0020179171 -0.0038160118 0.061634008 -0.0055186171 -0.0057276557 0.061634474 -0.0031446239 -0.0046928884 0.059133969 -0.00078451855 -0.00094429497 0.059133068 -0.0020179171 -0.0038160118 0.061634008 -0.0031446239 -0.0046928884 0.059133969 -0.017733106 -0.0094432542 -0.025358438 -0.016664157 -0.0056979242 -0.02649013 -0.016716251 -0.012054238 -0.025177075 -0.0094135422 -0.0049316706 0.06163419 -0.011729838 -0.0022656929 0.06163355 -0.011856558 -0.0015622313 0.059133075 -0.0069404859 -0.0056692096 0.059134182 -0.0094135422 -0.0049316706 0.06163419 -0.011856558 -0.0015622313 0.059133075 -0.00096971006 0.0019209539 0.061632536 -0.0020179171 -0.0038160118 0.061634008 -0.00078451855 -0.00094429497 0.059133068 -0.0069404859 -0.0056692096 0.059134182 -0.0031446239 -0.0046928884 0.059133969 -0.0055186171 -0.0057276557 0.061634474 -0.0043982291 0.0034892161 0.059131965 -0.0031448626 0.0046784529 0.05913173 -0.0029395842 0.0021038176 0.059132233 -0.0057672285 0.0056630871 0.059131403 -0.0031448626 0.0046784529 0.05913173 -0.0043982291 0.0034892161 0.059131965 -0.0029395842 0.0021038176 0.059132233 -0.0031448626 0.0046784529 0.05913173 -0.00078451855 -0.00094429497 0.059133068 -0.0084019927 0.0034888999 0.059131943 -0.0057672285 0.0056630871 0.059131403 -0.0043982291 0.0034892161 0.059131965 -0.0029395842 0.0021038176 0.059132233 -0.00078451855 -0.00094429497 0.059133068 -0.0031815192 -0.0024201723 0.059133392 -0.018382438 -0.014222287 -0.022740351 -0.0183884 -0.0013442585 -0.025087271 -0.017733106 -0.0094432542 -0.025358438 -0.011172416 0.0030401517 0.05913217 -0.0057672285 0.0056630871 0.059131403 -0.0084019927 0.0034888999 0.059131943 -0.0031815192 -0.0024201723 0.059133392 -0.00078451855 -0.00094429497 0.059133068 -0.0031446239 -0.0046928884 0.059133969 -0.011172416 0.0030401517 0.05913217 -0.0084019927 0.0034888999 0.059131943 -0.010292055 0.0010110445 0.059132561 -0.0043982291 -0.0035031883 0.059133671 -0.0031815192 -0.0024201723 0.059133392 -0.0031446239 -0.0046928884 0.059133969 -0.0069404859 -0.0056692096 0.059134182 -0.0043982291 -0.0035031883 0.059133671 -0.0031446239 -0.0046928884 0.059133969 -0.0084019918 -0.0035033885 0.059133727 -0.0043982291 -0.0035031883 0.059133671 -0.0069404859 -0.0056692096 0.059134182 -0.011172416 0.0030401517 0.05913217 -0.010292055 0.0010110445 0.059132561 -0.011856558 -0.0015622313 0.059133075 -0.011856558 -0.0015622313 0.059133075 -0.010292055 0.0010110445 0.059132561 -0.0084019918 -0.0035033885 0.059133727 -0.011856558 -0.0015622313 0.059133075 -0.0084019918 -0.0035033885 0.059133727 -0.0069404859 -0.0056692096 0.059134182 -0.0043982291 -0.0035031883 0.059133671 -0.0084019918 -0.0035033885 0.059133727 -0.0074348473 -0.0034131119 0.054131735 -0.0043982291 -0.0035031883 0.059133671 -0.0074348473 -0.0034131119 0.054131735 -0.0037460353 -0.0023723897 0.054134186 -0.0025033976 -0.001011125 0.05457959 -0.0031815192 -0.0024201723 0.059133392 -0.0037460353 -0.0023723897 0.054134186 -0.0029395842 0.0021038176 0.059132233 -0.0031815192 -0.0024201723 0.059133392 -0.0025033976 -0.001011125 0.05457959 -0.0037462739 0.0023554435 0.054132871 -0.0029395842 0.0021038176 0.059132233 -0.0025033976 -0.001011125 0.05457959 -0.0043982291 0.0034892161 0.059131965 -0.0029395842 0.0021038176 0.059132233 -0.0037462739 0.0023554435 0.054132871 -0.0031815192 -0.0024201723 0.059133392 -0.0043982291 -0.0035031883 0.059133671 -0.0037460353 -0.0023723897 0.054134186 -0.0025033976 -0.001011125 0.05457959 -0.0037460353 -0.0023723897 0.054134186 -0.0037462739 0.0023554435 0.054132871 -0.0084019927 0.0034888999 0.059131943 -0.0043982291 0.0034892161 0.059131965 -0.0071939258 0.0034544747 0.054130752 -0.0043982291 0.0034892161 0.059131965 -0.0037462739 0.0023554435 0.054132871 -0.0071939258 0.0034544747 0.054130752 -0.010292055 0.0010110445 0.059132561 -0.0084019927 0.0034888999 0.059131943 -0.0071939258 0.0034544747 0.054130752 -0.0094281463 0.001851799 0.054133005 -0.010292055 0.0010110445 0.059132561 -0.0071939258 0.0034544747 0.054130752 -0.010369423 -0.00063824223 0.054577023 -0.010292055 0.0010110445 0.059132561 -0.0094281463 0.001851799 0.054133005 -0.0016399045 0.0010941363 0.064799562 -0.0025026817 0.0010939685 0.063956544 -0.0033313653 0.003804507 0.063113764 -0.0016399045 0.0010941363 0.064799562 -0.0033313653 0.003804507 0.063113764 -0.0065143127 0.0040678275 0.063950852 -0.0065143127 0.0040678275 0.063950852 -0.0048098583 0.0046211537 0.064802475 -0.0016399045 0.0010941363 0.064799562 -0.0098177213 0.0035043594 0.06481187 -0.0048098583 0.0046211537 0.064802475 -0.0065143127 0.0040678275 0.063950852 -0.0016399045 0.0010941363 0.064799562 -0.0016498581 0.0010950665 0.068113044 -0.0025026817 0.0010939685 0.063956544 -0.0048098583 0.0046211537 0.064802475 -0.0016498581 0.0010950665 0.068113044 -0.0016399045 0.0010941363 0.064799562 -0.017907152 0.019460371 -0.02159109 -0.018378863 0.027188523 -0.015327885 -0.017899999 0.027942358 -0.015972782 -0.0067353267 0.0048689954 0.068092398 -0.0016498581 0.0010950665 0.068113044 -0.0048098583 0.0046211537 0.064802475 -0.0098177213 0.0035043594 0.06481187 -0.0067353267 0.0048689954 0.068092398 -0.0048098583 0.0046211537 0.064802475 -0.017733106 -0.0094432542 -0.025358438 -0.018197903 0.009151686 -0.024794918 -0.016860018 0.0050359797 -0.026545316 -0.009634437 0.0023959088 0.068709515 -0.0067353267 0.0048689954 0.068092398 -0.0098177213 0.0035043594 0.06481187 -0.016734252 0.019823849 -0.022123316 -0.017899999 0.027942358 -0.015972782 -0.016644368 0.026747752 -0.01778028 -0.005518558 0.0057145283 0.061631612 -0.0033313653 0.003804507 0.063113764 -0.0025024435 0.0010933056 0.061632816 -0.0065143127 0.0040678275 0.063950852 -0.0033313653 0.003804507 0.063113764 -0.005518558 0.0057145283 0.061631612 -0.0183884 -0.0013442585 -0.025087271 -0.018197903 0.009151686 -0.024794918 -0.017733106 -0.0094432542 -0.025358438 -0.0098177213 0.0035043594 0.06481187 -0.0065143127 0.0040678275 0.063950852 -0.005518558 0.0057145283 0.061631612 -0.0095366258 0.002555822 0.061632305 -0.0098177213 0.0035043594 0.06481187 -0.005518558 0.0057145283 0.061631612 -0.0033313653 0.003804507 0.063113764 -0.0025026817 0.0010939685 0.063956544 -0.0025024435 0.0010933056 0.061632816 -0.0095366258 -0.0025688657 0.061633613 -0.0098927636 -0.0020755704 0.063953951 -0.011729838 -0.0022656929 0.06163355 -0.0098204631 -0.0034995433 0.064802885 -0.0095366258 -0.0025688657 0.061633613 -0.0094135422 -0.0049316706 0.06163419 -0.0020179171 -0.0038160118 0.061634008 -0.0056633968 -0.0048452308 0.063102111 -0.0094135422 -0.0049316706 0.06163419 -0.0016379374 -0.0011061063 0.064808153 -0.0056633968 -0.0048452308 0.063102111 -0.0015986582 -0.0011066283 0.061653342 -0.0015986582 -0.0011066283 0.061653342 -0.0056633968 -0.0048452308 0.063102111 -0.0020179171 -0.0038160118 0.061634008 -0.0056633968 -0.0048452308 0.063102111 -0.0016379374 -0.0011061063 0.064808153 -0.0038204209 -0.0041741645 0.06481123 -0.0056633968 -0.0048452308 0.063102111 -0.0038204209 -0.0041741645 0.06481123 -0.0094135422 -0.0049316706 0.06163419 -0.0098204631 -0.0034995433 0.064802885 -0.0094135422 -0.0049316706 0.06163419 -0.0038204209 -0.0041741645 0.06481123 -0.0038204209 -0.0041741645 0.06481123 -0.0069296374 -0.0048714839 0.064811513 -0.0098204631 -0.0034995433 0.064802885 -0.0069296374 -0.0048714839 0.064811513 -0.0057215109 -0.0048337746 0.068107329 -0.0098204631 -0.0034995433 0.064802885 -0.0038204209 -0.0041741645 0.06481123 -0.0057215109 -0.0048337746 0.068107329 -0.0069296374 -0.0048714839 0.064811513 -0.0034307255 -0.0038772207 0.068104595 -0.0057215109 -0.0048337746 0.068107329 -0.0038204209 -0.0041741645 0.06481123 -0.016592326 -0.032539535 0.046765566 -0.018379273 -0.032061554 0.044841707 -0.016747655 -0.03722357 0.040583473 -0.0016379374 -0.0011061063 0.064808153 -0.0034307255 -0.0038772207 0.068104595 -0.0038204209 -0.0041741645 0.06481123 -0.0016475931 -0.0011047893 0.068108998 -0.0034307255 -0.0038772207 0.068104595 -0.0016379374 -0.0011061063 0.064808153 -0.0057215109 -0.0048337746 0.068107329 -0.0098161716 -0.0034853586 0.068112589 -0.0098204631 -0.0034995433 0.064802885 -0.010831716 -0.0020246636 0.068116747 -0.009634437 0.0023959088 0.068709515 -0.0098928232 0.0020633133 0.063952811 -0.010856153 -0.0020246219 0.064814314 -0.010831716 -0.0020246636 0.068116747 -0.0098928232 0.0020633133 0.063952811 -0.011729838 -0.0022656929 0.06163355 -0.0098927636 -0.0020755704 0.063953951 -0.011616888 0.0024683673 0.061632369 -0.010369423 -0.00063824223 0.054577023 -0.0094281463 0.001851799 0.054133005 -0.0074348473 -0.0034131119 0.054131735 -0.0084019918 -0.0035033885 0.059133727 -0.010292055 0.0010110445 0.059132561 -0.010369423 -0.00063824223 0.054577023 -0.0074348473 -0.0034131119 0.054131735 -0.0084019918 -0.0035033885 0.059133727 -0.010369423 -0.00063824223 0.054577023 -0.011172416 0.0030401517 0.05913217 -0.011856558 -0.0015622313 0.059133075 -0.011616888 0.0024683673 0.061632369 -0.0057672285 0.0056630871 0.059131403 -0.011172416 0.0030401517 0.05913217 -0.0076511526 0.0056299921 0.061631646 -0.0031448626 0.0046784529 0.05913173 -0.00096971006 0.0019209539 0.061632536 -0.00078451855 -0.00094429497 0.059133068 -0.011172416 0.0030401517 0.05913217 -0.011616888 0.0024683673 0.061632369 -0.0076511526 0.0056299921 0.061631646 -0.005518558 0.0057145283 0.061631612 -0.00096971006 0.0019209539 0.061632536 -0.0031448626 0.0046784529 0.05913173 -0.0057672285 0.0056630871 0.059131403 -0.005518558 0.0057145283 0.061631612 -0.0031448626 0.0046784529 0.05913173 -0.0076511526 0.0056299921 0.061631646 -0.005518558 0.0057145283 0.061631612 -0.0057672285 0.0056630871 0.059131403 -0.009634437 0.0023959088 0.068709515 -0.0067963614 0.0033769561 0.068732105 -0.0067353267 0.0048689954 0.068092398 -0.0016498581 0.0010950665 0.068113044 -0.0030820384 -0.00076583651 0.068733126 -0.0025026817 0.0010939685 0.063956544 -0.0025026817 0.0010939685 0.063956544 -0.0030820384 -0.00076583651 0.068733126 -0.0025024435 0.0010933056 0.061632816 -0.0067353267 0.0048689954 0.068092398 -0.0030820384 -0.00076583651 0.068733126 -0.0016498581 0.0010950665 0.068113044 -0.009634437 0.0023959088 0.068709515 -0.0098177213 0.0035043594 0.06481187 -0.0095366258 0.002555822 0.061632305 -0.0098928232 0.0020633133 0.063952811 -0.009634437 0.0023959088 0.068709515 -0.0095366258 0.002555822 0.061632305 -0.018197903 0.009151686 -0.024794918 -0.016613493 0.012455301 -0.025058843 -0.016860018 0.0050359797 -0.026545316 -0.017899759 0.00096734799 -0.010488967 -0.017899759 -0.0024990889 -0.0092011392 -0.017899759 -0.0028336698 -0.0076701352 -0.017899759 0.00096734799 -0.010488967 -0.017899759 -0.0028336698 -0.0076701352 -0.017899759 9.4923971e-06 -0.0050504678 -0.017899759 0.00096734799 -0.010488967 -0.017899759 9.4923971e-06 -0.0050504678 -0.017899759 0.002732642 -0.007422707 -0.017899698 -0.022200475 0.017170813 -0.017899755 -0.025620926 0.019864891 -0.017899636 -0.023275774 0.019340379 -0.017899817 -0.023587069 0.014741172 -0.017899757 -0.026652712 0.014876088 -0.017899755 -0.027736343 0.017820263 -0.017899817 -0.023587069 0.014741172 -0.017899755 -0.027736343 0.017820263 -0.017899755 -0.025620926 0.019864891 -0.017899817 -0.023587069 0.014741172 -0.017899755 -0.025620926 0.019864891 -0.017899698 -0.022200475 0.017170813 -0.017899875 0.000979712 0.039510828 -0.017899755 -0.0012381457 0.039612837 -0.017899875 -0.0027534098 0.042657778 -0.017899875 0.000979712 0.039510828 -0.017899875 -0.0027534098 0.042657778 -0.017899815 2.9826373e-05 0.044924218 -0.017899875 0.000979712 0.039510828 -0.017899815 2.9826373e-05 0.044924218 -0.017899755 0.0027428227 0.042653237 -0.017899817 0.024204904 0.01441902 -0.017899757 0.022200035 0.016719757 -0.017899757 0.027146451 0.015362598 -0.017899757 0.027146451 0.015362598 -0.017899757 0.022200035 0.016719757 -0.017899876 0.023197345 0.019305449 -0.017899757 0.027146451 0.015362598 -0.017899876 0.023197345 0.019305449 -0.017899757 0.02550406 0.019880326 -0.018364076 -0.04236576 0.019635208 -0.018066054 -0.040209442 0.0015248022 -0.016630774 -0.043255128 0.009018912 -0.017899757 0.027146451 0.015362598 -0.017899757 0.02550406 0.019880326 -0.017899876 0.027272297 0.018729025 -0.027400024 -0.00084621354 -0.013380358 -0.026931413 -0.0024694211 -0.0092146751 -0.027399369 -0.00038337326 -0.011118694 -0.027400024 -0.00084621354 -0.013380358 -0.027399309 -0.0030949663 -0.0067241779 -0.026931413 -0.0024694211 -0.0092146751 -0.026895411 0.026088106 0.0047957199 -0.027400024 0.023504153 -0.0023208596 -0.026900001 0.022837287 -0.00091529626 -0.026900001 0.022837287 -0.00091529626 -0.027400024 0.023504153 -0.0023208596 -0.026899941 0.018585365 -0.0052723591 -0.027400024 0.023504153 -0.0023208596 -0.027399905 0.015857331 -0.0089385081 -0.026899941 0.018585365 -0.0052723591 -0.026899941 0.018585365 -0.0052723591 -0.027399905 0.015857331 -0.0089385081 -0.026898988 0.013151112 -0.0087722084 -0.027399905 0.028050778 0.0051371683 -0.026899941 0.026043922 0.006857702 -0.027399786 0.022779331 0.011467094 -0.027399905 0.028050778 0.0051371683 -0.026895411 0.026088106 0.0047957199 -0.026899941 0.026043922 0.006857702 -0.026897319 0.01610576 0.0091976514 -0.027399786 0.022779331 0.011467094 -0.02690006 0.019167224 0.01119053 -0.027399901 -0.024743125 0.024048928 -0.026899461 -0.0258402 0.026574293 -0.026899461 -0.023534238 0.023753451 -0.027399901 -0.024743125 0.024048928 -0.026899341 -0.026205136 0.028621424 -0.026899461 -0.0258402 0.026574293 -0.018197903 0.009151686 -0.024794918 -0.017907152 0.019460371 -0.02159109 -0.016613493 0.012455301 -0.025058843 -0.027399961 -0.017372554 0.023305973 -0.027399901 -0.024743125 0.024048928 -0.026899699 -0.01998299 0.022938112 -0.027399901 -0.024743125 0.024048928 -0.026899461 -0.023534238 0.023753451 -0.026899699 -0.01998299 0.022938112 -0.026899997 -0.014415847 0.027831271 -0.027399901 -0.0061820983 0.034490794 -0.027400021 -0.010835929 0.030822026 -0.027399961 -0.017372554 0.023305973 -0.026899997 -0.014415847 0.027831271 -0.027400021 -0.010835929 0.030822026 -0.027400021 -0.023539294 0.036586337 -0.027399901 -0.01589247 0.04320411 -0.026899938 -0.020595685 0.037720852 -0.027399901 -0.01589247 0.04320411 -0.026895288 -0.013492481 0.042908411 -0.026899938 -0.020595685 0.037720852 -0.0183884 -0.0013442585 -0.025087271 -0.017907152 0.019460371 -0.02159109 -0.018197903 0.009151686 -0.024794918 -0.026895646 -0.0059180777 0.038900942 -0.027399901 -0.0061820983 0.034490794 -0.026899759 -0.0058128424 0.037101183 -0.027399901 -0.01589247 0.04320411 -0.026899401 -0.011493194 0.043326043 -0.026895288 -0.013492481 0.042908411 -0.027399901 -0.01589247 0.04320411 -0.027399901 -0.0084874695 0.043074183 -0.026899401 -0.011493194 0.043326043 -0.018378863 0.027188523 -0.015327885 -0.017907152 0.019460371 -0.02159109 -0.0183884 -0.0013442585 -0.025087271 -0.026900001 0.012947865 0.0047508804 -0.026897319 0.01610576 0.0091976514 -0.017899878 0.017099937 0.01019386 -0.017899759 0.012659864 0.0044489694 -0.026900001 0.012947865 0.0047508804 -0.017899878 0.017099937 0.01019386 -0.02690006 0.010333104 0.0025002577 -0.026900001 0.012947865 0.0047508804 -0.017899759 0.012659864 0.0044489694 -0.017899759 0.0077655539 0.00090933626 -0.02690006 0.010333104 0.0025002577 -0.017899759 0.012659864 0.0044489694 -0.016747655 -0.03722357 0.040583473 -0.016752604 -0.042270057 0.029358305 -0.016860072 -0.041367985 0.032080684 -0.027399905 0.0068534217 0.00069545809 -0.02690006 0.010333104 0.0025002577 -0.017899759 0.0077655539 0.00090933626 -0.016613493 0.012455301 -0.025058843 -0.017907152 0.019460371 -0.02159109 -0.016734252 0.019823849 -0.022123316 -0.018075826 -0.037017908 0.039246164 -0.016752604 -0.042270057 0.029358305 -0.016747655 -0.03722357 0.040583473 -0.026898332 0.023076702 0.010767161 -0.027399786 0.022779331 0.011467094 -0.017899759 0.024505304 0.0097163366 -0.027399786 0.022779331 0.011467094 -0.026899941 0.026043922 0.006857702 -0.017899759 0.024505304 0.0097163366 -0.018075826 -0.037017908 0.039246164 -0.018197779 -0.040912539 0.030155679 -0.016752604 -0.042270057 0.029358305 -0.026899941 0.026043922 0.006857702 -0.017899759 0.026096679 0.004781893 -0.017899759 0.024505304 0.0097163366 -0.026897319 0.01610576 0.0091976514 -0.02690006 0.019167224 0.01119053 -0.017899878 0.017099937 0.01019386 -0.02690006 0.019167224 0.01119053 -0.017899759 0.019043256 0.011173312 -0.017899878 0.017099937 0.01019386 -0.018379273 -0.032061554 0.044841707 -0.018197779 -0.040912539 0.030155679 -0.018075826 -0.037017908 0.039246164 -0.026899941 0.026043922 0.006857702 -0.026895411 0.026088106 0.0047957199 -0.017899759 0.026096679 0.004781893 -0.02690006 0.019167224 0.01119053 -0.027399786 0.022779331 0.011467094 -0.017899759 0.019043256 0.011173312 -0.026895411 0.026088106 0.0047957199 -0.017899759 0.025151618 0.0024482356 -0.017899759 0.026096679 0.004781893 -0.027399786 0.022779331 0.011467094 -0.026898332 0.023076702 0.010767161 -0.017899759 0.019043256 0.011173312 -0.026898332 0.023076702 0.010767161 -0.017899759 0.024505304 0.0097163366 -0.017899759 0.019043256 0.011173312 -0.026895411 0.026088106 0.0047957199 -0.026900001 0.022837287 -0.00091529626 -0.017899759 0.025151618 0.0024482356 -0.026900001 0.022837287 -0.00091529626 -0.017899759 0.018019335 -0.0057309135 -0.017899759 0.025151618 0.0024482356 -0.026900001 0.022837287 -0.00091529626 -0.026899941 0.018585365 -0.0052723591 -0.017899759 0.018019335 -0.0057309135 -0.026899941 0.018585365 -0.0052723591 -0.026898988 0.013151112 -0.0087722084 -0.017899759 0.018019335 -0.0057309135 -0.026898988 0.013151112 -0.0087722084 -0.017899759 0.013464338 -0.0086407047 -0.017899759 0.018019335 -0.0057309135 -0.017899759 0.011446053 -0.009061818 -0.017899759 0.0077655539 0.00090933626 -0.017899759 0.013464338 -0.0086407047 -0.017899759 0.011446053 -0.009061818 -0.017899759 0.0057670046 -0.0039088051 -0.017899759 0.0077655539 0.00090933626 -0.017899759 0.011446053 -0.009061818 -0.017899759 0.0074943774 -0.0075270785 -0.017899759 0.0057670046 -0.0039088051 -0.017899759 0.013464338 -0.0086407047 -0.017899759 0.0077655539 0.00090933626 -0.017899759 0.018019335 -0.0057309135 -0.017899759 0.018019335 -0.0057309135 -0.017899759 0.0077655539 0.00090933626 -0.017899759 0.012659864 0.0044489694 -0.017899759 0.018019335 -0.0057309135 -0.017899759 0.012659864 0.0044489694 -0.017899759 0.025151618 0.0024482356 -0.017899759 0.025151618 0.0024482356 -0.017899759 0.012659864 0.0044489694 -0.017899878 0.017099937 0.01019386 -0.017899759 0.025151618 0.0024482356 -0.017899759 0.024505304 0.0097163366 -0.017899759 0.026096679 0.004781893 -0.018364076 -0.04236576 0.019635208 -0.018197779 -0.040912539 0.030155679 -0.018379273 -0.032061554 0.044841707 -0.017875262 -0.020218007 -0.021235533 -0.018382438 -0.014222287 -0.022740351 -0.016644724 -0.016866023 -0.023505175 -0.017899759 0.025151618 0.0024482356 -0.017899878 0.017099937 0.01019386 -0.017899759 0.019043256 0.011173312 -0.017899759 0.025151618 0.0024482356 -0.017899759 0.019043256 0.011173312 -0.017899759 0.024505304 0.0097163366 -0.027399901 -0.0084874695 0.043074183 -0.026895646 -0.0059180777 0.038900942 -0.017899755 -0.0059093116 0.038898241 -0.026895646 -0.0059180777 0.038900942 -0.026899759 -0.0058128424 0.037101183 -0.017899755 -0.0059093116 0.038898241 -0.026895288 -0.013492481 0.042908411 -0.026899401 -0.011493194 0.043326043 -0.017899815 -0.013560836 0.042892531 -0.026899401 -0.011493194 0.043326043 -0.017899755 -0.010478544 0.04322429 -0.017899815 -0.013560836 0.042892531 -0.026899759 -0.0058128424 0.037101183 -0.017899755 -0.005847238 0.036746819 -0.017899755 -0.0059093116 0.038898241 -0.026899759 -0.0058128424 0.037101183 -0.017899755 -0.0066936929 0.034593508 -0.017899755 -0.005847238 0.036746819 -0.026899401 -0.011493194 0.043326043 -0.017899755 -0.0087737162 0.042669088 -0.017899755 -0.010478544 0.04322429 -0.026899759 -0.0058128424 0.037101183 -0.027399901 -0.0061820983 0.034490794 -0.017899755 -0.0066936929 0.034593508 -0.026899401 -0.011493194 0.043326043 -0.027399901 -0.0084874695 0.043074183 -0.017899755 -0.0087737162 0.042669088 -0.027399901 -0.0084874695 0.043074183 -0.017899755 -0.0059093116 0.038898241 -0.017899755 -0.0087737162 0.042669088 -0.026899997 -0.014415847 0.027831271 -0.027399961 -0.017372554 0.023305973 -0.017899755 -0.016077762 0.025155917 -0.017899755 -0.01269495 0.029816579 -0.026899997 -0.014415847 0.027831271 -0.017899755 -0.016077762 0.025155917 -0.026899461 -0.023534238 0.023753451 -0.017899755 -0.024377642 0.024375105 -0.017899755 -0.021256052 0.022949828 -0.026899461 -0.023534238 0.023753451 -0.026899461 -0.0258402 0.026574293 -0.017899755 -0.024377642 0.024375105 -0.027399961 -0.017372554 0.023305973 -0.026899699 -0.01998299 0.022938112 -0.017899755 -0.016077762 0.025155917 -0.026899699 -0.01998299 0.022938112 -0.017899755 -0.018516738 0.023295024 -0.017899755 -0.016077762 0.025155917 -0.026899461 -0.0258402 0.026574293 -0.017899696 -0.026103729 0.027606862 -0.017899755 -0.024377642 0.024375105 -0.026899461 -0.0258402 0.026574293 -0.026899341 -0.026205136 0.028621424 -0.017899696 -0.026103729 0.027606862 -0.026899699 -0.01998299 0.022938112 -0.017899755 -0.021256052 0.022949828 -0.017899755 -0.018516738 0.023295024 -0.026899699 -0.01998299 0.022938112 -0.026899461 -0.023534238 0.023753451 -0.017899755 -0.021256052 0.022949828 -0.026899341 -0.026205136 0.028621424 -0.026895348 -0.0257867 0.030620482 -0.017899875 -0.025770519 0.030688925 -0.026899341 -0.026205136 0.028621424 -0.017899875 -0.025770519 0.030688925 -0.017899696 -0.026103729 0.027606862 -0.026899938 -0.020595685 0.037720852 -0.017899755 -0.018620515 0.03953816 -0.017899696 -0.023657365 0.034139276 -0.026899938 -0.020595685 0.037720852 -0.026895288 -0.013492481 0.042908411 -0.017899755 -0.018620515 0.03953816 -0.026895288 -0.013492481 0.042908411 -0.017899815 -0.013560836 0.042892531 -0.017899755 -0.018620515 0.03953816 -0.017899755 -0.021256052 0.022949828 -0.017899875 -0.025770519 0.030688925 -0.017899755 -0.018516738 0.023295024 -0.017899755 -0.018516738 0.023295024 -0.017899875 -0.025770519 0.030688925 -0.017899755 -0.016077762 0.025155917 -0.017899755 -0.021256052 0.022949828 -0.017899755 -0.024377642 0.024375105 -0.017899875 -0.025770519 0.030688925 -0.017899755 -0.024377642 0.024375105 -0.017899696 -0.026103729 0.027606862 -0.017899875 -0.025770519 0.030688925 -0.017899755 -0.016077762 0.025155917 -0.017899875 -0.025770519 0.030688925 -0.017899696 -0.023657365 0.034139276 -0.016752604 -0.042270057 0.029358305 -0.018197779 -0.040912539 0.030155679 -0.016733769 -0.04371107 0.022196691 -0.017899755 -0.016077762 0.025155917 -0.017899696 -0.023657365 0.034139276 -0.017899755 -0.01269495 0.029816579 -0.017899755 -0.01269495 0.029816579 -0.017899696 -0.023657365 0.034139276 -0.017899755 -0.018620515 0.03953816 -0.017899755 -0.01269495 0.029816579 -0.017899755 -0.018620515 0.03953816 -0.017899815 -0.013560836 0.042892531 -0.017899755 -0.01269495 0.029816579 -0.017899815 -0.013560836 0.042892531 -0.017899755 -0.0066936929 0.034593508 -0.017899755 -0.0066936929 0.034593508 -0.017899815 -0.013560836 0.042892531 -0.017899755 -0.005847238 0.036746819 -0.017899755 -0.005847238 0.036746819 -0.017899755 -0.010478544 0.04322429 -0.017899755 -0.0059093116 0.038898241 -0.017899755 -0.005847238 0.036746819 -0.017899815 -0.013560836 0.042892531 -0.017899755 -0.010478544 0.04322429 -0.017899755 -0.0059093116 0.038898241 -0.017899755 -0.010478544 0.04322429 -0.017899755 -0.0087737162 0.042669088 -0.018197779 -0.040912539 0.030155679 -0.018364076 -0.04236576 0.019635208 -0.016733769 -0.04371107 0.022196691 -0.016734252 0.019823849 -0.022123316 -0.017907152 0.019460371 -0.02159109 -0.017899999 0.027942358 -0.015972782 -0.018382493 0.014186958 0.057005785 -0.017733039 0.0094082728 0.059623986 -0.01664466 0.016830841 0.057770796 -0.01664466 0.016830841 0.057770796 -0.017733039 0.0094082728 0.059623986 -0.016716244 0.012019362 0.059442412 -0.01838601 0.027089199 0.049659211 -0.018382493 0.014186958 0.057005785 -0.017875317 0.02018288 0.055501062 -0.016694732 0.04397063 0.017900687 -0.01836396 0.042330682 0.014630351 -0.01664496 0.043599509 0.022866426 -0.01661313 0.030279549 0.049035601 -0.017875317 0.02018288 0.055501062 -0.016734127 0.024051605 0.053948916 -0.01838601 0.027089199 0.049659211 -0.017875317 0.02018288 0.055501062 -0.01661313 0.030279549 0.049035601 -0.01819778 0.035157688 0.041711658 -0.01838601 0.027089199 0.049659211 -0.01661313 0.030279549 0.049035601 -0.01838601 0.027089199 0.049659211 -0.01819778 0.035157688 0.041711658 -0.018386191 0.039122373 0.033046436 -0.017899999 0.027942358 -0.015972782 -0.016592393 0.03250448 -0.012499942 -0.016644368 0.026747752 -0.01778028 -0.016859893 0.035275012 0.043357801 -0.01819778 0.035157688 0.041711658 -0.01661313 0.030279549 0.049035601 -0.016859893 0.035275012 0.043357801 -0.01661313 0.030279549 0.049035601 -0.016588334 0.032933701 0.046313856 -0.016761364 0.00041890939 0.061108638 -0.016664268 0.0056626587 0.06075592 -0.017733039 0.0094082728 0.059623986 -0.016859893 0.035275012 0.043357801 -0.016664034 0.038921833 0.037600961 -0.018386191 0.039122373 0.033046436 -0.01836396 0.042330682 0.014630351 -0.018386191 0.039122373 0.033046436 -0.018179899 0.042155519 0.025116574 -0.018179899 0.042155519 0.025116574 -0.018386191 0.039122373 0.033046436 -0.016839152 0.04262409 0.027878519 -0.016839152 0.04262409 0.027878519 -0.018386191 0.039122373 0.033046436 -0.016790038 0.04093286 0.033154365 -0.016664034 0.038921833 0.037600961 -0.016790038 0.04093286 0.033154365 -0.018386191 0.039122373 0.033046436 -0.018179899 0.042155519 0.025116574 -0.016839152 0.04262409 0.027878519 -0.01664496 0.043599509 0.022866426 -0.016860373 0.039237317 -0.0026747226 -0.016747603 0.037188601 -0.0063179554 -0.018386314 0.033302017 -0.0088563245 -0.016733773 0.043676101 0.012068932 -0.01836396 0.042330682 0.014630351 -0.016694732 0.04397063 0.017900687 -0.016644539 -0.026782805 0.052045923 -0.018379273 -0.032061554 0.044841707 -0.016592326 -0.032539535 0.046765566 -0.016694428 -0.022665583 0.054850001 -0.01838571 -0.018586494 0.055192918 -0.016644539 -0.026782805 0.052045923 -0.018197902 0.040877547 0.0041098585 -0.01836396 0.042330682 0.014630351 -0.016733773 0.043676101 0.012068932 -0.016752668 0.042234845 0.0049071601 -0.018197902 0.040877547 0.0041098585 -0.016733773 0.043676101 0.012068932 -0.017875317 0.02018288 0.055501062 -0.018382493 0.014186958 0.057005785 -0.01664466 0.016830841 0.057770796 -0.016733769 -0.04371107 0.022196691 -0.018364076 -0.04236576 0.019635208 -0.016694549 -0.044005465 0.016364926 -0.01836396 0.042330682 0.014630351 -0.018197902 0.040877547 0.0041098585 -0.018386314 0.033302017 -0.0088563245 -0.016734125 -0.017455822 0.057514284 -0.01838571 -0.018586494 0.055192918 -0.016694428 -0.022665583 0.054850001 -0.018198015 -0.0091865305 0.059060499 -0.01838571 -0.018586494 0.055192918 -0.016734125 -0.017455822 0.057514284 -0.01819778 0.035157688 0.041711658 -0.016859893 0.035275012 0.043357801 -0.018386191 0.039122373 0.033046436 -0.018197902 0.040877547 0.0041098585 -0.016752668 0.042234845 0.0049071601 -0.016860373 0.039237317 -0.0026747226 -0.016613605 -0.012490251 0.059324425 -0.018198015 -0.0091865305 0.059060499 -0.016734125 -0.017455822 0.057514284 -0.016860373 0.039237317 -0.0026747226 -0.016752668 0.042234845 0.0049071601 -0.016860016 0.041332822 0.0021848143 -0.01838571 -0.018586494 0.055192918 -0.018198015 -0.0091865305 0.059060499 -0.018388392 0.0013092775 0.059352819 -0.01836396 0.042330682 0.014630351 -0.018179899 0.042155519 0.025116574 -0.01664496 0.043599509 0.022866426 -0.018198015 -0.0091865305 0.059060499 -0.016613605 -0.012490251 0.059324425 -0.01686001 -0.0050710449 0.060810886 -0.018197902 0.040877547 0.0041098585 -0.016860373 0.039237317 -0.0026747226 -0.018386314 0.033302017 -0.0088563245 -0.016761364 0.00041890939 0.061108638 -0.018198015 -0.0091865305 0.059060499 -0.01686001 -0.0050710449 0.060810886 -0.016592393 0.03250448 -0.012499942 -0.018386314 0.033302017 -0.0088563245 -0.016747603 0.037188601 -0.0063179554 -0.017899999 0.027942358 -0.015972782 -0.018386314 0.033302017 -0.0088563245 -0.016592393 0.03250448 -0.012499942 -0.018378863 0.027188523 -0.015327885 -0.018386314 0.033302017 -0.0088563245 -0.017899999 0.027942358 -0.015972782 -0.018388392 0.0013092775 0.059352819 -0.018198015 -0.0091865305 0.059060499 -0.017733039 0.0094082728 0.059623986 -0.017733039 0.0094082728 0.059623986 -0.018198015 -0.0091865305 0.059060499 -0.016761364 0.00041890939 0.061108638 -0.018066054 -0.040209442 0.0015248022 -0.016789978 -0.040967807 0.0011112775 -0.016630774 -0.043255128 0.009018912 -0.01838571 -0.018586494 0.055192918 -0.018379273 -0.032061554 0.044841707 -0.016644539 -0.026782805 0.052045923 -0.018382493 0.014186958 0.057005785 -0.018388392 0.0013092775 0.059352819 -0.017733039 0.0094082728 0.059623986 -0.017733039 0.0094082728 0.059623986 -0.016664268 0.0056626587 0.06075592 -0.016716244 0.012019362 0.059442412 -0.016734127 0.024051605 0.053948916 -0.017875317 0.02018288 0.055501062 -0.01664466 0.016830841 0.057770796 -0.027295476 -0.019962449 0.0014582067 -0.019400483 -0.020589592 0.00027875614 -0.027368432 -0.019588487 -0.0029319129 -0.027368432 -0.019588487 -0.0029319129 -0.01939798 -0.020454822 -0.0017362551 -0.019398816 -0.017361607 -0.0035334714 -0.027368432 -0.019588487 -0.0029319129 -0.019400483 -0.020589592 0.00027875614 -0.01939798 -0.020454822 -0.0017362551 -0.027299052 -0.014941771 -0.001812385 -0.019398816 -0.017361607 -0.0035334714 -0.019399887 -0.014681055 -0.00039351362 -0.027299052 -0.014941771 -0.001812385 -0.027399786 -0.017226076 -0.0036280926 -0.019398816 -0.017361607 -0.0035334714 -0.027295476 -0.019962449 0.0014582067 -0.019400841 -0.018976273 0.0021870483 -0.019400483 -0.020589592 0.00027875614 -0.016664153 -0.038956899 -0.003335305 -0.016789978 -0.040967807 0.0011112775 -0.018066054 -0.040209442 0.0015248022 -0.027399786 -0.017226076 -0.0036280926 -0.027368432 -0.019588487 -0.0029319129 -0.019398816 -0.017361607 -0.0035334714 -0.019399887 -0.014681055 -0.00039351362 -0.019398816 -0.017361607 -0.0035334714 -0.018157309 -0.017699523 -0.00054044474 -0.019400841 -0.018976273 0.0021870483 -0.018157309 -0.017699523 -0.00054044474 -0.019400483 -0.020589592 0.00027875614 -0.019398816 -0.017361607 -0.0035334714 -0.01939798 -0.020454822 -0.0017362551 -0.018157309 -0.017699523 -0.00054044474 -0.01939798 -0.020454822 -0.0017362551 -0.019400483 -0.020589592 0.00027875614 -0.018157309 -0.017699523 -0.00054044474 -0.019417711 0.011000743 0.0063130213 -0.019794233 0.0084517431 0.003858286 -0.019767471 0.0045437259 0.0020669748 -0.019771583 0.00071794516 0.001408192 -0.019417711 0.011000743 0.0063130213 -0.019767471 0.0045437259 0.0020669748 -0.019788628 -0.015219027 0.021236299 -0.019401792 -0.0099000158 0.028876947 -0.019703632 -0.015684811 0.01574173 -0.018364076 -0.04236576 0.019635208 -0.018383211 -0.034725685 -0.0071238005 -0.018066054 -0.040209442 0.0015248022 -0.019703692 -0.0081772441 0.0036858623 -0.019411271 -0.012471147 0.0080778953 -0.01941145 -0.0041192183 0.0022918459 -0.018383211 -0.034725685 -0.0071238005 -0.016664153 -0.038956899 -0.003335305 -0.018066054 -0.040209442 0.0015248022 -0.01975823 -0.013096765 0.008372616 -0.019411271 -0.012471147 0.0080778953 -0.019703692 -0.0081772441 0.0036858623 -0.01975823 -0.013096765 0.008372616 -0.019703632 -0.015684811 0.01574173 -0.019411271 -0.012471147 0.0080778953 -0.019788628 -0.015219027 0.021236299 -0.01971871 -0.012986727 0.026028557 -0.019401792 -0.0099000158 0.028876947 -0.01971871 -0.012986727 0.026028557 -0.01979411 -0.008486988 0.030407254 -0.019401792 -0.0099000158 0.028876947 -0.027400024 0.023504153 -0.0023208596 -0.026389964 0.022281837 -0.0051777745 -0.027399905 0.015857331 -0.0089385081 -0.026400931 0.027895218 0.0024820927 -0.026389964 0.022281837 -0.0051777745 -0.027400024 0.023504153 -0.0023208596 -0.027399905 0.028050778 0.0051371683 -0.026400931 0.027895218 0.0024820927 -0.027400024 0.023504153 -0.0023208596 -0.02640111 0.030876042 0.010860029 -0.026400931 0.027895218 0.0024820927 -0.027399905 0.028050778 0.0051371683 -0.027399903 0.030065941 0.022301963 -0.02640111 0.030876042 0.010860029 -0.027399905 0.028050778 0.0051371683 -0.026401049 0.031398799 0.019737069 -0.02640111 0.030876042 0.010860029 -0.027399903 0.030065941 0.022301963 -0.02640087 0.029421762 0.028406767 -0.026401049 0.031398799 0.019737069 -0.027399903 0.030065941 0.022301963 -0.027400142 0.024558781 0.035290662 -0.02640087 0.029421762 0.028406767 -0.027399903 0.030065941 0.022301963 -0.026400333 0.025102401 0.036178436 -0.02640087 0.029421762 0.028406767 -0.027400142 0.024558781 0.035290662 -0.016664153 -0.038956899 -0.003335305 -0.018383211 -0.034725685 -0.0071238005 -0.016859895 -0.035309974 -0.0090922713 -0.027399901 0.020787278 0.03947356 -0.026400333 0.025102401 0.036178436 -0.027400142 0.024558781 0.035290662 -0.026396398 0.020564662 0.041010123 -0.026400333 0.025102401 0.036178436 -0.027399901 0.020787278 0.03947356 -0.026401047 0.01512439 0.044781838 -0.026396398 0.020564662 0.041010123 -0.027399901 0.020787278 0.03947356 -0.027400021 0.0094154477 0.04616278 -0.026401047 0.01512439 0.044781838 -0.027399901 0.020787278 0.03947356 -0.026401166 0.011073572 0.04664148 -0.026401047 0.01512439 0.044781838 -0.027400021 0.0094154477 0.04616278 -0.026401047 0.0023912615 0.048564579 -0.026401166 0.011073572 0.04664148 -0.027400021 0.0094154477 0.04616278 -0.027399901 0.0008112425 0.047646046 -0.026401047 0.0023912615 0.048564579 -0.027400021 0.0094154477 0.04616278 -0.026400987 -0.006482122 0.047986742 -0.026401047 0.0023912615 0.048564579 -0.027399901 0.0008112425 0.047646046 -0.016761312 -0.00045400622 -0.026843077 -0.016664157 -0.0056979242 -0.02649013 -0.017733106 -0.0094432542 -0.025358438 -0.026400749 -0.014840766 0.044954084 -0.026400987 -0.006482122 0.047986742 -0.027399901 0.0008112425 0.047646046 -0.027399901 -0.01589247 0.04320411 -0.026400749 -0.014840766 0.044954084 -0.027399901 0.0008112425 0.047646046 -0.026396457 -0.022614868 0.039112873 -0.026400749 -0.014840766 0.044954084 -0.027399901 -0.01589247 0.04320411 -0.016860018 0.0050359797 -0.026545316 -0.016761312 -0.00045400622 -0.026843077 -0.017733106 -0.0094432542 -0.025358438 -0.027400021 -0.023539294 0.036586337 -0.026396457 -0.022614868 0.039112873 -0.027399901 -0.01589247 0.04320411 -0.027399905 0.0068534217 0.00069545809 -0.026405461 0.0078351814 0.0034523341 -0.026402958 0.011962841 0.0068719448 -0.026405461 0.0078351814 0.0034523341 -0.027399905 0.0068534217 0.00069545809 -0.026398726 0.0030413235 0.0016700521 -0.026398726 0.0030413235 0.0016700521 -0.027399905 0.0068534217 0.00069545809 -0.026409872 -0.0016977375 0.0014339978 -0.027399905 0.0068534217 0.00069545809 -0.027399844 -0.0070340126 0.0019032513 -0.026409872 -0.0016977375 0.0014339978 -0.018383211 -0.034725685 -0.0071238005 -0.016588219 -0.032968882 -0.012048381 -0.016859895 -0.035309974 -0.0090922713 -0.027399844 -0.0070340126 0.0019032513 -0.026399141 -0.0093044676 0.0043823989 -0.026409872 -0.0016977375 0.0014339978 -0.027399844 -0.0070340126 0.0019032513 -0.027399784 -0.011888513 0.0052676732 -0.026399141 -0.0093044676 0.0043823989 -0.027399784 -0.011888513 0.0052676732 -0.026408082 -0.01393548 0.0097092493 -0.026399141 -0.0093044676 0.0043823989 -0.026408082 -0.01393548 0.0097092493 -0.027399784 -0.011888513 0.0052676732 -0.027399903 -0.016163837 0.012628368 -0.027399903 -0.016163837 0.012628368 -0.026398307 -0.015731119 0.018371653 -0.026408082 -0.01393548 0.0097092493 -0.026398307 -0.015731119 0.018371653 -0.027399903 -0.016163837 0.012628368 -0.027399844 -0.016548211 0.019971719 -0.026398307 -0.015731119 0.018371653 -0.027399844 -0.016548211 0.019971719 -0.026404504 -0.013757584 0.024882039 -0.026404504 -0.013757584 0.024882039 -0.027399844 -0.016548211 0.019971719 -0.027400021 -0.010835929 0.030822026 -0.026404504 -0.013757584 0.024882039 -0.027400021 -0.010835929 0.030822026 -0.026402954 -0.011997939 0.027393701 -0.018399779 -0.028110914 0.033521511 -0.018379273 -0.032061554 0.044841707 -0.018400077 -0.024952384 0.038057316 -0.0183884 -0.0013442585 -0.025087271 -0.018382438 -0.014222287 -0.022740351 -0.018399961 -0.0044833943 -0.015084051 -0.018399902 -0.020923167 -0.0077833054 -0.018383211 -0.034725685 -0.0071238005 -0.0183999 -0.029269954 0.0029143472 -0.018399777 -0.013355673 0.046796657 -0.018388392 0.0013092775 0.059352819 -0.018399958 0.0044480972 0.049349517 -0.018399959 0.032025754 0.022708096 -0.0183999 0.029234815 0.031351276 -0.018386191 0.039122373 0.033046436 -0.0183884 -0.0013442585 -0.025087271 -0.018399961 -0.0044833943 -0.015084051 -0.018399842 0.0090484014 -0.014102795 -0.018385775 -0.027124379 -0.015393588 -0.018383211 -0.034725685 -0.0071238005 -0.018399902 -0.020923167 -0.0077833054 -0.01836396 0.042330682 0.014630351 -0.018399959 0.032025754 0.022708096 -0.018386191 0.039122373 0.033046436 -0.018386314 0.033302017 -0.0088563245 -0.018399902 0.028075954 0.00074393203 -0.018399961 0.032318041 0.013630455 -0.018382493 0.014186958 0.057005785 -0.018399958 0.0044480972 0.049349517 -0.018388392 0.0013092775 0.059352819 -0.018399838 0.013182706 0.046858445 -0.018399958 0.0044480972 0.049349517 -0.018382493 0.014186958 0.057005785 -0.018386314 0.033302017 -0.0088563245 -0.018399961 0.032318041 0.013630455 -0.01836396 0.042330682 0.014630351 -0.0183884 -0.0013442585 -0.025087271 -0.018399842 0.0090484014 -0.014102795 -0.018378863 0.027188523 -0.015327885 -0.018378863 0.027188523 -0.015327885 -0.018399842 0.0090484014 -0.014102795 -0.018399842 0.017330995 -0.010378338 -0.018399781 -0.032060862 0.011557601 -0.018364076 -0.04236576 0.019635208 -0.018399898 -0.031547468 0.025115399 -0.018399961 0.032318041 0.013630455 -0.018399959 0.032025754 0.022708096 -0.01836396 0.042330682 0.014630351 -0.01838601 0.027089199 0.049659211 -0.018399838 0.013182706 0.046858445 -0.018382493 0.014186958 0.057005785 -0.018400077 -0.024952384 0.038057316 -0.018379273 -0.032061554 0.044841707 -0.018399777 -0.013355673 0.046796657 -0.018075826 -0.037017908 0.039246164 -0.016747655 -0.03722357 0.040583473 -0.018379273 -0.032061554 0.044841707 -0.018399777 -0.013355673 0.046796657 -0.018379273 -0.032061554 0.044841707 -0.01838571 -0.018586494 0.055192918 -0.018400077 0.024162378 0.03888591 -0.018399838 0.013182706 0.046858445 -0.01838601 0.027089199 0.049659211 -0.018382438 -0.014222287 -0.022740351 -0.018385775 -0.027124379 -0.015393588 -0.018399902 -0.020923167 -0.0077833054 -0.018399898 -0.031547468 0.025115399 -0.018364076 -0.04236576 0.019635208 -0.018379273 -0.032061554 0.044841707 -0.018383211 -0.034725685 -0.0071238005 -0.018385775 -0.027124379 -0.015393588 -0.016588219 -0.032968882 -0.012048381 -0.016588219 -0.032968882 -0.012048381 -0.018385775 -0.027124379 -0.015393588 -0.016613133 -0.030314604 -0.014770105 -0.018383211 -0.034725685 -0.0071238005 -0.018364076 -0.04236576 0.019635208 -0.018399781 -0.032060862 0.011557601 -0.018399898 -0.031547468 0.025115399 -0.018379273 -0.032061554 0.044841707 -0.018399779 -0.028110914 0.033521511 -0.018378863 0.027188523 -0.015327885 -0.018399842 0.017330995 -0.010378338 -0.018399902 0.028075954 0.00074393203 -0.0183999 -0.029269954 0.0029143472 -0.018383211 -0.034725685 -0.0071238005 -0.018399781 -0.032060862 0.011557601 -0.018386191 0.039122373 0.033046436 -0.018400077 0.024162378 0.03888591 -0.01838601 0.027089199 0.049659211 -0.018378863 0.027188523 -0.015327885 -0.018399902 0.028075954 0.00074393203 -0.018386314 0.033302017 -0.0088563245 -0.0183999 0.029234815 0.031351276 -0.018400077 0.024162378 0.03888591 -0.018386191 0.039122373 0.033046436 -0.018399961 -0.0044833943 -0.015084051 -0.018382438 -0.014222287 -0.022740351 -0.018399902 -0.020923167 -0.0077833054 -0.018399777 -0.013355673 0.046796657 -0.01838571 -0.018586494 0.055192918 -0.018388392 0.0013092775 0.059352819 -0.019400485 0.024809733 -0.0022932945 -0.018399902 0.028075954 0.00074393203 -0.019400544 0.019396162 -0.0077040871 -0.019400604 0.029235968 0.0053856238 -0.018399902 0.028075954 0.00074393203 -0.019400485 0.024809733 -0.0022932945 -0.018399961 0.032318041 0.013630455 -0.018399902 0.028075954 0.00074393203 -0.019400604 0.029235968 0.0053856238 -0.019400423 0.031479806 0.018433729 -0.018399961 0.032318041 0.013630455 -0.019400604 0.029235968 0.0053856238 -0.018399959 0.032025754 0.022708096 -0.018399961 0.032318041 0.013630455 -0.019400423 0.031479806 0.018433729 -0.019400602 0.029872546 0.027149666 -0.018399959 0.032025754 0.022708096 -0.019400423 0.031479806 0.018433729 -0.0183999 0.029234815 0.031351276 -0.018399959 0.032025754 0.022708096 -0.019400602 0.029872546 0.027149666 -0.019400481 0.023123447 0.038539752 -0.0183999 0.029234815 0.031351276 -0.019400602 0.029872546 0.027149666 -0.018400077 0.024162378 0.03888591 -0.0183999 0.029234815 0.031351276 -0.019400481 0.023123447 0.038539752 -0.019400302 0.019463848 0.041935224 -0.018400077 0.024162378 0.03888591 -0.019400481 0.023123447 0.038539752 -0.018399838 0.013182706 0.046858445 -0.018400077 0.024162378 0.03888591 -0.019400302 0.019463848 0.041935224 -0.019400243 0.011260727 0.046570163 -0.018399838 0.013182706 0.046858445 -0.019400302 0.019463848 0.041935224 -0.018399958 0.0044480972 0.049349517 -0.018399838 0.013182706 0.046858445 -0.019400243 0.011260727 0.046570163 -0.019400124 0.0026203571 0.048546221 -0.018399958 0.0044480972 0.049349517 -0.019400243 0.011260727 0.046570163 -0.018399777 -0.013355673 0.046796657 -0.018399958 0.0044480972 0.049349517 -0.019400124 0.0026203571 0.048546221 -0.019400004 -0.006228711 0.048038825 -0.018399777 -0.013355673 0.046796657 -0.019400124 0.0026203571 0.048546221 -0.016613133 -0.030314604 -0.014770105 -0.017875262 -0.020218007 -0.021235533 -0.016734011 -0.024086649 -0.019683344 -0.018385775 -0.027124379 -0.015393588 -0.017875262 -0.020218007 -0.021235533 -0.016613133 -0.030314604 -0.014770105 -0.019399885 -0.014586766 0.045087866 -0.018399777 -0.013355673 0.046796657 -0.019400004 -0.006228711 0.048038825 -0.018400077 -0.024952384 0.038057316 -0.018399777 -0.013355673 0.046796657 -0.019399885 -0.014586766 0.045087866 -0.019399647 -0.023068711 0.038623817 -0.018400077 -0.024952384 0.038057316 -0.019399885 -0.014586766 0.045087866 -0.019400485 0.024809733 -0.0022932945 -0.019400544 0.019396162 -0.0077040871 -0.026389964 0.022281837 -0.0051777745 -0.026400931 0.027895218 0.0024820927 -0.019400485 0.024809733 -0.0022932945 -0.026389964 0.022281837 -0.0051777745 -0.019400604 0.029235968 0.0053856238 -0.019400485 0.024809733 -0.0022932945 -0.026400931 0.027895218 0.0024820927 -0.02640111 0.030876042 0.010860029 -0.019400604 0.029235968 0.0053856238 -0.026400931 0.027895218 0.0024820927 -0.019400423 0.031479806 0.018433729 -0.019400604 0.029235968 0.0053856238 -0.02640111 0.030876042 0.010860029 -0.026401049 0.031398799 0.019737069 -0.019400423 0.031479806 0.018433729 -0.02640111 0.030876042 0.010860029 -0.02640087 0.029421762 0.028406767 -0.019400423 0.031479806 0.018433729 -0.026401049 0.031398799 0.019737069 -0.019400602 0.029872546 0.027149666 -0.019400423 0.031479806 0.018433729 -0.02640087 0.029421762 0.028406767 -0.026400333 0.025102401 0.036178436 -0.019400602 0.029872546 0.027149666 -0.02640087 0.029421762 0.028406767 -0.019400481 0.023123447 0.038539752 -0.019400602 0.029872546 0.027149666 -0.026400333 0.025102401 0.036178436 -0.019400302 0.019463848 0.041935224 -0.019400481 0.023123447 0.038539752 -0.026396398 0.020564662 0.041010123 -0.026396398 0.020564662 0.041010123 -0.019400481 0.023123447 0.038539752 -0.026400333 0.025102401 0.036178436 -0.026401047 0.01512439 0.044781838 -0.019400302 0.019463848 0.041935224 -0.026396398 0.020564662 0.041010123 -0.019400243 0.011260727 0.046570163 -0.019400302 0.019463848 0.041935224 -0.026401047 0.01512439 0.044781838 -0.026401166 0.011073572 0.04664148 -0.019400243 0.011260727 0.046570163 -0.026401047 0.01512439 0.044781838 -0.026401047 0.0023912615 0.048564579 -0.019400243 0.011260727 0.046570163 -0.026401166 0.011073572 0.04664148 -0.019400124 0.0026203571 0.048546221 -0.019400243 0.011260727 0.046570163 -0.026401047 0.0023912615 0.048564579 -0.026400987 -0.006482122 0.047986742 -0.019400124 0.0026203571 0.048546221 -0.026401047 0.0023912615 0.048564579 -0.018385775 -0.027124379 -0.015393588 -0.018382438 -0.014222287 -0.022740351 -0.017875262 -0.020218007 -0.021235533 -0.019400004 -0.006228711 0.048038825 -0.019400124 0.0026203571 0.048546221 -0.026400987 -0.006482122 0.047986742 -0.026400749 -0.014840766 0.044954084 -0.019400004 -0.006228711 0.048038825 -0.026400987 -0.006482122 0.047986742 -0.018364076 -0.04236576 0.019635208 -0.016630774 -0.043255128 0.009018912 -0.016694549 -0.044005465 0.016364926 -0.019399885 -0.014586766 0.045087866 -0.019400004 -0.006228711 0.048038825 -0.026400749 -0.014840766 0.044954084 -0.026396457 -0.022614868 0.039112873 -0.019399885 -0.014586766 0.045087866 -0.026400749 -0.014840766 0.044954084 -0.019399647 -0.023068711 0.038623817 -0.019399885 -0.014586766 0.045087866 -0.026396457 -0.022614868 0.039112873 -0.027399426 0.025342098 0.020378303 -0.027399784 0.015215388 0.024141576 -0.027400142 0.024558781 0.035290662 -0.027399786 -0.017226076 -0.0036280926 -0.027399905 -0.020822503 -0.0052078725 -0.027368432 -0.019588487 -0.0029319129 -0.027399544 -0.0030825182 0.043275554 -0.027399901 0.0008112425 0.047646046 -0.027399305 0.00034823359 0.045384172 -0.027399309 -0.0030949663 -0.0067241779 -0.027399844 -0.0070340126 0.0019032513 -0.027399309 0.00033595393 -0.0046157087 -0.027399426 0.02191104 0.018269505 -0.027399784 0.015215388 0.024141576 -0.027399426 0.025342098 0.020378303 -0.026897319 0.01610576 0.0091976514 -0.027399903 0.016513029 0.014293757 -0.027399786 0.022779331 0.011467094 -0.027399309 0.00033595393 -0.0046157087 -0.027399844 -0.0070340126 0.0019032513 -0.027399905 0.0068534217 0.00069545809 -0.027399786 0.022779331 0.011467094 -0.027399903 0.016513029 0.014293757 -0.027399426 0.02191104 0.018269505 -0.027399903 0.016513029 0.014293757 -0.027399784 0.015215388 0.024141576 -0.027399426 0.02191104 0.018269505 -0.027399784 -0.011888513 0.0052676732 -0.027399903 -0.018348649 0.0025034365 -0.027399903 -0.016163837 0.012628368 -0.027399784 0.0096618738 0.030816775 -0.027399901 -0.0061820983 0.034490794 -0.027399305 0.001130106 0.03906079 -0.027399905 0.0053840564 -0.0047196248 -0.027399309 0.00033595393 -0.0046157087 -0.027399905 0.0068534217 0.00069545809 -0.027400022 -0.030101176 0.01196361 -0.027399901 -0.030333562 0.020691343 -0.027399305 -0.02808864 0.018281817 -0.026931411 -0.027462989 0.015791846 -0.027400022 -0.030101176 0.01196361 -0.027399305 -0.02808864 0.018281817 -0.027400024 -0.00084621354 -0.013380358 -0.027399369 -0.00038337326 -0.011118694 -0.027399428 0.0030445429 -0.0090148281 -0.027399305 -0.02808864 0.018281817 -0.027399901 -0.030333562 0.020691343 -0.027399305 -0.024657656 0.020390518 -0.027371174 -0.015767049 0.0018242296 -0.027399903 -0.018348649 0.0025034365 -0.027399784 -0.011888513 0.0052676732 -0.027399305 -0.024657656 0.020390518 -0.027399901 -0.030333562 0.020691343 -0.027399901 -0.024743125 0.024048928 -0.027399426 -0.023876142 0.01406718 -0.027400022 -0.030101176 0.01196361 -0.026931411 -0.027462989 0.015791846 -0.027399784 0.0096618738 0.030816775 -0.027399305 0.001130106 0.03906079 -0.027399544 0.0030596475 0.040989749 -0.026931291 0.022536701 0.015779525 -0.027399786 0.022779331 0.011467094 -0.027399426 0.02191104 0.018269505 -0.027399905 -0.0094505977 -0.011897376 -0.027399905 -0.020822503 -0.0052078725 -0.027399786 -0.017226076 -0.0036280926 -0.027399901 -0.024743125 0.024048928 -0.027399901 -0.030333562 0.020691343 -0.026899341 -0.026205136 0.028621424 -0.027399905 -0.0094505977 -0.011897376 -0.027399786 -0.017226076 -0.0036280926 -0.027299052 -0.014941771 -0.001812385 -0.027399428 0.0030445429 -0.0090148281 -0.027399309 0.00033595393 -0.0046157087 -0.027399905 0.0053840564 -0.0047196248 -0.027399544 0.0030596475 0.040989749 -0.027399305 0.00034823359 0.045384172 -0.027399901 0.0008112425 0.047646046 -0.027400022 -0.024593856 -0.0010251233 -0.027400022 -0.030101176 0.01196361 -0.027399426 -0.023876142 0.01406718 -0.027400024 -0.00084621354 -0.013380358 -0.027399428 0.0030445429 -0.0090148281 -0.027399905 0.0053840564 -0.0047196248 -0.027399784 0.0096618738 0.030816775 -0.027399544 0.0030596475 0.040989749 -0.027400021 0.0094154477 0.04616278 -0.027399844 -0.016548211 0.019971719 -0.027399961 -0.017372554 0.023305973 -0.027400021 -0.010835929 0.030822026 -0.016644724 -0.016866023 -0.023505175 -0.017733106 -0.0094432542 -0.025358438 -0.016716251 -0.012054238 -0.025177075 -0.027399903 -0.018348649 0.0025034365 -0.027400022 -0.024593856 -0.0010251233 -0.027399426 -0.023876142 0.01406718 -0.027400021 0.0094154477 0.04616278 -0.027399544 0.0030596475 0.040989749 -0.027399901 0.0008112425 0.047646046 -0.018382438 -0.014222287 -0.022740351 -0.017733106 -0.0094432542 -0.025358438 -0.016644724 -0.016866023 -0.023505175 -0.027399844 -0.0070340126 0.0019032513 -0.027371174 -0.015767049 0.0018242296 -0.027399784 -0.011888513 0.0052676732 -0.027299052 -0.014941771 -0.001812385 -0.027371174 -0.015767049 0.0018242296 -0.027399844 -0.0070340126 0.0019032513 -0.027399309 -0.0030949663 -0.0067241779 -0.027299052 -0.014941771 -0.001812385 -0.027399844 -0.0070340126 0.0019032513 -0.027399905 -0.0094505977 -0.011897376 -0.027299052 -0.014941771 -0.001812385 -0.027399309 -0.0030949663 -0.0067241779 -0.026899341 -0.026205136 0.028621424 -0.027399901 -0.030333562 0.020691343 -0.027400021 -0.023539294 0.036586337 -0.027399428 0.026123632 0.014054815 -0.027399786 0.022779331 0.011467094 -0.026931291 0.022536701 0.015779525 -0.027399903 0.030065941 0.022301963 -0.027399426 0.025342098 0.020378303 -0.027400142 0.024558781 0.035290662 -0.027399905 0.0084717469 -0.0088190697 -0.027400024 -0.00084621354 -0.013380358 -0.027399905 0.0053840564 -0.0047196248 -0.027295476 -0.019962449 0.0014582067 -0.027400022 -0.024593856 -0.0010251233 -0.027399903 -0.018348649 0.0025034365 -0.027399905 0.028050778 0.0051371683 -0.027399786 0.022779331 0.011467094 -0.027399428 0.026123632 0.014054815 -0.027399901 0.020787278 0.03947356 -0.027399784 0.0096618738 0.030816775 -0.027400021 0.0094154477 0.04616278 -0.027399901 -0.0084874695 0.043074183 -0.027399901 -0.01589247 0.04320411 -0.027399901 0.0008112425 0.047646046 -0.027400024 0.023504153 -0.0023208596 -0.026895411 0.026088106 0.0047957199 -0.027399905 0.028050778 0.0051371683 -0.027399905 0.015857331 -0.0089385081 -0.027400024 -0.00084621354 -0.013380358 -0.027399905 0.0084717469 -0.0088190697 -0.027399905 0.028050778 0.0051371683 -0.027399428 0.026123632 0.014054815 -0.027399903 0.030065941 0.022301963 -0.027399903 -0.018348649 0.0025034365 -0.027399426 -0.023876142 0.01406718 -0.027399903 -0.016163837 0.012628368 -0.027400024 -0.00084621354 -0.013380358 -0.027399905 -0.0094505977 -0.011897376 -0.027399309 -0.0030949663 -0.0067241779 -0.027399544 -0.0030825182 0.043275554 -0.027399901 -0.0084874695 0.043074183 -0.027399901 0.0008112425 0.047646046 -0.027295476 -0.019962449 0.0014582067 -0.027399903 -0.018348649 0.0025034365 -0.019400841 -0.018976273 0.0021870483 -0.027399903 0.030065941 0.022301963 -0.027399428 0.026123632 0.014054815 -0.026929444 0.027736574 0.017582916 -0.027400142 0.024558781 0.035290662 -0.027399784 0.0096618738 0.030816775 -0.027399901 0.020787278 0.03947356 -0.027399905 -0.020822503 -0.0052078725 -0.027400022 -0.024593856 -0.0010251233 -0.027368432 -0.019588487 -0.0029319129 -0.027368432 -0.019588487 -0.0029319129 -0.027400022 -0.024593856 -0.0010251233 -0.027295476 -0.019962449 0.0014582067 -0.027371174 -0.015767049 0.0018242296 -0.027299052 -0.014941771 -0.001812385 -0.019399887 -0.014681055 -0.00039351362 -0.027371174 -0.015767049 0.0018242296 -0.019399887 -0.014681055 -0.00039351362 -0.019397264 -0.015653709 0.0016849897 -0.026895646 -0.0059180777 0.038900942 -0.027399901 -0.0084874695 0.043074183 -0.027399544 -0.0030825182 0.043275554 -0.027399784 0.015215388 0.024141576 -0.027399784 0.0096618738 0.030816775 -0.027400142 0.024558781 0.035290662 -0.027399903 -0.016163837 0.012628368 -0.027399426 -0.023876142 0.01406718 -0.027399307 -0.021946115 0.015996119 -0.027399903 -0.018348649 0.0025034365 -0.027371174 -0.015767049 0.0018242296 -0.019397264 -0.015653709 0.0016849897 -0.027399903 -0.018348649 0.0025034365 -0.019397264 -0.015653709 0.0016849897 -0.019400841 -0.018976273 0.0021870483 -0.026929444 0.027736574 0.017582916 -0.027399426 0.025342098 0.020378303 -0.027399903 0.030065941 0.022301963 -0.027399961 -0.017372554 0.023305973 -0.027399305 -0.024657656 0.020390518 -0.027399901 -0.024743125 0.024048928 -0.018157309 -0.017699523 -0.00054044474 -0.019400841 -0.018976273 0.0021870483 -0.019397264 -0.015653709 0.0016849897 -0.026939157 -0.0015909211 0.039800808 -0.026895646 -0.0059180777 0.038900942 -0.027399544 -0.0030825182 0.043275554 -0.027399307 -0.021946115 0.015996119 -0.027399305 -0.024657656 0.020390518 -0.027399844 -0.016548211 0.019971719 -0.027399844 -0.016548211 0.019971719 -0.027399305 -0.024657656 0.020390518 -0.027399961 -0.017372554 0.023305973 -0.027399903 -0.016163837 0.012628368 -0.027399307 -0.021946115 0.015996119 -0.027399844 -0.016548211 0.019971719 -0.027399305 0.001130106 0.03906079 -0.027399901 -0.0061820983 0.034490794 -0.026895646 -0.0059180777 0.038900942 -0.027399305 0.001130106 0.03906079 -0.026895646 -0.0059180777 0.038900942 -0.026939157 -0.0015909211 0.039800808 -0.018157309 -0.017699523 -0.00054044474 -0.019397264 -0.015653709 0.0016849897 -0.019399887 -0.014681055 -0.00039351362 -0.02690006 0.010333104 0.0025002577 -0.027399903 0.016513029 0.014293757 -0.026897319 0.01610576 0.0091976514 -0.01971871 -0.012986727 0.026028557 -0.026404504 -0.013757584 0.024882039 -0.026402954 -0.011997939 0.027393701 -0.01971871 -0.012986727 0.026028557 -0.019788628 -0.015219027 0.021236299 -0.026404504 -0.013757584 0.024882039 -0.019788628 -0.015219027 0.021236299 -0.026398307 -0.015731119 0.018371653 -0.026404504 -0.013757584 0.024882039 -0.019788628 -0.015219027 0.021236299 -0.019703632 -0.015684811 0.01574173 -0.026398307 -0.015731119 0.018371653 -0.019703632 -0.015684811 0.01574173 -0.026408082 -0.01393548 0.0097092493 -0.026398307 -0.015731119 0.018371653 -0.019703632 -0.015684811 0.01574173 -0.01975823 -0.013096765 0.008372616 -0.026408082 -0.01393548 0.0097092493 -0.01975823 -0.013096765 0.008372616 -0.019703692 -0.0081772441 0.0036858623 -0.026408082 -0.01393548 0.0097092493 -0.019703692 -0.0081772441 0.0036858623 -0.026399141 -0.0093044676 0.0043823989 -0.026408082 -0.01393548 0.0097092493 -0.019703692 -0.0081772441 0.0036858623 -0.01941145 -0.0041192183 0.0022918459 -0.026409872 -0.0016977375 0.0014339978 -0.019703692 -0.0081772441 0.0036858623 -0.026409872 -0.0016977375 0.0014339978 -0.026399141 -0.0093044676 0.0043823989 -0.01941145 -0.0041192183 0.0022918459 -0.019771583 0.00071794516 0.001408192 -0.026409872 -0.0016977375 0.0014339978 -0.019771583 0.00071794516 0.001408192 -0.026398726 0.0030413235 0.0016700521 -0.026409872 -0.0016977375 0.0014339978 -0.019771583 0.00071794516 0.001408192 -0.019767471 0.0045437259 0.0020669748 -0.026398726 0.0030413235 0.0016700521 -0.019767471 0.0045437259 0.0020669748 -0.019794233 0.0084517431 0.003858286 -0.026405461 0.0078351814 0.0034523341 -0.019767471 0.0045437259 0.0020669748 -0.026405461 0.0078351814 0.0034523341 -0.026398726 0.0030413235 0.0016700521 -0.019794233 0.0084517431 0.003858286 -0.026402958 0.011962841 0.0068719448 -0.026405461 0.0078351814 0.0034523341 -0.019794233 0.0084517431 0.003858286 -0.019417711 0.011000743 0.0063130213 -0.026402958 0.011962841 0.0068719448 -0.019411271 -0.012471147 0.0080778953 -0.019703632 -0.015684811 0.01574173 -0.019401792 -0.0099000158 0.028876947 -0.019411271 -0.012471147 0.0080778953 -0.019401792 -0.0099000158 0.028876947 -0.01941145 -0.0041192183 0.0022918459 -0.01941145 -0.0041192183 0.0022918459 -0.019401792 -0.0099000158 0.028876947 -0.019417711 0.011000743 0.0063130213 -0.019417711 0.011000743 0.0063130213 -0.019401792 -0.0099000158 0.028876947 -0.01940692 0.01507817 0.020169849 -0.01940692 0.01507817 0.020169849 -0.019401792 -0.0099000158 0.028876947 -0.019410137 0.0010246101 0.032490741 -0.01940692 0.01507817 0.020169849 -0.019410137 0.0010246101 0.032490741 -0.019703751 0.0094463192 0.029696196 -0.019771583 0.00071794516 0.001408192 -0.01941145 -0.0041192183 0.0022918459 -0.019417711 0.011000743 0.0063130213 -0.01940692 0.01507817 0.020169849 -0.019703751 0.0094463192 0.029696196 -0.01975817 0.013061562 0.025893008 -0.019712454 0.014229218 0.010485262 -0.019417711 0.011000743 0.0063130213 -0.01940692 0.01507817 0.020169849 0.02120029 0.034815881 -0.0097869597 0.021199932 0.031983752 -0.01307884 -0.016592393 0.03250448 -0.012499942 -0.016747603 0.037188601 -0.0063179554 0.02120029 0.034815881 -0.0097869597 -0.016592393 0.03250448 -0.012499942 0.02120029 0.037730373 -0.0055205799 0.02120029 0.034815881 -0.0097869597 -0.016747603 0.037188601 -0.0063179554 -0.016860373 0.039237317 -0.0026747226 0.02120029 0.037730373 -0.0055205799 -0.016747603 0.037188601 -0.0063179554 -0.019410137 0.0010246101 0.032490741 -0.019401792 -0.0099000158 0.028876947 -0.019767407 -0.0045788651 0.032198608 0.021200411 0.040124573 -0.00094143604 0.02120029 0.037730373 -0.0055205799 -0.016860373 0.039237317 -0.0026747226 -0.016860016 0.041332822 0.0021848143 0.021200411 0.040124573 -0.00094143604 -0.016860373 0.039237317 -0.0026747226 0.021200232 0.041966569 0.003887871 0.021200411 0.040124573 -0.00094143604 -0.016860016 0.041332822 0.0021848143 -0.016752668 0.042234845 0.0049071601 0.021200232 0.041966569 0.003887871 -0.016860016 0.041332822 0.0021848143 0.021200173 0.043229502 0.0088993441 0.021200232 0.041966569 0.003887871 -0.016752668 0.042234845 0.0049071601 -0.016733773 0.043676101 0.012068932 0.021200173 0.043229502 0.0088993441 -0.016752668 0.042234845 0.0049071601 0.021195166 0.043948319 0.014615257 0.021200173 0.043229502 0.0088993441 -0.016733773 0.043676101 0.012068932 -0.016694732 0.04397063 0.017900687 0.021195166 0.043948319 0.014615257 -0.016733773 0.043676101 0.012068932 0.021200232 0.043885022 0.020406313 0.021195166 0.043948319 0.014615257 -0.016694732 0.04397063 0.017900687 -0.01664496 0.043599509 0.022866426 0.021200232 0.043885022 0.020406313 -0.016694732 0.04397063 0.017900687 0.021599168 0.043175604 0.025644289 0.021200232 0.043885022 0.020406313 -0.01664496 0.043599509 0.022866426 -0.016839152 0.04262409 0.027878519 0.021599168 0.043175604 0.025644289 -0.01664496 0.043599509 0.022866426 0.021599108 0.04185902 0.03071402 0.021599168 0.043175604 0.025644289 -0.016839152 0.04262409 0.027878519 -0.016790038 0.04093286 0.033154365 0.021599108 0.04185902 0.03071402 -0.016839152 0.04262409 0.027878519 0.02159893 0.039949592 0.03559158 0.021599108 0.04185902 0.03071402 -0.016790038 0.04093286 0.033154365 -0.016664034 0.038921833 0.037600961 0.02159893 0.039949592 0.03559158 -0.016790038 0.04093286 0.033154365 0.021599049 0.037474066 0.040207993 0.02159893 0.039949592 0.03559158 -0.016664034 0.038921833 0.037600961 -0.016859893 0.035275012 0.043357801 0.021599049 0.037474066 0.040207993 -0.016664034 0.038921833 0.037600961 0.021598931 0.034468606 0.04449727 0.021599049 0.037474066 0.040207993 -0.016859893 0.035275012 0.043357801 -0.016588334 0.032933701 0.046313856 0.021598931 0.034468606 0.04449727 -0.016859893 0.035275012 0.043357801 0.021200415 0.030919712 0.048453949 0.021598931 0.034468606 0.04449727 -0.016588334 0.032933701 0.046313856 -0.01661313 0.030279549 0.049035601 0.021200415 0.030919712 0.048453949 -0.016588334 0.032933701 0.046313856 0.021599051 0.027041426 0.051858548 0.021200415 0.030919712 0.048453949 -0.01661313 0.030279549 0.049035601 -0.016734127 0.024051605 0.053948916 0.021599051 0.027041426 0.051858548 -0.01661313 0.030279549 0.049035601 0.021200415 0.023742003 0.054195032 0.021599051 0.027041426 0.051858548 -0.016734127 0.024051605 0.053948916 0.021200534 0.019153327 0.05676356 0.021200415 0.023742003 0.054195032 -0.016734127 0.024051605 0.053948916 -0.01664466 0.016830841 0.057770796 0.021200534 0.019153327 0.05676356 -0.016734127 0.024051605 0.053948916 0.021200536 0.014291153 0.05876679 0.021200534 0.019153327 0.05676356 -0.01664466 0.016830841 0.057770796 -0.016716244 0.012019362 0.059442412 0.021200536 0.014291153 0.05876679 -0.01664466 0.016830841 0.057770796 0.021200595 0.0092249783 0.060175702 0.021200536 0.014291153 0.05876679 -0.016716244 0.012019362 0.059442412 -0.016664268 0.0056626587 0.06075592 0.021200595 0.0092249783 0.060175702 -0.016716244 0.012019362 0.059442412 0.021200297 0.0040272051 0.060970474 0.021200595 0.0092249783 0.060175702 -0.016664268 0.0056626587 0.06075592 -0.016761364 0.00041890939 0.061108638 0.021200297 0.0040272051 0.060970474 -0.016664268 0.0056626587 0.06075592 0.021200417 -0.0012281593 0.061140209 0.021200297 0.0040272051 0.060970474 -0.016761364 0.00041890939 0.061108638 -0.01686001 -0.0050710449 0.060810886 0.021200417 -0.0012281593 0.061140209 -0.016761364 0.00041890939 0.061108638 0.021200119 -0.009052814 0.060219765 0.021200417 -0.0012281593 0.061140209 -0.01686001 -0.0050710449 0.060810886 -0.016613605 -0.012490251 0.059324425 0.021200119 -0.009052814 0.060219765 -0.01686001 -0.0050710449 0.060810886 0.021199344 -0.014097923 0.058844462 0.021200119 -0.009052814 0.060219765 -0.016613605 -0.012490251 0.059324425 0.021203278 -0.019579072 0.056588463 0.021199344 -0.014097923 0.058844462 -0.016734125 -0.017455822 0.057514284 -0.016734125 -0.017455822 0.057514284 0.021199344 -0.014097923 0.058844462 -0.016613605 -0.012490251 0.059324425 -0.016694428 -0.022665583 0.054850001 0.021203278 -0.019579072 0.056588463 -0.016734125 -0.017455822 0.057514284 0.021200297 -0.024701843 0.053585425 0.021203278 -0.019579072 0.056588463 -0.016694428 -0.022665583 0.054850001 -0.016644539 -0.026782805 0.052045923 0.021200297 -0.024701843 0.053585425 -0.016694428 -0.022665583 0.054850001 0.021200059 -0.02887189 0.050382398 0.021200297 -0.024701843 0.053585425 -0.016644539 -0.026782805 0.052045923 -0.016592326 -0.032539535 0.046765566 0.021200059 -0.02887189 0.050382398 -0.016644539 -0.026782805 0.052045923 0.02119994 -0.032019015 0.047344562 0.021200059 -0.02887189 0.050382398 -0.016592326 -0.032539535 0.046765566 -0.027399369 -0.00038337326 -0.011118694 -0.017899759 -0.0024990889 -0.0092011392 -0.017899759 0.00096734799 -0.010488967 -0.027399369 -0.00038337326 -0.011118694 -0.026931413 -0.0024694211 -0.0092146751 -0.017899759 -0.0024990889 -0.0092011392 -0.026931413 -0.0024694211 -0.0092146751 -0.017899759 -0.0028336698 -0.0076701352 -0.017899759 -0.0024990889 -0.0092011392 -0.026931413 -0.0024694211 -0.0092146751 -0.027399309 -0.0030949663 -0.0067241779 -0.017899759 -0.0028336698 -0.0076701352 -0.027399309 -0.0030949663 -0.0067241779 -0.017899759 9.4923971e-06 -0.0050504678 -0.017899759 -0.0028336698 -0.0076701352 -0.027399428 0.026123632 0.014054815 -0.026931291 0.022536701 0.015779525 -0.017899817 0.024204904 0.01441902 -0.026931291 0.022536701 0.015779525 -0.017899757 0.022200035 0.016719757 -0.017899817 0.024204904 0.01441902 -0.026931291 0.022536701 0.015779525 -0.027399426 0.02191104 0.018269505 -0.017899757 0.022200035 0.016719757 -0.027399426 0.02191104 0.018269505 -0.017899876 0.023197345 0.019305449 -0.017899757 0.022200035 0.016719757 -0.019767407 -0.0045788651 0.032198608 -0.019401792 -0.0099000158 0.028876947 -0.01979411 -0.008486988 0.030407254 -0.027399428 0.026123632 0.014054815 -0.017899817 0.024204904 0.01441902 -0.017899757 0.027146451 0.015362598 -0.027399305 0.001130106 0.03906079 -0.026939157 -0.0015909211 0.039800808 -0.017899875 0.000979712 0.039510828 -0.026939157 -0.0015909211 0.039800808 -0.017899755 -0.0012381457 0.039612837 -0.017899875 0.000979712 0.039510828 -0.026939157 -0.0015909211 0.039800808 -0.017899875 -0.0027534098 0.042657778 -0.017899755 -0.0012381457 0.039612837 -0.026939157 -0.0015909211 0.039800808 -0.027399544 -0.0030825182 0.043275554 -0.017899875 -0.0027534098 0.042657778 -0.027399544 -0.0030825182 0.043275554 -0.017899815 2.9826373e-05 0.044924218 -0.017899875 -0.0027534098 0.042657778 -0.027399426 -0.023876142 0.01406718 -0.026931411 -0.027462989 0.015791846 -0.017899757 -0.026652712 0.014876088 -0.026931411 -0.027462989 0.015791846 -0.017899755 -0.027736343 0.017820263 -0.017899757 -0.026652712 0.014876088 -0.026931411 -0.027462989 0.015791846 -0.027399305 -0.02808864 0.018281817 -0.017899755 -0.027736343 0.017820263 -0.027399426 -0.023876142 0.01406718 -0.017899757 -0.026652712 0.014876088 -0.017899817 -0.023587069 0.014741172 -0.019756977 0.0037962289 0.032404728 -0.019703751 0.0094463192 0.029696196 -0.019410137 0.0010246101 0.032490741 0.02119994 -0.032019015 0.047344562 0.021200297 -0.034851514 0.044052228 0.021200297 -0.037765574 0.039785776 0.021200297 -0.024701843 0.053585425 0.021200059 -0.02887189 0.050382398 0.02119994 -0.032019015 0.047344562 0.021200415 0.023742003 0.054195032 0.021200534 0.019153327 0.05676356 0.021599051 0.027041426 0.051858548 0.021203278 -0.019579072 0.056588463 0.021200119 -0.009052814 0.060219765 0.021199344 -0.014097923 0.058844462 0.021200297 -0.024701843 0.053585425 0.021200119 -0.009052814 0.060219765 0.021203278 -0.019579072 0.056588463 0.021200297 -0.040159941 0.035206567 0.027201055 -0.037765533 0.039784636 0.021200297 -0.037765574 0.039785776 0.027400013 -0.042378906 0.028360533 0.027201055 -0.037765533 0.039784636 0.021200297 -0.040159941 0.035206567 0.027200757 -0.027410189 0.05159523 0.027400015 -0.023298183 0.054305483 0.021200297 -0.024701843 0.053585425 0.021200176 -0.042001389 0.030377429 0.027400013 -0.042378906 0.028360533 0.021200297 -0.040159941 0.035206567 0.021200057 -0.043264557 0.025366062 0.027400013 -0.042378906 0.028360533 0.021200176 -0.042001389 0.030377429 0.02119994 -0.032019015 0.047344562 0.027200757 -0.027410189 0.05159523 0.021200297 -0.024701843 0.053585425 0.027200695 -0.043973342 0.019729044 0.027400013 -0.042378906 0.028360533 0.021200057 -0.043264557 0.025366062 -0.019771758 -0.00075310539 0.032857433 -0.019756977 0.0037962289 0.032404728 -0.019410137 0.0010246101 0.032490741 0.027400015 -0.035721831 0.042544737 0.027200757 -0.027410189 0.05159523 0.02119994 -0.032019015 0.047344562 0.02119517 -0.043983415 0.019650232 0.027200695 -0.043973342 0.019729044 0.021200057 -0.043264557 0.025366062 -0.01940692 0.01507817 0.020169849 -0.019788152 0.01562361 0.015327482 -0.019712454 0.014229218 0.010485262 0.021200297 -0.037765574 0.039785776 0.027400015 -0.035721831 0.042544737 0.02119994 -0.032019015 0.047344562 0.027201055 -0.037765533 0.039784636 0.027400015 -0.035721831 0.042544737 0.021200297 -0.037765574 0.039785776 0.027400015 -0.023298183 0.054305483 0.027247546 -0.010456866 0.059870433 0.025399921 -0.016654139 0.057325546 0.02240002 -0.01757822 0.056942977 0.027247546 -0.010456866 0.059870433 0.021200119 -0.009052814 0.060219765 0.025399921 -0.016654139 0.057325546 0.027247546 -0.010456866 0.059870433 0.02240002 -0.01757822 0.056942977 0.02240002 -0.01757822 0.056942977 0.021200119 -0.009052814 0.060219765 0.021200297 -0.024701843 0.053585425 0.027400015 -0.023298183 0.054305483 0.025399921 -0.016654139 0.057325546 0.02240002 -0.01757822 0.056942977 -0.019771758 -0.00075310539 0.032857433 -0.019410137 0.0010246101 0.032490741 -0.019767407 -0.0045788651 0.032198608 0.027400015 -0.023298183 0.054305483 0.02240002 -0.01757822 0.056942977 0.021200297 -0.024701843 0.053585425 0.027400011 -0.037115391 -0.006198402 0.027400011 -0.042969782 0.0084337862 0.027200455 -0.04194383 0.0037058243 0.027201055 0.0096395966 0.060084391 0.027399896 0.0034256272 0.060821738 0.027400013 0.018626308 0.056793679 0.027200814 0.035415139 0.043259799 0.027400013 0.018626308 0.056793679 0.027400011 0.037790876 0.039293993 0.027200814 0.028253969 0.050879225 0.027400013 0.018626308 0.056793679 0.027200814 0.035415139 0.043259799 0.027400011 0.037790876 0.039293993 0.027400013 0.018626308 0.056793679 0.027400011 -0.037115391 -0.006198402 0.027400129 -0.017361339 -0.023113785 0.027400011 -0.037115391 -0.006198402 0.02720093 -0.023640733 -0.020016672 0.027400011 0.037790876 0.039293993 0.027400011 -0.037115391 -0.006198402 0.027400129 -0.017361339 -0.023113785 0.02720093 -0.023640733 -0.020016672 0.027400011 -0.037115391 -0.006198402 0.0271964 -0.031867519 -0.013265639 0.027400011 0.037790876 0.039293993 0.027400129 -0.017361339 -0.023113785 0.027400011 0.04318013 0.024517998 0.027400007 -0.0020076889 -0.026646532 0.027400129 -0.017361339 -0.023113785 0.027200928 -0.0090669971 -0.025951279 0.027400011 0.04318013 0.024517998 0.027400129 -0.017361339 -0.023113785 0.027400007 -0.0020076889 -0.026646532 0.027200455 0.042313203 0.029224163 0.027400011 0.037790876 0.039293993 0.027400011 0.04318013 0.024517998 0.027400011 0.04318013 0.024517998 0.027400007 -0.0020076889 -0.026646532 0.027400009 0.041967899 0.0045710076 -0.026389964 0.022281837 -0.0051777745 -0.02640105 0.014619376 -0.010787224 -0.027399905 0.015857331 -0.0089385081 0.027400009 0.041967899 0.0045710076 0.027400007 -0.0020076889 -0.026646532 0.027399888 0.018510999 -0.022582404 0.027201166 0.035148423 -0.0093527194 0.027400009 0.041967899 0.0045710076 0.027399888 0.018510999 -0.022582404 0.027200928 0.038061462 -0.0049602468 0.027400009 0.041967899 0.0045710076 0.027201166 0.035148423 -0.0093527194 -0.02640105 0.014619376 -0.010787224 -0.026400931 0.006239925 -0.013764036 -0.027399905 0.015857331 -0.0089385081 -0.027399905 0.015857331 -0.0089385081 -0.026400931 0.006239925 -0.013764036 -0.027400024 -0.00084621354 -0.013380358 0.027399888 0.018510999 -0.022582404 0.027400007 -0.0020076889 -0.026646532 0.027200809 0.015571421 -0.024038689 0.027400015 -0.023298183 0.054305483 0.027200757 -0.027410189 0.05159523 0.027400015 -0.035721831 0.042544737 -0.026400931 0.006239925 -0.013764036 -0.026400931 -0.0026374473 -0.014282129 -0.027400024 -0.00084621354 -0.013380358 0.027400015 -0.023298183 0.054305483 0.027400015 -0.035721831 0.042544737 0.027400013 -0.042378906 0.028360533 0.027399896 0.0034256272 0.060821738 0.027400015 -0.023298183 0.054305483 0.027400013 0.018626308 0.056793679 0.027400011 -0.037115391 -0.006198402 0.027400015 -0.023298183 0.054305483 0.027400011 -0.042969782 0.0084337862 -0.026400931 -0.0026374473 -0.014282129 -0.026400872 -0.01130614 -0.012300627 -0.027400024 -0.00084621354 -0.013380358 -0.027400024 -0.00084621354 -0.013380358 -0.026400872 -0.01130614 -0.012300627 -0.027399905 -0.0094505977 -0.011897376 0.027400013 0.018626308 0.056793679 0.027400015 -0.023298183 0.054305483 0.027400011 -0.037115391 -0.006198402 0.027400011 -0.042969782 0.0084337862 0.027400015 -0.023298183 0.054305483 0.027400013 -0.042378906 0.028360533 -0.026400872 -0.01130614 -0.012300627 -0.026400693 -0.019075699 -0.0079776719 -0.027399905 -0.0094505977 -0.011897376 -0.027399905 -0.0094505977 -0.011897376 -0.026400693 -0.019075699 -0.0079776719 -0.027399905 -0.020822503 -0.0052078725 0.027247546 -0.010456866 0.059870433 0.027400015 -0.023298183 0.054305483 0.027399896 0.0034256272 0.060821738 0.027400013 -0.042378906 0.028360533 0.027400015 -0.035721831 0.042544737 0.027201055 -0.037765533 0.039784636 0.027201166 0.035148423 -0.0093527194 0.027399888 0.018510999 -0.022582404 0.02720057 0.029054679 -0.015926143 -0.026400693 -0.019075699 -0.0079776719 -0.026396399 -0.023904935 -0.0034374434 -0.027399905 -0.020822503 -0.0052078725 -0.027399905 -0.020822503 -0.0052078725 -0.026396399 -0.023904935 -0.0034374434 -0.027400022 -0.024593856 -0.0010251233 -0.026396399 -0.023904935 -0.0034374434 -0.026400929 -0.027674131 0.0020043687 -0.027400022 -0.024593856 -0.0010251233 0.027200935 -0.00076345593 0.061150495 0.027247546 -0.010456866 0.059870433 0.027399896 0.0034256272 0.060821738 0.027400011 -0.042969782 0.0084337862 0.027400013 -0.042378906 0.028360533 0.027200695 -0.043973342 0.019729044 -0.026400929 -0.027674131 0.0020043687 -0.026400929 -0.02953162 0.0060563129 -0.027400022 -0.024593856 -0.0010251233 -0.027400022 -0.024593856 -0.0010251233 -0.026400929 -0.02953162 0.0060563129 -0.027400022 -0.030101176 0.01196361 -0.026400929 -0.02953162 0.0060563129 -0.026401049 -0.031450555 0.014739443 -0.027400022 -0.030101176 0.01196361 0.027195506 0.044005625 0.018287646 0.027400011 0.04318013 0.024517998 0.027400009 0.041967899 0.0045710076 0.027200811 0.043398917 0.0098434119 0.027195506 0.044005625 0.018287646 0.027400009 0.041967899 0.0045710076 -0.027400022 -0.030101176 0.01196361 -0.026401049 -0.031450555 0.014739443 -0.027399901 -0.030333562 0.020691343 -0.026401049 -0.031450555 0.014739443 -0.026400927 -0.030868204 0.023612631 -0.027399901 -0.030333562 0.020691343 0.027200809 0.0014149911 -0.026867758 0.027200809 0.015571421 -0.024038689 0.027400007 -0.0020076889 -0.026646532 0.021200296 -0.043952819 0.014516602 0.027200695 -0.043973342 0.019729044 0.02119517 -0.043983415 0.019650232 0.027400011 -0.042969782 0.0084337862 0.027200695 -0.043973342 0.019729044 0.021200296 -0.043952819 0.014516602 -0.026400927 -0.030868204 0.023612631 -0.026400868 -0.027831433 0.031969752 -0.027399901 -0.030333562 0.020691343 0.021200413 -0.042283427 0.0048142448 0.027400011 -0.042969782 0.0084337862 0.021200296 -0.043952819 0.014516602 0.027200455 -0.04194383 0.0037058243 0.027400011 -0.042969782 0.0084337862 0.021200413 -0.042283427 0.0048142448 -0.027399901 -0.030333562 0.020691343 -0.026400868 -0.027831433 0.031969752 -0.027400021 -0.023539294 0.036586337 -0.026400868 -0.027831433 0.031969752 -0.026396457 -0.022614868 0.039112873 -0.027400021 -0.023539294 0.036586337 0.021200174 -0.040512912 -0.00013752349 0.027200455 -0.04194383 0.0037058243 0.021200413 -0.042283427 0.0048142448 0.021200413 -0.038164426 -0.0048432034 0.027200455 -0.04194383 0.0037058243 0.021200174 -0.040512912 -0.00013752349 0.027400011 -0.037115391 -0.006198402 0.027200455 -0.04194383 0.0037058243 0.021200413 -0.038164426 -0.0048432034 -0.026402958 0.011962841 0.0068719448 -0.02690006 0.010333104 0.0025002577 -0.027399905 0.0068534217 0.00069545809 -0.026404448 0.01372237 0.0093834698 -0.02690006 0.010333104 0.0025002577 -0.026402958 0.011962841 0.0068719448 -0.026404448 0.01372237 0.0093834698 -0.027399903 0.016513029 0.014293757 -0.02690006 0.010333104 0.0025002577 0.021200353 -0.035271812 -0.0092350673 0.027400011 -0.037115391 -0.006198402 0.021200413 -0.038164426 -0.0048432034 0.0271964 -0.031867519 -0.013265639 0.027400011 -0.037115391 -0.006198402 0.021200353 -0.035271812 -0.0092350673 -0.026398307 0.015695948 0.015893854 -0.027399903 0.016513029 0.014293757 -0.026404448 0.01372237 0.0093834698 0.021200411 -0.031876281 -0.013250653 0.0271964 -0.031867519 -0.013265639 0.021200353 -0.035271812 -0.0092350673 0.021200649 -0.028026342 -0.016832471 0.0271964 -0.031867519 -0.013265639 0.021200411 -0.031876281 -0.013250653 0.02720093 -0.023640733 -0.020016672 0.0271964 -0.031867519 -0.013265639 0.021200649 -0.028026342 -0.016832471 0.02120059 -0.023776457 -0.019929679 0.02720093 -0.023640733 -0.020016672 0.021200649 -0.028026342 -0.016832471 -0.026398307 0.015695948 0.015893854 -0.027399784 0.015215388 0.024141576 -0.027399903 0.016513029 0.014293757 -0.027399784 0.015215388 0.024141576 -0.026398307 0.015695948 0.015893854 -0.026408082 0.013900499 0.024556238 0.02120053 -0.01918781 -0.022498176 0.02720093 -0.023640733 -0.020016672 0.02120059 -0.023776457 -0.019929679 0.027400129 -0.017361339 -0.023113785 0.02720093 -0.023640733 -0.020016672 0.02120053 -0.01918781 -0.022498176 0.027200928 -0.0090669971 -0.025951279 0.027400129 -0.017361339 -0.023113785 0.02120053 -0.01918781 -0.022498176 0.021200528 -0.0092597036 -0.025910411 0.027200928 -0.0090669971 -0.025951279 0.02120053 -0.01918781 -0.022498176 0.021200648 -0.0040618251 -0.026705056 0.027200928 -0.0090669971 -0.025951279 0.021200528 -0.0092597036 -0.025910411 -0.027399784 0.0096618738 0.030816775 -0.027399784 0.015215388 0.024141576 -0.026408082 0.013900499 0.024556238 -0.027399784 0.0096618738 0.030816775 -0.026408082 0.013900499 0.024556238 -0.02639932 0.0092695076 0.029883068 0.027400007 -0.0020076889 -0.026646532 0.027200928 -0.0090669971 -0.025951279 0.021200648 -0.0040618251 -0.026705056 0.021200648 0.0011940133 -0.026874742 0.027400007 -0.0020076889 -0.026646532 0.021200648 -0.0040618251 -0.026705056 0.027200809 0.0014149911 -0.026867758 0.027400007 -0.0020076889 -0.026646532 0.021200648 0.0011940133 -0.026874742 -0.027399784 0.0096618738 0.030816775 -0.02639932 0.0092695076 0.029883068 -0.026409987 0.0016625768 0.032831542 0.021200528 0.0064325803 -0.026416183 0.027200809 0.0014149911 -0.026867758 0.021200648 0.0011940133 -0.026874742 0.021200648 0.011578674 -0.025336618 0.027200809 0.0014149911 -0.026867758 0.021200528 0.0064325803 -0.026416183 0.027200809 0.015571421 -0.024038689 0.027200809 0.0014149911 -0.026867758 0.021200648 0.011578674 -0.025336618 -0.027399901 -0.0061820983 0.034490794 -0.027399784 0.0096618738 0.030816775 -0.026409987 0.0016625768 0.032831542 -0.026398841 -0.0030764842 0.032595593 -0.027399901 -0.0061820983 0.034490794 -0.026409987 0.0016625768 0.032831542 0.021200409 0.016559355 -0.023651036 0.027200809 0.015571421 -0.024038689 0.021200648 0.011578674 -0.025336618 0.02120035 0.02130398 -0.021383336 0.027200809 0.015571421 -0.024038689 0.021200409 0.016559355 -0.023651036 -0.027400021 -0.010835929 0.030822026 -0.026398841 -0.0030764842 0.032595593 -0.026405577 -0.0078701526 0.030813059 -0.027400021 -0.010835929 0.030822026 -0.027399901 -0.0061820983 0.034490794 -0.026398841 -0.0030764842 0.032595593 0.027399888 0.018510999 -0.022582404 0.027200809 0.015571421 -0.024038689 0.02120035 0.02130398 -0.021383336 0.02120029 0.02574404 -0.018566534 0.027399888 0.018510999 -0.022582404 0.02120035 0.02130398 -0.021383336 0.02720057 0.029054679 -0.015926143 0.027399888 0.018510999 -0.022582404 0.02120029 0.02574404 -0.018566534 -0.027400021 -0.010835929 0.030822026 -0.026405577 -0.0078701526 0.030813059 -0.026402954 -0.011997939 0.027393701 0.021200171 0.029306313 -0.015688054 0.02720057 0.029054679 -0.015926143 0.02120029 0.02574404 -0.018566534 0.021199932 0.031983752 -0.01307884 0.02720057 0.029054679 -0.015926143 0.021200171 0.029306313 -0.015688054 -0.018399902 0.028075954 0.00074393203 -0.018399842 0.017330995 -0.010378338 -0.019400544 0.019396162 -0.0077040871 0.027201166 0.035148423 -0.0093527194 0.02720057 0.029054679 -0.015926143 0.021199932 0.031983752 -0.01307884 0.02120029 0.034815881 -0.0097869597 0.027201166 0.035148423 -0.0093527194 0.021199932 0.031983752 -0.01307884 0.027200928 0.038061462 -0.0049602468 0.027201166 0.035148423 -0.0093527194 0.02120029 0.034815881 -0.0097869597 0.02120029 0.037730373 -0.0055205799 0.027200928 0.038061462 -0.0049602468 0.02120029 0.034815881 -0.0097869597 -0.019400544 0.019396162 -0.0077040871 -0.018399842 0.017330995 -0.010378338 -0.019400485 0.0074854763 -0.013485419 -0.018399842 0.017330995 -0.010378338 -0.018399842 0.0090484014 -0.014102795 -0.019400485 0.0074854763 -0.013485419 0.021200232 0.041966569 0.003887871 0.027200928 0.038061462 -0.0049602468 0.02120029 0.037730373 -0.0055205799 0.027400009 0.041967899 0.0045710076 0.027200928 0.038061462 -0.0049602468 0.021200232 0.041966569 0.003887871 0.021200173 0.043229502 0.0088993441 0.027400009 0.041967899 0.0045710076 0.021200232 0.041966569 0.003887871 -0.018399842 0.0090484014 -0.014102795 -0.018399961 -0.0044833943 -0.015084051 -0.019400485 0.0074854763 -0.013485419 -0.019400485 0.0074854763 -0.013485419 -0.018399961 -0.0044833943 -0.015084051 -0.019400604 -0.001334076 -0.014363839 0.027200811 0.043398917 0.0098434119 0.027400009 0.041967899 0.0045710076 0.021200173 0.043229502 0.0088993441 0.021195166 0.043948319 0.014615257 0.027200811 0.043398917 0.0098434119 0.021200173 0.043229502 0.0088993441 0.027195506 0.044005625 0.018287646 0.027200811 0.043398917 0.0098434119 0.021195166 0.043948319 0.014615257 -0.019400604 -0.001334076 -0.014363839 -0.018399961 -0.0044833943 -0.015084051 -0.019400366 -0.010049444 -0.01275245 -0.018399961 -0.0044833943 -0.015084051 -0.018399902 -0.020923167 -0.0077833054 -0.019400366 -0.010049444 -0.01275245 0.021200232 0.043885022 0.020406313 0.027195506 0.044005625 0.018287646 0.021195166 0.043948319 0.014615257 0.027400011 0.04318013 0.024517998 0.027195506 0.044005625 0.018287646 0.021200232 0.043885022 0.020406313 -0.019400366 -0.010049444 -0.01275245 -0.018399902 -0.020923167 -0.0077833054 -0.019400485 -0.021436093 -0.0059974366 0.021599168 0.043175604 0.025644289 0.027400011 0.04318013 0.024517998 0.021200232 0.043885022 0.020406313 0.027200455 0.042313203 0.029224163 0.027400011 0.04318013 0.024517998 0.021599168 0.043175604 0.025644289 0.021599108 0.04185902 0.03071402 0.027200455 0.042313203 0.029224163 0.021599168 0.043175604 0.025644289 -0.019400485 -0.021436093 -0.0059974366 -0.018399902 -0.020923167 -0.0077833054 -0.019400364 -0.024829825 -0.0023362115 -0.018399902 -0.020923167 -0.0077833054 -0.0183999 -0.029269954 0.0029143472 -0.019400364 -0.024829825 -0.0023362115 0.02159893 0.039949592 0.03559158 0.027200455 0.042313203 0.029224163 0.021599108 0.04185902 0.03071402 0.027400011 0.037790876 0.039293993 0.027200455 0.042313203 0.029224163 0.02159893 0.039949592 0.03559158 -0.019400364 -0.024829825 -0.0023362115 -0.0183999 -0.029269954 0.0029143472 -0.019400364 -0.029460428 0.0058690258 -0.0183999 -0.029269954 0.0029143472 -0.018399781 -0.032060862 0.011557601 -0.019400364 -0.029460428 0.0058690258 0.021599049 0.037474066 0.040207993 0.027400011 0.037790876 0.039293993 0.02159893 0.039949592 0.03559158 0.027200814 0.035415139 0.043259799 0.027400011 0.037790876 0.039293993 0.021599049 0.037474066 0.040207993 -0.019400364 -0.029460428 0.0058690258 -0.018399781 -0.032060862 0.011557601 -0.019400125 -0.031432424 0.014510222 0.021598931 0.034468606 0.04449727 0.027200814 0.035415139 0.043259799 0.021599049 0.037474066 0.040207993 0.021200415 0.030919712 0.048453949 0.027200814 0.035415139 0.043259799 0.021598931 0.034468606 0.04449727 -0.018399781 -0.032060862 0.011557601 -0.018399898 -0.031547468 0.025115399 -0.019400125 -0.031432424 0.014510222 -0.019400125 -0.031432424 0.014510222 -0.018399898 -0.031547468 0.025115399 -0.019400004 -0.030920561 0.023359226 0.027200814 0.028253969 0.050879225 0.027200814 0.035415139 0.043259799 0.021200415 0.030919712 0.048453949 0.021599051 0.027041426 0.051858548 0.027200814 0.028253969 0.050879225 0.021200415 0.030919712 0.048453949 -0.018399898 -0.031547468 0.025115399 -0.018399779 -0.028110914 0.033521511 -0.019400004 -0.030920561 0.023359226 -0.019400004 -0.030920561 0.023359226 -0.018399779 -0.028110914 0.033521511 -0.019399885 -0.027965249 0.031715661 0.021200534 0.019153327 0.05676356 0.027200814 0.028253969 0.050879225 0.021599051 0.027041426 0.051858548 0.027400013 0.018626308 0.056793679 0.027200814 0.028253969 0.050879225 0.021200534 0.019153327 0.05676356 -0.018399779 -0.028110914 0.033521511 -0.018400077 -0.024952384 0.038057316 -0.019399885 -0.027965249 0.031715661 -0.019399885 -0.027965249 0.031715661 -0.018400077 -0.024952384 0.038057316 -0.019399647 -0.023068711 0.038623817 0.021200536 0.014291153 0.05876679 0.027400013 0.018626308 0.056793679 0.021200534 0.019153327 0.05676356 -0.026389964 0.022281837 -0.0051777745 -0.019400544 0.019396162 -0.0077040871 -0.02640105 0.014619376 -0.010787224 0.027201055 0.0096395966 0.060084391 0.027400013 0.018626308 0.056793679 0.021200536 0.014291153 0.05876679 0.021200595 0.0092249783 0.060175702 0.027201055 0.0096395966 0.060084391 0.021200536 0.014291153 0.05876679 -0.019400544 0.019396162 -0.0077040871 -0.019400485 0.0074854763 -0.013485419 -0.02640105 0.014619376 -0.010787224 -0.02640105 0.014619376 -0.010787224 -0.019400485 0.0074854763 -0.013485419 -0.026400931 0.006239925 -0.013764036 0.021200297 0.0040272051 0.060970474 0.027201055 0.0096395966 0.060084391 0.021200595 0.0092249783 0.060175702 0.027399896 0.0034256272 0.060821738 0.027201055 0.0096395966 0.060084391 0.021200297 0.0040272051 0.060970474 0.027200935 -0.00076345593 0.061150495 0.027399896 0.0034256272 0.060821738 0.021200297 0.0040272051 0.060970474 -0.026400931 0.006239925 -0.013764036 -0.019400485 0.0074854763 -0.013485419 -0.026400931 -0.0026374473 -0.014282129 -0.019400485 0.0074854763 -0.013485419 -0.019400604 -0.001334076 -0.014363839 -0.026400931 -0.0026374473 -0.014282129 0.021200417 -0.0012281593 0.061140209 0.027200935 -0.00076345593 0.061150495 0.021200297 0.0040272051 0.060970474 0.021200119 -0.009052814 0.060219765 0.027200935 -0.00076345593 0.061150495 0.021200417 -0.0012281593 0.061140209 -0.026400931 -0.0026374473 -0.014282129 -0.019400604 -0.001334076 -0.014363839 -0.026400872 -0.01130614 -0.012300627 -0.019400604 -0.001334076 -0.014363839 -0.019400366 -0.010049444 -0.01275245 -0.026400872 -0.01130614 -0.012300627 0.027247546 -0.010456866 0.059870433 0.027200935 -0.00076345593 0.061150495 0.021200119 -0.009052814 0.060219765 0.021200411 0.040124573 -0.00094143604 0.021200232 0.041966569 0.003887871 0.02120029 0.037730373 -0.0055205799 -0.026400872 -0.01130614 -0.012300627 -0.019400366 -0.010049444 -0.01275245 -0.026400693 -0.019075699 -0.0079776719 -0.019400366 -0.010049444 -0.01275245 -0.019400485 -0.021436093 -0.0059974366 -0.026400693 -0.019075699 -0.0079776719 0.021200769 -0.01432572 -0.024501171 0.021200528 -0.0092597036 -0.025910411 0.02120053 -0.01918781 -0.022498176 0.021200296 -0.043952819 0.014516602 0.021200415 -0.043450553 0.0099419421 0.021200413 -0.042283427 0.0048142448 -0.027399305 -0.024657656 0.020390518 -0.017899636 -0.023275774 0.019340379 -0.017899755 -0.025620926 0.019864891 -0.026400693 -0.019075699 -0.0079776719 -0.019400485 -0.021436093 -0.0059974366 -0.026396399 -0.023904935 -0.0034374434 -0.019400485 -0.021436093 -0.0059974366 -0.019400364 -0.024829825 -0.0023362115 -0.026396399 -0.023904935 -0.0034374434 -0.026396399 -0.023904935 -0.0034374434 -0.019400364 -0.024829825 -0.0023362115 -0.026400929 -0.027674131 0.0020043687 -0.027399305 -0.024657656 0.020390518 -0.02693129 -0.022571715 0.018486205 -0.017899636 -0.023275774 0.019340379 -0.02693129 -0.022571715 0.018486205 -0.017899698 -0.022200475 0.017170813 -0.017899636 -0.023275774 0.019340379 -0.026400929 -0.027674131 0.0020043687 -0.019400364 -0.029460428 0.0058690258 -0.026400929 -0.02953162 0.0060563129 -0.019400364 -0.024829825 -0.0023362115 -0.019400364 -0.029460428 0.0058690258 -0.026400929 -0.027674131 0.0020043687 -0.02693129 -0.022571715 0.018486205 -0.027399307 -0.021946115 0.015996119 -0.017899698 -0.022200475 0.017170813 -0.026400929 -0.02953162 0.0060563129 -0.019400364 -0.029460428 0.0058690258 -0.026401049 -0.031450555 0.014739443 -0.019400364 -0.029460428 0.0058690258 -0.019400125 -0.031432424 0.014510222 -0.026401049 -0.031450555 0.014739443 -0.027399305 -0.02808864 0.018281817 -0.017899755 -0.025620926 0.019864891 -0.017899755 -0.027736343 0.017820263 -0.027399305 -0.02808864 0.018281817 -0.027399305 -0.024657656 0.020390518 -0.017899755 -0.025620926 0.019864891 -0.026401049 -0.031450555 0.014739443 -0.019400125 -0.031432424 0.014510222 -0.026400927 -0.030868204 0.023612631 -0.019400125 -0.031432424 0.014510222 -0.019400004 -0.030920561 0.023359226 -0.026400927 -0.030868204 0.023612631 -0.027399307 -0.021946115 0.015996119 -0.017899817 -0.023587069 0.014741172 -0.017899698 -0.022200475 0.017170813 -0.026400927 -0.030868204 0.023612631 -0.019400004 -0.030920561 0.023359226 -0.026400868 -0.027831433 0.031969752 -0.027399307 -0.021946115 0.015996119 -0.027399426 -0.023876142 0.01406718 -0.017899817 -0.023587069 0.014741172 -0.027399305 0.00034823359 0.045384172 -0.017899755 0.0027428227 0.042653237 -0.017899815 2.9826373e-05 0.044924218 -0.019400004 -0.030920561 0.023359226 -0.019399885 -0.027965249 0.031715661 -0.026400868 -0.027831433 0.031969752 -0.027399305 0.00034823359 0.045384172 -0.02693129 0.0024343131 0.04348008 -0.017899755 0.0027428227 0.042653237 -0.026400868 -0.027831433 0.031969752 -0.019399885 -0.027965249 0.031715661 -0.026396457 -0.022614868 0.039112873 -0.019399885 -0.027965249 0.031715661 -0.019399647 -0.023068711 0.038623817 -0.026396457 -0.022614868 0.039112873 -0.02693129 0.0024343131 0.04348008 -0.027399544 0.0030596475 0.040989749 -0.017899755 0.0027428227 0.042653237 -0.027399544 -0.0030825182 0.043275554 -0.027399305 0.00034823359 0.045384172 -0.017899815 2.9826373e-05 0.044924218 -0.01979411 -0.008486988 0.030407254 -0.01971871 -0.012986727 0.026028557 -0.026402954 -0.011997939 0.027393701 -0.027399544 0.0030596475 0.040989749 -0.017899875 0.000979712 0.039510828 -0.017899755 0.0027428227 0.042653237 -0.01979411 -0.008486988 0.030407254 -0.026402954 -0.011997939 0.027393701 -0.026405577 -0.0078701526 0.030813059 -0.027399544 0.0030596475 0.040989749 -0.027399305 0.001130106 0.03906079 -0.017899875 0.000979712 0.039510828 -0.027399426 0.025342098 0.020378303 -0.017899876 0.027272297 0.018729025 -0.017899757 0.02550406 0.019880326 -0.027399426 0.025342098 0.020378303 -0.026929444 0.027736574 0.017582916 -0.017899876 0.027272297 0.018729025 -0.019767407 -0.0045788651 0.032198608 -0.01979411 -0.008486988 0.030407254 -0.026405577 -0.0078701526 0.030813059 -0.027399426 0.02191104 0.018269505 -0.027399426 0.025342098 0.020378303 -0.017899876 0.023197345 0.019305449 -0.019767407 -0.0045788651 0.032198608 -0.026405577 -0.0078701526 0.030813059 -0.026398841 -0.0030764842 0.032595593 -0.026929444 0.027736574 0.017582916 -0.017899757 0.027146451 0.015362598 -0.017899876 0.027272297 0.018729025 -0.019771758 -0.00075310539 0.032857433 -0.019767407 -0.0045788651 0.032198608 -0.026398841 -0.0030764842 0.032595593 -0.027399426 0.025342098 0.020378303 -0.017899757 0.02550406 0.019880326 -0.017899876 0.023197345 0.019305449 -0.026929444 0.027736574 0.017582916 -0.027399428 0.026123632 0.014054815 -0.017899757 0.027146451 0.015362598 -0.019771758 -0.00075310539 0.032857433 -0.026398841 -0.0030764842 0.032595593 -0.026409987 0.0016625768 0.032831542 -0.026931413 0.0013246553 -0.005422256 -0.017899759 0.002732642 -0.007422707 -0.017899759 9.4923971e-06 -0.0050504678 -0.019756977 0.0037962289 0.032404728 -0.019771758 -0.00075310539 0.032857433 -0.026409987 0.0016625768 0.032831542 -0.026931413 0.0013246553 -0.005422256 -0.027399428 0.0030445429 -0.0090148281 -0.017899759 0.002732642 -0.007422707 -0.027399309 -0.0030949663 -0.0067241779 -0.027399309 0.00033595393 -0.0046157087 -0.017899759 9.4923971e-06 -0.0050504678 -0.027399428 0.0030445429 -0.0090148281 -0.017899759 0.00096734799 -0.010488967 -0.017899759 0.002732642 -0.007422707 -0.019756977 0.0037962289 0.032404728 -0.026409987 0.0016625768 0.032831542 -0.02639932 0.0092695076 0.029883068 -0.027399428 0.0030445429 -0.0090148281 -0.027399369 -0.00038337326 -0.011118694 -0.017899759 0.00096734799 -0.010488967 -0.027399309 0.00033595393 -0.0046157087 -0.026931413 0.0013246553 -0.005422256 -0.017899759 9.4923971e-06 -0.0050504678 -0.019703751 0.0094463192 0.029696196 -0.019756977 0.0037962289 0.032404728 -0.02639932 0.0092695076 0.029883068 0.021200297 -0.034851514 0.044052228 0.02119994 -0.032019015 0.047344562 -0.016592326 -0.032539535 0.046765566 -0.016747655 -0.03722357 0.040583473 0.021200297 -0.034851514 0.044052228 -0.016592326 -0.032539535 0.046765566 -0.019703751 0.0094463192 0.029696196 -0.02639932 0.0092695076 0.029883068 -0.026408082 0.013900499 0.024556238 -0.01975817 0.013061562 0.025893008 -0.019703751 0.0094463192 0.029696196 -0.026408082 0.013900499 0.024556238 0.021200297 -0.037765574 0.039785776 0.021200297 -0.034851514 0.044052228 -0.016747655 -0.03722357 0.040583473 0.021200297 -0.040159941 0.035206567 0.021200297 -0.037765574 0.039785776 -0.016747655 -0.03722357 0.040583473 -0.016860072 -0.041367985 0.032080684 0.021200297 -0.040159941 0.035206567 -0.016747655 -0.03722357 0.040583473 0.021200176 -0.042001389 0.030377429 0.021200297 -0.040159941 0.035206567 -0.016860072 -0.041367985 0.032080684 -0.016752604 -0.042270057 0.029358305 0.021200176 -0.042001389 0.030377429 -0.016860072 -0.041367985 0.032080684 0.021200057 -0.043264557 0.025366062 0.021200176 -0.042001389 0.030377429 -0.016752604 -0.042270057 0.029358305 -0.01940692 0.01507817 0.020169849 -0.01975817 0.013061562 0.025893008 -0.026408082 0.013900499 0.024556238 -0.01940692 0.01507817 0.020169849 -0.026408082 0.013900499 0.024556238 -0.026398307 0.015695948 0.015893854 -0.016733769 -0.04371107 0.022196691 0.021200057 -0.043264557 0.025366062 -0.016752604 -0.042270057 0.029358305 -0.019788152 0.01562361 0.015327482 -0.01940692 0.01507817 0.020169849 -0.026398307 0.015695948 0.015893854 0.02119517 -0.043983415 0.019650232 0.021200057 -0.043264557 0.025366062 -0.016733769 -0.04371107 0.022196691 -0.016694549 -0.044005465 0.016364926 0.02119517 -0.043983415 0.019650232 -0.016733769 -0.04371107 0.022196691 0.021200296 -0.043952819 0.014516602 0.02119517 -0.043983415 0.019650232 -0.016694549 -0.044005465 0.016364926 0.021200415 -0.043450553 0.0099419421 0.021200296 -0.043952819 0.014516602 -0.016694549 -0.044005465 0.016364926 -0.019712454 0.014229218 0.010485262 -0.019788152 0.01562361 0.015327482 -0.026398307 0.015695948 0.015893854 -0.019712454 0.014229218 0.010485262 -0.026398307 0.015695948 0.015893854 -0.026404448 0.01372237 0.0093834698 -0.016630774 -0.043255128 0.009018912 0.021200415 -0.043450553 0.0099419421 -0.016694549 -0.044005465 0.016364926 0.021200413 -0.042283427 0.0048142448 0.021200415 -0.043450553 0.0099419421 -0.016630774 -0.043255128 0.009018912 -0.016789978 -0.040967807 0.0011112775 0.021200413 -0.042283427 0.0048142448 -0.016630774 -0.043255128 0.009018912 0.021200174 -0.040512912 -0.00013752349 0.021200413 -0.042283427 0.0048142448 -0.016789978 -0.040967807 0.0011112775 0.021200413 -0.038164426 -0.0048432034 0.021200174 -0.040512912 -0.00013752349 -0.016664153 -0.038956899 -0.003335305 -0.016664153 -0.038956899 -0.003335305 0.021200174 -0.040512912 -0.00013752349 -0.016789978 -0.040967807 0.0011112775 -0.019417711 0.011000743 0.0063130213 -0.019712454 0.014229218 0.010485262 -0.026404448 0.01372237 0.0093834698 -0.019417711 0.011000743 0.0063130213 -0.026404448 0.01372237 0.0093834698 -0.026402958 0.011962841 0.0068719448 -0.016859895 -0.035309974 -0.0090922713 0.021200413 -0.038164426 -0.0048432034 -0.016664153 -0.038956899 -0.003335305 0.021199932 0.031983752 -0.01307884 0.021200171 0.029306313 -0.015688054 -0.016592393 0.03250448 -0.012499942 -0.016592393 0.03250448 -0.012499942 0.021200171 0.029306313 -0.015688054 -0.016644368 0.026747752 -0.01778028 0.021200353 -0.035271812 -0.0092350673 0.021200413 -0.038164426 -0.0048432034 -0.016859895 -0.035309974 -0.0090922713 0.021200171 0.029306313 -0.015688054 0.02120029 0.02574404 -0.018566534 -0.016644368 0.026747752 -0.01778028 -0.016588219 -0.032968882 -0.012048381 0.021200353 -0.035271812 -0.0092350673 -0.016859895 -0.035309974 -0.0090922713 -0.016644368 0.026747752 -0.01778028 0.02120029 0.02574404 -0.018566534 -0.016734252 0.019823849 -0.022123316 0.02120029 0.02574404 -0.018566534 0.02120035 0.02130398 -0.021383336 -0.016734252 0.019823849 -0.022123316 0.021200411 -0.031876281 -0.013250653 0.021200353 -0.035271812 -0.0092350673 -0.016588219 -0.032968882 -0.012048381 -0.016613133 -0.030314604 -0.014770105 0.021200411 -0.031876281 -0.013250653 -0.016588219 -0.032968882 -0.012048381 0.02120035 0.02130398 -0.021383336 0.021200409 0.016559355 -0.023651036 -0.016734252 0.019823849 -0.022123316 -0.016734252 0.019823849 -0.022123316 0.021200409 0.016559355 -0.023651036 -0.016613493 0.012455301 -0.025058843 0.021200649 -0.028026342 -0.016832471 0.021200411 -0.031876281 -0.013250653 -0.016613133 -0.030314604 -0.014770105 0.021200409 0.016559355 -0.023651036 0.021200648 0.011578674 -0.025336618 -0.016613493 0.012455301 -0.025058843 -0.016734011 -0.024086649 -0.019683344 0.021200649 -0.028026342 -0.016832471 -0.016613133 -0.030314604 -0.014770105 -0.016613493 0.012455301 -0.025058843 0.021200528 0.0064325803 -0.026416183 -0.016860018 0.0050359797 -0.026545316 0.021200648 0.011578674 -0.025336618 0.021200528 0.0064325803 -0.026416183 -0.016613493 0.012455301 -0.025058843 0.02120059 -0.023776457 -0.019929679 0.021200649 -0.028026342 -0.016832471 -0.016734011 -0.024086649 -0.019683344 0.021200528 0.0064325803 -0.026416183 0.021200648 0.0011940133 -0.026874742 -0.016860018 0.0050359797 -0.026545316 0.02120053 -0.01918781 -0.022498176 0.02120059 -0.023776457 -0.019929679 -0.016734011 -0.024086649 -0.019683344 -0.016860018 0.0050359797 -0.026545316 0.021200648 0.0011940133 -0.026874742 -0.016761312 -0.00045400622 -0.026843077 -0.016761312 -0.00045400622 -0.026843077 0.021200648 -0.0040618251 -0.026705056 -0.016664157 -0.0056979242 -0.02649013 0.021200648 0.0011940133 -0.026874742 0.021200648 -0.0040618251 -0.026705056 -0.016761312 -0.00045400622 -0.026843077 -0.016644724 -0.016866023 -0.023505175 0.02120053 -0.01918781 -0.022498176 -0.016734011 -0.024086649 -0.019683344 0.021200769 -0.01432572 -0.024501171 0.02120053 -0.01918781 -0.022498176 -0.016644724 -0.016866023 -0.023505175 0.021200648 -0.0040618251 -0.026705056 0.021200528 -0.0092597036 -0.025910411 -0.016664157 -0.0056979242 -0.02649013 -0.016664157 -0.0056979242 -0.02649013 0.021200528 -0.0092597036 -0.025910411 -0.016716251 -0.012054238 -0.025177075 -0.016716251 -0.012054238 -0.025177075 0.021200769 -0.01432572 -0.024501171 -0.016644724 -0.016866023 -0.023505175 0.021200528 -0.0092597036 -0.025910411 0.021200769 -0.01432572 -0.024501171 -0.016716251 -0.012054238 -0.025177075 + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942

+
+
+
+
+ + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + + + + + + + + + + + + + +
diff --git a/external/rlbench/urdfs/panda/meshes/Pandalink7visual_vis_4.dae b/external/rlbench/urdfs/panda/meshes/Pandalink7visual_vis_4.dae new file mode 100644 index 0000000000000000000000000000000000000000..b01f741ebd97dbc7edceaaf2cbdf4e2079e5a7af --- /dev/null +++ b/external/rlbench/urdfs/panda/meshes/Pandalink7visual_vis_4.dae @@ -0,0 +1,84 @@ + + + + + Assimp + Assimp Exporter + + 2023-09-26T11:24:21 + 2023-09-26T11:24:21 + + Y_UP + + + + + + + + 0 0 0 4.5895327e-41 + + + 0.40000001 0.40000001 0.40000001 4.5893926e-41 + + + 0.40000001 0.40000001 0.40000001 4.5893926e-41 + + + 0.25 0.25 0.25 -3.0261091e+37 + + + + + + + + + + + + + + + + 0.011863878 0.010263721 -0.043402795 0.014383664 0.0087738466 -0.038168777 0.012375583 0.0010213791 -0.045183286 0.011618486 0.0082874792 -0.045293082 0.011863878 0.010263721 -0.043402795 0.012375583 0.0010213791 -0.045183286 0.014411798 -0.0089342287 -0.03805013 0.012114336 -0.0080024395 -0.045093764 0.012375583 0.0010213791 -0.045183286 0.014411798 -0.0089342287 -0.03805013 0.012375583 0.0010213791 -0.045183286 0.014383664 0.0087738466 -0.038168777 0.01121848 0.0084275994 -0.034487836 0.011053553 -0.010582197 -0.035110142 0.011648169 -0.0090712216 -0.035447411 0.012114336 -0.0080024395 -0.045093764 0.014411798 -0.0089342287 -0.03805013 0.01343744 -0.010329982 -0.038254097 0.01343744 -0.010329982 -0.038254097 0.014411798 -0.0089342287 -0.03805013 0.0138325 -0.0091333929 -0.036946971 0.013527981 0.0098161893 -0.037283741 0.0138325 -0.0091333929 -0.036946971 0.014411798 -0.0089342287 -0.03805013 0.013527981 0.0098161893 -0.037283741 0.014411798 -0.0089342287 -0.03805013 0.014383664 0.0087738466 -0.038168777 0.014383664 0.0087738466 -0.038168777 0.011863878 0.010263721 -0.043402795 0.013527981 0.0098161893 -0.037283741 0.011460294 -0.0096152732 -0.044800114 0.0087053673 -0.0017922424 -0.045239557 0.012114336 -0.0080024395 -0.045093764 0.012114336 -0.0080024395 -0.045093764 0.0087053673 -0.0017922424 -0.045239557 0.012375583 0.0010213791 -0.045183286 0.012375583 0.0010213791 -0.045183286 0.0087053673 -0.0017922424 -0.045239557 0.011618486 0.0082874792 -0.045293082 0.012114336 -0.0080024395 -0.045093764 0.01343744 -0.010329982 -0.038254097 0.011460294 -0.0096152732 -0.044800114 0.01121848 0.0084275994 -0.034487836 0.011648169 -0.0090712216 -0.035447411 0.011455766 0.0084844148 -0.036131863 0.010282567 -0.011872431 -0.037282873 0.0080171125 -0.010580576 -0.045022409 0.011053553 -0.010582197 -0.035110142 0.0080171125 -0.010580576 -0.045022409 0.01343744 -0.010329982 -0.038254097 0.011053553 -0.010582197 -0.035110142 0.0138325 -0.0091333929 -0.036946971 0.011648169 -0.0090712216 -0.035447411 0.01343744 -0.010329982 -0.038254097 0.01343744 -0.010329982 -0.038254097 0.011648169 -0.0090712216 -0.035447411 0.011053553 -0.010582197 -0.035110142 0.010874025 0.011205099 -0.03579412 0.011084965 0.01032088 -0.037360318 0.0082413461 0.010829426 -0.044713996 0.013527981 0.0098161893 -0.037283741 0.011455766 0.0084844148 -0.036131863 0.011279156 -0.001654292 -0.036714409 0.013527981 0.0098161893 -0.037283741 0.011279156 -0.001654292 -0.036714409 0.0138325 -0.0091333929 -0.036946971 0.011084965 0.01032088 -0.037360318 0.010874025 0.011205099 -0.03579412 0.011455766 0.0084844148 -0.036131863 0.0138325 -0.0091333929 -0.036946971 0.011279156 -0.001654292 -0.036714409 0.011648169 -0.0090712216 -0.035447411 0.011863878 0.010263721 -0.043402795 0.011084965 0.01032088 -0.037360318 0.013527981 0.0098161893 -0.037283741 0.013527981 0.0098161893 -0.037283741 0.011084965 0.01032088 -0.037360318 0.011455766 0.0084844148 -0.036131863 0.011863878 0.010263721 -0.043402795 0.0094832685 0.010340937 -0.042666286 0.011084965 0.01032088 -0.037360318 0.011618486 0.0082874792 -0.045293082 0.0082413461 0.010829426 -0.044713996 0.0094832685 0.010340937 -0.042666286 0.011618486 0.0082874792 -0.045293082 0.0094832685 0.010340937 -0.042666286 0.011863878 0.010263721 -0.043402795 0.011455766 0.0084844148 -0.036131863 0.010874025 0.011205099 -0.03579412 0.01121848 0.0084275994 -0.034487836 0.011460294 -0.0096152732 -0.044800114 0.0088838236 -0.0085680224 -0.044646107 0.0087053673 -0.0017922424 -0.045239557 0.011618486 0.0082874792 -0.045293082 0.0087053673 -0.0017922424 -0.045239557 0.0082413461 0.010829426 -0.044713996 0.011460294 -0.0096152732 -0.044800114 0.0080171125 -0.010580576 -0.045022409 0.0088838236 -0.0085680224 -0.044646107 0.01343744 -0.010329982 -0.038254097 0.0080171125 -0.010580576 -0.045022409 0.011460294 -0.0096152732 -0.044800114 0.0082413461 0.010829426 -0.044713996 0.011084965 0.01032088 -0.037360318 0.0094832685 0.010340937 -0.042666286 0.0082413461 0.010829426 -0.044713996 0.0087053673 -0.0017922424 -0.045239557 0.0078647034 0.0068006343 -0.046052482 0.0078647034 0.0068006343 -0.046052482 0.0087053673 -0.0017922424 -0.045239557 0.0078647034 -0.0068673673 -0.046049006 0.011455766 0.0084844148 -0.036131863 0.011648169 -0.0090712216 -0.035447411 0.011279156 -0.001654292 -0.036714409 0.0087053673 -0.0017922424 -0.045239557 0.0088838236 -0.0085680224 -0.044646107 0.0078647034 -0.0068673673 -0.046049006 0.0078647034 -0.0068673673 -0.046049006 0.0088838236 -0.0085680224 -0.044646107 0.0080171125 -0.010580576 -0.045022409 + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119

+
+
+
+
+ + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + + + + + + + + + + + + + +
diff --git a/external/rlbench/urdfs/panda/meshes/Pandalink7visual_vis_5.dae b/external/rlbench/urdfs/panda/meshes/Pandalink7visual_vis_5.dae new file mode 100644 index 0000000000000000000000000000000000000000..f5bf39e1ca8eedffa51c92e231bb68d2f157f553 --- /dev/null +++ b/external/rlbench/urdfs/panda/meshes/Pandalink7visual_vis_5.dae @@ -0,0 +1,84 @@ + + + + + Assimp + Assimp Exporter + + 2023-09-26T11:24:21 + 2023-09-26T11:24:21 + + Y_UP + + + + + + + + 0 0 0 4.5895327e-41 + + + 0.40000001 0.40000001 0.40000001 4.5893926e-41 + + + 0.40000001 0.40000001 0.40000001 4.5893926e-41 + + + 0.25 0.25 0.25 3.6295857e-33 + + + + + + + + + + + + + + + + 0.0081389379 -0.031494275 -0.038382947 0.0074060983 -0.031287115 -0.040853638 0.0035092635 -0.030439334 -0.053517386 -0.014297263 -0.032203898 -0.032363202 -0.014318482 -0.032091621 -0.032346912 -0.014989334 -0.030684907 -0.045027286 -0.014989334 -0.030684907 -0.045027286 -0.014422675 -0.030470848 -0.051883277 -0.014297263 -0.032203898 -0.032363202 -0.013107499 -0.032661282 -0.054057188 -0.014422675 -0.030470848 -0.051883277 -0.012110074 -0.030406808 -0.055870682 0.0046875305 -0.032632072 -0.03854885 -0.0017749241 -0.031894989 -0.039140832 0.0020974679 -0.032715447 -0.050189007 -0.013107499 -0.032661282 -0.054057188 -0.0077151265 -0.031640425 -0.056749146 -0.0037790148 -0.032704901 -0.056124981 -0.013107499 -0.032661282 -0.054057188 -0.012110074 -0.030406808 -0.055870682 -0.0077151265 -0.031640425 -0.056749146 0.00059817173 -0.032724828 -0.055009905 -0.0037790148 -0.032704901 -0.056124981 -0.0012582742 -0.03038164 -0.05663044 0.0012953118 -0.032051008 -0.035845973 -0.0049986406 -0.031930726 -0.035602093 -0.0017749241 -0.031894989 -0.039140832 -0.0049986406 -0.031930726 -0.035602093 -0.0092283059 -0.032364108 -0.036547672 -0.0057495413 -0.032024436 -0.043079481 -0.0057495413 -0.032024436 -0.043079481 -0.013107499 -0.032661282 -0.054057188 -0.0037790148 -0.032704901 -0.056124981 -0.014989332 -0.031588737 -0.034619603 0.0063852519 -0.032626133 -0.027944356 0.0087343296 -0.032066278 -0.031257197 0.008164865 -0.030866824 -0.042488441 0.0035092635 -0.030439334 -0.053517386 -0.0012582742 -0.03038164 -0.05663044 0.0063852519 -0.032626133 -0.027944356 -0.014989332 -0.031588737 -0.034619603 0.0020533057 -0.033069462 -0.026544085 0.008164865 -0.030866824 -0.042488441 -0.0073984466 -0.030404307 -0.056948472 -0.014989334 -0.030684907 -0.045027286 -0.0057495413 -0.032024436 -0.043079481 -0.011452218 -0.032668754 -0.051097035 -0.013107499 -0.032661282 -0.054057188 0.008164865 -0.030866824 -0.042488441 -0.0012582742 -0.03038164 -0.05663044 -0.0073984466 -0.030404307 -0.056948472 0.0020533057 -0.033069462 -0.026544085 -0.014989332 -0.031588737 -0.034619603 -0.0050665285 -0.032923933 -0.026437499 0.008164865 -0.030866824 -0.042488441 0.0081389379 -0.031494275 -0.038382947 0.0035092635 -0.030439334 -0.053517386 -0.014989334 -0.030684907 -0.045027286 -0.014318482 -0.032091621 -0.032346912 -0.014989332 -0.031588737 -0.034619603 0.008164865 -0.030866824 -0.042488441 -0.014989332 -0.031588737 -0.034619603 0.0081389379 -0.031494275 -0.038382947 -0.014989334 -0.030684907 -0.045027286 -0.0073984466 -0.030404307 -0.056948472 -0.012110074 -0.030406808 -0.055870682 -0.0050665285 -0.032923933 -0.026437499 -0.014989332 -0.031588737 -0.034619603 -0.012832239 -0.032485139 -0.028726222 -0.014318482 -0.032091621 -0.032346912 -0.012832239 -0.032485139 -0.028726222 -0.014989332 -0.031588737 -0.034619603 -0.014989332 -0.031588737 -0.034619603 0.0087343296 -0.032066278 -0.031257197 0.0081389379 -0.031494275 -0.038382947 -0.012110074 -0.030406808 -0.055870682 -0.014422675 -0.030470848 -0.051883277 -0.014989334 -0.030684907 -0.045027286 0.0066491803 -0.034706194 -0.029251887 0.0087343296 -0.032066278 -0.031257197 0.0063852519 -0.032626133 -0.027944356 0.0083652567 -0.032354705 -0.037603159 0.0081496667 -0.031497683 -0.038386431 0.0081389379 -0.031494275 -0.038382947 0.0083652567 -0.032354705 -0.037603159 0.0081389379 -0.031494275 -0.038382947 0.008096559 -0.033779915 -0.035976738 0.008096559 -0.033779915 -0.035976738 0.0081389379 -0.031494275 -0.038382947 0.0087343296 -0.032066278 -0.031257197 0.0035092635 -0.030439334 -0.053517386 0.0074060983 -0.031287115 -0.040853638 0.0035118859 -0.032674447 -0.052088283 -0.0049986406 -0.031930726 -0.035602093 -0.0057495413 -0.032024436 -0.043079481 -0.0017749241 -0.031894989 -0.039140832 0.0020974679 -0.032715447 -0.050189007 -0.0017749241 -0.031894989 -0.039140832 0.00059817173 -0.032724828 -0.055009905 -0.0017749241 -0.031894989 -0.039140832 -0.0037790148 -0.032704901 -0.056124981 0.00059817173 -0.032724828 -0.055009905 -0.0057495413 -0.032024436 -0.043079481 -0.0037790148 -0.032704901 -0.056124981 -0.0017749241 -0.031894989 -0.039140832 0.0035118859 -0.032674447 -0.052088283 0.0074060983 -0.031287115 -0.040853638 0.0083652567 -0.032354705 -0.037603159 -0.0092283059 -0.032364108 -0.036547672 -0.011452218 -0.032668754 -0.051097035 -0.0057495413 -0.032024436 -0.043079481 0.0012953118 -0.032051008 -0.035845973 -0.0017749241 -0.031894989 -0.039140832 0.0046875305 -0.032632072 -0.03854885 0.0074060983 -0.031287115 -0.040853638 0.0081496667 -0.031497683 -0.038386431 0.0083652567 -0.032354705 -0.037603159 0.0011688268 -0.031596255 -0.055450398 -0.0012582742 -0.03038164 -0.05663044 0.0035092635 -0.030439334 -0.053517386 -0.0077151265 -0.031640425 -0.056749146 -0.0073984466 -0.030404307 -0.056948472 -0.0012582742 -0.03038164 -0.05663044 -0.0077151265 -0.031640425 -0.056749146 -0.012110074 -0.030406808 -0.055870682 -0.0073984466 -0.030404307 -0.056948472 -0.014297263 -0.032203898 -0.032363202 -0.014422675 -0.030470848 -0.051883277 -0.014297144 -0.032205217 -0.032363255 -0.011022703 -0.034829844 -0.02852945 -0.0050665285 -0.032923933 -0.026437499 -0.012832239 -0.032485139 -0.028726222 0.0046875305 -0.032632072 -0.03854885 0.0020974679 -0.032715447 -0.050189007 0.0060217804 -0.033436246 -0.037372425 -0.012832239 -0.032485139 -0.028726222 -0.014318482 -0.032091621 -0.032346912 -0.013412074 -0.034471359 -0.030725474 -0.013412074 -0.034471359 -0.030725474 -0.014318482 -0.032091621 -0.032346912 -0.014297144 -0.032205217 -0.032363255 0.00059817173 -0.032724828 -0.055009905 0.0011688268 -0.031596255 -0.055450398 0.0035092635 -0.030439334 -0.053517386 -0.0012582742 -0.03038164 -0.05663044 -0.0037790148 -0.032704901 -0.056124981 -0.0077151265 -0.031640425 -0.056749146 0.00059817173 -0.032724828 -0.055009905 0.0035092635 -0.030439334 -0.053517386 0.0035118859 -0.032674447 -0.052088283 -0.0012582742 -0.03038164 -0.05663044 0.0011688268 -0.031596255 -0.055450398 0.00059817173 -0.032724828 -0.055009905 -0.013821383 -0.032693017 -0.051358439 -0.014422675 -0.030470848 -0.051883277 -0.013107499 -0.032661282 -0.054057188 -0.013412074 -0.034471359 -0.030725474 -0.014297144 -0.032205217 -0.032363255 -0.013821383 -0.032693017 -0.051358439 -0.013821383 -0.032693017 -0.051358439 -0.014297144 -0.032205217 -0.032363255 -0.014422675 -0.030470848 -0.051883277 -0.0062363897 -0.035011932 -0.027291611 0.0021381821 -0.035047311 -0.027122896 -0.0050665285 -0.032923933 -0.026437499 -0.0050665285 -0.032923933 -0.026437499 0.0021381821 -0.035047311 -0.027122896 0.0020533057 -0.033069462 -0.026544085 0.0012953118 -0.032051008 -0.035845973 0.0046875305 -0.032632072 -0.03854885 0.0019286113 -0.032474764 -0.034751978 -0.011022703 -0.034829844 -0.02852945 -0.0062363897 -0.035011932 -0.027291611 -0.0050665285 -0.032923933 -0.026437499 0.0046875305 -0.032632072 -0.03854885 0.0060217804 -0.033436246 -0.037372425 0.002732499 -0.033891037 -0.03274345 -0.011022703 -0.034829844 -0.02852945 -0.012832239 -0.032485139 -0.028726222 -0.013412074 -0.034471359 -0.030725474 0.0066491803 -0.034706194 -0.029251887 0.008096559 -0.033779915 -0.035976738 0.0087343296 -0.032066278 -0.031257197 0.0021381821 -0.035047311 -0.027122896 0.0066491803 -0.034706194 -0.029251887 0.0063852519 -0.032626133 -0.027944356 0.0021381821 -0.035047311 -0.027122896 0.0063852519 -0.032626133 -0.027944356 0.0020533057 -0.033069462 -0.026544085 0.008096559 -0.033779915 -0.035976738 0.0035118859 -0.032674447 -0.052088283 0.0083652567 -0.032354705 -0.037603159 0.0035118859 -0.032674447 -0.052088283 0.0020974679 -0.032715447 -0.050189007 0.00059817173 -0.032724828 -0.055009905 -0.013412074 -0.034471359 -0.030725474 -0.013821383 -0.032693017 -0.051358439 -0.011580961 -0.033708926 -0.035282705 -0.011452218 -0.032668754 -0.051097035 -0.013821383 -0.032693017 -0.051358439 -0.013107499 -0.032661282 -0.054057188 -0.011073367 -0.034673452 -0.030817542 -0.013412074 -0.034471359 -0.030725474 -0.011580961 -0.033708926 -0.035282705 -0.011073367 -0.034673452 -0.030817542 -0.011580961 -0.033708926 -0.035282705 -0.0091766277 -0.034114327 -0.032613695 -0.011073367 -0.034673452 -0.030817542 -0.0062363897 -0.035011932 -0.027291611 -0.011022703 -0.034829844 -0.02852945 -0.011073367 -0.034673452 -0.030817542 -0.011022703 -0.034829844 -0.02852945 -0.013412074 -0.034471359 -0.030725474 -0.011073367 -0.034673452 -0.030817542 0.0035004457 -0.03503928 -0.028916124 -0.0062363897 -0.035011932 -0.027291611 0.0035004457 -0.03503928 -0.028916124 0.0021381821 -0.035047311 -0.027122896 -0.0062363897 -0.035011932 -0.027291611 -0.011073367 -0.034673452 -0.030817542 0.002732499 -0.033891037 -0.03274345 0.0035004457 -0.03503928 -0.028916124 -0.011073367 -0.034673452 -0.030817542 -0.0091766277 -0.034114327 -0.032613695 0.002732499 -0.033891037 -0.03274345 0.0035004457 -0.03503928 -0.028916124 0.002732499 -0.033891037 -0.03274345 0.0066491803 -0.034706194 -0.029251887 0.0066491803 -0.034706194 -0.029251887 0.0060217804 -0.033436246 -0.037372425 0.008096559 -0.033779915 -0.035976738 0.002732499 -0.033891037 -0.03274345 0.0060217804 -0.033436246 -0.037372425 0.0066491803 -0.034706194 -0.029251887 0.0035004457 -0.03503928 -0.028916124 0.0066491803 -0.034706194 -0.029251887 0.0021381821 -0.035047311 -0.027122896 0.0060217804 -0.033436246 -0.037372425 0.0020974679 -0.032715447 -0.050189007 0.008096559 -0.033779915 -0.035976738 0.008096559 -0.033779915 -0.035976738 0.0020974679 -0.032715447 -0.050189007 0.0035118859 -0.032674447 -0.052088283 0.0019286113 -0.032474764 -0.034751978 0.0046875305 -0.032632072 -0.03854885 0.002732499 -0.033891037 -0.03274345 -0.011580961 -0.033708926 -0.035282705 -0.011452218 -0.032668754 -0.051097035 -0.0092283059 -0.032364108 -0.036547672 -0.011452218 -0.032668754 -0.051097035 -0.011580961 -0.033708926 -0.035282705 -0.013821383 -0.032693017 -0.051358439 -0.011580961 -0.033708926 -0.035282705 -0.0092283059 -0.032364108 -0.036547672 -0.0091766277 -0.034114327 -0.032613695 0.002732499 -0.033891037 -0.03274345 -0.0091766277 -0.034114327 -0.032613695 0.0019286113 -0.032474764 -0.034751978 -0.0049986406 -0.031930726 -0.035602093 -0.0091766277 -0.034114327 -0.032613695 -0.0092283059 -0.032364108 -0.036547672 0.0012953118 -0.032051008 -0.035845973 0.0019286113 -0.032474764 -0.034751978 -0.0049986406 -0.031930726 -0.035602093 -0.0049986406 -0.031930726 -0.035602093 0.0019286113 -0.032474764 -0.034751978 -0.0091766277 -0.034114327 -0.032613695 + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266

+
+
+
+
+ + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + + + + + + + + + + + + + +
diff --git a/external/rlbench/urdfs/panda/meshes/Pandarightfingervisual_vis_1.dae b/external/rlbench/urdfs/panda/meshes/Pandarightfingervisual_vis_1.dae new file mode 100644 index 0000000000000000000000000000000000000000..4acbf074407f0c5d3a86aeb2b28dd8ce2dc612a9 --- /dev/null +++ b/external/rlbench/urdfs/panda/meshes/Pandarightfingervisual_vis_1.dae @@ -0,0 +1,84 @@ + + + + + Assimp + Assimp Exporter + + 2023-09-26T11:24:21 + 2023-09-26T11:24:21 + + Y_UP + + + + + + + + 0 0 0 4.5895327e-41 + + + 0.69999999 0.69999999 0.69999999 4.5893926e-41 + + + 0.69999999 0.69999999 0.69999999 4.5893926e-41 + + + 0.30000001 0.30000001 0.30000001 3.6295857e-33 + + + + + + + + + + + + + + + + -0.0017574265 0.0023469406 -0.020806845 0.0014396588 -6.9416137e-06 -0.018030064 -0.0018818169 0.0033602826 -0.019071812 -0.0017073748 0.0012023071 -0.021473784 0.0014396588 -6.9416137e-06 -0.018030064 -0.0017574265 0.0023469406 -0.020806845 -0.0017073748 0.0012023071 -0.021473784 -0.0016928745 -0.00090739294 -0.021635612 0.0014396588 -6.9416137e-06 -0.018030064 -0.0016928745 -0.00090739294 -0.021635612 -0.0017773204 -0.0025760301 -0.020567108 0.0014396588 -6.9416137e-06 -0.018030064 -0.0018959874 -0.0034681743 -0.018730354 0.0014396588 -6.9416137e-06 -0.018030064 -0.0017773204 -0.0025760301 -0.020567108 0.004093742 -0.010403877 0.023294004 0.0053680362 0.010305072 0.023347562 0.005409739 -0.010304456 0.02335199 0.004093742 -0.010403877 0.023294004 0.0039084563 0.010402965 0.023245795 0.0053680362 0.010305072 0.023347562 0.0032868688 -0.010327651 0.020883046 0.0032193612 0.010207078 0.022081647 0.0031803111 -0.010401511 0.022421399 0.0032868688 -0.010327651 0.020883046 0.0032761695 0.010338402 0.020843897 0.0032193612 0.010207078 0.022081647 -0.011844266 -0.010358024 0.024326405 -0.0063535105 -0.010469208 0.024777135 -0.012001642 -0.010374562 0.025986023 -0.0062476583 -0.010343133 0.022682099 -0.0036168634 -0.010501078 0.022899892 -0.0063535105 -0.010469208 0.024777135 -0.00042745448 -0.010382179 0.0080456072 0.0037243234 -0.01050124 0.009482435 -0.0017165261 -0.010378763 0.009035686 -0.0017165261 -0.010378763 0.009035686 0.0037243234 -0.01050124 0.009482435 -0.0027715021 -0.010406125 0.021967178 -0.0027715021 -0.010406125 0.021967178 0.0037243234 -0.01050124 0.009482435 0.0031803111 -0.010401511 0.022421399 -0.00042745448 -0.010382179 0.0080456072 0.0029846479 -0.010334119 0.0083137015 0.0037243234 -0.01050124 0.009482435 0.0031803111 -0.010401511 0.022421399 0.004093742 -0.010403877 0.023294004 -0.0036168634 -0.010501078 0.022899892 -0.0027715021 -0.010406125 0.021967178 0.0031803111 -0.010401511 0.022421399 -0.0036168634 -0.010501078 0.022899892 -0.0036168634 -0.010501078 0.022899892 0.0062966337 -0.010461171 0.025679808 -0.0063535105 -0.010469208 0.024777135 0.004093742 -0.010403877 0.023294004 0.0062966337 -0.010461171 0.025679808 -0.0036168634 -0.010501078 0.022899892 0.004093742 -0.010403877 0.023294004 0.0064949412 -0.010253217 0.023509316 0.0062966337 -0.010461171 0.025679808 0.0062966337 -0.010461171 0.025679808 0.011720019 -0.010383753 0.027648345 -0.0063535105 -0.010469208 0.024777135 -0.0063535105 -0.010469208 0.024777135 0.011720019 -0.010383753 0.027648345 -0.012001642 -0.010374562 0.025986023 0.0062966337 -0.010461171 0.025679808 0.011795612 -0.010343005 0.026013268 0.011720019 -0.010383753 0.027648345 -0.0040006386 0.010208937 0.022661423 -0.0064103482 0.0067787785 0.022585386 -0.0062606256 0.010333702 0.022679718 -0.0040006386 0.010208937 0.022661423 -0.0040114941 -0.010213643 0.022664536 -0.0064103482 0.0067787785 0.022585386 -0.0064103482 0.0067787785 0.022585386 -0.0040114941 -0.010213643 0.022664536 -0.006446905 -0.0066934451 0.022592928 -0.0040114941 -0.010213643 0.022664536 -0.0062476583 -0.010343133 0.022682099 -0.006446905 -0.0066934451 0.022592928 -0.0083066626 -0.0050395802 0.02249817 -0.011675039 -0.0048831124 0.022257803 -0.0079556564 0.0048762206 0.022399003 -0.0079556564 0.0048762206 0.022399003 -0.011675039 -0.0048831124 0.022257803 -0.011734595 0.0048668054 0.022303002 -0.0064103482 0.0067787785 0.022585386 -0.006446905 -0.0066934451 0.022592928 -0.0079556564 0.0048762206 0.022399003 -0.006446905 -0.0066934451 0.022592928 -0.0083066626 -0.0050395802 0.02249817 -0.0079556564 0.0048762206 0.022399003 -0.011857249 0.010341941 0.024324022 -0.011937102 0.0048534451 0.024357252 -0.012002405 0.010369999 0.025965249 -0.011734595 0.0048668054 0.022303002 -0.011931004 -0.0048695598 0.024358371 -0.011937102 0.0048534451 0.024357252 -0.011675039 -0.0048831124 0.022257803 -0.011931004 -0.0048695598 0.024358371 -0.011734595 0.0048668054 0.022303002 -0.011844266 -0.010358024 0.024326405 -0.012001642 -0.010374562 0.025986023 -0.011931004 -0.0048695598 0.024358371 -0.012001642 -0.010374562 0.025986023 -0.012002405 0.010369999 0.025965249 -0.011937102 0.0048534451 0.024357252 -0.012001642 -0.010374562 0.025986023 -0.011937102 0.0048534451 0.024357252 -0.011931004 -0.0048695598 0.024358371 0.011680631 0.01039595 0.02767445 0.011865359 0.0049074306 0.026056612 0.011782635 0.010356962 0.026010826 0.011865359 0.0049074306 0.026056612 0.011971788 -0.0048315455 0.023981791 0.011922995 0.0048452928 0.023931315 0.011842489 -0.0049064322 0.026037384 0.011971788 -0.0048315455 0.023981791 0.011865359 0.0049074306 0.026056612 0.011720019 -0.010383753 0.027648345 0.011795612 -0.010343005 0.026013268 0.011842489 -0.0049064322 0.026037384 0.011680631 0.01039595 0.02767445 0.011720019 -0.010383753 0.027648345 0.011865359 0.0049074306 0.026056612 0.011865359 0.0049074306 0.026056612 0.011720019 -0.010383753 0.027648345 0.011842489 -0.0049064322 0.026037384 0.0087796897 -0.0047358992 0.023600491 0.011922995 0.0048452928 0.023931315 0.011971788 -0.0048315455 0.023981791 0.0087796897 -0.0047358992 0.023600491 0.0087995566 0.0047411933 0.023602856 0.011922995 0.0048452928 0.023931315 -0.012001642 -0.010374562 0.025986023 0.011680631 0.01039595 0.02767445 -0.012002405 0.010369999 0.025965249 -0.012001642 -0.010374562 0.025986023 0.011720019 -0.010383753 0.027648345 0.011680631 0.01039595 0.02767445 -0.0016934691 0.010405271 0.0090901861 -0.0017165261 -0.010378763 0.009035686 -0.0028261866 0.010394788 0.022009078 -0.0017165261 -0.010378763 0.009035686 -0.0027715021 -0.010406125 0.021967178 -0.0028261866 0.010394788 0.022009078 0.0029846479 -0.010334119 0.0083137015 -0.00042745448 -0.010382179 0.0080456072 0.0028167632 0.010326824 0.0082541909 0.0028167632 0.010326824 0.0082541909 -0.00042745448 -0.010382179 0.0080456072 -0.00062403007 0.010379486 0.008082401 0.0064483453 0.010271486 0.023493014 0.0039084563 0.010402965 0.023245795 0.0063318857 0.010461684 0.025676966 0.011680631 0.01039595 0.02767445 0.0063318857 0.010461684 0.025676966 -0.0063666366 0.010460117 0.024774725 0.011680631 0.01039595 0.02767445 -0.0063666366 0.010460117 0.024774725 -0.012002405 0.010369999 0.025965249 -0.0063666366 0.010460117 0.024774725 -0.011857249 0.010341941 0.024324022 -0.012002405 0.010369999 0.025965249 0.011782635 0.010356962 0.026010826 0.0063318857 0.010461684 0.025676966 0.011680631 0.01039595 0.02767445 -0.0036450799 0.010494689 0.022905782 -0.0062606256 0.010333702 0.022679718 -0.0063666366 0.010460117 0.024774725 0.0037112173 0.010501216 0.0094799595 -0.0028261866 0.010394788 0.022009078 0.0029831324 0.010499332 0.022445178 0.0037112173 0.010501216 0.0094799595 -0.0016934691 0.010405271 0.0090901861 -0.0028261866 0.010394788 0.022009078 0.0037112173 0.010501216 0.0094799595 -0.00062403007 0.010379486 0.008082401 -0.0016934691 0.010405271 0.0090901861 0.0028167632 0.010326824 0.0082541909 -0.00062403007 0.010379486 0.008082401 0.0037112173 0.010501216 0.0094799595 0.0029831324 0.010499332 0.022445178 -0.0028261866 0.010394788 0.022009078 -0.0036450799 0.010494689 0.022905782 0.0039084563 0.010402965 0.023245795 0.0029831324 0.010499332 0.022445178 -0.0036450799 0.010494689 0.022905782 0.0063318857 0.010461684 0.025676966 -0.0036450799 0.010494689 0.022905782 -0.0063666366 0.010460117 0.024774725 0.0063318857 0.010461684 0.025676966 0.0039084563 0.010402965 0.023245795 -0.0036450799 0.010494689 0.022905782 0.011782635 0.010356962 0.026010826 0.0065478883 0.0070761484 0.02553731 0.0063318857 0.010461684 0.025676966 0.0080806455 0.0052107819 0.025646815 0.0065478883 0.0070761484 0.02553731 0.011782635 0.010356962 0.026010826 0.011865359 0.0049074306 0.026056612 0.0080806455 0.0052107819 0.025646815 0.011782635 0.010356962 0.026010826 0.0090140915 0.0050353333 0.0239082 0.0078022522 0.0055603366 0.023822108 0.0080806455 0.0052107819 0.025646815 0.0080806455 0.0052107819 0.025646815 0.0066905683 0.0069773267 0.023743937 0.0065478883 0.0070761484 0.02553731 0.0078022522 0.0055603366 0.023822108 0.0066905683 0.0069773267 0.023743937 0.0080806455 0.0052107819 0.025646815 0.011922995 0.0048452928 0.023931315 0.0090140915 0.0050353333 0.0239082 0.011865359 0.0049074306 0.026056612 0.011865359 0.0049074306 0.026056612 0.0090140915 0.0050353333 0.0239082 0.0080806455 0.0052107819 0.025646815 0.0066905683 0.0069773267 0.023743937 0.0063318857 0.010461684 0.025676966 0.0065478883 0.0070761484 0.02553731 0.0066905683 0.0069773267 0.023743937 0.0064483453 0.010271486 0.023493014 0.0063318857 0.010461684 0.025676966 -0.0082803154 0.0051453118 0.024479356 -0.011937102 0.0048534451 0.024357252 -0.011857249 0.010341941 0.024324022 -0.0066116005 0.0069877384 0.024598299 -0.011857249 0.010341941 0.024324022 -0.0063666366 0.010460117 0.024774725 -0.0066116005 0.0069877384 0.024598299 -0.0082803154 0.0051453118 0.024479356 -0.011857249 0.010341941 0.024324022 -0.0066116005 0.0069877384 0.024598299 -0.0064103482 0.0067787785 0.022585386 -0.0082803154 0.0051453118 0.024479356 -0.0064103482 0.0067787785 0.022585386 -0.0083288886 0.0051149139 0.022677349 -0.0082803154 0.0051453118 0.024479356 -0.0062606256 0.010333702 0.022679718 -0.0066116005 0.0069877384 0.024598299 -0.0063666366 0.010460117 0.024774725 -0.0062606256 0.010333702 0.022679718 -0.0064103482 0.0067787785 0.022585386 -0.0066116005 0.0069877384 0.024598299 -0.0083288886 0.0051149139 0.022677349 -0.011734595 0.0048668054 0.022303002 -0.0082803154 0.0051453118 0.024479356 -0.0082803154 0.0051453118 0.024479356 -0.011734595 0.0048668054 0.022303002 -0.011937102 0.0048534451 0.024357252 0.011795612 -0.010343005 0.026013268 0.0062966337 -0.010461171 0.025679808 0.0065422771 -0.0071012392 0.025537908 0.011795612 -0.010343005 0.026013268 0.008087175 -0.0052015511 0.025648015 0.011842489 -0.0049064322 0.026037384 0.011795612 -0.010343005 0.026013268 0.0065422771 -0.0071012392 0.025537908 0.008087175 -0.0052015511 0.025648015 0.0065422771 -0.0071012392 0.025537908 0.0067078052 -0.0069601364 0.023756307 0.008087175 -0.0052015511 0.025648015 0.0067078052 -0.0069601364 0.023756307 0.0078092213 -0.0055518146 0.023823388 0.008087175 -0.0052015511 0.025648015 0.0078092213 -0.0055518146 0.023823388 0.0090121925 -0.0050268276 0.023906382 0.008087175 -0.0052015511 0.025648015 0.0064949412 -0.010253217 0.023509316 0.0067078052 -0.0069601364 0.023756307 0.0065422771 -0.0071012392 0.025537908 0.0064949412 -0.010253217 0.023509316 0.0065422771 -0.0071012392 0.025537908 0.0062966337 -0.010461171 0.025679808 0.0090121925 -0.0050268276 0.023906382 0.011971788 -0.0048315455 0.023981791 0.011842489 -0.0049064322 0.026037384 0.0090121925 -0.0050268276 0.023906382 0.011842489 -0.0049064322 0.026037384 0.008087175 -0.0052015511 0.025648015 -0.011844266 -0.010358024 0.024326405 -0.011931004 -0.0048695598 0.024358371 -0.0087666083 -0.0050576446 0.024445374 -0.0065721101 -0.0071602943 0.024602113 -0.0087666083 -0.0050576446 0.024445374 -0.0074511603 -0.0057835686 0.02453929 -0.0065721101 -0.0071602943 0.024602113 -0.011844266 -0.010358024 0.024326405 -0.0087666083 -0.0050576446 0.024445374 -0.0063535105 -0.010469208 0.024777135 -0.011844266 -0.010358024 0.024326405 -0.0065721101 -0.0071602943 0.024602113 -0.0087666083 -0.0050576446 0.024445374 -0.0083066626 -0.0050395802 0.02249817 -0.0074511603 -0.0057835686 0.02453929 -0.0083066626 -0.0050395802 0.02249817 -0.006446905 -0.0066934451 0.022592928 -0.0074511603 -0.0057835686 0.02453929 -0.0074511603 -0.0057835686 0.02453929 -0.006446905 -0.0066934451 0.022592928 -0.0065721101 -0.0071602943 0.024602113 -0.011675039 -0.0048831124 0.022257803 -0.0083066626 -0.0050395802 0.02249817 -0.0087666083 -0.0050576446 0.024445374 -0.011675039 -0.0048831124 0.022257803 -0.0087666083 -0.0050576446 0.024445374 -0.011931004 -0.0048695598 0.024358371 -0.0065721101 -0.0071602943 0.024602113 -0.0062476583 -0.010343133 0.022682099 -0.0063535105 -0.010469208 0.024777135 -0.006446905 -0.0066934451 0.022592928 -0.0062476583 -0.010343133 0.022682099 -0.0065721101 -0.0071602943 0.024602113 -0.0028261866 0.010394788 0.022009078 -0.0027715021 -0.010406125 0.021967178 -0.0040006386 0.010208937 0.022661423 -0.0027715021 -0.010406125 0.021967178 -0.0040114941 -0.010213643 0.022664536 -0.0040006386 0.010208937 0.022661423 0.004093742 -0.010403877 0.023294004 0.0031803111 -0.010401511 0.022421399 0.0039084563 0.010402965 0.023245795 0.0039084563 0.010402965 0.023245795 0.0031803111 -0.010401511 0.022421399 0.0032193612 0.010207078 0.022081647 0.0040128939 0.010198011 0.0094454056 0.0040355991 -0.010193718 0.00953821 0.0029846479 -0.010334119 0.0083137015 0.0028167632 0.010326824 0.0082541909 0.0040128939 0.010198011 0.0094454056 0.0029846479 -0.010334119 0.0083137015 -0.00062403007 0.010379486 0.008082401 -0.00042745448 -0.010382179 0.0080456072 -0.0017165261 -0.010378763 0.009035686 -0.0016934691 0.010405271 0.0090901861 -0.00062403007 0.010379486 0.008082401 -0.0017165261 -0.010378763 0.009035686 0.0067078052 -0.0069601364 0.023756307 0.0064949412 -0.010253217 0.023509316 0.0065189986 -0.0065632057 0.023433389 0.0067078052 -0.0069601364 0.023756307 0.0065189986 -0.0065632057 0.023433389 0.0078092213 -0.0055518146 0.023823388 0.0065189986 -0.0065632057 0.023433389 0.0087796897 -0.0047358992 0.023600491 0.0078092213 -0.0055518146 0.023823388 0.0078092213 -0.0055518146 0.023823388 0.0087796897 -0.0047358992 0.023600491 0.0090121925 -0.0050268276 0.023906382 0.011971788 -0.0048315455 0.023981791 0.0090121925 -0.0050268276 0.023906382 0.0087796897 -0.0047358992 0.023600491 0.005409739 -0.010304456 0.02335199 0.0064949412 -0.010253217 0.023509316 0.004093742 -0.010403877 0.023294004 0.0040355991 -0.010193718 0.00953821 0.0032868688 -0.010327651 0.020883046 0.0037243234 -0.01050124 0.009482435 0.0032868688 -0.010327651 0.020883046 0.0031803111 -0.010401511 0.022421399 0.0037243234 -0.01050124 0.009482435 0.0029846479 -0.010334119 0.0083137015 0.0040355991 -0.010193718 0.00953821 0.0037243234 -0.01050124 0.009482435 0.011922995 0.0048452928 0.023931315 0.0087995566 0.0047411933 0.023602856 0.0090140915 0.0050353333 0.0239082 0.0090140915 0.0050353333 0.0239082 0.0087995566 0.0047411933 0.023602856 0.0078022522 0.0055603366 0.023822108 0.0087995566 0.0047411933 0.023602856 0.0064874073 0.0066055874 0.023430506 0.0078022522 0.0055603366 0.023822108 0.0078022522 0.0055603366 0.023822108 0.0064874073 0.0066055874 0.023430506 0.0066905683 0.0069773267 0.023743937 0.0064874073 0.0066055874 0.023430506 0.0064483453 0.010271486 0.023493014 0.0066905683 0.0069773267 0.023743937 -0.0027715021 -0.010406125 0.021967178 -0.0036168634 -0.010501078 0.022899892 -0.0040114941 -0.010213643 0.022664536 0.0039084563 0.010402965 0.023245795 0.0064483453 0.010271486 0.023493014 0.0053680362 0.010305072 0.023347562 -0.0062476583 -0.010343133 0.022682099 -0.0040114941 -0.010213643 0.022664536 -0.0036168634 -0.010501078 0.022899892 0.0032193612 0.010207078 0.022081647 0.0029831324 0.010499332 0.022445178 0.0039084563 0.010402965 0.023245795 0.0032761695 0.010338402 0.020843897 0.0029831324 0.010499332 0.022445178 0.0032193612 0.010207078 0.022081647 0.0037112173 0.010501216 0.0094799595 0.0032761695 0.010338402 0.020843897 0.0040128939 0.010198011 0.0094454056 0.0037112173 0.010501216 0.0094799595 0.0029831324 0.010499332 0.022445178 0.0032761695 0.010338402 0.020843897 0.0040128939 0.010198011 0.0094454056 0.0028167632 0.010326824 0.0082541909 0.0037112173 0.010501216 0.0094799595 -0.0040006386 0.010208937 0.022661423 -0.0036450799 0.010494689 0.022905782 -0.0028261866 0.010394788 0.022009078 -0.0062606256 0.010333702 0.022679718 -0.0036450799 0.010494689 0.022905782 -0.0040006386 0.010208937 0.022661423 -0.0079556564 0.0048762206 0.022399003 -0.011734595 0.0048668054 0.022303002 -0.0083288886 0.0051149139 0.022677349 -0.0064103482 0.0067787785 0.022585386 -0.0079556564 0.0048762206 0.022399003 -0.0083288886 0.0051149139 0.022677349 0.0065189986 -0.0065632057 0.023433389 0.0088630756 -0.010288493 0.023589324 0.0087796897 -0.0047358992 0.023600491 0.0065189986 -0.0065632057 0.023433389 0.0064949412 -0.010253217 0.023509316 0.0088630756 -0.010288493 0.023589324 0.0036390594 -0.0088047897 -0.0087811938 0.0036428575 0.0088012367 -0.0087659722 0.011992962 -0.010384106 0.0085954638 0.0036428575 0.0088012367 -0.0087659722 0.012002231 0.010405242 0.0087460754 0.011992962 -0.010384106 0.0085954638 0.0036390594 -0.0088047897 -0.0087811938 0.0023966671 0.0087433318 -0.0089500835 0.0036428575 0.0088012367 -0.0087659722 0.0024080793 -0.0087519977 -0.0089483364 0.0023966671 0.0087433318 -0.0089500835 0.0036390594 -0.0088047897 -0.0087811938 0.003563198 -0.0053349328 -0.026716826 0.0033934638 -0.0086610569 -0.022740869 0.0033935676 -0.0078062527 -0.025206104 0.0035876355 0.0047958442 -0.02673742 0.0033934638 -0.0086610569 -0.022740869 0.003563198 -0.0053349328 -0.026716826 0.0034333146 0.0085333986 -0.023442328 0.0033934638 -0.0086610569 -0.022740869 0.0035876355 0.0047958442 -0.02673742 0.0023966671 0.0087433318 -0.0089500835 0.0024080793 -0.0087519977 -0.0089483364 0.0034333146 0.0085333986 -0.023442328 0.0034333146 0.0085333986 -0.023442328 0.0024080793 -0.0087519977 -0.0089483364 0.0033934638 -0.0086610569 -0.022740869 0.0034333146 0.0085333986 -0.023442328 0.0035876355 0.0047958442 -0.02673742 0.0035044444 0.0065420377 -0.026156561 0.003563198 -0.0053349328 -0.026716826 -0.0010132634 0.0055246856 -0.027091833 0.0035876355 0.0047958442 -0.02673742 -0.0012397256 -0.0054753651 -0.026996607 -0.0010132634 0.0055246856 -0.027091833 0.003563198 -0.0053349328 -0.026716826 -0.0015255122 -0.0087867621 -0.023378266 -0.0017773204 -0.0025760301 -0.020567108 -0.001291351 -0.0070917099 -0.026071982 -0.001291351 -0.0070917099 -0.026071982 -0.0017773204 -0.0025760301 -0.020567108 -0.0012397256 -0.0054753651 -0.026996607 -0.0017773204 -0.0025760301 -0.020567108 -0.0016928745 -0.00090739294 -0.021635612 -0.0012397256 -0.0054753651 -0.026996607 -0.0015255122 -0.0087867621 -0.023378266 -0.0018959874 -0.0034681743 -0.018730354 -0.0017773204 -0.0025760301 -0.020567108 -0.0012397256 -0.0054753651 -0.026996607 -0.0016928745 -0.00090739294 -0.021635612 -0.0013385676 0.0054833852 -0.02681441 -0.0015255122 -0.0087867621 -0.023378266 -0.0025773372 -0.0087516475 -0.00930396 -0.0018959874 -0.0034681743 -0.018730354 -0.0025773372 -0.0087516475 -0.00930396 -0.0020356842 -0.0030690432 -0.016771143 -0.0018959874 -0.0034681743 -0.018730354 -0.0016928745 -0.00090739294 -0.021635612 -0.0017073748 0.0012023071 -0.021473784 -0.0013385676 0.0054833852 -0.02681441 -0.0017073748 0.0012023071 -0.021473784 -0.0017574265 0.0023469406 -0.020806845 -0.0013385676 0.0054833852 -0.02681441 -0.0025773372 -0.0087516475 -0.00930396 -0.0021399744 -0.0019606659 -0.015440069 -0.0020356842 -0.0030690432 -0.016771143 -0.0013385676 0.0054833852 -0.02681441 -0.0017574265 0.0023469406 -0.020806845 -0.0013125337 0.0077302917 -0.025496762 -0.0017574265 0.0023469406 -0.020806845 -0.0014834916 0.0087950174 -0.023461305 -0.0013125337 0.0077302917 -0.025496762 -0.0025773372 -0.0087516475 -0.00930396 -0.0021718713 0.0001376476 -0.014795692 -0.0021399744 -0.0019606659 -0.015440069 -0.0018818169 0.0033602826 -0.019071812 -0.0014834916 0.0087950174 -0.023461305 -0.0017574265 0.0023469406 -0.020806845 -0.0020208748 0.0031608709 -0.017052583 -0.0025884702 0.0087424889 -0.009306225 -0.0018818169 0.0033602826 -0.019071812 -0.0021351476 0.0019364625 -0.015477944 -0.0025884702 0.0087424889 -0.009306225 -0.0020208748 0.0031608709 -0.017052583 -0.0018818169 0.0033602826 -0.019071812 -0.0025884702 0.0087424889 -0.009306225 -0.0014834916 0.0087950174 -0.023461305 -0.0021718713 0.0001376476 -0.014795692 -0.0025884702 0.0087424889 -0.009306225 -0.0021351476 0.0019364625 -0.015477944 -0.0025773372 -0.0087516475 -0.00930396 -0.0025884702 0.0087424889 -0.009306225 -0.0021718713 0.0001376476 -0.014795692 -0.0025773372 -0.0087516475 -0.00930396 -0.003885922 0.0090025133 -0.0092386827 -0.0025884702 0.0087424889 -0.009306225 -0.0039627408 -0.0090225069 -0.0091396924 -0.003885922 0.0090025133 -0.0092386827 -0.0025773372 -0.0087516475 -0.00930396 0.0041963849 -0.010192727 0.0079757608 -0.0040084319 0.0089551406 -0.0089810239 -0.0039627408 -0.0090225069 -0.0091396924 0.0041768374 0.010188053 0.0079703033 -0.0040084319 0.0089551406 -0.0089810239 0.0041963849 -0.010192727 0.0079757608 0.0040355991 -0.010193718 0.00953821 0.0040128939 0.010198011 0.0094454056 0.0041963849 -0.010192727 0.0079757608 0.0040128939 0.010198011 0.0094454056 0.0041768374 0.010188053 0.0079703033 0.0041963849 -0.010192727 0.0079757608 0.0032761695 0.010338402 0.020843897 0.0041768374 0.010188053 0.0079703033 0.0040128939 0.010198011 0.0094454056 0.0041963849 -0.010192727 0.0079757608 0.0032868688 -0.010327651 0.020883046 0.0040355991 -0.010193718 0.00953821 0.011992962 -0.010384106 0.0085954638 0.012002231 0.010405242 0.0087460754 0.011148771 -0.010356076 0.021611603 0.012002231 0.010405242 0.0087460754 0.01109117 0.010387434 0.021631967 0.011148771 -0.010356076 0.021611603 0.0064483453 0.010271486 0.023493014 0.0064874073 0.0066055874 0.023430506 0.0088501647 0.010298223 0.023586953 0.0088501647 0.010298223 0.023586953 0.0064874073 0.0066055874 0.023430506 0.0087995566 0.0047411933 0.023602856 0.0032761695 0.010338402 0.020843897 0.01109117 0.010387434 0.021631967 0.012002231 0.010405242 0.0087460754 0.0032761695 0.010338402 0.020843897 0.012002231 0.010405242 0.0087460754 0.0044664163 0.01047969 0.0079200175 0.0053680362 0.010305072 0.023347562 0.0088501647 0.010298223 0.023586953 0.01109117 0.010387434 0.021631967 0.0053680362 0.010305072 0.023347562 0.01109117 0.010387434 0.021631967 0.0032761695 0.010338402 0.020843897 0.011148771 -0.010356076 0.021611603 0.0032868688 -0.010327651 0.020883046 0.011992962 -0.010384106 0.0085954638 0.011992962 -0.010384106 0.0085954638 0.0032868688 -0.010327651 0.020883046 0.0044795778 -0.010479135 0.007923034 0.0088630756 -0.010288493 0.023589324 0.005409739 -0.010304456 0.02335199 0.011148771 -0.010356076 0.021611603 0.011148771 -0.010356076 0.021611603 0.005409739 -0.010304456 0.02335199 0.0032868688 -0.010327651 0.020883046 0.0044795778 -0.010479135 0.007923034 0.0034404441 -0.0090580322 -0.0085773058 0.011992962 -0.010384106 0.0085954638 0.0044795778 -0.010479135 0.007923034 -0.0039627408 -0.0090225069 -0.0091396924 0.0034404441 -0.0090580322 -0.0085773058 0.0020818801 -0.0090589579 -0.0086944979 -0.0039627408 -0.0090225069 -0.0091396924 -0.0022994447 -0.0090555437 -0.0090135327 0.0020818801 -0.0090589579 -0.0086944979 0.0034404441 -0.0090580322 -0.0085773058 -0.0039627408 -0.0090225069 -0.0091396924 -0.0022994447 -0.0090555437 -0.0090135327 -0.0015255122 -0.0087867621 -0.023378266 0.0031001971 -0.0089498637 -0.022890132 -0.0022994447 -0.0090555437 -0.0090135327 0.0031001971 -0.0089498637 -0.022890132 0.0020818801 -0.0090589579 -0.0086944979 0.003072419 0.0089686802 -0.022613475 -0.0023064897 0.0090437038 -0.0090165017 0.0020746551 0.0090528065 -0.0086950976 -0.0014834916 0.0087950174 -0.023461305 -0.0023064897 0.0090437038 -0.0090165017 0.003072419 0.0089686802 -0.022613475 -0.0040084319 0.0089551406 -0.0089810239 -0.0023064897 0.0090437038 -0.0090165017 -0.003885922 0.0090025133 -0.0092386827 0.0034290855 0.0090535488 -0.0085793911 0.0020746551 0.0090528065 -0.0086950976 -0.0040084319 0.0089551406 -0.0089810239 -0.0040084319 0.0089551406 -0.0089810239 0.0020746551 0.0090528065 -0.0086950976 -0.0023064897 0.0090437038 -0.0090165017 0.0034290855 0.0090535488 -0.0085793911 0.0044664163 0.01047969 0.0079200175 0.012002231 0.010405242 0.0087460754 -0.0040084319 0.0089551406 -0.0089810239 0.0044664163 0.01047969 0.0079200175 0.0034290855 0.0090535488 -0.0085793911 0.0053680362 0.010305072 0.023347562 0.0032868688 -0.010327651 0.020883046 0.005409739 -0.010304456 0.02335199 0.0032761695 0.010338402 0.020843897 0.0032868688 -0.010327651 0.020883046 0.0053680362 0.010305072 0.023347562 0.0088501647 0.010298223 0.023586953 0.0087995566 0.0047411933 0.023602856 0.01109117 0.010387434 0.021631967 0.0087796897 -0.0047358992 0.023600491 0.011148771 -0.010356076 0.021611603 0.0087995566 0.0047411933 0.023602856 0.0087995566 0.0047411933 0.023602856 0.011148771 -0.010356076 0.021611603 0.01109117 0.010387434 0.021631967 0.0087796897 -0.0047358992 0.023600491 0.0088630756 -0.010288493 0.023589324 0.011148771 -0.010356076 0.021611603 -0.0012397256 -0.0054753651 -0.026996607 0.003563198 -0.0053349328 -0.026716826 0.0033935676 -0.0078062527 -0.025206104 -0.001291351 -0.0070917099 -0.026071982 -0.0012397256 -0.0054753651 -0.026996607 0.0033935676 -0.0078062527 -0.025206104 -0.0011794391 -0.0084020086 -0.024700157 -0.001291351 -0.0070917099 -0.026071982 0.0033935676 -0.0078062527 -0.025206104 -0.0011794391 -0.0084020086 -0.024700157 0.0033935676 -0.0078062527 -0.025206104 0.0031001971 -0.0089498637 -0.022890132 -0.0015255122 -0.0087867621 -0.023378266 -0.0011794391 -0.0084020086 -0.024700157 0.0031001971 -0.0089498637 -0.022890132 -0.0014834916 0.0087950174 -0.023461305 0.003072419 0.0089686802 -0.022613475 0.0032290928 0.0081925355 -0.024779584 -0.0013125337 0.0077302917 -0.025496762 -0.0014834916 0.0087950174 -0.023461305 0.0032290928 0.0081925355 -0.024779584 -0.0013125337 0.0077302917 -0.025496762 0.0032290928 0.0081925355 -0.024779584 0.0035044444 0.0065420377 -0.026156561 -0.0010132634 0.0055246856 -0.027091833 -0.0013125337 0.0077302917 -0.025496762 0.0035044444 0.0065420377 -0.026156561 -0.0010132634 0.0055246856 -0.027091833 0.0035044444 0.0065420377 -0.026156561 0.0035876355 0.0047958442 -0.02673742 -0.0025884702 0.0087424889 -0.009306225 -0.003885922 0.0090025133 -0.0092386827 -0.0023064897 0.0090437038 -0.0090165017 -0.0040084319 0.0089551406 -0.0089810239 0.0041768374 0.010188053 0.0079703033 0.0044664163 0.01047969 0.0079200175 -0.0014834916 0.0087950174 -0.023461305 -0.0025884702 0.0087424889 -0.009306225 -0.0023064897 0.0090437038 -0.0090165017 -0.0013125337 0.0077302917 -0.025496762 -0.0010132634 0.0055246856 -0.027091833 -0.0013385676 0.0054833852 -0.02681441 -0.0010132634 0.0055246856 -0.027091833 -0.0012397256 -0.0054753651 -0.026996607 -0.0013385676 0.0054833852 -0.02681441 -0.0011794391 -0.0084020086 -0.024700157 -0.0015255122 -0.0087867621 -0.023378266 -0.001291351 -0.0070917099 -0.026071982 0.0041768374 0.010188053 0.0079703033 0.0032761695 0.010338402 0.020843897 0.0044664163 0.01047969 0.0079200175 -0.0025773372 -0.0087516475 -0.00930396 -0.0015255122 -0.0087867621 -0.023378266 -0.0022994447 -0.0090555437 -0.0090135327 0.0053680362 0.010305072 0.023347562 0.0064483453 0.010271486 0.023493014 0.0088501647 0.010298223 0.023586953 -0.0039627408 -0.0090225069 -0.0091396924 -0.0025773372 -0.0087516475 -0.00930396 -0.0022994447 -0.0090555437 -0.0090135327 0.0041963849 -0.010192727 0.0079757608 -0.0039627408 -0.0090225069 -0.0091396924 0.0044795778 -0.010479135 0.007923034 0.012002231 0.010405242 0.0087460754 0.0036428575 0.0088012367 -0.0087659722 0.0034290855 0.0090535488 -0.0085793911 0.0044795778 -0.010479135 0.007923034 0.0032868688 -0.010327651 0.020883046 0.0041963849 -0.010192727 0.0079757608 0.0034290855 0.0090535488 -0.0085793911 0.0023966671 0.0087433318 -0.0089500835 0.0020746551 0.0090528065 -0.0086950976 0.0036428575 0.0088012367 -0.0087659722 0.0023966671 0.0087433318 -0.0089500835 0.0034290855 0.0090535488 -0.0085793911 0.005409739 -0.010304456 0.02335199 0.0088630756 -0.010288493 0.023589324 0.0064949412 -0.010253217 0.023509316 0.0023966671 0.0087433318 -0.0089500835 0.0034333146 0.0085333986 -0.023442328 0.003072419 0.0089686802 -0.022613475 0.0023966671 0.0087433318 -0.0089500835 0.003072419 0.0089686802 -0.022613475 0.0020746551 0.0090528065 -0.0086950976 0.0032290928 0.0081925355 -0.024779584 0.003072419 0.0089686802 -0.022613475 0.0034333146 0.0085333986 -0.023442328 0.0032290928 0.0081925355 -0.024779584 0.0034333146 0.0085333986 -0.023442328 0.0035044444 0.0065420377 -0.026156561 0.0031001971 -0.0089498637 -0.022890132 0.0033935676 -0.0078062527 -0.025206104 0.0033934638 -0.0086610569 -0.022740869 0.0033934638 -0.0086610569 -0.022740869 0.0024080793 -0.0087519977 -0.0089483364 0.0020818801 -0.0090589579 -0.0086944979 0.0033934638 -0.0086610569 -0.022740869 0.0020818801 -0.0090589579 -0.0086944979 0.0031001971 -0.0089498637 -0.022890132 0.0036390594 -0.0088047897 -0.0087811938 0.011992962 -0.010384106 0.0085954638 0.0034404441 -0.0090580322 -0.0085773058 0.0024080793 -0.0087519977 -0.0089483364 0.0034404441 -0.0090580322 -0.0085773058 0.0020818801 -0.0090589579 -0.0086944979 0.0024080793 -0.0087519977 -0.0089483364 0.0036390594 -0.0088047897 -0.0087811938 0.0034404441 -0.0090580322 -0.0085773058 -0.0018818169 0.0033602826 -0.019071812 0.0014396588 -6.9416137e-06 -0.018030064 -0.0020208748 0.0031608709 -0.017052583 -0.0021351476 0.0019364625 -0.015477944 -0.0020208748 0.0031608709 -0.017052583 0.0014396588 -6.9416137e-06 -0.018030064 -0.0020356842 -0.0030690432 -0.016771143 0.0014396588 -6.9416137e-06 -0.018030064 -0.0018959874 -0.0034681743 -0.018730354 -0.0020356842 -0.0030690432 -0.016771143 -0.0021399744 -0.0019606659 -0.015440069 0.0014396588 -6.9416137e-06 -0.018030064 -0.0021399744 -0.0019606659 -0.015440069 -0.0021718713 0.0001376476 -0.014795692 0.0014396588 -6.9416137e-06 -0.018030064 -0.0021718713 0.0001376476 -0.014795692 -0.0021351476 0.0019364625 -0.015477944 0.0014396588 -6.9416137e-06 -0.018030064 -0.003885922 0.0090025133 -0.0092386827 -0.0039627408 -0.0090225069 -0.0091396924 -0.0040084319 0.0089551406 -0.0089810239 0.0037189603 -0.0098227831 0.016105201 0.0036370656 -0.008969469 0.017713433 0.0066587185 -0.0098263985 0.015807226 0.0066587185 -0.0098263985 0.015807226 0.0036370656 -0.008969469 0.017713433 0.0064701154 -0.0083797872 0.018436741 0.0069477558 -0.0052429698 0.011715109 0.004263219 -0.0054186662 0.011487771 0.0069435239 -0.0069850893 0.011789928 0.004263219 -0.0054186662 0.011487771 0.0042375624 -0.0075807478 0.011780448 0.0069435239 -0.0069850893 0.011789928 0.0036370656 -0.008969469 0.017713433 0.003759495 -0.007901784 0.018479621 0.0064701154 -0.0083797872 0.018436741 0.0069435239 -0.0069850893 0.011789928 0.0042375624 -0.0075807478 0.011780448 0.0068625621 -0.0089348545 0.012942597 0.0064701154 -0.0083797872 0.018436741 0.0037267606 -0.0061649815 0.019014074 0.0064137969 -0.0059971563 0.019204784 0.003759495 -0.007901784 0.018479621 0.0037267606 -0.0061649815 0.019014074 0.0064701154 -0.0083797872 0.018436741 0.0042375624 -0.0075807478 0.011780448 0.0041537955 -0.009009745 0.012962043 0.0068625621 -0.0089348545 0.012942597 0.0041537955 -0.009009745 0.012962043 0.0040502138 -0.0097120153 0.014489303 0.0068625621 -0.0089348545 0.012942597 0.0068625621 -0.0089348545 0.012942597 0.0040502138 -0.0097120153 0.014489303 0.0066587185 -0.0098263985 0.015807226 0.0040502138 -0.0097120153 0.014489303 0.0037189603 -0.0098227831 0.016105201 0.0066587185 -0.0098263985 0.015807226 0.0042375624 -0.0075807478 0.011780448 0.0039414475 -0.008163753 0.011728941 0.0041537955 -0.009009745 0.012962043 0.0039414475 -0.008163753 0.011728941 0.0038065899 -0.0098050116 0.013636837 0.0041537955 -0.009009745 0.012962043 0.0039743106 -0.0021596265 0.015438979 0.0037536076 -0.0019168253 0.014330872 0.0041260426 -0.0027608317 0.013298682 0.0041537955 -0.009009745 0.012962043 0.0038065899 -0.0098050116 0.013636837 0.0040502138 -0.0097120153 0.014489303 0.0041260426 -0.0027608317 0.013298682 0.0039175632 -0.0034530002 0.012018335 0.0042050211 -0.0037560677 0.012203977 0.0037536076 -0.0019168253 0.014330872 0.0039175632 -0.0034530002 0.012018335 0.0041260426 -0.0027608317 0.013298682 0.0038065899 -0.0098050116 0.013636837 0.0037189603 -0.0098227831 0.016105201 0.0040502138 -0.0097120153 0.014489303 0.0042050211 -0.0037560677 0.012203977 0.0039175632 -0.0034530002 0.012018335 0.004263219 -0.0054186662 0.011487771 0.0039175632 -0.0034530002 0.012018335 0.0039845468 -0.0056590918 0.011106855 0.004263219 -0.0054186662 0.011487771 0.004263219 -0.0054186662 0.011487771 0.0039845468 -0.0056590918 0.011106855 0.0042375624 -0.0075807478 0.011780448 0.0039845468 -0.0056590918 0.011106855 0.0039414475 -0.008163753 0.011728941 0.0042375624 -0.0075807478 0.011780448 0.0034189944 -0.0074410685 0.019043352 0.0039175632 -0.0034530002 0.012018335 0.0034101275 -0.0047990861 0.019154219 0.0034101275 -0.0047990861 0.019154219 0.0039175632 -0.0034530002 0.012018335 0.0035306648 -0.0025330982 0.017441442 0.0039845468 -0.0056590918 0.011106855 0.0039175632 -0.0034530002 0.012018335 0.0034189944 -0.0074410685 0.019043352 0.0035306648 -0.0025330982 0.017441442 0.0039175632 -0.0034530002 0.012018335 0.0037536076 -0.0019168253 0.014330872 0.0038065899 -0.0098050116 0.013636837 0.0039414475 -0.008163753 0.011728941 0.0037189603 -0.0098227831 0.016105201 0.0039414475 -0.008163753 0.011728941 0.0039845468 -0.0056590918 0.011106855 0.0037189603 -0.0098227831 0.016105201 0.0037189603 -0.0098227831 0.016105201 0.0039845468 -0.0056590918 0.011106855 0.0036370656 -0.008969469 0.017713433 0.0036370656 -0.008969469 0.017713433 0.0039845468 -0.0056590918 0.011106855 0.0034189944 -0.0074410685 0.019043352 0.0037457647 -0.0042400882 0.018574115 0.0035306648 -0.0025330982 0.017441442 0.0038262985 -0.0029885233 0.017498007 0.0034101275 -0.0047990861 0.019154219 0.0035306648 -0.0025330982 0.017441442 0.0037457647 -0.0042400882 0.018574115 0.0038262985 -0.0029885233 0.017498007 0.0035306648 -0.0025330982 0.017441442 0.0039743106 -0.0021596265 0.015438979 0.0035306648 -0.0025330982 0.017441442 0.0037536076 -0.0019168253 0.014330872 0.0039743106 -0.0021596265 0.015438979 0.0036370656 -0.008969469 0.017713433 0.0034189944 -0.0074410685 0.019043352 0.003759495 -0.007901784 0.018479621 0.003759495 -0.007901784 0.018479621 0.0034189944 -0.0074410685 0.019043352 0.0037267606 -0.0061649815 0.019014074 0.0034189944 -0.0074410685 0.019043352 0.0034101275 -0.0047990861 0.019154219 0.0037267606 -0.0061649815 0.019014074 0.0037267606 -0.0061649815 0.019014074 0.0034101275 -0.0047990861 0.019154219 0.0037457647 -0.0042400882 0.018574115 0.0039743106 -0.0021596265 0.015438979 0.0041260426 -0.0027608317 0.013298682 0.006858828 -0.0030603411 0.012941917 0.0041260426 -0.0027608317 0.013298682 0.0042050211 -0.0037560677 0.012203977 0.006858828 -0.0030603411 0.012941917 0.0064137969 -0.0059971563 0.019204784 0.0037457647 -0.0042400882 0.018574115 0.0064671268 -0.0036146352 0.018436193 0.0037267606 -0.0061649815 0.019014074 0.0037457647 -0.0042400882 0.018574115 0.0064137969 -0.0059971563 0.019204784 0.006858828 -0.0030603411 0.012941917 0.0042050211 -0.0037560677 0.012203977 0.0069477558 -0.0052429698 0.011715109 0.0042050211 -0.0037560677 0.012203977 0.004263219 -0.0054186662 0.011487771 0.0069477558 -0.0052429698 0.011715109 0.0037457647 -0.0042400882 0.018574115 0.0038262985 -0.0029885233 0.017498007 0.0064671268 -0.0036146352 0.018436193 0.0064671268 -0.0036146352 0.018436193 0.0038262985 -0.0029885233 0.017498007 0.0066539156 -0.0021683346 0.015806343 0.0038262985 -0.0029885233 0.017498007 0.0039743106 -0.0021596265 0.015438979 0.0066539156 -0.0021683346 0.015806343 0.0066539156 -0.0021683346 0.015806343 0.0039743106 -0.0021596265 0.015438979 0.006858828 -0.0030603411 0.012941917 0.006858828 -0.0030603411 0.012941917 0.0069477558 -0.0052429698 0.011715109 0.0069435239 -0.0069850893 0.011789928 0.006858828 -0.0030603411 0.012941917 0.0069435239 -0.0069850893 0.011789928 0.0068625621 -0.0089348545 0.012942597 0.006858828 -0.0030603411 0.012941917 0.0068625621 -0.0089348545 0.012942597 0.0066587185 -0.0098263985 0.015807226 0.0064671268 -0.0036146352 0.018436193 0.006858828 -0.0030603411 0.012941917 0.0066587185 -0.0098263985 0.015807226 0.0064671268 -0.0036146352 0.018436193 0.0066587185 -0.0098263985 0.015807226 0.0064701154 -0.0083797872 0.018436741 0.0064671268 -0.0036146352 0.018436193 0.0066539156 -0.0021683346 0.015806343 0.006858828 -0.0030603411 0.012941917 0.0064671268 -0.0036146352 0.018436193 0.0064701154 -0.0083797872 0.018436741 0.0064137969 -0.0059971563 0.019204784 0.0066511929 0.0021735635 0.015805844 0.0036873335 0.0024724812 0.016938129 0.0064625898 0.0036201745 0.018435359 0.0069402298 0.0067569907 0.011713726 0.0042556929 0.0065812357 0.011486389 0.0069359979 0.0050148722 0.011788547 0.0042556929 0.0065812357 0.011486389 0.0042300369 0.004419154 0.011779066 0.0069359979 0.0050148722 0.011788547 0.0036873335 0.0024724812 0.016938129 0.0037519692 0.004098177 0.018478239 0.0064625898 0.0036201745 0.018435359 0.0069359979 0.0050148722 0.011788547 0.0042300369 0.004419154 0.011779066 0.0068549863 0.0030651067 0.012941211 0.0064625898 0.0036201745 0.018435359 0.0037192348 0.0058349785 0.019012691 0.0064062709 0.0060028038 0.019203402 0.0037519692 0.004098177 0.018478239 0.0037192348 0.0058349785 0.019012691 0.0064625898 0.0036201745 0.018435359 0.0042300369 0.004419154 0.011779066 0.0041462695 0.002990216 0.012960661 0.0068549863 0.0030651067 0.012941211 0.0041462695 0.002990216 0.012960661 0.0039095981 0.0021584893 0.014740588 0.0068549863 0.0030651067 0.012941211 0.0068549863 0.0030651067 0.012941211 0.0039095981 0.0021584893 0.014740588 0.0066511929 0.0021735635 0.015805844 0.0039095981 0.0021584893 0.014740588 0.0036873335 0.0024724812 0.016938129 0.0066511929 0.0021735635 0.015805844 0.0042300369 0.004419154 0.011779066 0.0038755655 0.0027788815 0.012570639 0.0041462695 0.002990216 0.012960661 0.0036011778 0.0099675255 0.016340284 0.0037844644 0.0098446179 0.013768567 0.003966785 0.0098403338 0.015437597 0.003966785 0.0098403338 0.015437597 0.0037844644 0.0098446179 0.013768567 0.004118517 0.0092390701 0.0132973 0.0041462695 0.002990216 0.012960661 0.0038755655 0.0027788815 0.012570639 0.0039095981 0.0021584893 0.014740588 0.0037844644 0.0098446179 0.013768567 0.0040794709 0.0083632655 0.012177433 0.004118517 0.0092390701 0.0132973 0.0040794709 0.0083632655 0.012177433 0.0039829412 0.0059339451 0.011041984 0.0042556929 0.0065812357 0.011486389 0.0042556929 0.0065812357 0.011486389 0.0039829412 0.0059339451 0.011041984 0.0042300369 0.004419154 0.011779066 0.0039829412 0.0059339451 0.011041984 0.0038755655 0.0027788815 0.012570639 0.0042300369 0.004419154 0.011779066 0.0034507038 0.0084966309 0.018458765 0.0037844644 0.0098446179 0.013768567 0.0036011778 0.0099675255 0.016340284 0.0039829412 0.0059339451 0.011041984 0.0037844644 0.0098446179 0.013768567 0.0034507038 0.0084966309 0.018458765 0.0039829412 0.0059339451 0.011041984 0.0040794709 0.0083632655 0.012177433 0.0037844644 0.0098446179 0.013768567 0.0036873335 0.0024724812 0.016938129 0.0038755655 0.0027788815 0.012570639 0.003421668 0.0041678781 0.018920943 0.003421668 0.0041678781 0.018920943 0.0038755655 0.0027788815 0.012570639 0.0033963947 0.0065992917 0.019230837 0.0033963947 0.0065992917 0.019230837 0.0039829412 0.0059339451 0.011041984 0.0034507038 0.0084966309 0.018458765 0.0038755655 0.0027788815 0.012570639 0.0039829412 0.0059339451 0.011041984 0.0033963947 0.0065992917 0.019230837 0.0039095981 0.0021584893 0.014740588 0.0038755655 0.0027788815 0.012570639 0.0036873335 0.0024724812 0.016938129 0.0033963947 0.0065992917 0.019230837 0.0034507038 0.0084966309 0.018458765 0.0037382389 0.0077598724 0.018572733 0.0037382389 0.0077598724 0.018572733 0.0034507038 0.0084966309 0.018458765 0.0038187727 0.0090114372 0.017496625 0.0034507038 0.0084966309 0.018458765 0.0036011778 0.0099675255 0.016340284 0.0038187727 0.0090114372 0.017496625 0.0038187727 0.0090114372 0.017496625 0.0036011778 0.0099675255 0.016340284 0.003966785 0.0098403338 0.015437597 0.0036873335 0.0024724812 0.016938129 0.003421668 0.0041678781 0.018920943 0.0037519692 0.004098177 0.018478239 0.0037519692 0.004098177 0.018478239 0.003421668 0.0041678781 0.018920943 0.0037192348 0.0058349785 0.019012691 0.003421668 0.0041678781 0.018920943 0.0033963947 0.0065992917 0.019230837 0.0037192348 0.0058349785 0.019012691 0.0037192348 0.0058349785 0.019012691 0.0033963947 0.0065992917 0.019230837 0.0037382389 0.0077598724 0.018572733 0.003966785 0.0098403338 0.015437597 0.004118517 0.0092390701 0.0132973 0.006851302 0.008939621 0.012940535 0.004118517 0.0092390701 0.0132973 0.0040794709 0.0083632655 0.012177433 0.006851302 0.008939621 0.012940535 0.0064062709 0.0060028038 0.019203402 0.0037382389 0.0077598724 0.018572733 0.0064596012 0.0083853267 0.018434811 0.0037192348 0.0058349785 0.019012691 0.0037382389 0.0077598724 0.018572733 0.0064062709 0.0060028038 0.019203402 0.006851302 0.008939621 0.012940535 0.0040794709 0.0083632655 0.012177433 0.0069402298 0.0067569907 0.011713726 0.0040794709 0.0083632655 0.012177433 0.0042556929 0.0065812357 0.011486389 0.0069402298 0.0067569907 0.011713726 0.0037382389 0.0077598724 0.018572733 0.0038187727 0.0090114372 0.017496625 0.0064596012 0.0083853267 0.018434811 0.0064596012 0.0083853267 0.018434811 0.0038187727 0.0090114372 0.017496625 0.0066463901 0.0098315673 0.015804961 0.0038187727 0.0090114372 0.017496625 0.003966785 0.0098403338 0.015437597 0.0066463901 0.0098315673 0.015804961 0.0066463901 0.0098315673 0.015804961 0.003966785 0.0098403338 0.015437597 0.006851302 0.008939621 0.012940535 0.0064625898 0.0036201745 0.018435359 0.0068549863 0.0030651067 0.012941211 0.0066511929 0.0021735635 0.015805844 0.0064596012 0.0083853267 0.018434811 0.0069402298 0.0067569907 0.011713726 0.0069359979 0.0050148722 0.011788547 0.0064596012 0.0083853267 0.018434811 0.006851302 0.008939621 0.012940535 0.0069402298 0.0067569907 0.011713726 0.0064596012 0.0083853267 0.018434811 0.0066463901 0.0098315673 0.015804961 0.006851302 0.008939621 0.012940535 0.0064596012 0.0083853267 0.018434811 0.0069359979 0.0050148722 0.011788547 0.0064062709 0.0060028038 0.019203402 0.0064062709 0.0060028038 0.019203402 0.0069359979 0.0050148722 0.011788547 0.0068549863 0.0030651067 0.012941211 0.0064062709 0.0060028038 0.019203402 0.0068549863 0.0030651067 0.012941211 0.0064625898 0.0036201745 0.018435359 + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085

+
+
+
+
+ + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + + + + + + + + + + + + + +
diff --git a/external/rlbench/urdfs/panda/meshes/Pandarightfingervisual_vis_2.dae b/external/rlbench/urdfs/panda/meshes/Pandarightfingervisual_vis_2.dae new file mode 100644 index 0000000000000000000000000000000000000000..88149424cddfc04a48794f75d4da17b6bbbd68cd --- /dev/null +++ b/external/rlbench/urdfs/panda/meshes/Pandarightfingervisual_vis_2.dae @@ -0,0 +1,84 @@ + + + + + Assimp + Assimp Exporter + + 2023-09-26T11:24:21 + 2023-09-26T11:24:21 + + Y_UP + + + + + + + + 0 0 0 4.5895327e-41 + + + 0.1 0.1 0.1 4.5893926e-41 + + + 0.1 0.1 0.1 4.5893926e-41 + + + 0.30000001 0.30000001 0.30000001 -3.0261091e+37 + + + + + + + + + + + + + + + + -0.0095260506 -0.0008720234 -0.017379832 -0.0020085019 -0.0017472545 -0.017694147 -0.0093586659 -0.0015372809 -0.019726362 -0.0020085019 -0.0017472545 -0.017694147 -0.0018786074 -0.0013039805 -0.019487463 -0.0093586659 -0.0015372809 -0.019726362 -0.0018786074 -0.0013039805 -0.019487463 -0.0018424471 0.0001494337 -0.020040654 -0.0093586659 -0.0015372809 -0.019726362 -0.0093586659 -0.0015372809 -0.019726362 -0.0018424471 0.0001494337 -0.020040654 -0.0093227355 0.00084947853 -0.020242762 -0.0020936304 -0.00016250102 -0.016517766 -0.0020085019 -0.0017472545 -0.017694147 -0.0095260506 -0.0008720234 -0.017379832 -0.0019050328 -0.0020933514 -0.018544005 -0.00044241038 -0.002159138 -0.018591709 -0.0018159479 -0.0014717671 -0.019823944 -0.00044241038 -0.002159138 -0.018591709 -0.00033498657 -0.0010762329 -0.020148657 -0.0018159479 -0.0014717671 -0.019823944 -0.0020665096 0.00071487162 -0.016270891 -0.00061608665 -0.00072927435 -0.016054887 -0.002065677 -0.00070443825 -0.016297558 -0.0018159479 -0.0014717671 -0.019823944 -0.00033498657 -0.0010762329 -0.020148657 -0.0017756645 -1.8229881e-05 -0.02038802 -0.002065677 -0.00070443825 -0.016297558 -0.00061608665 -0.00072927435 -0.016054887 -0.0019976315 -0.0018261018 -0.017157417 -0.00061608665 -0.00072927435 -0.016054887 -0.00053499907 -0.0019730746 -0.017251421 -0.0019976315 -0.0018261018 -0.017157417 -0.0019976315 -0.0018261018 -0.017157417 -0.00053499907 -0.0019730746 -0.017251421 -0.0019050328 -0.0020933514 -0.018544005 -0.00053499907 -0.0019730746 -0.017251421 -0.00044241038 -0.002159138 -0.018591709 -0.0019050328 -0.0020933514 -0.018544005 -0.0019911069 -0.0028933925 -0.017272862 -0.0018678536 -0.0029821433 -0.018976733 -0.00044434678 -0.0030153431 -0.018449746 -0.0019911069 -0.0028933925 -0.017272862 -0.00044434678 -0.0030153431 -0.018449746 -0.00058574358 -0.0024610567 -0.016444605 -0.0017403265 -0.0017987655 -0.020820517 -0.00024954873 0.00035356366 -0.021132521 -0.00028078762 -0.0018770372 -0.020576116 -0.0017403265 -0.0017987655 -0.020820517 -0.0017068951 0.00051389582 -0.021298731 -0.00024954873 0.00035356366 -0.021132521 -0.0020995049 -0.001791377 -0.015778642 -0.0019911069 -0.0028933925 -0.017272862 -0.00058574358 -0.0024610567 -0.016444605 -0.0020995049 -0.001791377 -0.015778642 -0.00058574358 -0.0024610567 -0.016444605 -0.00067620381 -0.00097590766 -0.015347463 -0.00213644 8.1859052e-06 -0.015225967 -0.0020995049 -0.001791377 -0.015778642 -0.00067620381 -0.00097590766 -0.015347463 -0.00213644 8.1859052e-06 -0.015225967 -0.00067620381 -0.00097590766 -0.015347463 -0.00066896999 0.0010198114 -0.015329344 -0.0018678536 -0.0029821433 -0.018976733 -0.0017403265 -0.0017987655 -0.020820517 -0.00028078762 -0.0018770372 -0.020576116 -0.0018678536 -0.0029821433 -0.018976733 -0.00028078762 -0.0018770372 -0.020576116 -0.00044434678 -0.0030153431 -0.018449746 -0.011256534 0.0022500078 -0.021210624 -0.010732212 0.0048296419 -0.027644331 -0.010747902 0.0022554831 -0.027674314 -0.011256534 0.0022500078 -0.021210624 -0.010802899 0.0070616631 -0.026699174 -0.010732212 0.0048296419 -0.027644331 -0.010966481 0.0086616902 -0.024254018 -0.010802899 0.0070616631 -0.026699174 -0.011256534 0.0022500078 -0.021210624 -0.011206106 0.008743966 -0.021216625 -0.010966481 0.0086616902 -0.024254018 -0.011256534 0.0022500078 -0.021210624 -0.011948949 0.0087503688 -0.010235718 -0.011528501 0.0087461928 -0.016684238 -0.011570245 0.0022354876 -0.016710958 -0.011948949 0.0087503688 -0.010235718 -0.011570245 0.0022354876 -0.016710958 -0.011991202 0.0022579653 -0.010221182 -0.011253697 -0.0022753542 -0.021210102 -0.010745057 -0.0022817401 -0.027673792 -0.010705643 -0.0057053901 -0.027528156 -0.011253697 -0.0022753542 -0.021210102 -0.010705643 -0.0057053901 -0.027528156 -0.01087496 -0.0078315204 -0.025849653 -0.011253697 -0.0022753542 -0.021210102 -0.01087496 -0.0078315204 -0.025849653 -0.010985862 -0.0087225717 -0.023874132 -0.011253697 -0.0022753542 -0.021210102 -0.010985862 -0.0087225717 -0.023874132 -0.011194318 -0.008770735 -0.02121467 -0.011990746 -0.0022859944 -0.010221602 -0.011565454 -0.0022567327 -0.01671383 -0.011519493 -0.0087714894 -0.0166783 -0.011990746 -0.0022859944 -0.010221602 -0.011519493 -0.0087714894 -0.0166783 -0.011921399 -0.0087841703 -0.010231072 -0.0097774845 0.0087974686 -0.018837081 -0.010966481 0.0086616902 -0.024254018 -0.011206106 0.008743966 -0.021216625 -0.0097774845 0.0087974686 -0.018837081 -0.001617141 0.0087786438 -0.0238402 -0.010966481 0.0086616902 -0.024254018 -0.0026823399 0.0089250151 -0.0093985703 -0.001617141 0.0087786438 -0.0238402 -0.0097774845 0.0087974686 -0.018837081 -0.011528501 0.0087461928 -0.016684238 -0.0026823399 0.0089250151 -0.0093985703 -0.0097774845 0.0087974686 -0.018837081 -0.011948949 0.0087503688 -0.010235718 -0.0026823399 0.0089250151 -0.0093985703 -0.011528501 0.0087461928 -0.016684238 -0.009772148 -0.0088158827 -0.018835459 -0.011194318 -0.008770735 -0.02121467 -0.010985862 -0.0087225717 -0.023874132 -0.0016599202 -0.0089003434 -0.02316873 -0.009772148 -0.0088158827 -0.018835459 -0.010985862 -0.0087225717 -0.023874132 -0.0026703677 -0.0089370022 -0.0093964571 -0.011519493 -0.0087714894 -0.0166783 -0.009772148 -0.0088158827 -0.018835459 -0.0026703677 -0.0089370022 -0.0093964571 -0.011921399 -0.0087841703 -0.010231072 -0.011519493 -0.0087714894 -0.0166783 -0.0026703677 -0.0089370022 -0.0093964571 -0.009772148 -0.0088158827 -0.018835459 -0.0016599202 -0.0089003434 -0.02316873 -0.011256534 0.0022500078 -0.021210624 -0.010747902 0.0022554831 -0.027674314 -0.0091510322 -1.2114394e-05 -0.027618224 -0.009847763 -1.1540154e-05 -0.018841475 -0.011256534 0.0022500078 -0.021210624 -0.0091510322 -1.2114394e-05 -0.027618224 -0.010402007 -1.087504e-05 -0.010055101 -0.011991202 0.0022579653 -0.010221182 -0.011570245 0.0022354876 -0.016710958 -0.010402007 -1.087504e-05 -0.010055101 -0.011570245 0.0022354876 -0.016710958 -0.009847763 -1.1540154e-05 -0.018841475 -0.011253697 -0.0022753542 -0.021210102 -0.009847763 -1.1540154e-05 -0.018841475 -0.0091510322 -1.2114394e-05 -0.027618224 -0.011253697 -0.0022753542 -0.021210102 -0.0091510322 -1.2114394e-05 -0.027618224 -0.010745057 -0.0022817401 -0.027673792 -0.010402007 -1.087504e-05 -0.010055101 -0.009847763 -1.1540154e-05 -0.018841475 -0.011565454 -0.0022567327 -0.01671383 -0.011990746 -0.0022859944 -0.010221602 -0.010402007 -1.087504e-05 -0.010055101 -0.011565454 -0.0022567327 -0.01671383 -0.0026703677 -0.0089370022 -0.0093964571 -0.011990746 -0.0022859944 -0.010221602 -0.011921399 -0.0087841703 -0.010231072 -0.010402007 -1.087504e-05 -0.010055101 -0.011990746 -0.0022859944 -0.010221602 -0.0026703677 -0.0089370022 -0.0093964571 -0.0026823399 0.0089250151 -0.0093985703 -0.011991202 0.0022579653 -0.010221182 -0.010402007 -1.087504e-05 -0.010055101 -0.0026823399 0.0089250151 -0.0093985703 -0.011948949 0.0087503688 -0.010235718 -0.011991202 0.0022579653 -0.010221182 -0.0026823399 0.0089250151 -0.0093985703 -0.010402007 -1.087504e-05 -0.010055101 -0.0026703677 -0.0089370022 -0.0093964571 -0.0091510322 -1.2114394e-05 -0.027618224 -0.0013744672 0.0047224946 -0.027159743 -0.0013700709 -0.0053473408 -0.027078105 -0.0091510322 -1.2114394e-05 -0.027618224 -0.0013700709 -0.0053473408 -0.027078105 -0.010705643 -0.0057053901 -0.027528156 -0.0091510322 -1.2114394e-05 -0.027618224 -0.010705643 -0.0057053901 -0.027528156 -0.010745057 -0.0022817401 -0.027673792 -0.010732212 0.0048296419 -0.027644331 -0.0091510322 -1.2114394e-05 -0.027618224 -0.010747902 0.0022554831 -0.027674314 -0.010732212 0.0048296419 -0.027644331 -0.0013744672 0.0047224946 -0.027159743 -0.0091510322 -1.2114394e-05 -0.027618224 -0.0019911069 -0.0028933925 -0.017272862 -0.0021889021 -0.0027138104 -0.015226061 -0.0020066667 -0.003951414 -0.017533595 -0.0019911069 -0.0028933925 -0.017272862 -0.0020995049 -0.001791377 -0.015778642 -0.0021889021 -0.0027138104 -0.015226061 -0.001617141 0.0087786438 -0.0238402 -0.0020194729 0.0074858763 -0.017532147 -0.0019126702 0.0074905385 -0.019031458 -0.0017267296 0.0021785058 -0.021646073 -0.0017935272 0.0025392533 -0.020070015 -0.0017068951 0.00051389582 -0.021298731 -0.0013700709 -0.0053473408 -0.027078105 -0.0015591489 -0.0072657727 -0.023953192 -0.0014842493 -0.0078682033 -0.025453893 -0.0025005967 0.0074920114 -0.010805603 -0.0026823399 0.0089250151 -0.0093985703 -0.0024954844 0.00074776285 -0.01080046 -0.0013700709 -0.0053473408 -0.027078105 -0.0014311798 -0.0049795783 -0.02569741 -0.0015591489 -0.0072657727 -0.023953192 -0.0020194729 0.0074858763 -0.017532147 -0.0026823399 0.0089250151 -0.0093985703 -0.0025005967 0.0074920114 -0.010805603 -0.001617141 0.0087786438 -0.0238402 -0.0026823399 0.0089250151 -0.0093985703 -0.0020194729 0.0074858763 -0.017532147 -0.0026823399 0.0089250151 -0.0093985703 -0.0026703677 -0.0089370022 -0.0093964571 -0.0024954844 0.00074776285 -0.01080046 -0.0024954844 0.00074776285 -0.01080046 -0.0026703677 -0.0089370022 -0.0093964571 -0.0024952583 -0.00076212821 -0.010799386 -0.0024915622 -0.0074988506 -0.010798767 -0.0026703677 -0.0089370022 -0.0093964571 -0.0020105212 -0.0075033763 -0.017526692 -0.0020105212 -0.0075033763 -0.017526692 -0.0026703677 -0.0089370022 -0.0093964571 -0.0016599202 -0.0089003434 -0.02316873 -0.0014842493 -0.0078682033 -0.025453893 -0.0015591489 -0.0072657727 -0.023953192 -0.0016599202 -0.0089003434 -0.02316873 -0.0017267296 0.0021785058 -0.021646073 -0.0018254666 0.0034382206 -0.020331344 -0.0017935272 0.0025392533 -0.020070015 -0.0014317643 0.0068611661 -0.026364926 -0.0015882258 0.0073580132 -0.023592977 -0.0014503956 0.0053370302 -0.025617097 -0.0015591489 -0.0072657727 -0.023953192 -0.0019035819 -0.0074987742 -0.019025391 -0.0016599202 -0.0089003434 -0.02316873 -0.0013700709 -0.0053473408 -0.027078105 -0.001427638 -0.00076097692 -0.025756963 -0.0014311798 -0.0049795783 -0.02569741 -0.0014317643 0.0068611661 -0.026364926 -0.001617141 0.0087786438 -0.0238402 -0.0015882258 0.0073580132 -0.023592977 -0.00213644 8.1859052e-06 -0.015225967 -0.0021889021 -0.0027138104 -0.015226061 -0.0020995049 -0.001791377 -0.015778642 -0.0018254666 0.0034382206 -0.020331344 -0.001916738 0.0039165835 -0.019011308 -0.0017935272 0.0025392533 -0.020070015 -0.00213644 8.1859052e-06 -0.015225967 -0.0022430713 -0.00073709729 -0.014368972 -0.0021889021 -0.0027138104 -0.015226061 -0.0017935272 0.0025392533 -0.020070015 -0.001916738 0.0039165835 -0.019011308 -0.0019495267 0.0030315581 -0.017930074 -0.0013700709 -0.0053473408 -0.027078105 -0.0014285721 0.00074238633 -0.025752243 -0.001427638 -0.00076097692 -0.025756963 -0.0019035819 -0.0074987742 -0.019025391 -0.0020105212 -0.0075033763 -0.017526692 -0.0016599202 -0.0089003434 -0.02316873 -0.001916738 0.0039165835 -0.019011308 -0.0020207348 0.0039165081 -0.017548008 -0.0019495267 0.0030315581 -0.017930074 -0.00213644 8.1859052e-06 -0.015225967 -0.0022461894 0.00072737841 -0.014365947 -0.0022430713 -0.00073709729 -0.014368972 -0.0020889479 0.002070931 -0.015957609 -0.0022161915 0.0020504156 -0.014843327 -0.00213644 8.1859052e-06 -0.015225967 -0.00213644 8.1859052e-06 -0.015225967 -0.0022161915 0.0020504156 -0.014843327 -0.0022461894 0.00072737841 -0.014365947 -0.0020207348 0.0039165081 -0.017548008 -0.0021232576 0.0033689032 -0.01609968 -0.0019495267 0.0030315581 -0.017930074 -0.0013700709 -0.0053473408 -0.027078105 -0.0013744672 0.0047224946 -0.027159743 -0.0014285721 0.00074238633 -0.025752243 -0.0014285721 0.00074238633 -0.025752243 -0.0016863908 -0.00074022351 -0.022192089 -0.001427638 -0.00076097692 -0.025756963 -0.0019035819 -0.0074987742 -0.019025391 -0.0019114144 -0.0039295903 -0.019010192 -0.0020105212 -0.0075033763 -0.017526692 -0.0019495267 0.0030315581 -0.017930074 -0.0021232576 0.0033689032 -0.01609968 -0.0020889479 0.002070931 -0.015957609 -0.0017232161 -0.002063503 -0.021715319 -0.0017403265 -0.0017987655 -0.020820517 -0.0018079423 -0.0033819254 -0.020458451 -0.0020889479 0.002070931 -0.015957609 -0.0021232576 0.0033689032 -0.01609968 -0.0022161915 0.0020504156 -0.014843327 -0.0024915622 -0.0074988506 -0.010798767 -0.0024952583 -0.00076212821 -0.010799386 -0.0026703677 -0.0089370022 -0.0093964571 -0.001916738 0.0039165835 -0.019011308 -0.0019126702 0.0074905385 -0.019031458 -0.0020207348 0.0039165081 -0.017548008 -0.0017403265 -0.0017987655 -0.020820517 -0.0018678536 -0.0029821433 -0.018976733 -0.0018079423 -0.0033819254 -0.020458451 -0.001617141 0.0087786438 -0.0238402 -0.0019126702 0.0074905385 -0.019031458 -0.0015882258 0.0073580132 -0.023592977 -0.0016863908 -0.00074022351 -0.022192089 -0.0017403265 -0.0017987655 -0.020820517 -0.0017232161 -0.002063503 -0.021715319 -0.0018079423 -0.0033819254 -0.020458451 -0.0018678536 -0.0029821433 -0.018976733 -0.0019114144 -0.0039295903 -0.019010192 -0.0013744672 0.0047224946 -0.027159743 -0.0014503956 0.0053370302 -0.025617097 -0.0014285721 0.00074238633 -0.025752243 -0.0016863908 -0.00074022351 -0.022192089 -0.0017068951 0.00051389582 -0.021298731 -0.0017403265 -0.0017987655 -0.020820517 -0.0022461894 0.00072737841 -0.014365947 -0.0024954844 0.00074776285 -0.01080046 -0.0022430713 -0.00073709729 -0.014368972 -0.0014285721 0.00074238633 -0.025752243 -0.0016877147 0.0007268269 -0.022192469 -0.0016863908 -0.00074022351 -0.022192089 -0.0022430713 -0.00073709729 -0.014368972 -0.0024954844 0.00074776285 -0.01080046 -0.0024952583 -0.00076212821 -0.010799386 -0.0019114144 -0.0039295903 -0.019010192 -0.0020066667 -0.003951414 -0.017533595 -0.0020105212 -0.0075033763 -0.017526692 -0.0019114144 -0.0039295903 -0.019010192 -0.0018678536 -0.0029821433 -0.018976733 -0.0020066667 -0.003951414 -0.017533595 -0.0016877147 0.0007268269 -0.022192469 -0.0017068951 0.00051389582 -0.021298731 -0.0016863908 -0.00074022351 -0.022192089 -0.0019126702 0.0074905385 -0.019031458 -0.0020194729 0.0074858763 -0.017532147 -0.0020207348 0.0039165081 -0.017548008 -0.0018678536 -0.0029821433 -0.018976733 -0.0019911069 -0.0028933925 -0.017272862 -0.0020066667 -0.003951414 -0.017533595 -0.0014317643 0.0068611661 -0.026364926 -0.0014503956 0.0053370302 -0.025617097 -0.0013744672 0.0047224946 -0.027159743 -0.0017267296 0.0021785058 -0.021646073 -0.0017068951 0.00051389582 -0.021298731 -0.0016877147 0.0007268269 -0.022192469 -0.001617141 0.0087786438 -0.0238402 -0.0014317643 0.0068611661 -0.026364926 -0.010802899 0.0070616631 -0.026699174 -0.001617141 0.0087786438 -0.0238402 -0.010802899 0.0070616631 -0.026699174 -0.010966481 0.0086616902 -0.024254018 -0.0014317643 0.0068611661 -0.026364926 -0.010732212 0.0048296419 -0.027644331 -0.010802899 0.0070616631 -0.026699174 -0.0014317643 0.0068611661 -0.026364926 -0.0013744672 0.0047224946 -0.027159743 -0.010732212 0.0048296419 -0.027644331 -0.0014842493 -0.0078682033 -0.025453893 -0.01087496 -0.0078315204 -0.025849653 -0.010705643 -0.0057053901 -0.027528156 -0.0013700709 -0.0053473408 -0.027078105 -0.0014842493 -0.0078682033 -0.025453893 -0.010705643 -0.0057053901 -0.027528156 -0.0016599202 -0.0089003434 -0.02316873 -0.010985862 -0.0087225717 -0.023874132 -0.01087496 -0.0078315204 -0.025849653 -0.0014842493 -0.0078682033 -0.025453893 -0.0016599202 -0.0089003434 -0.02316873 -0.01087496 -0.0078315204 -0.025849653 -0.0020194729 0.0074858763 -0.017532147 -0.010420195 0.0073217978 -0.011537009 -0.0099646654 0.0073192008 -0.017928354 -0.0025005967 0.0074920114 -0.010805603 -0.010420195 0.0073217978 -0.011537009 -0.0020194729 0.0074858763 -0.017532147 -0.0020207348 0.0039165081 -0.017548008 -0.0099646654 0.0073192008 -0.017928354 -0.009973472 0.0041035884 -0.017889377 -0.0020194729 0.0074858763 -0.017532147 -0.0099646654 0.0073192008 -0.017928354 -0.0020207348 0.0039165081 -0.017548008 -0.01018644 0.0009019674 -0.014779995 -0.0022461894 0.00072737841 -0.014365947 -0.0022161915 0.0020504156 -0.014843327 -0.010143946 0.0026636405 -0.015567901 -0.01018644 0.0009019674 -0.014779995 -0.0022161915 0.0020504156 -0.014843327 -0.010143946 0.0026636405 -0.015567901 -0.0022161915 0.0020504156 -0.014843327 -0.0021232576 0.0033689032 -0.01609968 -0.009973472 0.0041035884 -0.017889377 -0.010143946 0.0026636405 -0.015567901 -0.0021232576 0.0033689032 -0.01609968 -0.009973472 0.0041035884 -0.017889377 -0.0021232576 0.0033689032 -0.01609968 -0.0020207348 0.0039165081 -0.017548008 -0.010415886 0.00090497226 -0.01153607 -0.0022461894 0.00072737841 -0.014365947 -0.01018644 0.0009019674 -0.014779995 -0.010415886 0.00090497226 -0.01153607 -0.0024954844 0.00074776285 -0.01080046 -0.0022461894 0.00072737841 -0.014365947 -0.010420195 0.0073217978 -0.011537009 -0.0025005967 0.0074920114 -0.010805603 -0.010415886 0.00090497226 -0.01153607 -0.010415886 0.00090497226 -0.01153607 -0.0025005967 0.0074920114 -0.010805603 -0.0024954844 0.00074776285 -0.01080046 -0.010143946 0.0026636405 -0.015567901 -0.010415886 0.00090497226 -0.01153607 -0.01018644 0.0009019674 -0.014779995 -0.010420195 0.0073217978 -0.011537009 -0.010415886 0.00090497226 -0.01153607 -0.010143946 0.0026636405 -0.015567901 -0.0099646654 0.0073192008 -0.017928354 -0.010143946 0.0026636405 -0.015567901 -0.009973472 0.0041035884 -0.017889377 -0.0099646654 0.0073192008 -0.017928354 -0.010420195 0.0073217978 -0.011537009 -0.010143946 0.0026636405 -0.015567901 -0.01041017 -0.0073442785 -0.011534368 -0.0024952583 -0.00076212821 -0.010799386 -0.0024915622 -0.0074988506 -0.010798767 -0.010415022 -0.0009275176 -0.011536058 -0.0024952583 -0.00076212821 -0.010799386 -0.01041017 -0.0073442785 -0.011534368 -0.0022430713 -0.00073709729 -0.014368972 -0.010415022 -0.0009275176 -0.011536058 -0.010183544 -0.0009211424 -0.014781755 -0.0024952583 -0.00076212821 -0.010799386 -0.010415022 -0.0009275176 -0.011536058 -0.0022430713 -0.00073709729 -0.014368972 -0.010131199 -0.0030569355 -0.015810337 -0.0020066667 -0.003951414 -0.017533595 -0.0021889021 -0.0027138104 -0.015226061 -0.010131199 -0.0030569355 -0.015810337 -0.0099563599 -0.0040850723 -0.017936524 -0.0020066667 -0.003951414 -0.017533595 -0.010183544 -0.0009211424 -0.014781755 -0.0021889021 -0.0027138104 -0.015226061 -0.0022430713 -0.00073709729 -0.014368972 -0.010183544 -0.0009211424 -0.014781755 -0.010131199 -0.0030569355 -0.015810337 -0.0021889021 -0.0027138104 -0.015226061 -0.0020066667 -0.003951414 -0.017533595 -0.0099544395 -0.0073438352 -0.017926062 -0.0020105212 -0.0075033763 -0.017526692 -0.0020066667 -0.003951414 -0.017533595 -0.0099563599 -0.0040850723 -0.017936524 -0.0099544395 -0.0073438352 -0.017926062 -0.01041017 -0.0073442785 -0.011534368 -0.0020105212 -0.0075033763 -0.017526692 -0.0099544395 -0.0073438352 -0.017926062 -0.01041017 -0.0073442785 -0.011534368 -0.0024915622 -0.0074988506 -0.010798767 -0.0020105212 -0.0075033763 -0.017526692 -0.010131199 -0.0030569355 -0.015810337 -0.010415022 -0.0009275176 -0.011536058 -0.01041017 -0.0073442785 -0.011534368 -0.010131199 -0.0030569355 -0.015810337 -0.01041017 -0.0073442785 -0.011534368 -0.0099544395 -0.0073438352 -0.017926062 -0.010183544 -0.0009211424 -0.014781755 -0.010415022 -0.0009275176 -0.011536058 -0.010131199 -0.0030569355 -0.015810337 -0.0099563599 -0.0040850723 -0.017936524 -0.010131199 -0.0030569355 -0.015810337 -0.0099544395 -0.0073438352 -0.017926062 -0.0095132384 -0.0071528396 -0.02427326 -0.0015591489 -0.0072657727 -0.023953192 -0.0093862619 -0.0051028631 -0.026055066 -0.0015591489 -0.0072657727 -0.023953192 -0.0014311798 -0.0049795783 -0.02569741 -0.0093862619 -0.0051028631 -0.026055066 -0.0098226992 -0.0073442021 -0.019761391 -0.0015591489 -0.0072657727 -0.023953192 -0.0095132384 -0.0071528396 -0.02427326 -0.0098226992 -0.0073442021 -0.019761391 -0.0019035819 -0.0074987742 -0.019025391 -0.0015591489 -0.0072657727 -0.023953192 -0.0098226992 -0.0073442021 -0.019761391 -0.0019114144 -0.0039295903 -0.019010192 -0.0019035819 -0.0074987742 -0.019025391 -0.0098319724 -0.0041268133 -0.019801598 -0.0019114144 -0.0039295903 -0.019010192 -0.0098226992 -0.0073442021 -0.019761391 -0.0096055074 -0.00092532538 -0.022910018 -0.0016863908 -0.00074022351 -0.022192089 -0.0017232161 -0.002063503 -0.021715319 -0.0096740853 -0.0026874691 -0.022124212 -0.0096055074 -0.00092532538 -0.022910018 -0.0017232161 -0.002063503 -0.021715319 -0.0096740853 -0.0026874691 -0.022124212 -0.0017232161 -0.002063503 -0.021715319 -0.0018079423 -0.0033819254 -0.020458451 -0.0098319724 -0.0041268133 -0.019801598 -0.0096740853 -0.0026874691 -0.022124212 -0.0018079423 -0.0033819254 -0.020458451 -0.0098319724 -0.0041268133 -0.019801598 -0.0018079423 -0.0033819254 -0.020458451 -0.0019114144 -0.0039295903 -0.019010192 -0.0016863908 -0.00074022351 -0.022192089 -0.0093710758 -0.0009287931 -0.0261543 -0.001427638 -0.00076097692 -0.025756963 -0.0016863908 -0.00074022351 -0.022192089 -0.0096055074 -0.00092532538 -0.022910018 -0.0093710758 -0.0009287931 -0.0261543 -0.0014311798 -0.0049795783 -0.02569741 -0.0093710758 -0.0009287931 -0.0261543 -0.0093862619 -0.0051028631 -0.026055066 -0.001427638 -0.00076097692 -0.025756963 -0.0093710758 -0.0009287931 -0.0261543 -0.0014311798 -0.0049795783 -0.02569741 -0.0098319724 -0.0041268133 -0.019801598 -0.0098226992 -0.0073442021 -0.019761391 -0.0095132384 -0.0071528396 -0.02427326 -0.0096740853 -0.0026874691 -0.022124212 -0.0098319724 -0.0041268133 -0.019801598 -0.0095132384 -0.0071528396 -0.02427326 -0.0093862619 -0.0051028631 -0.026055066 -0.0096740853 -0.0026874691 -0.022124212 -0.0095132384 -0.0071528396 -0.02427326 -0.0093862619 -0.0051028631 -0.026055066 -0.0096055074 -0.00092532538 -0.022910018 -0.0096740853 -0.0026874691 -0.022124212 -0.0093710758 -0.0009287931 -0.0261543 -0.0096055074 -0.00092532538 -0.022910018 -0.0093862619 -0.0051028631 -0.026055066 -0.0094886171 0.0065958584 -0.025001138 -0.0015882258 0.0073580132 -0.023592977 -0.009579232 0.00729771 -0.023415929 -0.0093850531 0.0049123834 -0.026090814 -0.0014503956 0.0053370302 -0.025617097 -0.0094886171 0.0065958584 -0.025001138 -0.0014503956 0.0053370302 -0.025617097 -0.0015882258 0.0073580132 -0.023592977 -0.0094886171 0.0065958584 -0.025001138 -0.0014503956 0.0053370302 -0.025617097 -0.0093717789 0.00090311293 -0.026153225 -0.0014285721 0.00074238633 -0.025752243 -0.0014503956 0.0053370302 -0.025617097 -0.0093850531 0.0049123834 -0.026090814 -0.0093717789 0.00090311293 -0.026153225 -0.0093717789 0.00090311293 -0.026153225 -0.0016877147 0.0007268269 -0.022192469 -0.0014285721 0.00074238633 -0.025752243 -0.0096104592 0.00094715628 -0.022950245 -0.0016877147 0.0007268269 -0.022192469 -0.0093717789 0.00090311293 -0.026153225 -0.0098336954 0.0040638829 -0.019756582 -0.001916738 0.0039165835 -0.019011308 -0.0018254666 0.0034382206 -0.020331344 -0.0097213304 0.0032751814 -0.0215152 -0.0098336954 0.0040638829 -0.019756582 -0.0018254666 0.0034382206 -0.020331344 -0.0097213304 0.0032751814 -0.0215152 -0.0018254666 0.0034382206 -0.020331344 -0.0017267296 0.0021785058 -0.021646073 -0.0096104592 0.00094715628 -0.022950245 -0.0097213304 0.0032751814 -0.0215152 -0.0017267296 0.0021785058 -0.021646073 -0.0096104592 0.00094715628 -0.022950245 -0.0017267296 0.0021785058 -0.021646073 -0.0016877147 0.0007268269 -0.022192469 -0.0098325312 0.0073203235 -0.019763365 -0.001916738 0.0039165835 -0.019011308 -0.0098336954 0.0040638829 -0.019756582 -0.0098325312 0.0073203235 -0.019763365 -0.0019126702 0.0074905385 -0.019031458 -0.001916738 0.0039165835 -0.019011308 -0.0015882258 0.0073580132 -0.023592977 -0.0098325312 0.0073203235 -0.019763365 -0.009579232 0.00729771 -0.023415929 -0.0019126702 0.0074905385 -0.019031458 -0.0098325312 0.0073203235 -0.019763365 -0.0015882258 0.0073580132 -0.023592977 -0.0093850531 0.0049123834 -0.026090814 -0.0097213304 0.0032751814 -0.0215152 -0.0096104592 0.00094715628 -0.022950245 -0.0093850531 0.0049123834 -0.026090814 -0.0096104592 0.00094715628 -0.022950245 -0.0093717789 0.00090311293 -0.026153225 -0.009579232 0.00729771 -0.023415929 -0.0098336954 0.0040638829 -0.019756582 -0.0097213304 0.0032751814 -0.0215152 -0.009579232 0.00729771 -0.023415929 -0.0098325312 0.0073203235 -0.019763365 -0.0098336954 0.0040638829 -0.019756582 -0.0094886171 0.0065958584 -0.025001138 -0.009579232 0.00729771 -0.023415929 -0.0097213304 0.0032751814 -0.0215152 -0.0094886171 0.0065958584 -0.025001138 -0.0097213304 0.0032751814 -0.0215152 -0.0093850531 0.0049123834 -0.026090814 -0.00061608665 -0.00072927435 -0.016054887 -0.00058574358 -0.0024610567 -0.016444605 -0.00053499907 -0.0019730746 -0.017251421 -0.00053499907 -0.0019730746 -0.017251421 -0.00058574358 -0.0024610567 -0.016444605 -0.00044434678 -0.0030153431 -0.018449746 -0.00061608665 -0.00072927435 -0.016054887 -0.00067620381 -0.00097590766 -0.015347463 -0.00058574358 -0.0024610567 -0.016444605 -0.00044241038 -0.002159138 -0.018591709 -0.00053499907 -0.0019730746 -0.017251421 -0.00044434678 -0.0030153431 -0.018449746 -0.00061608665 -0.00072927435 -0.016054887 -0.00066896999 0.0010198114 -0.015329344 -0.00067620381 -0.00097590766 -0.015347463 -0.00061032508 0.00097896077 -0.016243845 -0.00066896999 0.0010198114 -0.015329344 -0.00061608665 -0.00072927435 -0.016054887 -0.00044241038 -0.002159138 -0.018591709 -0.00044434678 -0.0030153431 -0.018449746 -0.00028078762 -0.0018770372 -0.020576116 -0.00052963907 0.0019937353 -0.017260401 -0.00066896999 0.0010198114 -0.015329344 -0.00061032508 0.00097896077 -0.016243845 -0.00060457346 0.0023399168 -0.016356649 -0.00066896999 0.0010198114 -0.015329344 -0.00052963907 0.0019937353 -0.017260401 -0.00033498657 -0.0010762329 -0.020148657 -0.00044241038 -0.002159138 -0.018591709 -0.00028078762 -0.0018770372 -0.020576116 -0.00049020385 0.0029933262 -0.017817879 -0.00060457346 0.0023399168 -0.016356649 -0.00052963907 0.0019937353 -0.017260401 -0.00024954873 0.00035356366 -0.021132521 -0.00032554721 0.00082084909 -0.020186424 -0.00033498657 -0.0010762329 -0.020148657 -0.00024954873 0.00035356366 -0.021132521 -0.00033498657 -0.0010762329 -0.020148657 -0.00028078762 -0.0018770372 -0.020576116 -0.00049020385 0.0029933262 -0.017817879 -0.00052963907 0.0019937353 -0.017260401 -0.00043316791 0.0020452728 -0.018996373 -0.00033751619 0.0023326771 -0.020123322 -0.00049020385 0.0029933262 -0.017817879 -0.00043316791 0.0020452728 -0.018996373 -0.00024954873 0.00035356366 -0.021132521 -0.00043316791 0.0020452728 -0.018996373 -0.00032554721 0.00082084909 -0.020186424 -0.00033751619 0.0023326771 -0.020123322 -0.00043316791 0.0020452728 -0.018996373 -0.00024954873 0.00035356366 -0.021132521 -0.0017935272 0.0025392533 -0.020070015 -0.0019495267 0.0030315581 -0.017930074 -0.00049020385 0.0029933262 -0.017817879 -0.0017935272 0.0025392533 -0.020070015 -0.00049020385 0.0029933262 -0.017817879 -0.00033751619 0.0023326771 -0.020123322 -0.0020889479 0.002070931 -0.015957609 -0.00213644 8.1859052e-06 -0.015225967 -0.00066896999 0.0010198114 -0.015329344 -0.0017068951 0.00051389582 -0.021298731 -0.0017935272 0.0025392533 -0.020070015 -0.00033751619 0.0023326771 -0.020123322 -0.0020889479 0.002070931 -0.015957609 -0.00066896999 0.0010198114 -0.015329344 -0.00060457346 0.0023399168 -0.016356649 -0.0017068951 0.00051389582 -0.021298731 -0.00033751619 0.0023326771 -0.020123322 -0.00024954873 0.00035356366 -0.021132521 -0.0020889479 0.002070931 -0.015957609 -0.00060457346 0.0023399168 -0.016356649 -0.00049020385 0.0029933262 -0.017817879 -0.0019495267 0.0030315581 -0.017930074 -0.0020889479 0.002070931 -0.015957609 -0.00049020385 0.0029933262 -0.017817879 -0.0019704425 0.002148035 -0.01784265 -0.00052963907 0.0019937353 -0.017260401 -0.0020665096 0.00071487162 -0.016270891 -0.00033498657 -0.0010762329 -0.020148657 -0.00032554721 0.00082084909 -0.020186424 -0.0017756645 -1.8229881e-05 -0.02038802 -0.00052963907 0.0019937353 -0.017260401 -0.00061032508 0.00097896077 -0.016243845 -0.0020665096 0.00071487162 -0.016270891 -0.0017756645 -1.8229881e-05 -0.02038802 -0.00032554721 0.00082084909 -0.020186424 -0.001816642 0.0014414672 -0.019840151 -0.00061032508 0.00097896077 -0.016243845 -0.00061608665 -0.00072927435 -0.016054887 -0.0020665096 0.00071487162 -0.016270891 -0.00032554721 0.00082084909 -0.020186424 -0.00043316791 0.0020452728 -0.018996373 -0.001816642 0.0014414672 -0.019840151 -0.001816642 0.0014414672 -0.019840151 -0.00043316791 0.0020452728 -0.018996373 -0.0019704425 0.002148035 -0.01784265 -0.00043316791 0.0020452728 -0.018996373 -0.00052963907 0.0019937353 -0.017260401 -0.0019704425 0.002148035 -0.01784265 -0.0093227355 0.00084947853 -0.020242762 -0.0019272154 0.0017341694 -0.018864295 -0.0094912546 0.0015147234 -0.017896259 -0.0019272154 0.0017341694 -0.018864295 -0.0020527137 0.0012908982 -0.017070618 -0.0094912546 0.0015147234 -0.017896259 -0.0020527137 0.0012908982 -0.017070618 -0.0020936304 -0.00016250102 -0.016517766 -0.0094912546 0.0015147234 -0.017896259 -0.0094912546 0.0015147234 -0.017896259 -0.0020936304 -0.00016250102 -0.016517766 -0.0095260506 -0.0008720234 -0.017379832 -0.0018424471 0.0001494337 -0.020040654 -0.0019272154 0.0017341694 -0.018864295 -0.0093227355 0.00084947853 -0.020242762 -0.0020085019 -0.0017472545 -0.017694147 -0.0019976315 -0.0018261018 -0.017157417 -0.0019050328 -0.0020933514 -0.018544005 -0.0020527137 0.0012908982 -0.017070618 -0.0019704425 0.002148035 -0.01784265 -0.0020665096 0.00071487162 -0.016270891 -0.0020936304 -0.00016250102 -0.016517766 -0.0020665096 0.00071487162 -0.016270891 -0.002065677 -0.00070443825 -0.016297558 -0.0017756645 -1.8229881e-05 -0.02038802 -0.0018786074 -0.0013039805 -0.019487463 -0.0018159479 -0.0014717671 -0.019823944 -0.001816642 0.0014414672 -0.019840151 -0.0019272154 0.0017341694 -0.018864295 -0.0018424471 0.0001494337 -0.020040654 -0.0018786074 -0.0013039805 -0.019487463 -0.0020085019 -0.0017472545 -0.017694147 -0.0018159479 -0.0014717671 -0.019823944 -0.0018159479 -0.0014717671 -0.019823944 -0.0020085019 -0.0017472545 -0.017694147 -0.0019050328 -0.0020933514 -0.018544005 -0.0017756645 -1.8229881e-05 -0.02038802 -0.0018424471 0.0001494337 -0.020040654 -0.0018786074 -0.0013039805 -0.019487463 -0.0020085019 -0.0017472545 -0.017694147 -0.002065677 -0.00070443825 -0.016297558 -0.0019976315 -0.0018261018 -0.017157417 -0.0020085019 -0.0017472545 -0.017694147 -0.0020936304 -0.00016250102 -0.016517766 -0.002065677 -0.00070443825 -0.016297558 -0.001816642 0.0014414672 -0.019840151 -0.0019704425 0.002148035 -0.01784265 -0.0019272154 0.0017341694 -0.018864295 -0.0017756645 -1.8229881e-05 -0.02038802 -0.001816642 0.0014414672 -0.019840151 -0.0018424471 0.0001494337 -0.020040654 -0.0019272154 0.0017341694 -0.018864295 -0.0019704425 0.002148035 -0.01784265 -0.0020527137 0.0012908982 -0.017070618 -0.0020527137 0.0012908982 -0.017070618 -0.0020665096 0.00071487162 -0.016270891 -0.0020936304 -0.00016250102 -0.016517766 -0.0093227355 0.00084947853 -0.020242762 -0.0094912546 0.0015147234 -0.017896259 -0.0095260506 -0.0008720234 -0.017379832 -0.0093227355 0.00084947853 -0.020242762 -0.0095260506 -0.0008720234 -0.017379832 -0.0093586659 -0.0015372809 -0.019726362 -0.011565454 -0.0022567327 -0.01671383 -0.009847763 -1.1540154e-05 -0.018841475 -0.009772148 -0.0088158827 -0.018835459 -0.011565454 -0.0022567327 -0.01671383 -0.009772148 -0.0088158827 -0.018835459 -0.011519493 -0.0087714894 -0.0166783 -0.011253697 -0.0022753542 -0.021210102 -0.011194318 -0.008770735 -0.02121467 -0.009772148 -0.0088158827 -0.018835459 -0.009847763 -1.1540154e-05 -0.018841475 -0.011253697 -0.0022753542 -0.021210102 -0.009772148 -0.0088158827 -0.018835459 -0.0097774845 0.0087974686 -0.018837081 -0.011206106 0.008743966 -0.021216625 -0.011256534 0.0022500078 -0.021210624 -0.0097774845 0.0087974686 -0.018837081 -0.011256534 0.0022500078 -0.021210624 -0.009847763 -1.1540154e-05 -0.018841475 -0.0097774845 0.0087974686 -0.018837081 -0.009847763 -1.1540154e-05 -0.018841475 -0.011570245 0.0022354876 -0.016710958 -0.011528501 0.0087461928 -0.016684238 -0.0097774845 0.0087974686 -0.018837081 -0.011570245 0.0022354876 -0.016710958 + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785

+
+
+
+
+ + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + + + + + + + + + + + + + +
diff --git a/external/rlbench/urdfs/panda/meshes/robot_base_coll_1.dae b/external/rlbench/urdfs/panda/meshes/robot_base_coll_1.dae new file mode 100644 index 0000000000000000000000000000000000000000..1b3d161e699e0c729480eeea5f0e846105dd7cd1 --- /dev/null +++ b/external/rlbench/urdfs/panda/meshes/robot_base_coll_1.dae @@ -0,0 +1,84 @@ + + + + + Assimp + Assimp Exporter + + 2023-09-26T11:24:21 + 2023-09-26T11:24:21 + + Y_UP + + + + + + + + 0 0 0 4.5895327e-41 + + + 0.36000001 0.67054564 0.61352545 4.5893926e-41 + + + 0.36000001 0.67054564 0.61352545 4.5893926e-41 + + + 0.25 0.25 0.25 -3.0261091e+37 + + + + + + + + + + + + + + + + -0.070017673 0.093555473 0.055050906 -0.068645254 -0.019533018 0.11037447 -0.068635784 -0.010008253 0.11237277 -0.069991603 -0.093516529 0.026187906 -0.068645254 -0.019533018 0.11037447 -0.070017673 0.093555473 0.055050906 -0.068635784 -0.010008253 0.11237277 -0.068651818 0.00029507291 0.11308846 -0.070017673 0.093555473 0.055050906 -0.062465332 0.086079411 -0.081699528 -0.069984853 0.086336717 -0.082847036 -0.06998571 0.088424213 -0.077778667 -0.068937257 0.037797481 0.10248639 -0.070017673 0.093555473 0.055050906 -0.068804018 0.025773244 0.10828917 -0.070017673 0.093555473 0.055050906 -0.068708979 0.013616686 0.11184854 -0.068804018 0.025773244 0.10828917 0.070014715 0.0078431088 0.096045271 0.070014834 -0.0130731 0.094968185 0.070014924 0.0050816634 -0.01334687 0.070014834 -0.0130731 0.094968185 0.070015043 -0.044469263 0.074054666 0.070014924 0.0050816634 -0.01334687 -0.068645254 -0.019533018 0.11037447 0.070014834 -0.0130731 0.094968185 -0.068635784 -0.010008253 0.11237277 -0.061523274 0.088650472 0.063391954 -0.068937257 0.037797481 0.10248639 0.070017651 0.031729013 0.086574502 0.070014924 0.0050816634 -0.01334687 0.070015624 0.05056604 0.019793499 0.070014641 0.054262668 0.050433155 -0.068687439 -0.031368379 0.10601006 -0.068645254 -0.019533018 0.11037447 -0.069991603 -0.093516529 0.026187906 -0.068775296 -0.04260838 0.099138737 -0.068687439 -0.031368379 0.10601006 -0.069991603 -0.093516529 0.026187906 -0.068967633 -0.056473289 0.08580073 -0.068862505 -0.049974866 0.092914738 -0.069991603 -0.093516529 0.026187906 -0.068862505 -0.049974866 0.092914738 -0.068775296 -0.04260838 0.099138737 -0.069991603 -0.093516529 0.026187906 -0.070017673 0.093555473 0.055050906 -0.068651818 0.00029507291 0.11308846 -0.068708979 0.013616686 0.11184854 0.070014834 -0.0130731 0.094968185 0.070014715 -0.028579548 0.088560455 0.070015043 -0.044469263 0.074054666 -0.068687439 -0.031368379 0.10601006 -0.068775296 -0.04260838 0.099138737 0.070014715 -0.028579548 0.088560455 0.070014551 -0.046738409 0.011984122 0.07001482 -0.039594203 0.0031383217 0.070014924 0.0050816634 -0.01334687 0.070015043 -0.044469263 0.074054666 0.070014894 -0.049540237 0.065775663 0.070014924 0.0050816634 -0.01334687 0.070014924 0.0050816634 -0.01334687 0.070014343 -0.055131119 0.037699416 0.070014551 -0.046738409 0.011984122 0.070016861 -0.05239556 0.024238428 0.070014551 -0.046738409 0.011984122 0.070014343 -0.055131119 0.037699416 0.070014983 0.04268267 0.07627295 0.070017651 0.031729013 0.086574502 0.070014924 0.0050816634 -0.01334687 0.070015043 0.013863851 -0.011755016 0.070014492 0.023564836 -0.0083154701 0.070014924 0.0050816634 -0.01334687 -0.0088364519 0.013495383 -0.080505118 -0.0090281814 0.02514616 -0.078760691 0.070014924 0.0050816634 -0.01334687 0.070014924 0.0050816634 -0.01334687 -0.0090281814 0.02514616 -0.078760691 0.070015043 0.013863851 -0.011755016 0.070014074 0.050262205 0.063995682 0.070014983 0.04268267 0.07627295 0.070014924 0.0050816634 -0.01334687 0.070014641 0.054262668 0.050433155 0.070014074 0.050262205 0.063995682 0.070014924 0.0050816634 -0.01334687 -0.012464829 0.085798487 -0.017499277 0.070015624 0.05056604 0.019793499 -0.010930043 0.064179353 -0.060969282 -0.069984853 0.086336717 -0.082847036 -0.062465332 0.086079411 -0.081699528 -0.062432487 0.083107628 -0.084895484 -0.062570162 -0.045317341 -0.10102653 -0.069984347 -0.044375014 -0.10303555 -0.062418804 -0.042625573 -0.1032274 -0.069984429 -0.047534864 -0.09926483 -0.069984347 -0.044375014 -0.10303555 -0.062570162 -0.045317341 -0.10102653 -0.069991603 -0.093516529 0.026187906 -0.061353743 -0.092788115 0.03003775 -0.069814473 -0.093555339 0.03084268 0.070017651 0.031729013 0.086574502 0.070014864 0.020079231 0.09274029 0.070014924 0.0050816634 -0.01334687 -0.068937257 0.037797481 0.10248639 0.070014864 0.020079231 0.09274029 0.070017651 0.031729013 0.086574502 -0.068804018 0.025773244 0.10828917 0.070014864 0.020079231 0.09274029 -0.068937257 0.037797481 0.10248639 0.070014924 0.0050816634 -0.01334687 0.070014864 0.020079231 0.09274029 0.070014715 0.0078431088 0.096045271 -0.068708979 0.013616686 0.11184854 0.070014864 0.020079231 0.09274029 -0.068804018 0.025773244 0.10828917 0.070014715 0.0078431088 0.096045271 0.070014864 0.020079231 0.09274029 -0.068708979 0.013616686 0.11184854 -0.068775296 -0.04260838 0.099138737 -0.068862505 -0.049974866 0.092914738 0.070014775 -0.036976002 0.082474276 0.070014834 -0.0130731 0.094968185 0.07001467 -0.0041499599 0.096401528 -0.068635784 -0.010008253 0.11237277 0.070014715 0.0078431088 0.096045271 0.07001467 -0.0041499599 0.096401528 0.070014834 -0.0130731 0.094968185 0.070014551 -0.046738409 0.011984122 0.070016861 -0.05239556 0.024238428 -0.062540323 -0.047756333 -0.096816428 0.070014924 0.0050816634 -0.01334687 0.07001473 -0.019895593 -0.0099433502 0.07001476 -0.0073502222 -0.013180816 0.070014074 -0.054030463 0.053224359 0.070014343 -0.055131119 0.037699416 0.070014924 0.0050816634 -0.01334687 0.070014894 -0.049540237 0.065775663 0.070014074 -0.054030463 0.053224359 0.070014924 0.0050816634 -0.01334687 0.011094846 -0.073719189 0.036411628 0.070016861 -0.05239556 0.024238428 0.070014343 -0.055131119 0.037699416 -0.068937257 0.037797481 0.10248639 -0.069742292 0.089317702 0.063993379 -0.070017673 0.093555473 0.055050906 0.070014492 0.023564836 -0.0083154701 0.070014596 0.036700916 0.00028849827 0.070014924 0.0050816634 -0.01334687 -0.069985345 -0.038193215 -0.10632338 -0.062418804 -0.042625573 -0.1032274 -0.069984347 -0.044375014 -0.10303555 -0.06975089 -0.092429601 0.034673512 -0.069814473 -0.093555339 0.03084268 -0.061353743 -0.092788115 0.03003775 -0.069991603 -0.093516529 0.026187906 -0.069814473 -0.093555339 0.03084268 -0.06975089 -0.092429601 0.034673512 -0.061493367 -0.092322029 0.025281198 -0.061353743 -0.092788115 0.03003775 -0.069991603 -0.093516529 0.026187906 0.011094846 -0.073719189 0.036411628 -0.061353743 -0.092788115 0.03003775 -0.061493367 -0.092322029 0.025281198 -0.06975089 -0.092429601 0.034673512 -0.068967633 -0.056473289 0.08580073 -0.069991603 -0.093516529 0.026187906 -0.06975089 -0.092429601 0.034673512 -0.061667431 -0.091560073 0.034456156 -0.068967633 -0.056473289 0.08580073 -0.061667431 -0.091560073 0.034456156 0.070015043 -0.044469263 0.074054666 -0.068967633 -0.056473289 0.08580073 -0.069985256 0.0646917 -0.098927811 -0.062168065 0.05995103 -0.10011931 -0.06998501 0.048255131 -0.1053445 0.070014715 -0.028579548 0.088560455 0.070014775 -0.036976002 0.082474276 0.070015043 -0.044469263 0.074054666 0.070014715 -0.028579548 0.088560455 -0.068775296 -0.04260838 0.099138737 0.070014775 -0.036976002 0.082474276 0.07001467 -0.0041499599 0.096401528 -0.068651818 0.00029507291 0.11308846 -0.068635784 -0.010008253 0.11237277 -0.068651818 0.00029507291 0.11308846 0.070014715 0.0078431088 0.096045271 -0.068708979 0.013616686 0.11184854 -0.062540323 -0.047756333 -0.096816428 -0.069991603 -0.093516529 0.026187906 -0.069984429 -0.047534864 -0.09926483 -0.069991603 -0.093516529 0.026187906 -0.062540323 -0.047756333 -0.096816428 -0.061493367 -0.092322029 0.025281198 0.070016861 -0.05239556 0.024238428 0.011094846 -0.073719189 0.036411628 -0.061493367 -0.092322029 0.025281198 -0.062570162 -0.045317341 -0.10102653 0.07001482 -0.039594203 0.0031383217 0.070014551 -0.046738409 0.011984122 0.070014074 -0.054030463 0.053224359 0.070014894 -0.049540237 0.065775663 0.0084697157 -0.074316792 0.038936831 -0.068937257 0.037797481 0.10248639 -0.061523274 0.088650472 0.063391954 -0.069742292 0.089317702 0.063993379 -0.0090281814 0.02514616 -0.078760691 -0.0085673928 0.033470955 -0.076393209 0.070015043 0.013863851 -0.011755016 0.070014074 0.050262205 0.063995682 0.070014641 0.054262668 0.050433155 0.010990486 0.07148122 0.059668299 -0.010930043 0.064179353 -0.060969282 -0.062465332 0.086079411 -0.081699528 -0.012464829 0.085798487 -0.017499277 -0.06998571 0.088424213 -0.077778667 -0.062317133 0.087667987 -0.077215925 -0.062465332 0.086079411 -0.081699528 -0.062465332 0.086079411 -0.081699528 -0.062317133 0.087667987 -0.077215925 -0.012464829 0.085798487 -0.017499277 0.070015624 0.05056604 0.019793499 0.070014566 0.053985711 0.030883579 0.070014641 0.054262668 0.050433155 0.070014536 0.054960869 0.040992897 0.070014641 0.054262668 0.050433155 0.070014566 0.053985711 0.030883579 0.070014566 0.053985711 0.030883579 -0.011005901 0.085812032 -0.011648815 0.070014536 0.054960869 0.040992897 -0.010930043 0.064179353 -0.060969282 0.070014775 0.045443933 0.010521179 0.070014596 0.036700916 0.00028849827 -0.069985226 0.076508194 -0.091657095 -0.062302716 0.07062877 -0.094591618 -0.069985256 0.0646917 -0.098927811 -0.0084752813 0.041956581 -0.073661491 -0.0086451322 0.049105495 -0.070818774 0.070014492 0.023564836 -0.0083154701 0.070014596 0.036700916 0.00028849827 -0.0098067671 0.059286784 -0.065313175 -0.010930043 0.064179353 -0.060969282 -0.06975089 -0.092429601 0.034673512 -0.061353743 -0.092788115 0.03003775 -0.061667431 -0.091560073 0.034456156 -0.069985554 0.029450098 -0.10983709 -0.061793748 0.037394919 -0.1072106 -0.061634399 0.025844583 -0.10948273 -0.06998501 0.048255131 -0.1053445 -0.061793748 0.037394919 -0.1072106 -0.069985554 0.029450098 -0.10983709 -0.062356792 -0.032757014 -0.10756355 -0.062418804 -0.042625573 -0.1032274 -0.069985345 -0.038193215 -0.10632338 0.07001473 -0.021114377 0.092380151 0.070014715 -0.028579548 0.088560455 0.070014834 -0.0130731 0.094968185 0.070014715 -0.028579548 0.088560455 0.07001473 -0.021114377 0.092380151 -0.068687439 -0.031368379 0.10601006 -0.068645254 -0.019533018 0.11037447 0.07001473 -0.021114377 0.092380151 0.070014834 -0.0130731 0.094968185 -0.068687439 -0.031368379 0.10601006 0.07001473 -0.021114377 0.092380151 -0.068645254 -0.019533018 0.11037447 0.070015043 -0.044469263 0.074054666 0.070014775 -0.036976002 0.082474276 -0.068967633 -0.056473289 0.08580073 -0.068967633 -0.056473289 0.08580073 0.070014775 -0.036976002 0.082474276 -0.068862505 -0.049974866 0.092914738 0.07001467 -0.0041499599 0.096401528 0.070014715 0.0078431088 0.096045271 -0.068651818 0.00029507291 0.11308846 0.070014551 -0.046738409 0.011984122 -0.062540323 -0.047756333 -0.096816428 -0.062570162 -0.045317341 -0.10102653 -0.061493367 -0.092322029 0.025281198 -0.062540323 -0.047756333 -0.096816428 0.070016861 -0.05239556 0.024238428 -0.062570162 -0.045317341 -0.10102653 -0.011105604 -0.030925317 -0.074740842 0.07001482 -0.039594203 0.0031383217 -0.061667431 -0.091560073 0.034456156 -0.061353743 -0.092788115 0.03003775 0.0084697157 -0.074316792 0.038936831 -0.061667431 -0.091560073 0.034456156 0.0084697157 -0.074316792 0.038936831 0.070014894 -0.049540237 0.065775663 -0.061509527 0.091442928 0.059673887 -0.069742292 0.089317702 0.063993379 -0.061523274 0.088650472 0.063391954 -0.061509527 0.091442928 0.059673887 -0.06980744 0.092424728 0.059653178 -0.069742292 0.089317702 0.063993379 -0.069742292 0.089317702 0.063993379 -0.06980744 0.092424728 0.059653178 -0.070017673 0.093555473 0.055050906 -0.061523274 0.088650472 0.063391954 0.0086110458 0.071298696 0.061951991 -0.061509527 0.091442928 0.059673887 0.070014983 0.04268267 0.07627295 0.0086110458 0.071298696 0.061951991 -0.061523274 0.088650472 0.063391954 -0.012464829 0.085798487 -0.017499277 0.070014566 0.053985711 0.030883579 0.070015624 0.05056604 0.019793499 -0.011005901 0.085812032 -0.011648815 0.070014566 0.053985711 0.030883579 -0.012464829 0.085798487 -0.017499277 -0.06998571 0.088424213 -0.077778667 -0.012464829 0.085798487 -0.017499277 -0.062317133 0.087667987 -0.077215925 -0.070017673 0.093555473 0.055050906 -0.012464829 0.085798487 -0.017499277 -0.06998571 0.088424213 -0.077778667 -0.011005901 0.085812032 -0.011648815 -0.012464829 0.085798487 -0.017499277 -0.070017673 0.093555473 0.055050906 -0.010930043 0.064179353 -0.060969282 0.070015624 0.05056604 0.019793499 0.070014775 0.045443933 0.010521179 0.070014775 0.045443933 0.010521179 0.070015624 0.05056604 0.019793499 0.070014924 0.0050816634 -0.01334687 0.070014596 0.036700916 0.00028849827 0.070014775 0.045443933 0.010521179 0.070014924 0.0050816634 -0.01334687 -0.062302716 0.07062877 -0.094591618 -0.0098067671 0.059286784 -0.065313175 -0.009148784 0.054374043 -0.068360917 -0.069984853 0.086336717 -0.082847036 -0.062432487 0.083107628 -0.084895484 -0.069985226 0.076508194 -0.091657095 -0.069985256 0.0646917 -0.098927811 -0.062302716 0.07062877 -0.094591618 -0.062168065 0.05995103 -0.10011931 -0.061667431 -0.091560073 0.034456156 0.070014894 -0.049540237 0.065775663 0.070015043 -0.044469263 0.074054666 -0.06998501 0.048255131 -0.1053445 -0.062168065 0.05995103 -0.10011931 -0.06193744 0.048115831 -0.10436329 -0.06193744 0.048115831 -0.10436329 -0.061793748 0.037394919 -0.1072106 -0.06998501 0.048255131 -0.1053445 -0.069985189 -0.0017947141 -0.11308846 -0.069985181 0.013493446 -0.11212005 -0.061875641 0.002141824 -0.11207144 0.07001476 -0.0073502222 -0.013180816 -0.0084149055 0.00091800466 -0.081009597 0.070014924 0.0050816634 -0.01334687 -0.062570162 -0.045317341 -0.10102653 -0.062540323 -0.047756333 -0.096816428 -0.069984429 -0.047534864 -0.09926483 0.070014924 0.0050816634 -0.01334687 0.07001482 -0.039594203 0.0031383217 0.070014715 -0.031197252 -0.0040173354 -0.062570162 -0.045317341 -0.10102653 -0.062418804 -0.042625573 -0.1032274 -0.011105604 -0.030925317 -0.074740842 -0.062418804 -0.042625573 -0.1032274 -0.010300372 -0.026568564 -0.077346914 -0.011105604 -0.030925317 -0.074740842 0.011094846 -0.073719189 0.036411628 0.0084697157 -0.074316792 0.038936831 -0.061353743 -0.092788115 0.03003775 0.070014074 -0.054030463 0.053224359 0.011094846 -0.073719189 0.036411628 0.070014343 -0.055131119 0.037699416 0.0084697157 -0.074316792 0.038936831 0.011094846 -0.073719189 0.036411628 0.070014074 -0.054030463 0.053224359 0.070014983 0.04268267 0.07627295 -0.061523274 0.088650472 0.063391954 0.070017651 0.031729013 0.086574502 0.010990486 0.07148122 0.059668299 0.0086110458 0.071298696 0.061951991 0.070014074 0.050262205 0.063995682 0.070014983 0.04268267 0.07627295 0.070014074 0.050262205 0.063995682 0.0086110458 0.071298696 0.061951991 -0.011005901 0.085812032 -0.011648815 -0.070017673 0.093555473 0.055050906 -0.061806951 0.092633091 0.055269685 -0.06980744 0.092424728 0.059653178 -0.061806951 0.092633091 0.055269685 -0.070017673 0.093555473 0.055050906 -0.0098067671 0.059286784 -0.065313175 -0.062302716 0.07062877 -0.094591618 -0.062368147 0.077337734 -0.089876324 -0.062368147 0.077337734 -0.089876324 -0.062302716 0.07062877 -0.094591618 -0.069985226 0.076508194 -0.091657095 -0.062465332 0.086079411 -0.081699528 -0.010930043 0.064179353 -0.060969282 -0.0098067671 0.059286784 -0.065313175 -0.062432487 0.083107628 -0.084895484 -0.062368147 0.077337734 -0.089876324 -0.069985226 0.076508194 -0.091657095 -0.009148784 0.054374043 -0.068360917 0.070014596 0.036700916 0.00028849827 0.070014492 0.023564836 -0.0083154701 -0.0086451322 0.049105495 -0.070818774 -0.009148784 0.054374043 -0.068360917 0.070014492 0.023564836 -0.0083154701 -0.069985189 -0.0017947141 -0.11308846 -0.062116399 -0.01186263 -0.11187036 -0.069984876 -0.016527472 -0.11225933 -0.0088364519 0.013495383 -0.080505118 -0.061765328 0.013854667 -0.11115954 -0.061634399 0.025844583 -0.10948273 -0.069985554 0.029450098 -0.10983709 -0.061765328 0.013854667 -0.11115954 -0.069985181 0.013493446 -0.11212005 -0.061634399 0.025844583 -0.10948273 -0.061765328 0.013854667 -0.11115954 -0.069985554 0.029450098 -0.10983709 -0.069985181 0.013493446 -0.11212005 -0.061765328 0.013854667 -0.11115954 -0.061875641 0.002141824 -0.11207144 -0.069985308 -0.027650511 -0.11005629 -0.062356792 -0.032757014 -0.10756355 -0.069985345 -0.038193215 -0.10632338 0.070014715 -0.031197252 -0.0040173354 0.07001473 -0.019895593 -0.0099433502 0.070014924 0.0050816634 -0.01334687 0.07001473 -0.019895593 -0.0099433502 -0.010300372 -0.026568564 -0.077346914 -0.0092740431 -0.021124877 -0.078988686 0.070014715 -0.031197252 -0.0040173354 -0.010300372 -0.026568564 -0.077346914 0.07001473 -0.019895593 -0.0099433502 0.07001482 -0.039594203 0.0031383217 -0.011105604 -0.030925317 -0.074740842 0.070014715 -0.031197252 -0.0040173354 -0.010300372 -0.026568564 -0.077346914 0.070014715 -0.031197252 -0.0040173354 -0.011105604 -0.030925317 -0.074740842 -0.0084752813 0.041956581 -0.073661491 -0.0085673928 0.033470955 -0.076393209 -0.06193744 0.048115831 -0.10436329 0.010990486 0.07148122 0.059668299 -0.061509527 0.091442928 0.059673887 0.0086110458 0.071298696 0.061951991 -0.061806951 0.092633091 0.055269685 0.010990486 0.07148122 0.059668299 -0.001016885 0.078561038 0.030523524 -0.062368147 0.077337734 -0.089876324 -0.062432487 0.083107628 -0.084895484 -0.0098067671 0.059286784 -0.065313175 -0.062302716 0.07062877 -0.094591618 -0.009148784 0.054374043 -0.068360917 -0.062168065 0.05995103 -0.10011931 -0.062168065 0.05995103 -0.10011931 -0.009148784 0.054374043 -0.068360917 -0.0086451322 0.049105495 -0.070818774 -0.062168065 0.05995103 -0.10011931 -0.0086451322 0.049105495 -0.070818774 -0.0084752813 0.041956581 -0.073661491 -0.0088364519 0.013495383 -0.080505118 -0.061634399 0.025844583 -0.10948273 -0.0090281814 0.02514616 -0.078760691 -0.0090281814 0.02514616 -0.078760691 -0.061793748 0.037394919 -0.1072106 -0.0085673928 0.033470955 -0.076393209 -0.0092740431 -0.021124877 -0.078988686 -0.010300372 -0.026568564 -0.077346914 -0.062356792 -0.032757014 -0.10756355 -0.062356792 -0.032757014 -0.10756355 -0.0090281963 -0.017219089 -0.079913393 -0.0092740431 -0.021124877 -0.078988686 -0.069985308 -0.027650511 -0.11005629 -0.062280808 -0.023437623 -0.11019542 -0.062356792 -0.032757014 -0.10756355 -0.069984876 -0.016527472 -0.11225933 -0.062280808 -0.023437623 -0.11019542 -0.069985308 -0.027650511 -0.11005629 -0.0085673928 0.033470955 -0.076393209 -0.0084752813 0.041956581 -0.073661491 0.070015043 0.013863851 -0.011755016 -0.0084752813 0.041956581 -0.073661491 0.070014492 0.023564836 -0.0083154701 0.070015043 0.013863851 -0.011755016 -0.011005901 0.085812032 -0.011648815 -0.061806951 0.092633091 0.055269685 -0.001016885 0.078561038 0.030523524 0.070014641 0.054262668 0.050433155 -0.011005901 0.085812032 -0.011648815 -0.001016885 0.078561038 0.030523524 0.070014536 0.054960869 0.040992897 -0.011005901 0.085812032 -0.011648815 0.070014641 0.054262668 0.050433155 -0.061806951 0.092633091 0.055269685 -0.061509527 0.091442928 0.059673887 0.010990486 0.07148122 0.059668299 -0.061806951 0.092633091 0.055269685 -0.06980744 0.092424728 0.059653178 -0.061509527 0.091442928 0.059673887 -0.001016885 0.078561038 0.030523524 0.010990486 0.07148122 0.059668299 0.070014641 0.054262668 0.050433155 -0.009148784 0.054374043 -0.068360917 -0.0098067671 0.059286784 -0.065313175 0.070014596 0.036700916 0.00028849827 -0.062432487 0.083107628 -0.084895484 -0.062465332 0.086079411 -0.081699528 -0.0098067671 0.059286784 -0.065313175 -0.0085673928 0.033470955 -0.076393209 -0.061793748 0.037394919 -0.1072106 -0.06193744 0.048115831 -0.10436329 -0.061793748 0.037394919 -0.1072106 -0.0090281814 0.02514616 -0.078760691 -0.061634399 0.025844583 -0.10948273 -0.06193744 0.048115831 -0.10436329 -0.062168065 0.05995103 -0.10011931 -0.0084752813 0.041956581 -0.073661491 -0.069985189 -0.0017947141 -0.11308846 -0.061875641 0.002141824 -0.11207144 -0.062116399 -0.01186263 -0.11187036 -0.062356792 -0.032757014 -0.10756355 -0.062280808 -0.023437623 -0.11019542 -0.0090281963 -0.017219089 -0.079913393 -0.0088454783 -0.0098748049 -0.080959715 -0.0084149055 0.00091800466 -0.081009597 0.07001476 -0.0073502222 -0.013180816 -0.0088364519 0.013495383 -0.080505118 0.070014924 0.0050816634 -0.01334687 -0.0084149055 0.00091800466 -0.081009597 -0.010300372 -0.026568564 -0.077346914 -0.062418804 -0.042625573 -0.1032274 -0.062356792 -0.032757014 -0.10756355 -0.069984876 -0.016527472 -0.11225933 -0.062116399 -0.01186263 -0.11187036 -0.062280808 -0.023437623 -0.11019542 0.07001473 -0.019895593 -0.0099433502 -0.0092740431 -0.021124877 -0.078988686 0.07001476 -0.0073502222 -0.013180816 -0.0090281963 -0.017219089 -0.079913393 0.07001476 -0.0073502222 -0.013180816 -0.0092740431 -0.021124877 -0.078988686 -0.0088454783 -0.0098748049 -0.080959715 0.07001476 -0.0073502222 -0.013180816 -0.0090281963 -0.017219089 -0.079913393 -0.061875641 0.002141824 -0.11207144 -0.061765328 0.013854667 -0.11115954 -0.0088364519 0.013495383 -0.080505118 -0.0088364519 0.013495383 -0.080505118 -0.0084149055 0.00091800466 -0.081009597 -0.061875641 0.002141824 -0.11207144 -0.062280808 -0.023437623 -0.11019542 -0.0088454783 -0.0098748049 -0.080959715 -0.0090281963 -0.017219089 -0.079913393 -0.062116399 -0.01186263 -0.11187036 -0.061875641 0.002141824 -0.11207144 -0.0088454783 -0.0098748049 -0.080959715 -0.0084149055 0.00091800466 -0.081009597 -0.0088454783 -0.0098748049 -0.080959715 -0.061875641 0.002141824 -0.11207144 -0.062280808 -0.023437623 -0.11019542 -0.062116399 -0.01186263 -0.11187036 -0.0088454783 -0.0098748049 -0.080959715 -0.069991603 -0.093516529 0.026187906 -0.070017673 0.093555473 0.055050906 -0.069985189 -0.0017947141 -0.11308846 -0.069991603 -0.093516529 0.026187906 -0.069985189 -0.0017947141 -0.11308846 -0.069984429 -0.047534864 -0.09926483 -0.070017673 0.093555473 0.055050906 -0.06998571 0.088424213 -0.077778667 -0.069985189 -0.0017947141 -0.11308846 -0.069985256 0.0646917 -0.098927811 -0.069985189 -0.0017947141 -0.11308846 -0.069985226 0.076508194 -0.091657095 -0.069985554 0.029450098 -0.10983709 -0.069985189 -0.0017947141 -0.11308846 -0.06998501 0.048255131 -0.1053445 -0.069985345 -0.038193215 -0.10632338 -0.069985189 -0.0017947141 -0.11308846 -0.069985308 -0.027650511 -0.11005629 -0.069985345 -0.038193215 -0.10632338 -0.069984347 -0.044375014 -0.10303555 -0.069985189 -0.0017947141 -0.11308846 -0.069984429 -0.047534864 -0.09926483 -0.069985189 -0.0017947141 -0.11308846 -0.069984347 -0.044375014 -0.10303555 -0.06998571 0.088424213 -0.077778667 -0.069984853 0.086336717 -0.082847036 -0.069985189 -0.0017947141 -0.11308846 -0.06998501 0.048255131 -0.1053445 -0.069985189 -0.0017947141 -0.11308846 -0.069985256 0.0646917 -0.098927811 -0.069985308 -0.027650511 -0.11005629 -0.069985189 -0.0017947141 -0.11308846 -0.069984876 -0.016527472 -0.11225933 -0.069985226 0.076508194 -0.091657095 -0.069985189 -0.0017947141 -0.11308846 -0.069984853 0.086336717 -0.082847036 -0.069985181 0.013493446 -0.11212005 -0.069985189 -0.0017947141 -0.11308846 -0.069985554 0.029450098 -0.10983709 + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599

+
+
+
+
+ + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + + + + + + + + + + + + + +
diff --git a/external/rlbench/urdfs/panda/panda.urdf b/external/rlbench/urdfs/panda/panda.urdf new file mode 100644 index 0000000000000000000000000000000000000000..140acd6622a98e3eaad7c4811ae3c3715b447aad --- /dev/null +++ b/external/rlbench/urdfs/panda/panda.urdf @@ -0,0 +1,560 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +