|
From: <fli...@li...> - 2025-05-05 17:37:08
|
Revision: 12076
http://sourceforge.net/p/flightgear/fgaddon/12076
Author: helijah
Date: 2025-05-05 17:36:51 +0000 (Mon, 05 May 2025)
Log Message:
-----------
Dassault Mirage III : Added AI version. Bombable V5.0 compatibility.
Added Paths:
-----------
trunk/Aircraft/MirageIII/AI/Aircraft/MirageIII/Models/Effects/
trunk/Aircraft/MirageIII/AI/Aircraft/MirageIII/Models/MirageIII-bombableinclude.xml
trunk/Aircraft/MirageIII/AI/Aircraft/MirageIII/Models/exhaust.png
trunk/Aircraft/MirageIII/AI/Aircraft/MirageIII/Models/mirageIII.ac
trunk/Aircraft/MirageIII/AI/Aircraft/MirageIII/Models/mirageIII.xml
trunk/Aircraft/MirageIII/AI/Aircraft/MirageIII/Models/texture.png
Added: trunk/Aircraft/MirageIII/AI/Aircraft/MirageIII/Models/MirageIII-bombableinclude.xml
===================================================================
--- trunk/Aircraft/MirageIII/AI/Aircraft/MirageIII/Models/MirageIII-bombableinclude.xml (rev 0)
+++ trunk/Aircraft/MirageIII/AI/Aircraft/MirageIII/Models/MirageIII-bombableinclude.xml 2025-05-05 17:36:51 UTC (rev 12076)
@@ -0,0 +1,423 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+
+<PropertyList>
+
+ <nasal>
+ <load>
+ <![CDATA[
+
+ var nodeName = cmdarg().getPath();
+
+ print("Loading Mirage III ", nodeName);
+
+ ##checks whether it has been initialized already; if so, just return
+ if ( bombable.check_overall_initialized (nodeName) ) {
+ return;
+ }
+
+ #makes the propellors spin in the AI version of the aircraft
+ setprop (nodeName ~ "/engines/engine/rpm", "3000");
+
+ ############################################
+ #Bombable INITIALIZER
+ var object_init = func() {
+ # Datas of this object are under: cmdarg().getPath()
+ var thisNodeName = cmdarg().getPath();
+ var thisNode = props.globals.getNode(thisNodeName);
+ # Add some useful nodes
+
+ ########################################################################
+ ########################################################################
+ # INITIALIZE BOMBABLE
+ #
+ # Initialize constants and main routines for maintaining altitude
+ # relative to ground-level, relocating after file/reset, and
+ # creating bombable/shootable objects.
+ #
+ # These routines are found in FG/nasal/bombable.nas
+ #
+ ########################################################################
+ # INITIALIZE BOMBABLE Object
+ # This object will be slurped in the object's node as a child
+ # node named "bombable".
+ # All distances are specified in meters.
+ # All altitudes are relative to current ground level at the object's
+ # location
+ #
+
+ thisNodeName = cmdarg().getPath();
+
+ var bombableObject = {
+
+ objectNodeName : thisNodeName,
+ objectNode : props.globals.getNode(thisNodeName),
+
+ # time, in seconds, between the updates that
+ updateTime_s : 1/3,
+
+ #keep the object at its AGL. Tradeoff is high-speed updates look more
+ #realistic but slow down the framerate/cause jerkiness. Faster-moving
+ #objects will need more frequent updates to look realistic.
+ #update time faster than about 1/3 seems to have a noticeable effect
+ #on frame rate
+
+ #########################################
+ # ALTITUDE DEFINITIONS
+ #
+ altitudes : {
+ # altitude correction to add to your aircraft or ship that is needed to put wheels on ground
+ # (or, for a ship, make it float in the water at the correct level). For most objects this is 0
+ # but some models need a small correction to place them exactly at ground level
+ wheelsOnGroundAGL_m : 1,
+
+ # minimum altitude above ground level this object is allowed to fly
+ minimumAGL_m : 100,
+
+ # maximum altitude AGL this object is allowed to fly, ie, operational ceiling
+ maximumAGL_m : 13715,
+
+ # altitude AGL when crashed. Ships will sink to this level, aircraft or vehicles will
+ # sink into the ground as landing gear collapses or tires deflate. Should be negative, even just -0.001.
+ crashedAGL_m : 0.6,
+ },
+ #
+ #########################################
+ # VELOCITIES DEFINITIONS
+ #
+ velocities : {
+ # max % to reduce speed, per step, when damaged
+ maxSpeedReduce_percent : 0.5,
+
+ # minimum speed to reduce to when damaged. Ground vehicles and ships might stop completely
+ # when damaged but aircraft will need a minimum speed so they keep moving until they hit the ground.
+ # V (s) (stall speed) for aircraft.
+ minSpeed_kt : 130,
+
+ # cruising speed, typical/optimal cruising speed, V C for aircraft
+ cruiseSpeed_kt : 516,
+
+ # typical/optimal speed when aggressively attacking or evading, in level flight for aircraft
+ attackSpeed_kt : 800,
+
+ # Maximum possible speed under dive or downhill conditions, V NE for aircraft
+ # data:
+ # see particularly p. 59
+ # accel limits are +7 and -3 Gs in all situations, and less in some situations
+ maxSpeed_kt : 1268,
+
+ # max rate to sink or fly downwards when damaged, in meters/second
+ damagedAltitudeChangeMaxRate_meterspersecond : 30,
+
+ #The terminal velocities are calculated by opening the 'real' AC
+ #in FG, level flight, full throttle, then putting
+ #the AC at different angles of attack with the autopilot,
+ #and noting the terminal airspeed & vertical speed velocities.
+ #For best results, do it near sea level, under 5000 feet altitude.
+ #One or two each of climb & dive velocities are probably sufficient.
+ #However if you do more we may be able to use the more precise
+ #data in the future.
+ #Note that these are intended to be true airspeed whereas FG's
+ #/velocities/airspeed-kt reports indicated airspeed, so some
+ #conversion or reference to groundspeed-kt is needed.
+ #For the F6F I have used indicated airspeed at 10,000 ft for all the above &
+ # below values
+
+ diveTerminalVelocities: {
+ point1: { airspeed_kt : 377, vertical_speed_fps : -41.8},
+ point2: { airspeed_kt : 416, vertical_speed_fps : -87.2},
+ point3: { airspeed_kt : 430, vertical_speed_fps : -188.8},
+ point4: { airspeed_kt : 547, vertical_speed_fps : -302},
+ },
+
+ climbTerminalVelocities: {
+ point1: { airspeed_kt : 344, vertical_speed_fps : 27.6},
+ point2: { airspeed_kt : 314, vertical_speed_fps : 52.6},
+ point3: { airspeed_kt : 297, vertical_speed_fps : 88},
+ point4: { airspeed_kt : 252, vertical_speed_fps : 88},
+ },
+ },
+ #
+ #########################################
+ # EVASION DEFINITIONS
+ #
+ # The evasion system makes the AI aircraft dodge when they come under
+ # fire.
+ evasions : {
+ # max time to delay/wait between dodges
+ dodgeDelayMax_sec : 15,
+
+ # minimum time to delay/wait between dodges
+ dodgeDelayMin_sec : 5,
+
+ # Max amount to turn when dodging
+ dodgeMax_deg : 79,
+
+ # 90 degrees = instant turn, unrealistic
+ # up to 80 is usually OK, somewhere in 80-85 starts to be unrealistically fast
+ # >85 is usually very unrealistic. You must test this in your scenario, however.
+
+ # minimum amount to turn when dodging
+ dodgeMin_deg : 58,
+
+ # you can figure this out by rolling the corresponding FG aircraft and timing a 180 or 360 deg roll
+ rollRateMax_degpersec : 65,
+
+ # Preference for right turns vs. left when dodging. 90% means 90% right turns, 50% means 50% right turns.
+ dodgeROverLPreference_percent : 50,
+
+ # Aircraft will begin to move up or down
+ dodgeAltMax_m : 5000,
+
+ # Aircraft will begin to move up or down
+ dodgeAltMin_m : -5000,
+
+ # Max speed to climb when evading
+ dodgeVertSpeedClimb_mps : 80,
+
+ # Max speed to dive when evading
+ dodgeVertSpeedDive_mps : 160,
+ },
+ #
+ #########################################
+ # ATTACK DEFINITIONS
+ #
+ # The attack system makes the AI aircraft turn and fly towards
+ # other aircraft
+ attacks : {
+ # max distance to turn & attack main aircraft
+ maxDistance_m : 20000,
+
+ # min distance to turn & attack main aircraft,
+ minDistance_m : 1600,
+
+ # ie, fly away this far before turning to attack again. If you
+ # make this short it will be more like a turning fighter (Zero),
+ # longer will become more like an energy fighter that zooms
+ # way out, turns around, etc.
+
+ #when within minDistance_m, the aircraft will continue to turn towards the main aircraft and attack
+ # *if* if the angle is less than this amount from dead ahead. A wider angle will make it work more
+ # like a twisty/turning fighter, narrower angle more like an energy fighter.
+ continueAttackAngle_deg : 80,
+
+ # will attack the main aircraft unless this amount higher than it or more
+ altitudeHigherCutoff_m : 15000,
+
+ # will attack the main aircraft unless this amount lower than it or more
+ altitudeLowerCutoff_m : 10000,
+
+ # when turning on attack, roll to this angle min
+ rollMin_deg : 58,
+
+ # when turning on attack, roll to this angle max
+ rollMax_deg : 79,
+
+ # 90 degrees = instant turn, unrealistic
+ # up to 80 is usually OK, somewhere in 80-85 starts to be unrealistically fast
+ # >85 is usually very unrealistic. You must test this in your scenario, however.
+
+ # you can figure this out by rolling the corresponding FG aircraft and timing a 180 or 360 deg roll
+ rollRateMax_degpersec : 65,
+
+ # How powerful the aircraft is when climbing during an attack; 4000 would be typical for, say a
+ # Zero--scale accordingly for others; higher is stronger
+ climbPower : 4500,
+
+ # How powerful the aircraft is when diving during and attack; 6000 typical of a Zero--could be
+ # much more than climbPower if the aircraft is a weak climber but a strong diver
+ divePower : 9000,
+
+ # check for need to attack/correct course this often
+ attackCheckTime_sec : 6,
+
+ # once engaged with enemy, check/update course this frequently
+ attackCheckTimeEngaged_sec : 0.6,
+ },
+ #
+ #########################################
+ # WEAPONS DEFINITIONS
+ #
+ # The weapons system makes the AI aircraft fire on the main aircraft
+ # You can define any number of weapons--just enclose each in curly brackets
+ # and separate with commas (,).
+ weapons : {
+ # internal name - this can be any name you want; must be a valid nasal variable name
+ front_gun_left : {
+
+ # name presented to users, ie in on-screen messages
+ name : "0.79 inch AN/M3 Machine Gun",
+
+ # maximum percentage damage one hit from the aircraft's main weapon/machine guns will do to an opponent
+ # Based on observation from within FG, a good F6F pass can easily do 18% damage to most aircraft
+ maxDamage_percent : 18,
+
+ # maximum distance at which the aircrafts main weapon/maching guns will be able to damage an opponent.
+ Making this large is very expensive for FG's framerate and the chance of a hit at great than 100 meters,
+ vanishingly small. So set it carefully.
+ maxDamageDistance_m : 1500,
+
+ # direction the aircraft's main weapon is aimed.
+ weaponAngle_deg : { heading: 0, elevation: 0 },
+
+ # 0,0 = straight ahead, 90,0=directly right, 0,90=directly up, 0,180=directly back, etc.
+ # Offset of the weapon from the main aircraft center
+ weaponOffset_m : {x:-3, y:3, z:0},
+
+ # Visual size of the weapon's projectile, in meters, at start & end of its path
+ weaponSize_m : {start:.1, end:.1},
+ },
+ # internal name - this can be any name you want; must be a valid nasal variable name
+ front_gun_right : {
+
+ # name presented to users, ie in on-screen messages
+ name : "0.79 inch AN/M3 Machine Gun",
+
+ # maximum percentage damage one hit from the aircraft's main weapon/machine guns will do to an opponent
+ # Based on observation from within FG, a good F6F pass can easily do 18% damage to most aircraft
+ maxDamage_percent : 18,
+
+ # maximum distance at which the aircrafts main weapon/maching guns will be able to damage an opponent.
+ # Making this large is very expensive for FG's framerate and the chance of a hit at great than 100 meters,
+ # vanishingly small. So set it carefully.
+ maxDamageDistance_m : 1500,
+
+ # direction the aircraft's main weapon is aimed.
+ weaponAngle_deg : { heading: 0, elevation: 0 },
+
+ # 0,0 = straight ahead, 90,0=directly right, 0,90=directly up, 0,180=directly back, etc.
+ # Offset of the weapon from the main aircraft center
+ weaponOffset_m : {x:3, y:3, z:0},
+
+ # Visual size of the weapon's projectile, in meters, at start & end of its path
+ weaponSize_m : {start:.1, end:.1},
+ },
+ },
+ #
+ #########################################
+ # DIMENSION DEFINITIONS
+ #
+ # All dimensions are in meters
+ # Source: https://www.wikiwand.com/en/articles/Grumman_F4F_Wildcat
+ dimensions : {
+ # width of your object, ie, for aircraft, wingspan
+ width_m : 8.20,
+
+ # length of your object, ie, for aircraft, distance nose to tail
+ length_m : 15.55,
+
+ # height of your object, ie, for aircraft ground to highest point when sitting on runway
+ height_m : 4.50,
+
+ # typically 1/2 the longest dimension of the object. Hits within this distance of the
+ damageRadius_m : 2.25,
+
+ # center of object have some possibility of damage
+ # typically the radius of the fuselage or cockpit or other most
+ vitalDamageRadius_m : 1,
+
+ # vital area at the center of the object. Always smaller than damageRadius_m
+ },
+ #
+ #########################################
+ # VULNERABILITIES DEFINITIONS
+ #
+ vulnerabilities : {
+ # Vulnerability to damage from armament, 1=normal M1 tank; higher to make objects
+ # easier to kill and lower to make them more difficult. This is a multiplier, so
+ # 5 means 5X easier to kill than an M1, 1/5 means 5X harder to kill.
+ damageVulnerability : 45,
+
+ # Chance that a small-caliber machine-gun round will damage the engine or do something
+ # else to cause a trail fo smoke.
+ engineDamageVulnerability_percent : 4,
+
+ # Vulnerability to catching on fire. 100% means even the slightest impact will set it on
+ # fire; 20% means quite difficult to set on fire; 0% means set on fire only when completely
+ # damaged; -1% means never set on fire.
+ fireVulnerability_percent : 5,
+
+ # Amount of damage to add, per second, when on fire. 100%=completely damaged.
+ fireDamageRate_percentpersecond : 0.2,
+
+ # Once a fire starts, for this many seconds there is a chance to put out the fire;
+ # fires lasting longer than this won't be put out until the object burns out.
+ fireExtinguishMaxTime_seconds : 50,
+
+ # Chance of the crew putting out the fire within the MaxTime above.
+ fireExtinguishSuccess_percentage : 50,
+
+ # mass of the object in KG, but give at least a 2-10X bonus to anything carrying flammables or high explosives.
+ explosiveMass_kg : 40772 ,
+ },
+ #
+ #########################################
+ # LIVERY DEFINITIONS
+ #
+ # Path to livery files to use at different damage levels.
+ # Path is relative to the AI aircraft's directory.
+ # The object will start with the first livery listed and
+ # change to succeeding liveries as the damage
+ # level increases. The final livery should indicate full damage/
+ # object destroyed.
+ #
+ # If you don't want to specify any special liveries simply set
+ # damageLivery : nil and the object's normal livery will be used.
+ #
+ damageLiveries : {
+ damageLivery : [ ]
+ },
+ };
+
+ #########################################
+ # INITIALIZE ROUTINES
+ #
+ # OVERALL INITIALIZER: Needed to make all the others work
+ bombable.initialize ( bombableObject );
+ #
+ # LOCATION: Relocate object to maintain its position after file/reset
+ # (best not used for airplanes)
+ # bombable.location_init ( thisNodeName );
+ #
+ # GROUND: Keep object at altitude relative to ground level
+ bombable.ground_init ( thisNodeName );
+ #
+ # BOMBABLE: Make the object bombable/damageable
+ bombable.bombable_init ( thisNodeName );
+ #
+ # ATTACK: Make the object attack the main aircraft
+ bombable.attack_init ( thisNodeName );
+ #
+ # WEAPONS: Make the object shoot the main aircraft
+ bombable.weapons_init ( thisNodeName );
+ #
+ # SMOKE/CONTRAIL: Start a flare, contrail, smoke trail, or exhaust
+ # trail for the object.
+ # Smoke types available: flare, jetcontrail, pistonexhaust, smoketrail,
+ # damagedengine
+ bombable.startSmoke("pistonexhaust", thisNodeName );
+ #
+ # END INITIALIZE BOMBABLE
+ ########################################################################
+ ########################################################################
+ }
+
+ object_init();
+ ]]>
+ </load>
+ <unload>
+ <![CDATA[
+ print("Unload Mirage III.");
+ var nodeName= cmdarg().getPath();
+ bombable.de_overall_initialize( nodeName );
+ bombable.initialize_del( nodeName );
+ bombable.ground_del( nodeName );
+ bombable.location_del (nodeName);
+ bombable.bombable_del( nodeName );
+ bombable.attack_del( nodeName );
+ bombable.weapons_del (nodeName);
+ # </unload>
+ ]]>
+ </unload>
+ </nasal>
+
+</PropertyList>
Added: trunk/Aircraft/MirageIII/AI/Aircraft/MirageIII/Models/exhaust.png
===================================================================
(Binary files differ)
Index: trunk/Aircraft/MirageIII/AI/Aircraft/MirageIII/Models/exhaust.png
===================================================================
--- trunk/Aircraft/MirageIII/AI/Aircraft/MirageIII/Models/exhaust.png 2025-05-05 17:36:03 UTC (rev 12075)
+++ trunk/Aircraft/MirageIII/AI/Aircraft/MirageIII/Models/exhaust.png 2025-05-05 17:36:51 UTC (rev 12076)
Property changes on: trunk/Aircraft/MirageIII/AI/Aircraft/MirageIII/Models/exhaust.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+image/png
\ No newline at end of property
Added: trunk/Aircraft/MirageIII/AI/Aircraft/MirageIII/Models/mirageIII.ac
===================================================================
--- trunk/Aircraft/MirageIII/AI/Aircraft/MirageIII/Models/mirageIII.ac (rev 0)
+++ trunk/Aircraft/MirageIII/AI/Aircraft/MirageIII/Models/mirageIII.ac 2025-05-05 17:36:51 UTC (rev 12076)
@@ -0,0 +1,155341 @@
+AC3Db
+MATERIAL "DefaultWhite" rgb 1 1 1 amb 1 1 1 emis 0 0 0 spec 0.5 0.5 0.5 shi 64 trans 0
+OBJECT world
+kids 5
+OBJECT poly
+name "exhaust"
+loc 7.09 -0.16 -0
+data 7
+exhaust
+texture "exhaust.png"
+texrep 1.000000 1.000000
+crease 30.000001
+numvert 1856
+-0.000072 -0.101794 0.427811
+0.10423 -0.10877 0.402013
+0.10423 -0.014465 0.414212
+0.108395 -0.014261 0.408375
+0.108395 -0.107378 0.396331
+0.11144 -0.103307 0.384837
+0.11144 -0.013843 0.396409
+0.034582 -0.107868 0.427599
+0.107807 -0.105819 0.395924
+0.107807 -0.01424 0.40777
+0.103699 -0.10705 0.400946
+0.103699 -0.01442 0.412927
+0.031714 -0.104956 0.424288
+-0.000161 -0.099067 0.424493
+-0.000161 -0.076969 0.42772
+0.099496 -0.014478 0.414583
+0.099525 -0.014542 0.416436
+0.031714 -0.077846 0.428048
+0.087371 -0.070119 0.408656
+0.031566 -0.074948 0.42088
+0.098302 -0.014383 0.411879
+-0.000309 -0.073821 0.42056
+-0.000309 -0.014997 0.429471
+0.088565 -0.073812 0.411234
+0.092625 -0.069277 0.410213
+0.09598 -0.059633 0.410134
+0.098275 -0.045525 0.411051
+0.099334 -0.028875 0.412785
+0.091431 -0.065583 0.407636
+0.094786 -0.055941 0.407556
+0.097081 -0.041833 0.408472
+0.09814 -0.025182 0.410207
+-0.000072 0.071704 0.43387
+-0.000072 -0.01538 0.440431
+0.10423 0.080462 0.408621
+0.108395 0.07947 0.402856
+0.11144 0.07621 0.391106
+0.034582 -0.01538 0.440431
+0.034582 0.077777 0.434082
+0.107807 0.077943 0.402341
+0.103699 0.078821 0.407437
+0.031714 0.075104 0.430575
+-0.000161 0.069214 0.43037
+-0.000161 0.046945 0.432048
+0.031714 0.047797 0.432436
+0.087371 0.041441 0.412552
+0.031566 0.045406 0.425083
+-0.000309 0.044305 0.424685
+0.031566 -0.014997 0.429471
+0.088565 0.044946 0.415381
+0.092625 0.040494 0.414046
+0.09598 0.030878 0.413294
+0.098275 0.016741 0.413225
+0.099334 0.00001 0.413793
+0.091431 0.036988 0.411217
+0.094786 0.027375 0.410465
+0.097081 0.013237 0.410395
+0.09814 -0.003494 0.410964
+-0.000072 0.43888 -0.027734
+0.10423 0.416248 -0.01352
+0.10423 0.400342 -0.107271
+0.108395 0.394701 -0.10576
+0.108395 0.410408 -0.01319
+0.11144 0.398225 -0.013723
+0.11144 0.383136 -0.102661
+0.034582 0.440452 -0.021864
+0.107807 0.409563 -0.014562
+0.107807 0.394115 -0.105603
+0.103699 0.414725 -0.014853
+0.103699 0.3991 -0.106939
+0.031714 0.436435 -0.02368
+-0.000161 0.434909 -0.029372
+-0.000161 0.431535 -0.051448
+0.099496 0.400701 -0.107368
+0.099525 0.402492 -0.107847
+0.031714 0.432104 -0.050705
+0.087371 0.4113 -0.052425
+0.031566 0.424402 -0.05138
+0.098302 0.398087 -0.106667
+-0.000309 0.423767 -0.052364
+-0.000309 0.41509 -0.111223
+0.088565 0.414845 -0.049647
+0.092625 0.412544 -0.053685
+0.09598 0.409648 -0.062885
+0.098275 0.4064 -0.076644
+0.099334 0.40319 -0.093074
+0.091431 0.408998 -0.056464
+0.094786 0.406103 -0.065662
+0.097081 0.402854 -0.079421
+0.09814 0.399646 -0.095851
+-0.000072 0.393948 -0.195422
+-0.000072 0.425683 -0.114061
+0.10423 0.367241 -0.196416
+0.108395 0.362018 -0.193781
+0.11144 0.351735 -0.187229
+0.034582 0.425683 -0.114061
+0.034582 0.392375 -0.201292
+0.107807 0.361973 -0.192171
+0.103699 0.366589 -0.1945
+0.031714 0.389803 -0.19771
+-0.000161 0.391328 -0.192018
+-0.000161 0.399444 -0.171213
+0.031714 0.399566 -0.172141
+0.087371 0.382409 -0.160249
+0.031566 0.393233 -0.167705
+-0.000309 0.393175 -0.166535
+0.031566 0.41509 -0.111223
+0.088565 0.38409 -0.164428
+0.092625 0.384116 -0.15978
+0.09598 0.386208 -0.150365
+0.098275 0.390275 -0.136825
+0.099334 0.39571 -0.120991
+0.091431 0.382435 -0.155601
+0.094786 0.384527 -0.146187
+0.097081 0.388593 -0.132647
+0.09814 0.394029 -0.116814
+-0.000072 0.393154 -0.197013
+0.10423 0.377876 -0.175086
+0.10423 0.326602 -0.25517
+0.108395 0.322 -0.251574
+0.108395 0.372628 -0.1725
+0.11144 0.361206 -0.168231
+0.11144 0.312565 -0.244203
+0.034582 0.396896 -0.192224
+0.107807 0.371315 -0.173433
+0.107807 0.321523 -0.251201
+0.103699 0.375953 -0.175718
+0.103699 0.325589 -0.254379
+0.031714 0.392488 -0.192326
+-0.000161 0.38886 -0.196969
+-0.000161 0.377128 -0.215972
+0.099496 0.326895 -0.255399
+0.099525 0.328356 -0.25654
+0.031714 0.377942 -0.215511
+0.087371 0.35812 -0.208965
+0.031566 0.370588 -0.213123
+0.098302 0.324763 -0.253733
+-0.000309 0.369619 -0.21378
+-0.000309 0.338634 -0.26457
+0.088565 0.362468 -0.207793
+0.092625 0.358772 -0.21061
+0.09598 0.352512 -0.217948
+0.098275 0.344146 -0.229344
+0.099334 0.334772 -0.243214
+0.091431 0.354423 -0.211784
+0.094786 0.348164 -0.219119
+0.097081 0.339797 -0.230515
+0.09814 0.330424 -0.244385
+-0.000072 0.286273 -0.333815
+-0.000072 0.347276 -0.271322
+0.10423 0.261302 -0.324294
+0.108395 0.257523 -0.319828
+0.11144 0.250618 -0.309779
+0.034582 0.347276 -0.271322
+0.034582 0.282532 -0.338603
+0.107807 0.258111 -0.318328
+0.103699 0.26145 -0.322276
+0.031714 0.281564 -0.334302
+-0.000161 0.285192 -0.329658
+-0.000161 0.300792 -0.313677
+0.031714 0.300541 -0.314579
+0.087371 0.289395 -0.296929
+0.031566 0.296445 -0.308021
+-0.000309 0.296849 -0.306922
+0.031566 0.338634 -0.26457
+0.088565 0.289309 -0.301432
+0.092625 0.291149 -0.297164
+0.09598 0.296754 -0.289315
+0.098275 0.305788 -0.27844
+0.099334 0.316978 -0.265989
+0.091431 0.291235 -0.29266
+0.094786 0.296839 -0.284812
+0.097081 0.305872 -0.273937
+0.09814 0.317063 -0.261487
+-0.000072 0.284922 -0.334969
+0.10423 0.279425 -0.308816
+0.10423 0.200936 -0.362499
+0.108395 0.198105 -0.357391
+0.108395 0.275605 -0.304385
+0.11144 0.266759 -0.295992
+0.11144 0.1923 -0.346919
+0.034582 0.290237 -0.332023
+0.107807 0.274031 -0.30473
+0.107807 0.197811 -0.356861
+0.103699 0.277408 -0.308646
+0.103699 0.200313 -0.361375
+0.031714 0.286139 -0.330394
+-0.000161 0.280985 -0.333251
+-0.000161 0.262761 -0.346159
+0.099496 0.201116 -0.362824
+0.099525 0.202015 -0.364445
+0.031714 0.263691 -0.346052
+0.087371 0.248002 -0.332282
+0.031566 0.257855 -0.340981
+0.098302 0.199805 -0.360457
+-0.000309 0.256705 -0.341208
+-0.000309 0.208339 -0.375853
+0.088565 0.252463 -0.332902
+0.092625 0.24796 -0.334051
+0.09598 0.23933 -0.338359
+0.098275 0.227176 -0.345581
+0.099334 0.213128 -0.354685
+0.091431 0.243498 -0.333432
+0.094786 0.23487 -0.337739
+0.097081 0.222716 -0.34496
+0.09814 0.208668 -0.354065
+-0.000072 0.133084 -0.419134
+-0.000072 0.213655 -0.385444
+0.10423 0.113818 -0.400613
+0.108395 0.112085 -0.395026
+0.11144 0.109655 -0.383077
+0.034582 0.213655 -0.385444
+0.034582 0.127769 -0.42208
+0.107807 0.113211 -0.393874
+0.103699 0.114743 -0.398813
+0.031714 0.128559 -0.417742
+-0.000161 0.133713 -0.414885
+-0.000161 0.154317 -0.40627
+0.031714 0.153734 -0.407003
+0.087371 0.15037 -0.3864
+0.031566 0.152526 -0.399366
+-0.000309 0.153327 -0.398511
+0.031566 0.208339 -0.375853
+0.088565 0.148532 -0.390512
+0.092625 0.151893 -0.387302
+0.09598 0.160119 -0.382267
+0.098275 0.172684 -0.375787
+0.099334 0.18785 -0.368697
+0.091431 0.153732 -0.38319
+0.094786 0.161956 -0.378155
+0.097081 0.174521 -0.371675
+0.09814 0.189687 -0.364586
+-0.000072 0.131389 -0.419668
+0.10423 0.136548 -0.393446
+0.10423 0.043323 -0.412194
+0.108395 0.042713 -0.406386
+0.108395 0.134763 -0.387875
+0.11144 0.1299 -0.376693
+0.11144 0.041461 -0.394478
+0.034582 0.137433 -0.419033
+0.107807 0.133179 -0.387578
+0.107807 0.042649 -0.405783
+0.103699 0.134758 -0.392502
+0.103699 0.043189 -0.410916
+0.031714 0.134297 -0.415933
+-0.000161 0.128437 -0.416549
+-0.000161 0.106618 -0.421309
+0.099496 0.043362 -0.412564
+0.099525 0.043556 -0.414407
+0.031714 0.107515 -0.421575
+0.087371 0.098454 -0.402769
+0.031566 0.104125 -0.414626
+0.098302 0.043079 -0.409872
+-0.000309 0.102978 -0.414386
+-0.000309 0.044919 -0.427379
+0.088565 0.102318 -0.405083
+0.092625 0.097724 -0.404381
+0.09598 0.088097 -0.404975
+0.098275 0.074088 -0.406874
+0.099334 0.057599 -0.409765
+0.091431 0.093859 -0.402068
+0.094786 0.084234 -0.402661
+0.097081 0.070225 -0.404559
+0.09814 0.053736 -0.407451
+-0.000072 -0.041264 -0.437815
+-0.000072 0.046066 -0.438285
+0.10423 -0.051762 -0.413239
+0.108395 -0.051175 -0.407418
+0.11144 -0.048742 -0.395469
+0.034582 0.046066 -0.438285
+0.034582 -0.047308 -0.43845
+0.107807 -0.049687 -0.406798
+0.103699 -0.050207 -0.411943
+0.031714 -0.044886 -0.434766
+-0.000161 -0.039025 -0.43415
+-0.000161 -0.016693 -0.43427
+0.031714 -0.017516 -0.434716
+0.087371 -0.012562 -0.414438
+0.031566 -0.015644 -0.427215
+-0.000309 -0.014572 -0.426741
+0.031566 0.044919 -0.427379
+0.088565 -0.015861 -0.417504
+0.092625 -0.011513 -0.415863
+0.09598 -0.001973 -0.414442
+0.098275 0.012125 -0.413386
+0.099334 0.028855 -0.412786
+0.091431 -0.008213 -0.412796
+0.094786 0.001325 -0.411375
+0.097081 0.015422 -0.410319
+0.09814 0.032152 -0.40972
+-0.000072 -0.043033 -0.437644
+0.10423 -0.028038 -0.415523
+0.10423 -0.121178 -0.396354
+0.108395 -0.11947 -0.390769
+0.108395 -0.027505 -0.409697
+0.11144 -0.027613 -0.397504
+0.11144 -0.11597 -0.379319
+0.034582 -0.037222 -0.439421
+0.107807 -0.028847 -0.408805
+0.107807 -0.119293 -0.39019
+0.103699 -0.029318 -0.413954
+0.103699 -0.120802 -0.395125
+0.031714 -0.038896 -0.435342
+-0.000161 -0.044532 -0.433619
+-0.000161 -0.066476 -0.429476
+0.099496 -0.121286 -0.39671
+0.099525 -0.121828 -0.398483
+0.031714 -0.065754 -0.430072
+0.087371 -0.066747 -0.40922
+0.031566 -0.06616 -0.42235
+0.098302 -0.120495 -0.394122
+-0.000309 -0.067122 -0.421681
+-0.000309 -0.125642 -0.410956
+0.088565 -0.064094 -0.41286
+0.092625 -0.068049 -0.410419
+0.09598 -0.077143 -0.407204
+0.098275 -0.09078 -0.403478
+0.099334 -0.107088 -0.399696
+0.091431 -0.070703 -0.406779
+0.094786 -0.079794 -0.403564
+0.097081 -0.093432 -0.399837
+0.09814 -0.10974 -0.396057
+-0.000072 -0.209052 -0.386887
+-0.000072 -0.128848 -0.421443
+0.10423 -0.209113 -0.360163
+0.108395 -0.206297 -0.355035
+0.11144 -0.19939 -0.344986
+0.034582 -0.128848 -0.421443
+0.034582 -0.214863 -0.385111
+0.107807 -0.204686 -0.355045
+0.103699 -0.207175 -0.359578
+0.031714 -0.211194 -0.382666
+-0.000161 -0.205558 -0.384389
+-0.000161 -0.185049 -0.393225
+0.031714 -0.185981 -0.393315
+0.087371 -0.173497 -0.376583
+0.031566 -0.181326 -0.387141
+-0.000309 -0.180155 -0.387123
+0.031566 -0.125642 -0.410956
+0.088565 -0.177732 -0.378117
+0.092625 -0.173088 -0.378305
+0.09598 -0.163751 -0.380725
+0.098275 -0.150362 -0.385262
+0.099334 -0.134727 -0.391246
+0.091431 -0.168852 -0.376772
+0.094786 -0.159518 -0.37919
+0.097081 -0.146128 -0.383726
+0.09814 -0.130494 -0.389712
+-0.000072 -0.210614 -0.386039
+0.10423 -0.188167 -0.371535
+0.10423 -0.266412 -0.317498
+0.108395 -0.262659 -0.313024
+0.108395 -0.1854 -0.366381
+0.11144 -0.180735 -0.355115
+0.11144 -0.254962 -0.303852
+0.034582 -0.205958 -0.389946
+0.107807 -0.186286 -0.365036
+0.107807 -0.262269 -0.31256
+0.103699 -0.188732 -0.369592
+0.103699 -0.265586 -0.316514
+0.031714 -0.205906 -0.385537
+-0.000161 -0.21042 -0.381749
+-0.000161 -0.229002 -0.369361
+0.099496 -0.266652 -0.317783
+0.099525 -0.267843 -0.319203
+0.031714 -0.228569 -0.370191
+0.087371 -0.221336 -0.350609
+0.031566 -0.225926 -0.362925
+0.098302 -0.264912 -0.31571
+-0.000309 -0.22655 -0.361933
+-0.000309 -0.276227 -0.329195
+0.088565 -0.220316 -0.354996
+0.092625 -0.223003 -0.351203
+0.09598 -0.230117 -0.344691
+0.098275 -0.241215 -0.335932
+0.099334 -0.254749 -0.32608
+0.091431 -0.224024 -0.346816
+0.094786 -0.231136 -0.340305
+0.097081 -0.242233 -0.331545
+0.09814 -0.255768 -0.321694
+-0.000072 -0.343602 -0.274449
+-0.000072 -0.283276 -0.337595
+0.10423 -0.333216 -0.249825
+0.108395 -0.328621 -0.246204
+0.11144 -0.318336 -0.239654
+0.034582 -0.283276 -0.337595
+0.034582 -0.348257 -0.270543
+0.107807 -0.327142 -0.246844
+0.103699 -0.331204 -0.250043
+0.031714 -0.343924 -0.269726
+-0.000161 -0.33941 -0.273513
+-0.000161 -0.323984 -0.289661
+0.031714 -0.324876 -0.28938
+0.087371 -0.306848 -0.278856
+0.031566 -0.318179 -0.285515
+-0.000309 -0.317095 -0.285957
+0.031566 -0.276227 -0.329195
+0.088565 -0.311345 -0.278613
+0.092625 -0.307144 -0.280601
+0.09598 -0.299495 -0.286476
+0.098275 -0.288942 -0.295884
+0.099334 -0.276889 -0.307502
+0.091431 -0.302646 -0.280844
+0.094786 -0.294998 -0.286718
+0.097081 -0.284445 -0.296125
+0.09814 -0.272393 -0.307744
+-0.000072 -0.344708 -0.273058
+0.10423 -0.318379 -0.268477
+0.10423 -0.36929 -0.188163
+0.108395 -0.364087 -0.185511
+0.108395 -0.313818 -0.264814
+0.11144 -0.305122 -0.256267
+0.11144 -0.353419 -0.180076
+0.034582 -0.341949 -0.278472
+0.107807 -0.314108 -0.263229
+0.107807 -0.363547 -0.185236
+0.103699 -0.318139 -0.266467
+0.103699 -0.368145 -0.187579
+0.031714 -0.340179 -0.274434
+-0.000161 -0.342854 -0.269184
+-0.000161 -0.355118 -0.25052
+0.099496 -0.369622 -0.188332
+0.099525 -0.371274 -0.189173
+0.031714 -0.355044 -0.251453
+0.087371 -0.340735 -0.236254
+0.031566 -0.349772 -0.245798
+0.098302 -0.367211 -0.187103
+-0.000309 -0.349959 -0.244641
+-0.000309 -0.382895 -0.195095
+0.088565 -0.34151 -0.240691
+0.092625 -0.342502 -0.23615
+0.09598 -0.346506 -0.227376
+0.098275 -0.353299 -0.214977
+0.099334 -0.361907 -0.20062
+0.091431 -0.341727 -0.231713
+0.094786 -0.34573 -0.22294
+0.097081 -0.352522 -0.210541
+0.09814 -0.361131 -0.196184
+-0.000072 -0.423523 -0.118375
+-0.000072 -0.392666 -0.200073
+0.10423 -0.404341 -0.099767
+0.108395 -0.398697 -0.09823
+0.11144 -0.38667 -0.096219
+0.034582 -0.392666 -0.200073
+0.034582 -0.426282 -0.112961
+0.107807 -0.397585 -0.099396
+0.103699 -0.402574 -0.100755
+0.031714 -0.421974 -0.113902
+-0.000161 -0.419299 -0.119152
+-0.000161 -0.411408 -0.140044
+0.031714 -0.41212 -0.139436
+0.087371 -0.391413 -0.136793
+0.031566 -0.404445 -0.138495
+-0.000309 -0.403619 -0.139326
+0.031566 -0.382895 -0.195095
+0.088565 -0.395458 -0.134813
+0.092625 -0.392367 -0.138284
+0.09598 -0.387622 -0.146681
+0.098275 -0.381584 -0.159464
+0.099334 -0.375028 -0.174868
+0.091431 -0.388321 -0.140265
+0.094786 -0.383577 -0.14866
+0.097081 -0.377539 -0.161443
+0.09814 -0.370984 -0.176847
+-0.000072 -0.423998 -0.116663
+0.10423 -0.397972 -0.122734
+0.10423 -0.413454 -0.028912
+0.108395 -0.407629 -0.028504
+0.108395 -0.392342 -0.121144
+0.11144 -0.380997 -0.116674
+0.11144 -0.395685 -0.027669
+0.034582 -0.423574 -0.122725
+0.107807 -0.39199 -0.119572
+0.107807 -0.407024 -0.028462
+0.103699 -0.396966 -0.120978
+0.103699 -0.412173 -0.028822
+0.031714 -0.420366 -0.1197
+-0.000161 -0.420777 -0.113821
+-0.000161 -0.424774 -0.091849
+0.099496 -0.413826 -0.028937
+0.099525 -0.415675 -0.029067
+0.031714 -0.42507 -0.092737
+0.087371 -0.40596 -0.084338
+0.031566 -0.418008 -0.089591
+0.098302 -0.411126 -0.028749
+-0.000309 -0.417727 -0.088454
+-0.000309 -0.428686 -0.029977
+0.088565 -0.408407 -0.088119
+0.092625 -0.407546 -0.083551
+0.09598 -0.407803 -0.07391
+0.098275 -0.409211 -0.059843
+0.099334 -0.411526 -0.043263
+0.091431 -0.405098 -0.07977
+0.094786 -0.405355 -0.07013
+0.097081 -0.406763 -0.056063
+0.09814 -0.409078 -0.039483
+-0.000072 -0.436108 0.056518
+-0.000072 -0.439626 -0.030742
+0.10423 -0.41118 0.066153
+0.108395 -0.405384 0.065362
+0.11144 -0.393527 0.062514
+0.034582 -0.439626 -0.030742
+0.034582 -0.436532 0.062581
+0.107807 -0.404816 0.063854
+0.103699 -0.40994 0.064553
+0.031714 -0.432934 0.060031
+-0.000161 -0.432523 0.054153
+-0.000161 -0.433423 0.031839
+0.031714 -0.43384 0.032676
+0.087371 -0.413747 0.027018
+0.031566 -0.426408 0.030544
+-0.000309 -0.425972 0.029456
+0.031566 -0.428686 -0.029977
+0.088565 -0.416696 0.030422
+0.092625 -0.415207 0.026019
+0.09598 -0.41412 0.016436
+0.098275 -0.413558 0.002309
+0.099334 -0.413542 -0.014431
+0.091431 -0.412258 0.022614
+0.094786 -0.411171 0.013033
+0.097081 -0.410607 -0.001093
+0.09814 -0.410592 -0.017834
+-0.000072 -0.435876 0.058281
+0.10423 -0.414291 0.042523
+0.10423 -0.391883 0.134936
+0.108395 -0.386362 0.133035
+0.108395 -0.408488 0.041786
+0.11144 -0.396298 0.041468
+0.11144 -0.375041 0.129137
+0.034582 -0.437854 0.052535
+0.107807 -0.407549 0.043096
+0.107807 -0.385789 0.132838
+0.103699 -0.412679 0.043746
+0.103699 -0.390668 0.134518
+0.031714 -0.43372 0.054066
+-0.000161 -0.431801 0.059638
+-0.000161 -0.426895 0.081424
+0.099496 -0.392235 0.135057
+0.099525 -0.393988 0.135661
+0.031714 -0.427515 0.080723
+0.087371 -0.406641 0.080988
+0.031566 -0.419784 0.08086
+0.098302 -0.389677 0.134176
+-0.000309 -0.419082 0.081797
+-0.000309 -0.406321 0.139907
+0.088565 -0.410371 0.078464
+0.092625 -0.407794 0.082331
+0.09598 -0.404263 0.091307
+0.098275 -0.400064 0.104806
+0.099334 -0.395715 0.120972
+0.091431 -0.404063 0.084856
+0.094786 -0.400534 0.09383
+0.097081 -0.396333 0.107329
+0.09814 -0.391986 0.123495
+-0.000072 -0.379356 0.222426
+-0.000072 -0.416689 0.143478
+0.10423 -0.352645 0.221555
+0.108395 -0.347619 0.218562
+0.11144 -0.337818 0.211308
+0.034582 -0.416689 0.143478
+0.034582 -0.377377 0.228172
+0.107807 -0.347686 0.216952
+0.103699 -0.352128 0.219598
+0.031714 -0.375062 0.22442
+-0.000161 -0.37698 0.218848
+-0.000161 -0.386527 0.198659
+0.031714 -0.386584 0.199594
+0.087371 -0.370299 0.186534
+0.031566 -0.380577 0.194727
+-0.000309 -0.3806 0.193555
+0.031566 -0.406321 0.139907
+0.088565 -0.371684 0.19082
+0.092625 -0.372034 0.186185
+0.09598 -0.374778 0.176939
+0.098275 -0.379779 0.163716
+0.099334 -0.386306 0.148299
+0.091431 -0.370649 0.181899
+0.094786 -0.373392 0.172654
+0.097081 -0.378393 0.159431
+0.09814 -0.38492 0.144015
+-0.000072 -0.378454 0.223958
+0.10423 -0.364742 0.201019
+0.10423 -0.308007 0.277331
+0.108395 -0.303667 0.273423
+0.108395 -0.359688 0.198073
+0.11144 -0.348592 0.193018
+0.11144 -0.294769 0.265411
+0.034582 -0.38252 0.219442
+0.107807 -0.358312 0.198912
+0.107807 -0.303217 0.273017
+0.103699 -0.36278 0.201515
+0.103699 -0.307052 0.276471
+0.031714 -0.378116 0.219236
+-0.000161 -0.374173 0.223615
+-0.000161 -0.361144 0.241753
+0.099496 -0.308283 0.277579
+0.099525 -0.309661 0.27882
+0.031714 -0.361988 0.241349
+0.087371 -0.342671 0.233437
+0.031566 -0.354819 0.238454
+0.098302 -0.306272 0.275769
+-0.000309 -0.353806 0.239043
+-0.000309 -0.319354 0.287548
+0.088565 -0.347091 0.232571
+0.092625 -0.343207 0.235124
+0.09598 -0.33645 0.242007
+0.098275 -0.32731 0.252792
+0.099334 -0.316991 0.265974
+0.091431 -0.338786 0.235991
+0.094786 -0.332031 0.242872
+0.097081 -0.32289 0.253656
+0.09814 -0.312571 0.266839
+-0.000072 -0.26229 0.352971
+-0.000072 -0.327503 0.294885
+0.10423 -0.238044 0.341732
+0.108395 -0.234586 0.337013
+0.11144 -0.228398 0.326506
+0.034582 -0.327503 0.294885
+0.034582 -0.258224 0.357487
+0.107807 -0.235276 0.335557
+0.103699 -0.238332 0.339728
+0.031714 -0.257559 0.353128
+-0.000161 -0.261502 0.348749
+-0.000161 -0.278178 0.333895
+0.031714 -0.277865 0.334778
+0.087371 -0.267977 0.316393
+0.031566 -0.274237 0.32795
+-0.000309 -0.274716 0.326881
+0.031566 -0.319354 0.287548
+0.088565 -0.267578 0.320879
+0.092625 -0.269711 0.31675
+0.09598 -0.275849 0.30931
+0.098275 -0.28562 0.299093
+0.099334 -0.297651 0.287452
+0.091431 -0.270111 0.312263
+0.094786 -0.276248 0.304825
+0.097081 -0.286018 0.294607
+0.09814 -0.29805 0.282967
+-0.000072 -0.260861 0.354028
+0.10423 -0.257203 0.327555
+0.10423 -0.17516 0.375632
+0.108395 -0.172692 0.370339
+0.108395 -0.253701 0.322869
+0.11144 -0.245462 0.313879
+0.11144 -0.167632 0.359488
+0.034582 -0.266369 0.35146
+0.107807 -0.252107 0.323103
+0.107807 -0.172436 0.36979
+0.103699 -0.255202 0.327245
+0.103699 -0.174617 0.374467
+0.031714 -0.262395 0.349549
+-0.000161 -0.257054 0.35204
+-0.000161 -0.237974 0.363645
+0.099496 -0.175317 0.375969
+0.099525 -0.176101 0.377649
+0.031714 -0.238909 0.363603
+0.087371 -0.224219 0.348772
+0.031566 -0.233441 0.358137
+0.098302 -0.174174 0.373517
+-0.000309 -0.232279 0.358283
+-0.000309 -0.181613 0.38947
+0.088565 -0.228626 0.349702
+0.092625 -0.224053 0.350534
+0.09598 -0.215144 0.35423
+0.098275 -0.202516 0.360586
+0.099334 -0.187867 0.368688
+0.091431 -0.219646 0.349605
+0.094786 -0.210738 0.3533
+0.097081 -0.19811 0.359655
+0.09814 -0.183461 0.367758
+-0.000072 -0.103523 0.427396
+-0.000072 -0.186247 0.399409
+0.10423 -0.085595 0.407577
+0.108395 -0.084256 0.401882
+0.11144 -0.082666 0.389793
+0.034582 -0.186247 0.399409
+0.034582 -0.098015 0.429964
+0.107807 -0.08546 0.400812
+0.103699 -0.086644 0.405845
+0.031714 -0.099106 0.425692
+-0.000161 -0.104447 0.423202
+-0.000161 -0.125601 0.416045
+0.031714 -0.124968 0.416735
+0.087371 -0.12305 0.395948
+0.031566 -0.124296 0.409032
+-0.000309 -0.125155 0.408236
+0.031566 -0.181613 0.38947
+0.088565 -0.120929 0.399922
+0.092625 -0.124506 0.396954
+0.09598 -0.133064 0.392505
+0.098275 -0.14605 0.386917
+0.099334 -0.161673 0.380903
+0.091431 -0.126628 0.39298
+0.094786 -0.135183 0.388532
+0.097081 -0.148169 0.382943
+0.09814 -0.163792 0.37693
+-0.000072 0.073457 0.433576
+0.10423 0.056955 0.412555
+0.10423 0.148531 0.386936
+0.108395 0.146438 0.381483
+0.108395 0.056017 0.406781
+0.11144 0.055274 0.39461
+0.11144 0.142147 0.370306
+0.034582 0.067784 0.435754
+0.107807 0.057293 0.405797
+0.107807 0.146221 0.380918
+0.103699 0.058122 0.410901
+0.103699 0.14807 0.385736
+0.031714 0.06917 0.431569
+-0.000161 0.074671 0.429457
+-0.000161 0.096273 0.423793
+0.099496 0.148664 0.387283
+0.099525 0.149328 0.389014
+0.031714 0.095594 0.424437
+0.087371 0.09513 0.403567
+0.031566 0.095461 0.416706
+0.098302 0.147694 0.384757
+-0.000309 0.096373 0.415972
+-0.000309 0.154003 0.40119
+0.088565 0.092738 0.407383
+0.092625 0.096513 0.404672
+0.09598 0.10536 0.400831
+0.098275 0.118704 0.396162
+0.099334 0.134709 0.391253
+0.091431 0.098906 0.400856
+0.094786 0.107751 0.397015
+0.097081 0.121095 0.392346
+0.09814 0.1371 0.387437
+-0.000072 0.23553 0.371362
+-0.000072 0.157932 0.411428
+0.10423 0.233727 0.344699
+0.108395 0.230561 0.339779
+0.11144 0.222969 0.330237
+0.034582 0.157932 0.411428
+0.034582 0.241204 0.369185
+0.107807 0.228954 0.339902
+0.103699 0.231753 0.34425
+0.031714 0.237373 0.367001
+-0.000161 0.231871 0.369113
+-0.000161 0.212028 0.379359
+0.031714 0.212964 0.379383
+0.087371 0.199344 0.363563
+0.031566 0.20789 0.373549
+-0.000309 0.20672 0.373613
+0.031566 0.154003 0.40119
+0.088565 0.203675 0.364798
+0.092625 0.199055 0.36531
+0.09598 0.18991 0.368375
+0.098275 0.17687 0.373834
+0.099334 0.161691 0.380895
+0.091431 0.194723 0.364075
+0.094786 0.18558 0.367139
+0.097081 0.172539 0.372598
+0.09814 0.157361 0.37966
+-0.000072 0.237029 0.370407
+0.10423 0.213626 0.357504
+0.10423 0.287911 0.29814
+0.108395 0.283854 0.29394
+0.108395 0.210506 0.352556
+0.11144 0.205066 0.341643
+0.11144 0.275537 0.285327
+0.034582 0.232658 0.374629
+0.107807 0.211296 0.351152
+0.107807 0.283433 0.293504
+0.103699 0.214053 0.355526
+0.103699 0.287018 0.297216
+0.031714 0.232298 0.370234
+-0.000161 0.236537 0.366141
+-0.000161 0.254209 0.352486
+0.099496 0.288169 0.298408
+0.099525 0.289457 0.299742
+0.031714 0.253836 0.353345
+0.087371 0.245254 0.334315
+0.031566 0.250692 0.346281
+0.098302 0.28629 0.296462
+-0.000309 0.251245 0.345248
+-0.000309 0.298518 0.309124
+0.088565 0.244543 0.338763
+0.092625 0.246959 0.334792
+0.09598 0.253601 0.327799
+0.098275 0.264061 0.318288
+0.099334 0.276875 0.307515
+0.091431 0.247671 0.330344
+0.094786 0.254312 0.323352
+0.097081 0.264771 0.313841
+0.09814 0.277585 0.303068
+-0.000072 0.361909 0.249812
+-0.000072 0.306135 0.317012
+0.10423 0.349831 0.225972
+0.108395 0.344995 0.222681
+0.11144 0.334278 0.216864
+0.034582 0.306135 0.317012
+0.034582 0.366281 0.24559
+0.107807 0.343564 0.223422
+0.103699 0.347839 0.226331
+0.031714 0.361902 0.245078
+-0.000161 0.357663 0.249171
+-0.000161 0.3434 0.266356
+0.031714 0.344271 0.266012
+0.087371 0.325552 0.256772
+0.031566 0.337321 0.262625
+-0.000309 0.336269 0.263141
+0.031566 0.298518 0.309124
+0.088565 0.330022 0.256216
+0.092625 0.325969 0.258492
+0.09598 0.318749 0.264887
+0.098275 0.308878 0.275008
+0.099334 0.297665 0.287438
+0.091431 0.321499 0.259048
+0.094786 0.31428 0.265442
+0.097081 0.304409 0.275562
+0.09814 0.293196 0.287993
+-0.000072 0.362916 0.248347
+0.10423 0.336332 0.245614
+0.10423 0.381516 0.161944
+0.108395 0.37614 0.159662
+0.108395 0.331526 0.242278
+0.11144 0.322255 0.234358
+0.11144 0.365119 0.154984
+0.034582 0.360542 0.253941
+0.107807 0.331705 0.240677
+0.107807 0.375583 0.159425
+0.103699 0.335952 0.243626
+0.103699 0.380333 0.161442
+0.031714 0.358494 0.250036
+-0.000161 0.360796 0.244612
+-0.000161 0.371728 0.225138
+0.099496 0.381859 0.162089
+0.099525 0.383565 0.162814
+0.031714 0.37172 0.226074
+0.087371 0.356385 0.211911
+0.031566 0.366066 0.2208
+0.098302 0.379368 0.161032
+-0.000309 0.366171 0.219633
+-0.000309 0.395571 0.16791
+0.088565 0.357468 0.216282
+0.092625 0.35814 0.211683
+0.09598 0.361522 0.202651
+0.098275 0.367434 0.189809
+0.099334 0.37502 0.174886
+0.091431 0.357058 0.207311
+0.094786 0.360439 0.19828
+0.097081 0.36635 0.185438
+0.09814 0.373937 0.170515
+-0.000072 0.430749 0.088544
+-0.000072 0.405666 0.172195
+0.10423 0.410316 0.071319
+0.108395 0.404578 0.070179
+0.11144 0.39244 0.069012
+0.034582 0.405666 0.172195
+0.034582 0.433123 0.08295
+0.107807 0.40355 0.07142
+0.103699 0.408622 0.072427
+0.031714 0.428892 0.084189
+-0.000161 0.426589 0.089613
+-0.000161 0.420175 0.111005
+0.031714 0.420842 0.110348
+0.087371 0.400001 0.109156
+0.031566 0.413121 0.109945
+-0.000309 0.412355 0.110831
+0.031566 0.395571 0.16791
+0.088565 0.403898 0.106899
+0.092625 0.401057 0.110577
+0.09598 0.396909 0.119284
+0.098275 0.391778 0.132458
+0.099334 0.386313 0.148281
+0.091431 0.39716 0.112836
+0.094786 0.393013 0.121541
+0.097081 0.387881 0.134714
+0.09814 0.382416 0.150538
+-0.000072 0.431103 0.086802
+0.10423 0.405564 0.094674
+0.10423 0.414464 -0
+0.108395 0.408624 -0
+0.108395 0.399837 0.093481
+0.11144 0.388208 0.089813
+0.11144 0.396651 -0
+0.034582 0.431103 0.092879
+0.107807 0.399376 0.091937
+0.107807 0.408018 -0
+0.103699 0.404438 0.092992
+0.103699 0.413179 -0
+0.031714 0.427692 0.090085
+-0.000161 0.427692 0.084192
+-0.000161 0.430146 0.061995
+0.099496 0.414836 -0
+0.099525 0.41669 -0
+0.031714 0.430504 0.06286
+0.087371 0.410854 0.055814
+0.031566 0.423239 0.060214
+0.098302 0.41213 -0
+-0.000309 0.42288 0.059099
+-0.000309 0.429733 -0
+0.088565 0.413559 0.059415
+0.092625 0.412381 0.054919
+0.09598 0.411965 0.045283
+0.098275 0.412389 0.031152
+0.099334 0.413541 0.014451
+0.091431 0.409676 0.051317
+0.094786 0.40926 0.041683
+0.097081 0.409683 0.027552
+0.09814 0.410836 0.010851
+-0.000072 0.431103 -0.086802
+-0.000072 0.440699 -0
+0.10423 0.405564 -0.094674
+0.108395 0.399837 -0.093481
+0.11144 0.388208 -0.089813
+0.034582 0.440699 -0
+0.034582 0.431103 -0.092879
+0.107807 0.399376 -0.091937
+0.103699 0.404438 -0.092992
+0.031714 0.427692 -0.090085
+-0.000161 0.427692 -0.084192
+-0.000161 0.430146 -0.061995
+0.031714 0.430504 -0.06286
+0.087371 0.410854 -0.055814
+0.031566 0.423239 -0.060214
+-0.000309 0.42288 -0.059099
+0.031566 0.429733 -0
+0.088565 0.413559 -0.059415
+0.092625 0.412381 -0.054919
+0.09598 0.411965 -0.045283
+0.098275 0.412389 -0.031152
+0.099334 0.413541 -0.014451
+0.091431 0.409676 -0.051317
+0.094786 0.40926 -0.041683
+0.097081 0.409683 -0.027552
+0.09814 0.410836 -0.010851
+0 0.498296 -0.03266
+0.217342 0.466255 -0.014928
+0.217342 0.44735 -0.119867
+0.226018 0.441709 -0.118356
+0.226018 0.460376 -0.014739
+0.232363 0.448078 -0.015706
+0.232363 0.430144 -0.115257
+0.057756 0.500061 -0.026073
+0.224793 0.459482 -0.016294
+0.224793 0.441124 -0.118199
+0.216235 0.464678 -0.016461
+0.216235 0.446109 -0.119535
+0.052977 0.495955 -0.028218
+-0.000148 0.494243 -0.034607
+-0.000148 0.490166 -0.059306
+0.207479 0.44771 -0.119964
+0.20754 0.4495 -0.120443
+0.052977 0.490763 -0.058461
+0.182218 0.460076 -0.058425
+0.05273 0.482976 -0.059449
+0.204992 0.445096 -0.119263
+-0.000394 0.482306 -0.060565
+-0.000394 0.471758 -0.126407
+0.184705 0.463735 -0.055222
+0.193165 0.461291 -0.059791
+0.200153 0.45809 -0.070129
+0.204935 0.454395 -0.085559
+0.207142 0.450657 -0.103962
+0.190677 0.457632 -0.062996
+0.197666 0.454432 -0.073332
+0.202447 0.450735 -0.088762
+0.204654 0.446998 -0.107165
+0 0.447867 -0.220863
+0 0.482351 -0.129246
+0.217342 0.411253 -0.220199
+0.226018 0.406067 -0.217424
+0.232363 0.3959 -0.210437
+0.057756 0.482351 -0.129246
+0.057756 0.446102 -0.227451
+0.224793 0.40607 -0.21563
+0.216235 0.410654 -0.218084
+0.052977 0.443619 -0.22354
+-0.000148 0.445331 -0.217151
+-0.000148 0.454149 -0.193722
+0.052977 0.454243 -0.194753
+0.182218 0.42765 -0.17944
+0.05273 0.447995 -0.190004
+-0.000394 0.447972 -0.188703
+0.05273 0.471758 -0.126407
+0.184705 0.429217 -0.184044
+0.193165 0.429385 -0.178865
+0.200153 0.431783 -0.168312
+0.204935 0.436297 -0.153102
+0.207142 0.442261 -0.135295
+0.190677 0.427819 -0.174261
+0.197666 0.430216 -0.163708
+0.202447 0.434729 -0.148498
+0.204654 0.440694 -0.130691
+0 0.445922 -0.224764
+0.217342 0.423357 -0.195922
+0.217342 0.364952 -0.285132
+0.226018 0.36035 -0.281537
+0.226018 0.418019 -0.193451
+0.232363 0.406321 -0.189536
+0.232363 0.350915 -0.274165
+0.057756 0.450121 -0.21939
+0.224793 0.416589 -0.194533
+0.224793 0.359873 -0.281164
+0.216235 0.421307 -0.196716
+0.216235 0.36394 -0.284341
+0.052977 0.445503 -0.21976
+-0.000148 0.441431 -0.224972
+-0.000148 0.428027 -0.246114
+0.207479 0.365245 -0.285361
+0.20754 0.366706 -0.286503
+0.052977 0.428907 -0.24557
+0.182218 0.400674 -0.233547
+0.05273 0.421353 -0.243437
+0.204992 0.363113 -0.283695
+-0.000394 0.4203 -0.244202
+-0.000394 0.384864 -0.300689
+0.184705 0.405293 -0.232028
+0.193165 0.401258 -0.235279
+0.200153 0.394273 -0.243544
+0.204935 0.384842 -0.256303
+0.207142 0.37421 -0.271783
+0.190677 0.396638 -0.236799
+0.197666 0.389653 -0.245063
+0.202447 0.380222 -0.257822
+0.204654 0.369591 -0.273302
+0 0.325966 -0.378302
+0 0.393506 -0.307441
+0.217342 0.292521 -0.363384
+0.226018 0.288833 -0.358803
+0.232363 0.282204 -0.348399
+0.057756 0.393506 -0.307441
+0.057756 0.321767 -0.383676
+0.224793 0.289536 -0.357153
+0.216235 0.292796 -0.361203
+0.052977 0.321009 -0.379105
+-0.000148 0.325081 -0.373893
+-0.000148 0.342353 -0.355772
+0.052977 0.342037 -0.356758
+0.182218 0.323541 -0.332272
+0.05273 0.338141 -0.349945
+-0.000394 0.338628 -0.348738
+0.05273 0.384864 -0.300689
+0.184705 0.323185 -0.337122
+0.193165 0.325363 -0.33242
+0.200153 0.331693 -0.323643
+0.204935 0.341792 -0.311406
+0.207142 0.354239 -0.297345
+0.190677 0.32572 -0.32757
+0.197666 0.33205 -0.318793
+0.202447 0.342147 -0.306555
+0.204654 0.354596 -0.292495
+0 0.322652 -0.381132
+0.217342 0.313149 -0.345766
+0.217342 0.22453 -0.405064
+0.226018 0.221699 -0.399956
+0.226018 0.309202 -0.341406
+0.232363 0.299963 -0.333231
+0.232363 0.215894 -0.389484
+0.057756 0.328616 -0.377826
+0.224793 0.307462 -0.341843
+0.224793 0.221405 -0.399426
+0.216235 0.310952 -0.345696
+0.216235 0.223907 -0.40394
+0.052977 0.324221 -0.376362
+-0.000148 0.318436 -0.379569
+-0.000148 0.297836 -0.393793
+0.207479 0.224711 -0.405389
+0.20754 0.22561 -0.407011
+0.052977 0.298859 -0.393635
+0.182218 0.277568 -0.371537
+0.05273 0.292739 -0.388721
+0.204992 0.223399 -0.403022
+-0.000394 0.291471 -0.389014
+-0.000394 0.236781 -0.427164
+0.184705 0.282414 -0.371944
+0.193165 0.277429 -0.37336
+0.200153 0.26777 -0.378238
+0.204935 0.254104 -0.386298
+0.207142 0.238268 -0.396393
+0.190677 0.272583 -0.372953
+0.197666 0.262924 -0.377832
+0.202447 0.249257 -0.385891
+0.204654 0.233423 -0.395987
+0 0.152239 -0.475593
+0 0.242097 -0.436756
+0.217342 0.127282 -0.448794
+0.226018 0.125677 -0.443135
+0.232363 0.12364 -0.430968
+0.057756 0.242097 -0.436756
+0.057756 0.146274 -0.4789
+0.224793 0.126969 -0.441892
+0.216235 0.128387 -0.446893
+0.052977 0.147362 -0.474397
+-0.000148 0.153147 -0.47119
+-0.000148 0.176126 -0.461258
+0.052977 0.17545 -0.462042
+0.182218 0.167992 -0.432276
+0.05273 0.174526 -0.454248
+-0.000394 0.175446 -0.453328
+0.05273 0.236781 -0.427164
+0.184705 0.165769 -0.436601
+0.193165 0.169612 -0.433124
+0.200153 0.178868 -0.427517
+0.204935 0.192945 -0.420199
+0.207142 0.209897 -0.41212
+0.190677 0.171835 -0.428799
+0.197666 0.181091 -0.423193
+0.202447 0.195168 -0.415873
+0.204654 0.21212 -0.407795
+0 0.148082 -0.476904
+0.217342 0.153154 -0.440636
+0.217342 0.04841 -0.460594
+0.226018 0.0478 -0.454786
+0.226018 0.151224 -0.43508
+0.232363 0.145914 -0.423945
+0.232363 0.046548 -0.442879
+0.057756 0.154865 -0.476191
+0.224793 0.149452 -0.434803
+0.224793 0.047737 -0.454183
+0.216235 0.151159 -0.439713
+0.216235 0.048276 -0.459316
+0.052977 0.15139 -0.473126
+-0.000148 0.144813 -0.473818
+-0.000148 0.120293 -0.478862
+0.207479 0.048449 -0.460964
+0.20754 0.048643 -0.462808
+0.052977 0.121296 -0.479117
+0.182218 0.110332 -0.450456
+0.05273 0.117583 -0.472202
+0.204992 0.048166 -0.458273
+-0.000394 0.116301 -0.471976
+-0.000394 0.051052 -0.485725
+0.184705 0.114633 -0.452724
+0.193165 0.109492 -0.45208
+0.200153 0.098694 -0.452796
+0.204935 0.082965 -0.454876
+0.207142 0.064444 -0.457981
+0.190677 0.105189 -0.449812
+0.197666 0.094392 -0.450528
+0.202447 0.078663 -0.452607
+0.204654 0.060142 -0.455713
+0 -0.045692 -0.49727
+0 0.052198 -0.496631
+0.217342 -0.058194 -0.46285
+0.226018 -0.057461 -0.457014
+0.232363 -0.054582 -0.445018
+0.057756 0.052198 -0.496631
+0.057756 -0.052475 -0.497983
+0.224793 -0.055786 -0.456374
+0.216235 -0.056434 -0.461532
+0.052977 -0.049714 -0.494263
+-0.000148 -0.043136 -0.493572
+-0.000148 -0.018103 -0.493408
+0.052977 -0.019031 -0.493866
+0.182218 -0.014266 -0.463552
+0.05273 -0.016837 -0.48633
+-0.000394 -0.01563 -0.485842
+0.05273 0.051052 -0.485725
+0.184705 -0.018002 -0.466664
+0.193165 -0.013107 -0.464965
+0.200153 -0.002395 -0.463421
+0.204935 0.013422 -0.462185
+0.207142 0.032184 -0.461371
+0.190677 -0.00937 -0.461853
+0.197666 0.001341 -0.460309
+0.202447 0.017158 -0.459071
+0.204654 0.03592 -0.458259
+0 -0.050031 -0.496853
+0.217342 -0.031191 -0.46545
+0.217342 -0.135406 -0.442894
+0.226018 -0.133699 -0.43731
+0.226018 -0.030797 -0.459581
+0.232363 -0.031334 -0.447257
+0.232363 -0.130198 -0.42586
+0.057756 -0.043509 -0.498847
+0.224793 -0.03232 -0.458634
+0.224793 -0.133522 -0.43673
+0.216235 -0.032668 -0.463821
+0.216235 -0.135031 -0.441666
+0.052977 -0.04551 -0.494668
+-0.000148 -0.051835 -0.492734
+-0.000148 -0.076376 -0.487797
+0.207479 -0.135515 -0.44325
+0.20754 -0.136057 -0.445023
+0.052977 -0.075553 -0.488423
+0.182218 -0.074446 -0.457757
+0.05273 -0.076269 -0.480608
+0.204992 -0.134724 -0.440662
+-0.000394 -0.07736 -0.479898
+-0.000394 -0.142794 -0.467059
+0.184705 -0.071373 -0.461525
+0.193165 -0.075854 -0.458923
+0.200153 -0.086074 -0.455364
+0.204935 -0.101365 -0.451132
+0.207142 -0.119626 -0.446754
+0.190677 -0.078928 -0.455155
+0.197666 -0.089147 -0.451596
+0.202447 -0.104438 -0.447363
+0.204654 -0.1227 -0.442985
+0 -0.236359 -0.439886
+0 -0.146001 -0.477546
+0.217342 -0.234418 -0.403317
+0.226018 -0.231463 -0.398232
+0.232363 -0.224126 -0.388315
+0.057756 -0.146001 -0.477546
+0.057756 -0.242881 -0.437892
+0.224793 -0.229671 -0.398298
+0.216235 -0.232283 -0.402792
+0.052977 -0.238886 -0.435547
+-0.000148 -0.232561 -0.437481
+-0.000148 -0.209454 -0.447111
+0.052977 -0.210487 -0.44717
+0.182218 -0.194256 -0.421127
+0.05273 -0.205523 -0.441091
+-0.000394 -0.204222 -0.441113
+0.05273 -0.142794 -0.467059
+0.184705 -0.198911 -0.422533
+0.193165 -0.193741 -0.422882
+0.200153 -0.183278 -0.425645
+0.204935 -0.168235 -0.430688
+0.207142 -0.150647 -0.43727
+0.190677 -0.189085 -0.421476
+0.197666 -0.178623 -0.42424
+0.202447 -0.16358 -0.429282
+0.204654 -0.145992 -0.435864
+0 -0.240189 -0.437807
+0.217342 -0.210577 -0.416261
+0.217342 -0.297695 -0.354779
+0.226018 -0.293941 -0.350305
+0.226018 -0.207922 -0.411013
+0.232363 -0.203601 -0.399459
+0.232363 -0.286245 -0.341133
+0.057756 -0.234965 -0.44219
+0.224793 -0.208953 -0.409546
+0.224793 -0.293552 -0.349841
+0.216235 -0.2113 -0.414185
+0.216235 -0.296869 -0.353795
+0.052977 -0.235174 -0.437562
+-0.000148 -0.240241 -0.433311
+-0.000148 -0.260902 -0.419177
+0.207479 -0.297934 -0.355064
+0.20754 -0.299126 -0.356484
+0.052977 -0.260389 -0.420075
+0.182218 -0.247388 -0.392279
+0.05273 -0.257994 -0.412601
+0.204992 -0.296195 -0.352991
+-0.000394 -0.258722 -0.411522
+-0.000394 -0.313938 -0.374136
+0.184705 -0.246031 -0.396949
+0.193165 -0.249139 -0.392803
+0.200153 -0.257156 -0.385533
+0.204935 -0.269578 -0.375663
+0.207142 -0.284677 -0.364497
+0.190677 -0.250497 -0.388132
+0.197666 -0.258513 -0.380863
+0.202447 -0.270934 -0.370993
+0.204654 -0.286034 -0.359828
+0 -0.389447 -0.312565
+0 -0.320986 -0.382537
+0.217342 -0.373371 -0.279661
+0.226018 -0.368664 -0.276135
+0.232363 -0.358035 -0.269873
+0.057756 -0.320986 -0.382537
+0.057756 -0.394671 -0.308181
+0.224793 -0.36704 -0.276895
+0.216235 -0.371201 -0.280012
+0.052977 -0.390077 -0.307583
+-0.000148 -0.385011 -0.311834
+-0.000148 -0.367504 -0.329728
+0.052977 -0.368478 -0.329378
+0.182218 -0.343361 -0.311748
+0.05273 -0.361533 -0.325722
+-0.000394 -0.360343 -0.326251
+0.05273 -0.313938 -0.374136
+0.184705 -0.348195 -0.311223
+0.193165 -0.343573 -0.313564
+0.200153 -0.335021 -0.320196
+0.204935 -0.323144 -0.330716
+0.207142 -0.309526 -0.343646
+0.190677 -0.338738 -0.31409
+0.197666 -0.330187 -0.320722
+0.202447 -0.318309 -0.33124
+0.204654 -0.304692 -0.344172
+0 -0.39216 -0.309154
+0.217342 -0.356484 -0.300891
+0.217342 -0.412653 -0.210257
+0.226018 -0.407449 -0.207606
+0.226018 -0.351989 -0.297098
+0.232363 -0.343496 -0.288151
+0.232363 -0.396781 -0.20217
+0.057756 -0.389064 -0.31523
+0.224793 -0.352365 -0.295345
+0.224793 -0.406909 -0.207331
+0.216235 -0.356338 -0.298698
+0.216235 -0.411508 -0.209674
+0.052977 -0.387448 -0.310888
+-0.000148 -0.390451 -0.304995
+-0.000148 -0.403947 -0.283912
+0.207479 -0.412984 -0.210426
+0.20754 -0.414636 -0.211268
+0.052977 -0.403826 -0.284939
+0.182218 -0.380997 -0.264433
+0.05273 -0.398701 -0.278995
+0.204992 -0.410573 -0.209197
+-0.000394 -0.398949 -0.277717
+-0.000394 -0.435168 -0.221729
+0.184705 -0.381573 -0.269261
+0.193165 -0.382814 -0.26423
+0.200153 -0.387353 -0.254406
+0.204935 -0.394931 -0.240467
+0.207142 -0.404467 -0.224289
+0.190677 -0.382239 -0.259401
+0.197666 -0.386777 -0.249578
+0.202447 -0.394355 -0.235638
+0.204654 -0.403892 -0.219461
+0 -0.480617 -0.135548
+0 -0.444938 -0.226707
+0.217342 -0.452962 -0.111542
+0.226018 -0.447251 -0.110135
+0.232363 -0.435021 -0.108524
+0.057756 -0.444938 -0.226707
+0.057756 -0.483713 -0.129471
+0.224793 -0.446054 -0.11147
+0.216235 -0.451102 -0.112713
+0.052977 -0.47925 -0.130716
+-0.000148 -0.476248 -0.136609
+-0.000148 -0.467124 -0.159921
+0.052977 -0.467884 -0.159218
+0.182218 -0.437875 -0.152804
+0.05273 -0.460062 -0.158567
+-0.000394 -0.459174 -0.159518
+0.05273 -0.435168 -0.221729
+0.184705 -0.44212 -0.150431
+0.193165 -0.43878 -0.154392
+0.200153 -0.433499 -0.163839
+0.204935 -0.426677 -0.178163
+0.207142 -0.419194 -0.195387
+0.190677 -0.434534 -0.156766
+0.197666 -0.429255 -0.166211
+0.202447 -0.422431 -0.180535
+0.204654 -0.414949 -0.197759
+0 -0.481781 -0.131348
+0.217342 -0.445713 -0.137683
+0.217342 -0.462003 -0.032306
+0.226018 -0.456177 -0.031899
+0.226018 -0.440093 -0.135947
+0.232363 -0.428779 -0.131029
+0.232363 -0.444233 -0.031064
+0.057756 -0.481306 -0.138152
+0.224793 -0.439754 -0.134187
+0.224793 -0.455573 -0.031857
+0.216235 -0.444721 -0.135721
+0.216235 -0.460721 -0.032217
+0.052977 -0.478122 -0.134786
+-0.000148 -0.478583 -0.128188
+-0.000148 -0.482769 -0.103507
+0.207479 -0.462374 -0.032332
+0.20754 -0.464224 -0.032462
+0.052977 -0.483058 -0.104501
+0.182218 -0.454032 -0.094544
+0.05273 -0.476018 -0.101031
+0.20499...
[truncated message content] |