diff --git a/rocolib/builders/boat/.DS_Store b/rocolib/builders/boat/.DS_Store
index 202d8954419252a7d049ead6f69ca9e2ca7db5a9..1736bed07b2790b9ce01218e5244832a6ddcdb0f 100644
Binary files a/rocolib/builders/boat/.DS_Store and b/rocolib/builders/boat/.DS_Store differ
diff --git a/rocolib/builders/boat/BoatWithManyDCMounts.py b/rocolib/builders/boat/BoatWithManyDCMounts.py
new file mode 100644
index 0000000000000000000000000000000000000000..a8e8c1afb0b14a390d258f16352b4c7962a9fd71
--- /dev/null
+++ b/rocolib/builders/boat/BoatWithManyDCMounts.py
@@ -0,0 +1,31 @@
+from rocolib.api.components.Component import Component
+from rocolib.api.Function import Function
+
+c = Component()
+
+c.addSubcomponent("boat", "BoatBase", inherit=True, prefix=None)
+c.inheritAllInterfaces("boat")
+c.addSubcomponent("dcMount", "DCMotorMount", inherit=True)
+
+c.addConstraint(("dcMount", "mountWidth"), "boat.width")
+c.addConstraint(("dcMount", "supportLength"), "boat.depth")
+
+for i in range(2):
+    c.addSubcomponent("split%d" %i, "SplitEdge")
+    c.addConstraint(("split%d" %i, "toplength"), "boat.length", "(x,)")
+
+c.addConstraint(("split0", "botlength"), ("topDistance", "botDistance"), "(x[0]-5, 10, x[1]-5)")
+c.addConstraint(("split1", "botlength"), ("topDistance", "botDistance"), "(x[1]-5, 10, x[0]-5)")
+
+c.addConnection(("boat", "portedge"), ("split0", "topedge0"))
+c.addConnection(("boat", "staredge"), ("split1", "topedge0"))
+
+c.addConnection(("dcMount","rightArmInterface"), ("split0", "botedge1"), angle=-180)
+c.addConnection(("dcMount","leftArmInterface"), ("split1", "botedge1"), tabWidth=5, angle=-180)
+
+c.inheritInterface("topPort", ("split0", "botedge0"))
+c.inheritInterface("botPort", ("split0", "botedge2"))
+c.inheritInterface("topStar", ("split1", "botedge2"))
+c.inheritInterface("botStar", ("split1", "botedge0"))
+
+c.toLibrary("BoatWithManyDCMounts")
diff --git a/rocolib/builders/boat/BoatWithStackBatteryBuilder.py b/rocolib/builders/boat/BoatWithStackBatteryBuilder.py
new file mode 100644
index 0000000000000000000000000000000000000000..2ea0ca66fb3a64a80a2616e6e1497e6ce7df2740
--- /dev/null
+++ b/rocolib/builders/boat/BoatWithStackBatteryBuilder.py
@@ -0,0 +1,47 @@
+from rocolib.api.components.Component import Component
+
+#ESP3 STACK WITH PWM SERVO FEATHERWING
+c = Component()
+
+c.addSubcomponent("boat", "BoatBase", inherit=True)
+c.inheritAllInterfaces("boat")
+
+c.addParameter("length", 130, paramType="length")
+c.addParameter("width", 90, paramType="length")
+c.addParameter("depth", 70, paramType="length")
+
+c.addConstraint(("boat", "boat.length"), "length")
+c.addConstraint(("boat", "boat.width"), "width")
+c.addConstraint(("boat", "boat.depth"), "depth")
+
+c.addSubcomponent("stack", "StackMount", inherit="stack.length", prefix=None)
+c.inheritAllInterfaces("stack")
+
+c.addSubcomponent("batterymount", "BatteryMount", inherit="batterylength", prefix=None)
+c.inheritAllInterfaces("batterymount")
+
+c.addSubcomponent("portsplit", "SplitEdge", inherit=True)
+c.addConstraint(("portsplit", "toplength"), "length", "(x,)")
+c.addConstraint(("portsplit", "botlength"), ("length", "stack.length", "batterylength"), "(x[0]/2 - (x[1]+x[2])/2, x[1], x[2], x[0]/2 - (x[1]+x[2])/2)")
+c.addConnection(("portsplit", "botedge1"), ("stack", "leftArmInterface"))
+c.addConnection(("batterymount", "leftArmInterface"), ("portsplit", "botedge2"), tabWidth=10)
+c.addConnection(("boat", "portedge"), ("portsplit", "topedge0"))
+
+c.addSubcomponent("starsplit", "SplitEdge", inherit=True)
+c.addConstraint(("starsplit", "toplength"), "length", "(x,)")
+c.addConstraint(("starsplit", "botlength"), ("length", "stack.length", "batterylength"), "(x[0]/2 - (x[1]+x[2])/2, x[2], x[1], x[0]/2 - (x[1]+x[2])/2)")
+c.addConnection(("starsplit", "botedge2"), ("stack", "rightArmInterface"), tabWidth=10)
+c.addConnection(("batterymount", "rightArmInterface"), ("starsplit", "botedge1"), tabWidth=10)
+c.addConnection(("boat", "staredge"), ("starsplit", "topedge0"))
+# #
+# c.addConstraint(("split0", "botlength"), ("topDistance", "botDistance"), "(x[0]-5, 10, x[1]-5)")
+# c.addConstraint(("split1", "botlength"), ("topDistance", "botDistance"), "(x[1]-5, 10, x[0]-5)")
+#
+# c.addConnection(("boat", "portedge"), ("split0", "topedge0"))
+# c.addConnection(("boat", "staredge"), ("split1", "topedge0"))
+#
+
+#the length of the both should always be a multiple of the width of the motor
+#as of now i will be setting the length to 117 (so that means 9 * width of the motor which is 13)
+
+c.toLibrary("BoatWithStackBattery")
diff --git a/rocolib/builders/boat/BoatWithStackBuilder.py b/rocolib/builders/boat/BoatWithStackBuilder.py
deleted file mode 100644
index f38a79f5bfb544b973a270cca7640f5cb52f5e0d..0000000000000000000000000000000000000000
--- a/rocolib/builders/boat/BoatWithStackBuilder.py
+++ /dev/null
@@ -1,26 +0,0 @@
-from rocolib.api.components.Component import Component
-
-#ESP3 STACK WITH PWM SERVO FEATHERWING
-c = Component()
-
-c.addParameter("length", 130, paramType="length")
-c.addParameter("width", 90, paramType="length")
-c.addParameter("depth", 70, paramType="length")
-
-c.addSubcomponent("boat", "BoatBase", inherit=True)
-
-c.addConstraint(("boat", "boat.length"), "length")
-c.addConstraint(("boat", "boat.width"), "width")
-c.addConstraint(("boat", "boat.depth"), "depth")
-
-c.inheritAllInterfaces("boat")
-c.addSubcomponent("stack", "StackMount", inherit=True)
-c.inheritAllInterfaces("stack")
-
-c.addSubcomponent("split0", "SplitEdge", inherit=True)
-c.addSubcomponent("split1", "SplitEdge", inherit=True)
-
-#the length of the both should always be a multiple of the width of the motor
-#as of now i will be setting the length to 117 (so that means 9 * width of the motor which is 13)
-
-c.toLibrary("BoatWithStack")
diff --git a/rocolib/builders/output/BoatWithBottomServo/graph-anim.svg b/rocolib/builders/output/BoatWithBottomServo/graph-anim.svg
new file mode 100644
index 0000000000000000000000000000000000000000..b3fd0ed3b937725404e061cf79d7c5d291731347
--- /dev/null
+++ b/rocolib/builders/output/BoatWithBottomServo/graph-anim.svg
@@ -0,0 +1,151 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="full" height="207.703296mm" version="1.1" viewBox="0.000000 0.000000 191.733402 207.703296" width="191.733402mm">
+  <defs/>
+  <line opacity="0.5" stroke="#0000ff" x1="169.0" x2="169.0" y1="53.851648000000004" y2="153.851648"/>
+  <line opacity="0.5" stroke="#0000ff" x1="118.99999999999999" x2="118.99999999999999" y1="53.851648000000004" y2="153.851648"/>
+  <line opacity="0.12111894159084342" stroke="#0000ff" x1="144.0" x2="118.99999999999999" y1="53.851648000000004" y2="53.851648000000004"/>
+  <line opacity="0.12111894159084342" stroke="#0000ff" x1="169.0" x2="144.0" y1="53.851648000000004" y2="53.851648000000004"/>
+  <line opacity="0.4468854644851019" stroke="#0000ff" x1="144.0" x2="118.99999999999999" y1="-7.134504187433777e-08" y2="53.851648000000004"/>
+  <line stroke="#000000" x1="110.51320686867432" x2="104.75660343433715" y1="33.97156470018156" y2="39.81150361779138"/>
+  <line stroke="#000000" x1="144.0" x2="110.51320686867432" y1="-7.13450560851925e-08" y2="33.97156470018156"/>
+  <line opacity="1.0" stroke="#0000ff" x1="118.99999999999999" x2="104.75660343433715" y1="53.851648000000004" y2="39.81150361779138"/>
+  <line opacity="1.0" stroke="#ff0000" x1="118.99999999999999" x2="98.99999999999997" y1="53.851648000000004" y2="45.6514425354012"/>
+  <line stroke="#000000" x1="104.75660343433715" x2="98.99999999999997" y1="39.81150361779138" y2="45.6514425354012"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="98.99999999999997" x2="98.99999999999997" y1="53.851648000000004" y2="45.651442535401195"/>
+  <line opacity="0.1475836176504332" stroke="#0000ff" x1="118.99999999999999" x2="98.99999999999997" y1="53.851648000000004" y2="53.851648000000004"/>
+  <line stroke="#000000" x1="96.26659817846705" x2="98.99999999999997" y1="53.85164800000001" y2="53.85164800000001"/>
+  <line stroke="#000000" x1="96.26659817846705" x2="96.26659817846705" y1="45.6514425354012" y2="53.85164800000001"/>
+  <line stroke="#000000" x1="98.99999999999997" x2="96.26659817846705" y1="45.6514425354012" y2="45.6514425354012"/>
+  <line opacity="0.1475836176504332" stroke="#0000ff" x1="99.0" x2="119.00000000000001" y1="153.851648" y2="153.851648"/>
+  <line opacity="1.0" stroke="#ff0000" x1="99.0" x2="119.00000000000001" y1="162.05185346459885" y2="153.851648"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="99.0" x2="99.0" y1="162.05185346459885" y2="153.851648"/>
+  <line stroke="#000000" x1="99.0" x2="104.7566034343372" y1="162.05185346459885" y2="167.89179238220865"/>
+  <line opacity="1.0" stroke="#0000ff" x1="104.7566034343372" x2="119.00000000000001" y1="167.89179238220865" y2="153.851648"/>
+  <line opacity="0.4468854644851019" stroke="#0000ff" x1="144.00000000000003" x2="119.00000000000001" y1="207.70329607134505" y2="153.851648"/>
+  <line stroke="#000000" x1="110.51320686867436" x2="144.00000000000003" y1="173.73173129981845" y2="207.70329607134505"/>
+  <line stroke="#000000" x1="104.7566034343372" x2="110.51320686867436" y1="167.89179238220865" y2="173.73173129981845"/>
+  <line opacity="0.12111894159084342" stroke="#0000ff" x1="119.00000000000001" x2="144.00000000000003" y1="153.851648" y2="153.851648"/>
+  <line opacity="0.12111894159084342" stroke="#0000ff" x1="144.00000000000003" x2="169.0" y1="153.851648" y2="153.851648"/>
+  <line opacity="0.4468854644851019" stroke="#0000ff" x1="144.00000000000003" x2="169.0" y1="207.70329607134505" y2="153.851648"/>
+  <line stroke="#000000" x1="177.48679313132567" x2="183.2433965656628" y1="173.73173129981845" y2="167.89179238220862"/>
+  <line stroke="#000000" x1="144.00000000000003" x2="177.48679313132567" y1="207.70329607134505" y2="173.73173129981845"/>
+  <line opacity="1.0" stroke="#0000ff" x1="169.0" x2="183.2433965656628" y1="153.851648" y2="167.89179238220862"/>
+  <line opacity="1.0" stroke="#ff0000" x1="169.00000000000003" x2="188.99999999999997" y1="153.851648" y2="162.05185346459876"/>
+  <line stroke="#000000" x1="183.2433965656628" x2="188.99999999999997" y1="167.89179238220862" y2="162.05185346459876"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="188.99999999999997" x2="188.99999999999997" y1="153.85164799999998" y2="162.05185346459876"/>
+  <line opacity="0.1475836176504332" stroke="#0000ff" x1="169.0" x2="188.99999999999997" y1="153.851648" y2="153.85164799999998"/>
+  <line stroke="#000000" x1="191.73340182153294" x2="188.99999999999997" y1="153.85164799999998" y2="153.85164799999998"/>
+  <line stroke="#000000" x1="191.73340182153294" x2="191.73340182153294" y1="162.05185346459876" y2="153.85164799999998"/>
+  <line stroke="#000000" x1="188.99999999999997" x2="191.73340182153294" y1="162.05185346459876" y2="162.05185346459876"/>
+  <line opacity="0.1475836176504332" stroke="#0000ff" x1="188.99999999999991" x2="168.99999999999991" y1="53.851648" y2="53.85164800000001"/>
+  <line opacity="1.0" stroke="#ff0000" x1="188.99999999999991" x2="168.99999999999991" y1="45.651442535401195" y2="53.85164800000001"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="188.99999999999991" x2="188.99999999999991" y1="45.651442535401195" y2="53.851648"/>
+  <line stroke="#000000" x1="188.99999999999991" x2="183.24339656566278" y1="45.651442535401195" y2="39.81150361779138"/>
+  <line opacity="1.0" stroke="#0000ff" x1="183.24339656566278" x2="168.99999999999991" y1="39.81150361779138" y2="53.85164800000001"/>
+  <line opacity="0.4468854644851019" stroke="#0000ff" x1="143.9999999999999" x2="168.99999999999991" y1="-7.134499924177363e-08" y2="53.85164800000002"/>
+  <line stroke="#000000" x1="177.48679313132558" x2="143.9999999999999" y1="33.971564700181574" y2="-7.134499924177363e-08"/>
+  <line stroke="#000000" x1="183.24339656566278" x2="177.48679313132558" y1="39.811503617791395" y2="33.971564700181574"/>
+  <line stroke="#000000" x1="191.73340182153285" x2="188.99999999999991" y1="45.651442535401195" y2="45.651442535401195"/>
+  <line stroke="#000000" x1="191.73340182153285" x2="191.73340182153285" y1="53.851648000000004" y2="45.651442535401195"/>
+  <line stroke="#000000" x1="188.99999999999991" x2="191.73340182153285" y1="53.851648000000004" y2="53.851648000000004"/>
+  <line stroke="#000000" x1="188.99999999999994" x2="188.99999999999991" y1="91.85164799999998" y2="53.851648"/>
+  <line stroke="#000000" x1="188.99999999999994" x2="188.99999999999994" y1="115.851648" y2="91.85164799999998"/>
+  <line stroke="#000000" x1="188.99999999999997" x2="188.99999999999994" y1="153.85164799999998" y2="115.851648"/>
+  <line stroke="#000000" x1="188.99999999999997" x2="188.99999999999997" y1="153.85164799999998" y2="153.85164799999998"/>
+  <line stroke="#000000" x1="188.99999999999991" x2="188.99999999999991" y1="53.851648" y2="53.851648"/>
+  <line stroke="#000000" x1="96.26659817846708" x2="99.0" y1="162.05185346459885" y2="162.05185346459885"/>
+  <line stroke="#000000" x1="96.26659817846708" x2="96.26659817846708" y1="153.851648" y2="162.05185346459885"/>
+  <line stroke="#000000" x1="99.0" x2="96.26659817846708" y1="153.851648" y2="153.851648"/>
+  <line stroke="#000000" x1="99.0" x2="99.0" y1="115.85164800000001" y2="153.851648"/>
+  <line opacity="1.0" stroke="#ff0000" x1="98.99999999999999" x2="99.0" y1="91.851648" y2="115.85164800000001"/>
+  <line stroke="#000000" x1="98.99999999999997" x2="98.99999999999999" y1="53.851648000000004" y2="91.851648"/>
+  <line stroke="#000000" x1="98.99999999999997" x2="98.99999999999997" y1="53.851648000000004" y2="53.851648000000004"/>
+  <line stroke="#000000" x1="99.0" x2="99.0" y1="153.851648" y2="153.851648"/>
+  <line stroke="#000000" x1="82.0" x2="99.0" y1="115.85164800000001" y2="115.85164800000001"/>
+  <line opacity="0.5" stroke="#ff0000" x1="82.0" x2="82.0" y1="115.85164800000001" y2="91.851648"/>
+  <line stroke="#000000" x1="98.99999999999999" x2="82.0" y1="91.851648" y2="91.851648"/>
+  <line stroke="#000000" x1="82.0" x2="69.00000000000001" y1="91.851648" y2="91.85164800000003"/>
+  <line stroke="#000000" x1="69.00000000000001" x2="82.0" y1="115.85164800000003" y2="115.85164800000001"/>
+  <line stroke="#000000" x1="69.00000000000001" x2="35.00000000000001" y1="91.85164800000003" y2="91.85164800000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="35.00000000000001" x2="69.00000000000001" y1="115.85164800000003" y2="115.85164800000003"/>
+  <line stroke="#000000" x1="22.000000000000004" x2="35.00000000000001" y1="115.85164800000003" y2="115.85164800000003"/>
+  <line opacity="0.5" stroke="#ff0000" x1="22.000000000000004" x2="22.000000000000004" y1="91.85164800000003" y2="115.85164800000003"/>
+  <line stroke="#000000" x1="35.00000000000001" x2="22.000000000000004" y1="91.85164800000003" y2="91.85164800000003"/>
+  <line stroke="#000000" x1="22.000000000000004" x2="5.000000000000001" y1="91.85164800000003" y2="91.85164800000004"/>
+  <line stroke="#000000" x1="5.000000000000001" x2="22.000000000000004" y1="115.85164800000004" y2="115.85164800000003"/>
+  <line stroke="#000000" x1="0.0" x2="5.000000000000001" y1="115.85164800000004" y2="115.85164800000004"/>
+  <line stroke="#000000" x1="0.0" x2="0.0" y1="91.85164800000004" y2="115.85164800000004"/>
+  <line stroke="#000000" x1="5.000000000000001" x2="0.0" y1="91.85164800000004" y2="91.85164800000004"/>
+  <line stroke="#000000" x1="35.00000000000001" x2="35.00000000000001" y1="115.85164800000003" y2="135.851648"/>
+  <line stroke="#000000" x1="69.00000000000001" x2="69.00000000000001" y1="135.851648" y2="115.85164800000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="35.00000000000001" x2="69.00000000000001" y1="135.851648" y2="135.851648"/>
+  <line stroke="#000000" x1="35.00000000000001" x2="35.00000000000001" y1="135.851648" y2="159.85164800000004"/>
+  <line stroke="#000000" x1="69.00000000000001" x2="69.00000000000001" y1="159.85164800000004" y2="135.851648"/>
+  <line opacity="0.5" stroke="#0000ff" x1="35.00000000000001" x2="69.00000000000001" y1="159.85164800000004" y2="159.85164800000004"/>
+  <line stroke="#000000" x1="35.00000000000001" x2="35.00000000000001" y1="159.85164800000004" y2="179.85164800000004"/>
+  <line stroke="#000000" x1="69.00000000000001" x2="69.00000000000001" y1="179.85164800000004" y2="159.85164800000004"/>
+  <line opacity="0.5" stroke="#0000ff" x1="69.00000000000001" x2="35.00000000000001" y1="179.85164800000004" y2="179.85164800000004"/>
+  <line stroke="#000000" x1="69.00000000000001" x2="69.00000000000001" y1="189.85164800000004" y2="179.85164800000004"/>
+  <line stroke="#000000" x1="35.00000000000001" x2="69.00000000000001" y1="189.85164800000004" y2="189.85164800000004"/>
+  <line stroke="#000000" x1="35.00000000000001" x2="35.00000000000001" y1="179.85164800000004" y2="189.85164800000004"/>
+  <line stroke="#888888" x1="110.40786804847944" x2="108.1379966274785" y1="37.35482121234262" y2="39.65755243235412"/>
+  <line stroke="#888888" x1="108.1379966274785" x2="107.78191171333694" y1="39.65755243235412" y2="39.306548822798916"/>
+  <line stroke="#888888" x1="107.78191171333694" x2="110.05178313433787" y1="39.306548822798916" y2="37.003817602787414"/>
+  <line stroke="#888888" x1="110.05178313433787" x2="110.40786804847944" y1="37.003817602787414" y2="37.35482121234262"/>
+  <line stroke="#888888" x1="96.9499486338503" x2="98.31664954461677" y1="48.38484435693414" y2="48.38484435693414"/>
+  <line stroke="#888888" x1="98.31664954461677" x2="98.31664954461677" y1="48.38484435693414" y2="51.118246178467075"/>
+  <line stroke="#888888" x1="98.31664954461677" x2="96.9499486338503" y1="51.118246178467075" y2="51.118246178467075"/>
+  <line stroke="#888888" x1="108.13799662747854" x2="110.40786804847947" y1="168.0457435676459" y2="170.3484747876574"/>
+  <line stroke="#888888" x1="110.40786804847947" x2="110.05178313433791" y1="170.3484747876574" y2="170.69947839721263"/>
+  <line stroke="#888888" x1="110.05178313433791" x2="107.78191171333698" y1="170.69947839721263" y2="168.39674717720112"/>
+  <line stroke="#888888" x1="107.78191171333698" x2="108.13799662747854" y1="168.39674717720112" y2="168.0457435676459"/>
+  <line stroke="#888888" x1="177.59213195152054" x2="179.86200337252149" y1="170.34847478765738" y2="168.04574356764587"/>
+  <line stroke="#888888" x1="179.86200337252149" x2="180.21808828666306" y1="168.04574356764587" y2="168.3967471772011"/>
+  <line stroke="#888888" x1="180.21808828666306" x2="177.94821686566212" y1="168.3967471772011" y2="170.69947839721257"/>
+  <line stroke="#888888" x1="177.94821686566212" x2="177.59213195152054" y1="170.69947839721257" y2="170.34847478765738"/>
+  <line stroke="#888888" x1="191.0500513661497" x2="189.68335045538325" y1="159.31845164306583" y2="159.31845164306583"/>
+  <line stroke="#888888" x1="189.68335045538325" x2="189.68335045538325" y1="159.31845164306583" y2="156.5850498215329"/>
+  <line stroke="#888888" x1="189.68335045538325" x2="191.0500513661497" y1="156.5850498215329" y2="156.5850498215329"/>
+  <line stroke="#888888" x1="179.8620033725214" x2="177.59213195152049" y1="39.65755243235414" y2="37.354821212342635"/>
+  <line stroke="#888888" x1="177.59213195152049" x2="177.94821686566203" y1="37.354821212342635" y2="37.003817602787414"/>
+  <line stroke="#888888" x1="177.94821686566203" x2="180.21808828666295" y1="37.003817602787414" y2="39.306548822798916"/>
+  <line stroke="#888888" x1="180.21808828666295" x2="179.8620033725214" y1="39.306548822798916" y2="39.65755243235414"/>
+  <line stroke="#888888" x1="191.05005136614966" x2="189.6833504553832" y1="51.11824617846707" y2="51.11824617846707"/>
+  <line stroke="#888888" x1="189.6833504553832" x2="189.6833504553832" y1="51.11824617846707" y2="48.38484435693413"/>
+  <line stroke="#888888" x1="189.6833504553832" x2="191.05005136614966" y1="48.38484435693413" y2="48.38484435693413"/>
+  <line stroke="#888888" x1="184.99999999999997" x2="184.99999999999997" y1="108.101648" y2="99.601648"/>
+  <line stroke="#888888" x1="184.99999999999997" x2="185.49999999999997" y1="99.601648" y2="99.601648"/>
+  <line stroke="#888888" x1="185.49999999999997" x2="185.49999999999997" y1="99.601648" y2="108.101648"/>
+  <line stroke="#888888" x1="185.49999999999997" x2="184.99999999999997" y1="108.101648" y2="108.101648"/>
+  <line stroke="#888888" x1="96.94994863385031" x2="98.31664954461678" y1="156.58504982153295" y2="156.58504982153295"/>
+  <line stroke="#888888" x1="98.31664954461678" x2="98.31664954461678" y1="156.58504982153295" y2="159.31845164306588"/>
+  <line stroke="#888888" x1="98.31664954461678" x2="96.94994863385031" y1="159.31845164306588" y2="159.31845164306588"/>
+  <line stroke="#888888" x1="57.91666666666668" x2="46.08333333333334" y1="99.601648" y2="99.60164800000001"/>
+  <line stroke="#888888" x1="46.08333333333334" x2="46.08333333333334" y1="99.60164800000001" y2="99.10164800000003"/>
+  <line stroke="#888888" x1="46.08333333333334" x2="57.91666666666668" y1="99.10164800000003" y2="99.10164800000001"/>
+  <line stroke="#888888" x1="57.91666666666668" x2="57.91666666666668" y1="99.10164800000001" y2="99.601648"/>
+  <line stroke="#888888" x1="1.2500000000000002" x2="1.2500000000000002" y1="99.85164800000004" y2="97.35164800000003"/>
+  <line stroke="#888888" x1="1.2500000000000002" x2="3.7500000000000004" y1="97.35164800000003" y2="99.85164800000004"/>
+  <line stroke="#888888" x1="3.7500000000000004" x2="3.7500000000000004" y1="99.85164800000004" y2="107.85164800000004"/>
+  <line stroke="#888888" x1="3.7500000000000004" x2="1.2500000000000002" y1="107.85164800000004" y2="110.35164800000004"/>
+  <line stroke="#888888" x1="1.2500000000000002" x2="1.2500000000000002" y1="110.35164800000004" y2="107.85164800000004"/>
+  <line stroke="#888888" x1="46.00000000000001" x2="46.00000000000001" y1="134.85164800000004" y2="130.851648"/>
+  <line stroke="#888888" x1="46.00000000000001" x2="58.0" y1="130.851648" y2="130.851648"/>
+  <line stroke="#888888" x1="58.0" x2="58.0" y1="130.851648" y2="134.85164800000004"/>
+  <line stroke="#888888" x1="58.0" x2="46.00000000000001" y1="134.85164800000004" y2="134.85164800000004"/>
+  <line stroke="#888888" x1="47.50000000000001" x2="47.50000000000001" y1="122.85164800000003" y2="118.85164800000003"/>
+  <line stroke="#888888" x1="47.50000000000001" x2="56.50000000000001" y1="118.85164800000003" y2="118.85164800000003"/>
+  <line stroke="#888888" x1="56.50000000000001" x2="56.50000000000001" y1="118.85164800000003" y2="122.85164800000003"/>
+  <line stroke="#888888" x1="56.50000000000001" x2="47.50000000000001" y1="122.85164800000003" y2="122.85164800000003"/>
+  <line stroke="#888888" x1="46.00000000000001" x2="46.00000000000001" y1="159.35164800000004" y2="136.351648"/>
+  <line stroke="#888888" x1="46.00000000000001" x2="58.0" y1="136.351648" y2="136.351648"/>
+  <line stroke="#888888" x1="58.0" x2="58.0" y1="136.351648" y2="159.35164800000004"/>
+  <line stroke="#888888" x1="58.0" x2="46.00000000000001" y1="159.35164800000004" y2="159.35164800000004"/>
+  <line stroke="#888888" x1="46.00000000000001" x2="46.00000000000001" y1="164.85164800000004" y2="160.851648"/>
+  <line stroke="#888888" x1="46.00000000000001" x2="58.0" y1="160.851648" y2="160.851648"/>
+  <line stroke="#888888" x1="58.0" x2="58.0" y1="160.851648" y2="164.85164800000004"/>
+  <line stroke="#888888" x1="58.0" x2="46.00000000000001" y1="164.85164800000004" y2="164.85164800000004"/>
+  <line stroke="#888888" x1="46.333333333333336" x2="46.333333333333336" y1="187.35164800000004" y2="182.35164800000004"/>
+  <line stroke="#888888" x1="46.333333333333336" x2="57.666666666666664" y1="182.35164800000004" y2="182.35164800000004"/>
+  <line stroke="#888888" x1="57.666666666666664" x2="57.666666666666664" y1="182.35164800000004" y2="187.35164800000004"/>
+</svg>
diff --git a/rocolib/builders/output/BoatWithBottomServo/graph-autofold-default.dxf b/rocolib/builders/output/BoatWithBottomServo/graph-autofold-default.dxf
new file mode 100644
index 0000000000000000000000000000000000000000..bd2dd5978d7869177e67c2e678a3f401e7202efa
--- /dev/null
+++ b/rocolib/builders/output/BoatWithBottomServo/graph-autofold-default.dxf
@@ -0,0 +1,3744 @@
+  0
+SECTION
+  2
+HEADER
+  9
+$ACADVER
+  1
+AC1009
+  9
+$INSBASE
+ 10
+0.0
+ 20
+0.0
+ 30
+0.0
+  9
+$EXTMIN
+ 10
+0.0
+ 20
+0.0
+ 30
+0.0
+  9
+$EXTMAX
+ 10
+100.0
+ 20
+100.0
+ 30
+0.0
+  9
+$UNITMODE
+ 70
+0
+  9
+$AUNITS
+ 70
+0
+  9
+$ANGBASE
+ 50
+0.0
+  9
+$ANGDIR
+ 70
+0
+  0
+ENDSEC
+  0
+SECTION
+  2
+TABLES
+  0
+TABLE
+  2
+LTYPE
+ 70
+20
+  0
+LTYPE
+  2
+CONTINUOUS
+ 70
+0
+  3
+Solid
+ 72
+65
+ 73
+0
+ 40
+0.0
+  0
+LTYPE
+  2
+CENTER
+ 70
+0
+  3
+Center ____ _ ____ _ ____ _ ____ _ ____ _ ____
+ 72
+65
+ 73
+4
+ 40
+2.0
+ 49
+1.25
+ 49
+-0.25
+ 49
+0.25
+ 49
+-0.25
+  0
+LTYPE
+  2
+CENTERX2
+ 70
+0
+  3
+Center (2x) ________  __  ________  __  ________
+ 72
+65
+ 73
+4
+ 40
+3.5
+ 49
+2.5
+ 49
+-0.25
+ 49
+0.5
+ 49
+-0.25
+  0
+LTYPE
+  2
+CENTER2
+ 70
+0
+  3
+Center (.5x) ____ _ ____ _ ____ _ ____ _ ____
+ 72
+65
+ 73
+4
+ 40
+1.0
+ 49
+0.625
+ 49
+-0.125
+ 49
+0.125
+ 49
+-0.125
+  0
+LTYPE
+  2
+DASHED
+ 70
+0
+  3
+Dashed __ __ __ __ __ __ __ __ __ __ __ __ __ _
+ 72
+65
+ 73
+2
+ 40
+0.6
+ 49
+0.5
+ 49
+-0.1
+  0
+LTYPE
+  2
+DASHEDX2
+ 70
+0
+  3
+Dashed (2x) ____  ____  ____  ____  ____  ____
+ 72
+65
+ 73
+2
+ 40
+1.2
+ 49
+1.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DASHED2
+ 70
+0
+  3
+Dashed (.5x) _ _ _ _ _ _ _ _ _ _ _ _ _ _
+ 72
+65
+ 73
+2
+ 40
+0.3
+ 49
+0.25
+ 49
+-0.05
+  0
+LTYPE
+  2
+PHANTOM
+ 70
+0
+  3
+Phantom ______  __  __  ______  __  __  ______
+ 72
+65
+ 73
+6
+ 40
+2.5
+ 49
+1.25
+ 49
+-0.25
+ 49
+0.25
+ 49
+-0.25
+ 49
+0.25
+ 49
+-0.25
+  0
+LTYPE
+  2
+PHANTOMX2
+ 70
+0
+  3
+Phantom (2x)____________    ____    ____    ____________
+ 72
+65
+ 73
+6
+ 40
+4.25
+ 49
+2.5
+ 49
+-0.25
+ 49
+0.5
+ 49
+-0.25
+ 49
+0.5
+ 49
+-0.25
+  0
+LTYPE
+  2
+PHANTOM2
+ 70
+0
+  3
+Phantom (.5x) ___ _ _ ___ _ _ ___ _ _ ___ _ _ ___
+ 72
+65
+ 73
+6
+ 40
+1.25
+ 49
+0.625
+ 49
+-0.125
+ 49
+0.125
+ 49
+-0.125
+ 49
+0.125
+ 49
+-0.125
+  0
+LTYPE
+  2
+DASHDOT
+ 70
+0
+  3
+Dash dot __ . __ . __ . __ . __ . __ . __ . __
+ 72
+65
+ 73
+4
+ 40
+1.4
+ 49
+1.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DASHDOTX2
+ 70
+0
+  3
+Dash dot (2x) ____  .  ____  .  ____  .  ____
+ 72
+65
+ 73
+4
+ 40
+2.4
+ 49
+2.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DASHDOT2
+ 70
+0
+  3
+Dash dot (.5x) _ . _ . _ . _ . _ . _ . _ . _
+ 72
+65
+ 73
+4
+ 40
+0.7
+ 49
+0.5
+ 49
+-0.1
+ 49
+0.0
+ 49
+-0.1
+  0
+LTYPE
+  2
+DOT
+ 70
+0
+  3
+Dot .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .
+ 72
+65
+ 73
+2
+ 40
+0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DOTX2
+ 70
+0
+  3
+Dot (2x) .    .    .    .    .    .    .    . 
+ 72
+65
+ 73
+2
+ 40
+0.4
+ 49
+0.0
+ 49
+-0.4
+  0
+LTYPE
+  2
+DOT2
+ 70
+0
+  3
+Dot (.5) . . . . . . . . . . . . . . . . . . . 
+ 72
+65
+ 73
+2
+ 40
+0.1
+ 49
+0.0
+ 49
+-0.1
+  0
+LTYPE
+  2
+DIVIDE
+ 70
+0
+  3
+Divide __ . . __ . . __ . . __ . . __ . . __
+ 72
+65
+ 73
+6
+ 40
+1.6
+ 49
+1.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DIVIDEX2
+ 70
+0
+  3
+Divide (2x) ____  . .  ____  . .  ____  . .  ____
+ 72
+65
+ 73
+6
+ 40
+2.6
+ 49
+2.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DIVIDE2
+ 70
+0
+  3
+Divide(.5x) _ . _ . _ . _ . _ . _ . _ . _
+ 72
+65
+ 73
+6
+ 40
+0.8
+ 49
+0.5
+ 49
+-0.1
+ 49
+0.0
+ 49
+-0.1
+ 49
+0.0
+ 49
+-0.1
+  0
+LTYPE
+  2
+DOTTED
+ 70
+0
+  3
+
+ 72
+65
+ 73
+2
+ 40
+1.0
+ 49
+0.0
+ 49
+-1.0
+  0
+ENDTAB
+  0
+TABLE
+  2
+LAYER
+ 70
+14
+  0
+LAYER
+  2
+DIMENSIONS
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+TABLEBACKGROUND
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+TABLECONTENT
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+TABLEGRID
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+VIEWPORTS
+ 70
+0
+ 62
+7
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+90
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+21.801409486351815
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+80.43938360731835
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+0
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+180
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+-180
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+-174
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+26.565051177077976
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+-90
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+ENDTAB
+  0
+TABLE
+  2
+STYLE
+ 70
+12
+  0
+STYLE
+  2
+STANDARD
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+arial.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+arial.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL_BOLD
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+arialbd.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+ariali.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL_BOLD_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+arialbi.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL_BLACK
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+ariblk.ttf
+  4
+
+  0
+STYLE
+  2
+ISOCPEUR
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+isocpeur.ttf
+  4
+
+  0
+STYLE
+  2
+ISOCPEUR_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+isocpeui.ttf
+  4
+
+  0
+STYLE
+  2
+TIMES
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+times.ttf
+  4
+
+  0
+STYLE
+  2
+TIMES_BOLD
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+timesbd.ttf
+  4
+
+  0
+STYLE
+  2
+TIMES_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+timesi.ttf
+  4
+
+  0
+STYLE
+  2
+TIMES_BOLD_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+timesbi.ttf
+  4
+
+  0
+ENDTAB
+  0
+TABLE
+  2
+VIEW
+ 70
+0
+  0
+ENDTAB
+  0
+TABLE
+  2
+APPID
+ 70
+1
+  0
+APPID
+  2
+DXFWRITE
+ 70
+0
+  0
+ENDTAB
+  0
+TABLE
+  2
+VPORT
+ 70
+0
+  0
+ENDTAB
+  0
+TABLE
+  2
+UCS
+ 70
+0
+  0
+ENDTAB
+  0
+ENDSEC
+  0
+SECTION
+  2
+BLOCKS
+  0
+ENDSEC
+  0
+SECTION
+  2
+ENTITIES
+  0
+VIEWPORT
+  8
+VIEWPORTS
+ 67
+1
+ 10
+0.0
+ 20
+0.0
+ 30
+0.0
+ 40
+1.0
+ 41
+1.0
+ 68
+1
+ 69
+1
+1001
+ACAD
+1000
+MVIEW
+1002
+{
+1070
+16
+1010
+0.0
+1020
+0.0
+1030
+0.0
+1010
+0.0
+1020
+0.0
+1030
+0.0
+1040
+0.0
+1040
+1.0
+1040
+0.0
+1040
+0.0
+1040
+50.0
+1040
+0.0
+1040
+0.0
+1070
+0
+1070
+100
+1070
+1
+1070
+3
+1070
+0
+1070
+0
+1070
+0
+1070
+0
+1040
+0.0
+1040
+0.0
+1040
+0.0
+1040
+0.1
+1040
+0.1
+1040
+0.1
+1040
+0.1
+1070
+0
+1002
+{
+1002
+}
+1002
+}
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+169.0
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+169.0
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+118.99999999999999
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+118.99999999999999
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+21.801409486351815
+ 10
+144.0
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+118.99999999999999
+ 21
+53.851648000000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+21.801409486351815
+ 10
+169.0
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+144.0
+ 21
+53.851648000000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+80.43938360731835
+ 10
+144.0
+ 20
+-7.134504187433777e-08
+ 30
+0.0
+ 11
+118.99999999999999
+ 21
+53.851648000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+110.51320686867432
+ 20
+33.97156470018156
+ 30
+0.0
+ 11
+104.75660343433715
+ 21
+39.81150361779138
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+144.0
+ 20
+-7.13450560851925e-08
+ 30
+0.0
+ 11
+110.51320686867432
+ 21
+33.97156470018156
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+180
+ 10
+118.99999999999999
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+104.75660343433715
+ 21
+39.81150361779138
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-180
+ 10
+118.99999999999999
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+98.99999999999997
+ 21
+45.6514425354012
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+104.75660343433715
+ 20
+39.81150361779138
+ 30
+0.0
+ 11
+98.99999999999997
+ 21
+45.6514425354012
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-174
+ 10
+98.99999999999997
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+98.99999999999997
+ 21
+45.651442535401195
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+26.565051177077976
+ 10
+118.99999999999999
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+98.99999999999997
+ 21
+53.851648000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+96.26659817846705
+ 20
+53.85164800000001
+ 30
+0.0
+ 11
+98.99999999999997
+ 21
+53.85164800000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+96.26659817846705
+ 20
+45.6514425354012
+ 30
+0.0
+ 11
+96.26659817846705
+ 21
+53.85164800000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+98.99999999999997
+ 20
+45.6514425354012
+ 30
+0.0
+ 11
+96.26659817846705
+ 21
+45.6514425354012
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+26.565051177077976
+ 10
+99.0
+ 20
+153.851648
+ 30
+0.0
+ 11
+119.00000000000001
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-180
+ 10
+99.0
+ 20
+162.05185346459885
+ 30
+0.0
+ 11
+119.00000000000001
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-174
+ 10
+99.0
+ 20
+162.05185346459885
+ 30
+0.0
+ 11
+99.0
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+99.0
+ 20
+162.05185346459885
+ 30
+0.0
+ 11
+104.7566034343372
+ 21
+167.89179238220865
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+180
+ 10
+104.7566034343372
+ 20
+167.89179238220865
+ 30
+0.0
+ 11
+119.00000000000001
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+80.43938360731835
+ 10
+144.00000000000003
+ 20
+207.70329607134505
+ 30
+0.0
+ 11
+119.00000000000001
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+110.51320686867436
+ 20
+173.73173129981845
+ 30
+0.0
+ 11
+144.00000000000003
+ 21
+207.70329607134505
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+104.7566034343372
+ 20
+167.89179238220865
+ 30
+0.0
+ 11
+110.51320686867436
+ 21
+173.73173129981845
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+21.801409486351815
+ 10
+119.00000000000001
+ 20
+153.851648
+ 30
+0.0
+ 11
+144.00000000000003
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+21.801409486351815
+ 10
+144.00000000000003
+ 20
+153.851648
+ 30
+0.0
+ 11
+169.0
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+80.43938360731835
+ 10
+144.00000000000003
+ 20
+207.70329607134505
+ 30
+0.0
+ 11
+169.0
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+177.48679313132567
+ 20
+173.73173129981845
+ 30
+0.0
+ 11
+183.2433965656628
+ 21
+167.89179238220862
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+144.00000000000003
+ 20
+207.70329607134505
+ 30
+0.0
+ 11
+177.48679313132567
+ 21
+173.73173129981845
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+180
+ 10
+169.0
+ 20
+153.851648
+ 30
+0.0
+ 11
+183.2433965656628
+ 21
+167.89179238220862
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-180
+ 10
+169.00000000000003
+ 20
+153.851648
+ 30
+0.0
+ 11
+188.99999999999997
+ 21
+162.05185346459876
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+183.2433965656628
+ 20
+167.89179238220862
+ 30
+0.0
+ 11
+188.99999999999997
+ 21
+162.05185346459876
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-174
+ 10
+188.99999999999997
+ 20
+153.85164799999998
+ 30
+0.0
+ 11
+188.99999999999997
+ 21
+162.05185346459876
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+26.565051177077976
+ 10
+169.0
+ 20
+153.851648
+ 30
+0.0
+ 11
+188.99999999999997
+ 21
+153.85164799999998
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+191.73340182153294
+ 20
+153.85164799999998
+ 30
+0.0
+ 11
+188.99999999999997
+ 21
+153.85164799999998
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+191.73340182153294
+ 20
+162.05185346459876
+ 30
+0.0
+ 11
+191.73340182153294
+ 21
+153.85164799999998
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+188.99999999999997
+ 20
+162.05185346459876
+ 30
+0.0
+ 11
+191.73340182153294
+ 21
+162.05185346459876
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+26.565051177077976
+ 10
+188.99999999999991
+ 20
+53.851648
+ 30
+0.0
+ 11
+168.99999999999991
+ 21
+53.85164800000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-180
+ 10
+188.99999999999991
+ 20
+45.651442535401195
+ 30
+0.0
+ 11
+168.99999999999991
+ 21
+53.85164800000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-174
+ 10
+188.99999999999991
+ 20
+45.651442535401195
+ 30
+0.0
+ 11
+188.99999999999991
+ 21
+53.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+188.99999999999991
+ 20
+45.651442535401195
+ 30
+0.0
+ 11
+183.24339656566278
+ 21
+39.81150361779138
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+180
+ 10
+183.24339656566278
+ 20
+39.81150361779138
+ 30
+0.0
+ 11
+168.99999999999991
+ 21
+53.85164800000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+80.43938360731835
+ 10
+143.9999999999999
+ 20
+-7.134499924177363e-08
+ 30
+0.0
+ 11
+168.99999999999991
+ 21
+53.85164800000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+177.48679313132558
+ 20
+33.971564700181574
+ 30
+0.0
+ 11
+143.9999999999999
+ 21
+-7.134499924177363e-08
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+183.24339656566278
+ 20
+39.811503617791395
+ 30
+0.0
+ 11
+177.48679313132558
+ 21
+33.971564700181574
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+191.73340182153285
+ 20
+45.651442535401195
+ 30
+0.0
+ 11
+188.99999999999991
+ 21
+45.651442535401195
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+191.73340182153285
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+191.73340182153285
+ 21
+45.651442535401195
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+188.99999999999991
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+191.73340182153285
+ 21
+53.851648000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+188.99999999999994
+ 20
+91.85164799999998
+ 30
+0.0
+ 11
+188.99999999999991
+ 21
+53.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+188.99999999999994
+ 20
+115.851648
+ 30
+0.0
+ 11
+188.99999999999994
+ 21
+91.85164799999998
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+188.99999999999997
+ 20
+153.85164799999998
+ 30
+0.0
+ 11
+188.99999999999994
+ 21
+115.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+188.99999999999997
+ 20
+153.85164799999998
+ 30
+0.0
+ 11
+188.99999999999997
+ 21
+153.85164799999998
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+188.99999999999991
+ 20
+53.851648
+ 30
+0.0
+ 11
+188.99999999999991
+ 21
+53.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+96.26659817846708
+ 20
+162.05185346459885
+ 30
+0.0
+ 11
+99.0
+ 21
+162.05185346459885
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+96.26659817846708
+ 20
+153.851648
+ 30
+0.0
+ 11
+96.26659817846708
+ 21
+162.05185346459885
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+99.0
+ 20
+153.851648
+ 30
+0.0
+ 11
+96.26659817846708
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+99.0
+ 20
+115.85164800000001
+ 30
+0.0
+ 11
+99.0
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-180
+ 10
+98.99999999999999
+ 20
+91.851648
+ 30
+0.0
+ 11
+99.0
+ 21
+115.85164800000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+98.99999999999997
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+98.99999999999999
+ 21
+91.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+98.99999999999997
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+98.99999999999997
+ 21
+53.851648000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+99.0
+ 20
+153.851648
+ 30
+0.0
+ 11
+99.0
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+82.0
+ 20
+115.85164800000001
+ 30
+0.0
+ 11
+99.0
+ 21
+115.85164800000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+82.0
+ 20
+115.85164800000001
+ 30
+0.0
+ 11
+82.0
+ 21
+91.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+98.99999999999999
+ 20
+91.851648
+ 30
+0.0
+ 11
+82.0
+ 21
+91.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+82.0
+ 20
+91.851648
+ 30
+0.0
+ 11
+69.00000000000001
+ 21
+91.85164800000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+69.00000000000001
+ 20
+115.85164800000003
+ 30
+0.0
+ 11
+82.0
+ 21
+115.85164800000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+69.00000000000001
+ 20
+91.85164800000003
+ 30
+0.0
+ 11
+35.00000000000001
+ 21
+91.85164800000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+35.00000000000001
+ 20
+115.85164800000003
+ 30
+0.0
+ 11
+69.00000000000001
+ 21
+115.85164800000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+22.000000000000004
+ 20
+115.85164800000003
+ 30
+0.0
+ 11
+35.00000000000001
+ 21
+115.85164800000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+22.000000000000004
+ 20
+91.85164800000003
+ 30
+0.0
+ 11
+22.000000000000004
+ 21
+115.85164800000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+35.00000000000001
+ 20
+91.85164800000003
+ 30
+0.0
+ 11
+22.000000000000004
+ 21
+91.85164800000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+22.000000000000004
+ 20
+91.85164800000003
+ 30
+0.0
+ 11
+5.000000000000001
+ 21
+91.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+5.000000000000001
+ 20
+115.85164800000004
+ 30
+0.0
+ 11
+22.000000000000004
+ 21
+115.85164800000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+0.0
+ 20
+115.85164800000004
+ 30
+0.0
+ 11
+5.000000000000001
+ 21
+115.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+0.0
+ 20
+91.85164800000004
+ 30
+0.0
+ 11
+0.0
+ 21
+115.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+5.000000000000001
+ 20
+91.85164800000004
+ 30
+0.0
+ 11
+0.0
+ 21
+91.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+35.00000000000001
+ 20
+115.85164800000003
+ 30
+0.0
+ 11
+35.00000000000001
+ 21
+135.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+69.00000000000001
+ 20
+135.851648
+ 30
+0.0
+ 11
+69.00000000000001
+ 21
+115.85164800000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+35.00000000000001
+ 20
+135.851648
+ 30
+0.0
+ 11
+69.00000000000001
+ 21
+135.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+35.00000000000001
+ 20
+135.851648
+ 30
+0.0
+ 11
+35.00000000000001
+ 21
+159.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+69.00000000000001
+ 20
+159.85164800000004
+ 30
+0.0
+ 11
+69.00000000000001
+ 21
+135.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+35.00000000000001
+ 20
+159.85164800000004
+ 30
+0.0
+ 11
+69.00000000000001
+ 21
+159.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+35.00000000000001
+ 20
+159.85164800000004
+ 30
+0.0
+ 11
+35.00000000000001
+ 21
+179.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+69.00000000000001
+ 20
+179.85164800000004
+ 30
+0.0
+ 11
+69.00000000000001
+ 21
+159.85164800000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+69.00000000000001
+ 20
+179.85164800000004
+ 30
+0.0
+ 11
+35.00000000000001
+ 21
+179.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+69.00000000000001
+ 20
+189.85164800000004
+ 30
+0.0
+ 11
+69.00000000000001
+ 21
+179.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+35.00000000000001
+ 20
+189.85164800000004
+ 30
+0.0
+ 11
+69.00000000000001
+ 21
+189.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+35.00000000000001
+ 20
+179.85164800000004
+ 30
+0.0
+ 11
+35.00000000000001
+ 21
+189.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+110.40786804847944
+ 20
+37.35482121234262
+ 30
+0.0
+ 11
+108.1379966274785
+ 21
+39.65755243235412
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+108.1379966274785
+ 20
+39.65755243235412
+ 30
+0.0
+ 11
+107.78191171333694
+ 21
+39.306548822798916
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+107.78191171333694
+ 20
+39.306548822798916
+ 30
+0.0
+ 11
+110.05178313433787
+ 21
+37.003817602787414
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+110.05178313433787
+ 20
+37.003817602787414
+ 30
+0.0
+ 11
+110.40786804847944
+ 21
+37.35482121234262
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+96.9499486338503
+ 20
+48.38484435693414
+ 30
+0.0
+ 11
+98.31664954461677
+ 21
+48.38484435693414
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+98.31664954461677
+ 20
+48.38484435693414
+ 30
+0.0
+ 11
+98.31664954461677
+ 21
+51.118246178467075
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+98.31664954461677
+ 20
+51.118246178467075
+ 30
+0.0
+ 11
+96.9499486338503
+ 21
+51.118246178467075
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+108.13799662747854
+ 20
+168.0457435676459
+ 30
+0.0
+ 11
+110.40786804847947
+ 21
+170.3484747876574
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+110.40786804847947
+ 20
+170.3484747876574
+ 30
+0.0
+ 11
+110.05178313433791
+ 21
+170.69947839721263
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+110.05178313433791
+ 20
+170.69947839721263
+ 30
+0.0
+ 11
+107.78191171333698
+ 21
+168.39674717720112
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+107.78191171333698
+ 20
+168.39674717720112
+ 30
+0.0
+ 11
+108.13799662747854
+ 21
+168.0457435676459
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+177.59213195152054
+ 20
+170.34847478765738
+ 30
+0.0
+ 11
+179.86200337252149
+ 21
+168.04574356764587
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+179.86200337252149
+ 20
+168.04574356764587
+ 30
+0.0
+ 11
+180.21808828666306
+ 21
+168.3967471772011
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+180.21808828666306
+ 20
+168.3967471772011
+ 30
+0.0
+ 11
+177.94821686566212
+ 21
+170.69947839721257
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+177.94821686566212
+ 20
+170.69947839721257
+ 30
+0.0
+ 11
+177.59213195152054
+ 21
+170.34847478765738
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+191.0500513661497
+ 20
+159.31845164306583
+ 30
+0.0
+ 11
+189.68335045538325
+ 21
+159.31845164306583
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+189.68335045538325
+ 20
+159.31845164306583
+ 30
+0.0
+ 11
+189.68335045538325
+ 21
+156.5850498215329
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+189.68335045538325
+ 20
+156.5850498215329
+ 30
+0.0
+ 11
+191.0500513661497
+ 21
+156.5850498215329
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+179.8620033725214
+ 20
+39.65755243235414
+ 30
+0.0
+ 11
+177.59213195152049
+ 21
+37.354821212342635
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+177.59213195152049
+ 20
+37.354821212342635
+ 30
+0.0
+ 11
+177.94821686566203
+ 21
+37.003817602787414
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+177.94821686566203
+ 20
+37.003817602787414
+ 30
+0.0
+ 11
+180.21808828666295
+ 21
+39.306548822798916
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+180.21808828666295
+ 20
+39.306548822798916
+ 30
+0.0
+ 11
+179.8620033725214
+ 21
+39.65755243235414
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+191.05005136614966
+ 20
+51.11824617846707
+ 30
+0.0
+ 11
+189.6833504553832
+ 21
+51.11824617846707
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+189.6833504553832
+ 20
+51.11824617846707
+ 30
+0.0
+ 11
+189.6833504553832
+ 21
+48.38484435693413
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+189.6833504553832
+ 20
+48.38484435693413
+ 30
+0.0
+ 11
+191.05005136614966
+ 21
+48.38484435693413
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+184.99999999999997
+ 20
+108.101648
+ 30
+0.0
+ 11
+184.99999999999997
+ 21
+99.601648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+184.99999999999997
+ 20
+99.601648
+ 30
+0.0
+ 11
+185.49999999999997
+ 21
+99.601648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+185.49999999999997
+ 20
+99.601648
+ 30
+0.0
+ 11
+185.49999999999997
+ 21
+108.101648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+185.49999999999997
+ 20
+108.101648
+ 30
+0.0
+ 11
+184.99999999999997
+ 21
+108.101648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+96.94994863385031
+ 20
+156.58504982153295
+ 30
+0.0
+ 11
+98.31664954461678
+ 21
+156.58504982153295
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+98.31664954461678
+ 20
+156.58504982153295
+ 30
+0.0
+ 11
+98.31664954461678
+ 21
+159.31845164306588
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+98.31664954461678
+ 20
+159.31845164306588
+ 30
+0.0
+ 11
+96.94994863385031
+ 21
+159.31845164306588
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+57.91666666666668
+ 20
+99.601648
+ 30
+0.0
+ 11
+46.08333333333334
+ 21
+99.60164800000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+46.08333333333334
+ 20
+99.60164800000001
+ 30
+0.0
+ 11
+46.08333333333334
+ 21
+99.10164800000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+46.08333333333334
+ 20
+99.10164800000003
+ 30
+0.0
+ 11
+57.91666666666668
+ 21
+99.10164800000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+57.91666666666668
+ 20
+99.10164800000001
+ 30
+0.0
+ 11
+57.91666666666668
+ 21
+99.601648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+1.2500000000000002
+ 20
+99.85164800000004
+ 30
+0.0
+ 11
+1.2500000000000002
+ 21
+97.35164800000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+1.2500000000000002
+ 20
+97.35164800000003
+ 30
+0.0
+ 11
+3.7500000000000004
+ 21
+99.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+3.7500000000000004
+ 20
+99.85164800000004
+ 30
+0.0
+ 11
+3.7500000000000004
+ 21
+107.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+3.7500000000000004
+ 20
+107.85164800000004
+ 30
+0.0
+ 11
+1.2500000000000002
+ 21
+110.35164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+1.2500000000000002
+ 20
+110.35164800000004
+ 30
+0.0
+ 11
+1.2500000000000002
+ 21
+107.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+46.00000000000001
+ 20
+134.85164800000004
+ 30
+0.0
+ 11
+46.00000000000001
+ 21
+130.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+46.00000000000001
+ 20
+130.851648
+ 30
+0.0
+ 11
+58.0
+ 21
+130.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+58.0
+ 20
+130.851648
+ 30
+0.0
+ 11
+58.0
+ 21
+134.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+58.0
+ 20
+134.85164800000004
+ 30
+0.0
+ 11
+46.00000000000001
+ 21
+134.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+47.50000000000001
+ 20
+122.85164800000003
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+118.85164800000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+47.50000000000001
+ 20
+118.85164800000003
+ 30
+0.0
+ 11
+56.50000000000001
+ 21
+118.85164800000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+56.50000000000001
+ 20
+118.85164800000003
+ 30
+0.0
+ 11
+56.50000000000001
+ 21
+122.85164800000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+56.50000000000001
+ 20
+122.85164800000003
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+122.85164800000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+46.00000000000001
+ 20
+159.35164800000004
+ 30
+0.0
+ 11
+46.00000000000001
+ 21
+136.351648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+46.00000000000001
+ 20
+136.351648
+ 30
+0.0
+ 11
+58.0
+ 21
+136.351648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+58.0
+ 20
+136.351648
+ 30
+0.0
+ 11
+58.0
+ 21
+159.35164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+58.0
+ 20
+159.35164800000004
+ 30
+0.0
+ 11
+46.00000000000001
+ 21
+159.35164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+46.00000000000001
+ 20
+164.85164800000004
+ 30
+0.0
+ 11
+46.00000000000001
+ 21
+160.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+46.00000000000001
+ 20
+160.851648
+ 30
+0.0
+ 11
+58.0
+ 21
+160.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+58.0
+ 20
+160.851648
+ 30
+0.0
+ 11
+58.0
+ 21
+164.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+58.0
+ 20
+164.85164800000004
+ 30
+0.0
+ 11
+46.00000000000001
+ 21
+164.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+46.333333333333336
+ 20
+187.35164800000004
+ 30
+0.0
+ 11
+46.333333333333336
+ 21
+182.35164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+46.333333333333336
+ 20
+182.35164800000004
+ 30
+0.0
+ 11
+57.666666666666664
+ 21
+182.35164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+57.666666666666664
+ 20
+182.35164800000004
+ 30
+0.0
+ 11
+57.666666666666664
+ 21
+187.35164800000004
+ 31
+0.0
+  0
+ENDSEC
+  0
+EOF
diff --git a/rocolib/builders/output/BoatWithBottomServo/graph-autofold-graph.dxf b/rocolib/builders/output/BoatWithBottomServo/graph-autofold-graph.dxf
new file mode 100644
index 0000000000000000000000000000000000000000..e01af2ecad8826c9802841c9ec08d49459ef425a
--- /dev/null
+++ b/rocolib/builders/output/BoatWithBottomServo/graph-autofold-graph.dxf
@@ -0,0 +1,3654 @@
+  0
+SECTION
+  2
+HEADER
+  9
+$ACADVER
+  1
+AC1009
+  9
+$INSBASE
+ 10
+0.0
+ 20
+0.0
+ 30
+0.0
+  9
+$EXTMIN
+ 10
+0.0
+ 20
+0.0
+ 30
+0.0
+  9
+$EXTMAX
+ 10
+100.0
+ 20
+100.0
+ 30
+0.0
+  9
+$UNITMODE
+ 70
+0
+  9
+$AUNITS
+ 70
+0
+  9
+$ANGBASE
+ 50
+0.0
+  9
+$ANGDIR
+ 70
+0
+  0
+ENDSEC
+  0
+SECTION
+  2
+TABLES
+  0
+TABLE
+  2
+LTYPE
+ 70
+20
+  0
+LTYPE
+  2
+CONTINUOUS
+ 70
+0
+  3
+Solid
+ 72
+65
+ 73
+0
+ 40
+0.0
+  0
+LTYPE
+  2
+CENTER
+ 70
+0
+  3
+Center ____ _ ____ _ ____ _ ____ _ ____ _ ____
+ 72
+65
+ 73
+4
+ 40
+2.0
+ 49
+1.25
+ 49
+-0.25
+ 49
+0.25
+ 49
+-0.25
+  0
+LTYPE
+  2
+CENTERX2
+ 70
+0
+  3
+Center (2x) ________  __  ________  __  ________
+ 72
+65
+ 73
+4
+ 40
+3.5
+ 49
+2.5
+ 49
+-0.25
+ 49
+0.5
+ 49
+-0.25
+  0
+LTYPE
+  2
+CENTER2
+ 70
+0
+  3
+Center (.5x) ____ _ ____ _ ____ _ ____ _ ____
+ 72
+65
+ 73
+4
+ 40
+1.0
+ 49
+0.625
+ 49
+-0.125
+ 49
+0.125
+ 49
+-0.125
+  0
+LTYPE
+  2
+DASHED
+ 70
+0
+  3
+Dashed __ __ __ __ __ __ __ __ __ __ __ __ __ _
+ 72
+65
+ 73
+2
+ 40
+0.6
+ 49
+0.5
+ 49
+-0.1
+  0
+LTYPE
+  2
+DASHEDX2
+ 70
+0
+  3
+Dashed (2x) ____  ____  ____  ____  ____  ____
+ 72
+65
+ 73
+2
+ 40
+1.2
+ 49
+1.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DASHED2
+ 70
+0
+  3
+Dashed (.5x) _ _ _ _ _ _ _ _ _ _ _ _ _ _
+ 72
+65
+ 73
+2
+ 40
+0.3
+ 49
+0.25
+ 49
+-0.05
+  0
+LTYPE
+  2
+PHANTOM
+ 70
+0
+  3
+Phantom ______  __  __  ______  __  __  ______
+ 72
+65
+ 73
+6
+ 40
+2.5
+ 49
+1.25
+ 49
+-0.25
+ 49
+0.25
+ 49
+-0.25
+ 49
+0.25
+ 49
+-0.25
+  0
+LTYPE
+  2
+PHANTOMX2
+ 70
+0
+  3
+Phantom (2x)____________    ____    ____    ____________
+ 72
+65
+ 73
+6
+ 40
+4.25
+ 49
+2.5
+ 49
+-0.25
+ 49
+0.5
+ 49
+-0.25
+ 49
+0.5
+ 49
+-0.25
+  0
+LTYPE
+  2
+PHANTOM2
+ 70
+0
+  3
+Phantom (.5x) ___ _ _ ___ _ _ ___ _ _ ___ _ _ ___
+ 72
+65
+ 73
+6
+ 40
+1.25
+ 49
+0.625
+ 49
+-0.125
+ 49
+0.125
+ 49
+-0.125
+ 49
+0.125
+ 49
+-0.125
+  0
+LTYPE
+  2
+DASHDOT
+ 70
+0
+  3
+Dash dot __ . __ . __ . __ . __ . __ . __ . __
+ 72
+65
+ 73
+4
+ 40
+1.4
+ 49
+1.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DASHDOTX2
+ 70
+0
+  3
+Dash dot (2x) ____  .  ____  .  ____  .  ____
+ 72
+65
+ 73
+4
+ 40
+2.4
+ 49
+2.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DASHDOT2
+ 70
+0
+  3
+Dash dot (.5x) _ . _ . _ . _ . _ . _ . _ . _
+ 72
+65
+ 73
+4
+ 40
+0.7
+ 49
+0.5
+ 49
+-0.1
+ 49
+0.0
+ 49
+-0.1
+  0
+LTYPE
+  2
+DOT
+ 70
+0
+  3
+Dot .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .
+ 72
+65
+ 73
+2
+ 40
+0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DOTX2
+ 70
+0
+  3
+Dot (2x) .    .    .    .    .    .    .    . 
+ 72
+65
+ 73
+2
+ 40
+0.4
+ 49
+0.0
+ 49
+-0.4
+  0
+LTYPE
+  2
+DOT2
+ 70
+0
+  3
+Dot (.5) . . . . . . . . . . . . . . . . . . . 
+ 72
+65
+ 73
+2
+ 40
+0.1
+ 49
+0.0
+ 49
+-0.1
+  0
+LTYPE
+  2
+DIVIDE
+ 70
+0
+  3
+Divide __ . . __ . . __ . . __ . . __ . . __
+ 72
+65
+ 73
+6
+ 40
+1.6
+ 49
+1.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DIVIDEX2
+ 70
+0
+  3
+Divide (2x) ____  . .  ____  . .  ____  . .  ____
+ 72
+65
+ 73
+6
+ 40
+2.6
+ 49
+2.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DIVIDE2
+ 70
+0
+  3
+Divide(.5x) _ . _ . _ . _ . _ . _ . _ . _
+ 72
+65
+ 73
+6
+ 40
+0.8
+ 49
+0.5
+ 49
+-0.1
+ 49
+0.0
+ 49
+-0.1
+ 49
+0.0
+ 49
+-0.1
+  0
+LTYPE
+  2
+DOTTED
+ 70
+0
+  3
+
+ 72
+65
+ 73
+2
+ 40
+1.0
+ 49
+0.0
+ 49
+-1.0
+  0
+ENDTAB
+  0
+TABLE
+  2
+LAYER
+ 70
+5
+  0
+LAYER
+  2
+DIMENSIONS
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+TABLEBACKGROUND
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+TABLECONTENT
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+TABLEGRID
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+VIEWPORTS
+ 70
+0
+ 62
+7
+  6
+CONTINUOUS
+  0
+ENDTAB
+  0
+TABLE
+  2
+STYLE
+ 70
+12
+  0
+STYLE
+  2
+STANDARD
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+arial.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+arial.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL_BOLD
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+arialbd.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+ariali.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL_BOLD_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+arialbi.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL_BLACK
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+ariblk.ttf
+  4
+
+  0
+STYLE
+  2
+ISOCPEUR
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+isocpeur.ttf
+  4
+
+  0
+STYLE
+  2
+ISOCPEUR_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+isocpeui.ttf
+  4
+
+  0
+STYLE
+  2
+TIMES
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+times.ttf
+  4
+
+  0
+STYLE
+  2
+TIMES_BOLD
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+timesbd.ttf
+  4
+
+  0
+STYLE
+  2
+TIMES_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+timesi.ttf
+  4
+
+  0
+STYLE
+  2
+TIMES_BOLD_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+timesbi.ttf
+  4
+
+  0
+ENDTAB
+  0
+TABLE
+  2
+VIEW
+ 70
+0
+  0
+ENDTAB
+  0
+TABLE
+  2
+APPID
+ 70
+1
+  0
+APPID
+  2
+DXFWRITE
+ 70
+0
+  0
+ENDTAB
+  0
+TABLE
+  2
+VPORT
+ 70
+0
+  0
+ENDTAB
+  0
+TABLE
+  2
+UCS
+ 70
+0
+  0
+ENDTAB
+  0
+ENDSEC
+  0
+SECTION
+  2
+BLOCKS
+  0
+ENDSEC
+  0
+SECTION
+  2
+ENTITIES
+  0
+VIEWPORT
+  8
+VIEWPORTS
+ 67
+1
+ 10
+0.0
+ 20
+0.0
+ 30
+0.0
+ 40
+1.0
+ 41
+1.0
+ 68
+1
+ 69
+1
+1001
+ACAD
+1000
+MVIEW
+1002
+{
+1070
+16
+1010
+0.0
+1020
+0.0
+1030
+0.0
+1010
+0.0
+1020
+0.0
+1030
+0.0
+1040
+0.0
+1040
+1.0
+1040
+0.0
+1040
+0.0
+1040
+50.0
+1040
+0.0
+1040
+0.0
+1070
+0
+1070
+100
+1070
+1
+1070
+3
+1070
+0
+1070
+0
+1070
+0
+1070
+0
+1040
+0.0
+1040
+0.0
+1040
+0.0
+1040
+0.1
+1040
+0.1
+1040
+0.1
+1040
+0.1
+1070
+0
+1002
+{
+1002
+}
+1002
+}
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+169.0
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+169.0
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+118.99999999999999
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+118.99999999999999
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+144.0
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+118.99999999999999
+ 21
+53.851648000000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+169.0
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+144.0
+ 21
+53.851648000000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+144.0
+ 20
+-7.134504187433777e-08
+ 30
+0.0
+ 11
+118.99999999999999
+ 21
+53.851648000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+110.51320686867432
+ 20
+33.97156470018156
+ 30
+0.0
+ 11
+104.75660343433715
+ 21
+39.81150361779138
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.0
+ 20
+-7.13450560851925e-08
+ 30
+0.0
+ 11
+110.51320686867432
+ 21
+33.97156470018156
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+118.99999999999999
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+104.75660343433715
+ 21
+39.81150361779138
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+118.99999999999999
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+98.99999999999997
+ 21
+45.6514425354012
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+104.75660343433715
+ 20
+39.81150361779138
+ 30
+0.0
+ 11
+98.99999999999997
+ 21
+45.6514425354012
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+98.99999999999997
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+98.99999999999997
+ 21
+45.651442535401195
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+118.99999999999999
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+98.99999999999997
+ 21
+53.851648000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.26659817846705
+ 20
+53.85164800000001
+ 30
+0.0
+ 11
+98.99999999999997
+ 21
+53.85164800000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.26659817846705
+ 20
+45.6514425354012
+ 30
+0.0
+ 11
+96.26659817846705
+ 21
+53.85164800000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+98.99999999999997
+ 20
+45.6514425354012
+ 30
+0.0
+ 11
+96.26659817846705
+ 21
+45.6514425354012
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+99.0
+ 20
+153.851648
+ 30
+0.0
+ 11
+119.00000000000001
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+99.0
+ 20
+162.05185346459885
+ 30
+0.0
+ 11
+119.00000000000001
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+99.0
+ 20
+162.05185346459885
+ 30
+0.0
+ 11
+99.0
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+99.0
+ 20
+162.05185346459885
+ 30
+0.0
+ 11
+104.7566034343372
+ 21
+167.89179238220865
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+104.7566034343372
+ 20
+167.89179238220865
+ 30
+0.0
+ 11
+119.00000000000001
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+144.00000000000003
+ 20
+207.70329607134505
+ 30
+0.0
+ 11
+119.00000000000001
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+110.51320686867436
+ 20
+173.73173129981845
+ 30
+0.0
+ 11
+144.00000000000003
+ 21
+207.70329607134505
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+104.7566034343372
+ 20
+167.89179238220865
+ 30
+0.0
+ 11
+110.51320686867436
+ 21
+173.73173129981845
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+119.00000000000001
+ 20
+153.851648
+ 30
+0.0
+ 11
+144.00000000000003
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+144.00000000000003
+ 20
+153.851648
+ 30
+0.0
+ 11
+169.0
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+144.00000000000003
+ 20
+207.70329607134505
+ 30
+0.0
+ 11
+169.0
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+177.48679313132567
+ 20
+173.73173129981845
+ 30
+0.0
+ 11
+183.2433965656628
+ 21
+167.89179238220862
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.00000000000003
+ 20
+207.70329607134505
+ 30
+0.0
+ 11
+177.48679313132567
+ 21
+173.73173129981845
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+169.0
+ 20
+153.851648
+ 30
+0.0
+ 11
+183.2433965656628
+ 21
+167.89179238220862
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+169.00000000000003
+ 20
+153.851648
+ 30
+0.0
+ 11
+188.99999999999997
+ 21
+162.05185346459876
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+183.2433965656628
+ 20
+167.89179238220862
+ 30
+0.0
+ 11
+188.99999999999997
+ 21
+162.05185346459876
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+188.99999999999997
+ 20
+153.85164799999998
+ 30
+0.0
+ 11
+188.99999999999997
+ 21
+162.05185346459876
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+169.0
+ 20
+153.851648
+ 30
+0.0
+ 11
+188.99999999999997
+ 21
+153.85164799999998
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+191.73340182153294
+ 20
+153.85164799999998
+ 30
+0.0
+ 11
+188.99999999999997
+ 21
+153.85164799999998
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+191.73340182153294
+ 20
+162.05185346459876
+ 30
+0.0
+ 11
+191.73340182153294
+ 21
+153.85164799999998
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+188.99999999999997
+ 20
+162.05185346459876
+ 30
+0.0
+ 11
+191.73340182153294
+ 21
+162.05185346459876
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+188.99999999999991
+ 20
+53.851648
+ 30
+0.0
+ 11
+168.99999999999991
+ 21
+53.85164800000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+188.99999999999991
+ 20
+45.651442535401195
+ 30
+0.0
+ 11
+168.99999999999991
+ 21
+53.85164800000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+188.99999999999991
+ 20
+45.651442535401195
+ 30
+0.0
+ 11
+188.99999999999991
+ 21
+53.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+188.99999999999991
+ 20
+45.651442535401195
+ 30
+0.0
+ 11
+183.24339656566278
+ 21
+39.81150361779138
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+183.24339656566278
+ 20
+39.81150361779138
+ 30
+0.0
+ 11
+168.99999999999991
+ 21
+53.85164800000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+143.9999999999999
+ 20
+-7.134499924177363e-08
+ 30
+0.0
+ 11
+168.99999999999991
+ 21
+53.85164800000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+177.48679313132558
+ 20
+33.971564700181574
+ 30
+0.0
+ 11
+143.9999999999999
+ 21
+-7.134499924177363e-08
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+183.24339656566278
+ 20
+39.811503617791395
+ 30
+0.0
+ 11
+177.48679313132558
+ 21
+33.971564700181574
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+191.73340182153285
+ 20
+45.651442535401195
+ 30
+0.0
+ 11
+188.99999999999991
+ 21
+45.651442535401195
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+191.73340182153285
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+191.73340182153285
+ 21
+45.651442535401195
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+188.99999999999991
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+191.73340182153285
+ 21
+53.851648000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+188.99999999999994
+ 20
+91.85164799999998
+ 30
+0.0
+ 11
+188.99999999999991
+ 21
+53.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+188.99999999999994
+ 20
+115.851648
+ 30
+0.0
+ 11
+188.99999999999994
+ 21
+91.85164799999998
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+188.99999999999997
+ 20
+153.85164799999998
+ 30
+0.0
+ 11
+188.99999999999994
+ 21
+115.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+188.99999999999997
+ 20
+153.85164799999998
+ 30
+0.0
+ 11
+188.99999999999997
+ 21
+153.85164799999998
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+188.99999999999991
+ 20
+53.851648
+ 30
+0.0
+ 11
+188.99999999999991
+ 21
+53.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.26659817846708
+ 20
+162.05185346459885
+ 30
+0.0
+ 11
+99.0
+ 21
+162.05185346459885
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.26659817846708
+ 20
+153.851648
+ 30
+0.0
+ 11
+96.26659817846708
+ 21
+162.05185346459885
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+99.0
+ 20
+153.851648
+ 30
+0.0
+ 11
+96.26659817846708
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+99.0
+ 20
+115.85164800000001
+ 30
+0.0
+ 11
+99.0
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+98.99999999999999
+ 20
+91.851648
+ 30
+0.0
+ 11
+99.0
+ 21
+115.85164800000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+98.99999999999997
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+98.99999999999999
+ 21
+91.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+98.99999999999997
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+98.99999999999997
+ 21
+53.851648000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+99.0
+ 20
+153.851648
+ 30
+0.0
+ 11
+99.0
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+82.0
+ 20
+115.85164800000001
+ 30
+0.0
+ 11
+99.0
+ 21
+115.85164800000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+82.0
+ 20
+115.85164800000001
+ 30
+0.0
+ 11
+82.0
+ 21
+91.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+98.99999999999999
+ 20
+91.851648
+ 30
+0.0
+ 11
+82.0
+ 21
+91.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+82.0
+ 20
+91.851648
+ 30
+0.0
+ 11
+69.00000000000001
+ 21
+91.85164800000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+69.00000000000001
+ 20
+115.85164800000003
+ 30
+0.0
+ 11
+82.0
+ 21
+115.85164800000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+69.00000000000001
+ 20
+91.85164800000003
+ 30
+0.0
+ 11
+35.00000000000001
+ 21
+91.85164800000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+35.00000000000001
+ 20
+115.85164800000003
+ 30
+0.0
+ 11
+69.00000000000001
+ 21
+115.85164800000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+22.000000000000004
+ 20
+115.85164800000003
+ 30
+0.0
+ 11
+35.00000000000001
+ 21
+115.85164800000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+22.000000000000004
+ 20
+91.85164800000003
+ 30
+0.0
+ 11
+22.000000000000004
+ 21
+115.85164800000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+35.00000000000001
+ 20
+91.85164800000003
+ 30
+0.0
+ 11
+22.000000000000004
+ 21
+91.85164800000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+22.000000000000004
+ 20
+91.85164800000003
+ 30
+0.0
+ 11
+5.000000000000001
+ 21
+91.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+5.000000000000001
+ 20
+115.85164800000004
+ 30
+0.0
+ 11
+22.000000000000004
+ 21
+115.85164800000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+115.85164800000004
+ 30
+0.0
+ 11
+5.000000000000001
+ 21
+115.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+91.85164800000004
+ 30
+0.0
+ 11
+0.0
+ 21
+115.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+5.000000000000001
+ 20
+91.85164800000004
+ 30
+0.0
+ 11
+0.0
+ 21
+91.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+35.00000000000001
+ 20
+115.85164800000003
+ 30
+0.0
+ 11
+35.00000000000001
+ 21
+135.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+69.00000000000001
+ 20
+135.851648
+ 30
+0.0
+ 11
+69.00000000000001
+ 21
+115.85164800000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+35.00000000000001
+ 20
+135.851648
+ 30
+0.0
+ 11
+69.00000000000001
+ 21
+135.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+35.00000000000001
+ 20
+135.851648
+ 30
+0.0
+ 11
+35.00000000000001
+ 21
+159.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+69.00000000000001
+ 20
+159.85164800000004
+ 30
+0.0
+ 11
+69.00000000000001
+ 21
+135.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+35.00000000000001
+ 20
+159.85164800000004
+ 30
+0.0
+ 11
+69.00000000000001
+ 21
+159.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+35.00000000000001
+ 20
+159.85164800000004
+ 30
+0.0
+ 11
+35.00000000000001
+ 21
+179.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+69.00000000000001
+ 20
+179.85164800000004
+ 30
+0.0
+ 11
+69.00000000000001
+ 21
+159.85164800000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+69.00000000000001
+ 20
+179.85164800000004
+ 30
+0.0
+ 11
+35.00000000000001
+ 21
+179.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+69.00000000000001
+ 20
+189.85164800000004
+ 30
+0.0
+ 11
+69.00000000000001
+ 21
+179.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+35.00000000000001
+ 20
+189.85164800000004
+ 30
+0.0
+ 11
+69.00000000000001
+ 21
+189.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+35.00000000000001
+ 20
+179.85164800000004
+ 30
+0.0
+ 11
+35.00000000000001
+ 21
+189.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+110.40786804847944
+ 20
+37.35482121234262
+ 30
+0.0
+ 11
+108.1379966274785
+ 21
+39.65755243235412
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.1379966274785
+ 20
+39.65755243235412
+ 30
+0.0
+ 11
+107.78191171333694
+ 21
+39.306548822798916
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+107.78191171333694
+ 20
+39.306548822798916
+ 30
+0.0
+ 11
+110.05178313433787
+ 21
+37.003817602787414
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+110.05178313433787
+ 20
+37.003817602787414
+ 30
+0.0
+ 11
+110.40786804847944
+ 21
+37.35482121234262
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.9499486338503
+ 20
+48.38484435693414
+ 30
+0.0
+ 11
+98.31664954461677
+ 21
+48.38484435693414
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+98.31664954461677
+ 20
+48.38484435693414
+ 30
+0.0
+ 11
+98.31664954461677
+ 21
+51.118246178467075
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+98.31664954461677
+ 20
+51.118246178467075
+ 30
+0.0
+ 11
+96.9499486338503
+ 21
+51.118246178467075
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.13799662747854
+ 20
+168.0457435676459
+ 30
+0.0
+ 11
+110.40786804847947
+ 21
+170.3484747876574
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+110.40786804847947
+ 20
+170.3484747876574
+ 30
+0.0
+ 11
+110.05178313433791
+ 21
+170.69947839721263
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+110.05178313433791
+ 20
+170.69947839721263
+ 30
+0.0
+ 11
+107.78191171333698
+ 21
+168.39674717720112
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+107.78191171333698
+ 20
+168.39674717720112
+ 30
+0.0
+ 11
+108.13799662747854
+ 21
+168.0457435676459
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+177.59213195152054
+ 20
+170.34847478765738
+ 30
+0.0
+ 11
+179.86200337252149
+ 21
+168.04574356764587
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+179.86200337252149
+ 20
+168.04574356764587
+ 30
+0.0
+ 11
+180.21808828666306
+ 21
+168.3967471772011
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+180.21808828666306
+ 20
+168.3967471772011
+ 30
+0.0
+ 11
+177.94821686566212
+ 21
+170.69947839721257
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+177.94821686566212
+ 20
+170.69947839721257
+ 30
+0.0
+ 11
+177.59213195152054
+ 21
+170.34847478765738
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+191.0500513661497
+ 20
+159.31845164306583
+ 30
+0.0
+ 11
+189.68335045538325
+ 21
+159.31845164306583
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+189.68335045538325
+ 20
+159.31845164306583
+ 30
+0.0
+ 11
+189.68335045538325
+ 21
+156.5850498215329
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+189.68335045538325
+ 20
+156.5850498215329
+ 30
+0.0
+ 11
+191.0500513661497
+ 21
+156.5850498215329
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+179.8620033725214
+ 20
+39.65755243235414
+ 30
+0.0
+ 11
+177.59213195152049
+ 21
+37.354821212342635
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+177.59213195152049
+ 20
+37.354821212342635
+ 30
+0.0
+ 11
+177.94821686566203
+ 21
+37.003817602787414
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+177.94821686566203
+ 20
+37.003817602787414
+ 30
+0.0
+ 11
+180.21808828666295
+ 21
+39.306548822798916
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+180.21808828666295
+ 20
+39.306548822798916
+ 30
+0.0
+ 11
+179.8620033725214
+ 21
+39.65755243235414
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+191.05005136614966
+ 20
+51.11824617846707
+ 30
+0.0
+ 11
+189.6833504553832
+ 21
+51.11824617846707
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+189.6833504553832
+ 20
+51.11824617846707
+ 30
+0.0
+ 11
+189.6833504553832
+ 21
+48.38484435693413
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+189.6833504553832
+ 20
+48.38484435693413
+ 30
+0.0
+ 11
+191.05005136614966
+ 21
+48.38484435693413
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+184.99999999999997
+ 20
+108.101648
+ 30
+0.0
+ 11
+184.99999999999997
+ 21
+99.601648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+184.99999999999997
+ 20
+99.601648
+ 30
+0.0
+ 11
+185.49999999999997
+ 21
+99.601648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+185.49999999999997
+ 20
+99.601648
+ 30
+0.0
+ 11
+185.49999999999997
+ 21
+108.101648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+185.49999999999997
+ 20
+108.101648
+ 30
+0.0
+ 11
+184.99999999999997
+ 21
+108.101648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.94994863385031
+ 20
+156.58504982153295
+ 30
+0.0
+ 11
+98.31664954461678
+ 21
+156.58504982153295
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+98.31664954461678
+ 20
+156.58504982153295
+ 30
+0.0
+ 11
+98.31664954461678
+ 21
+159.31845164306588
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+98.31664954461678
+ 20
+159.31845164306588
+ 30
+0.0
+ 11
+96.94994863385031
+ 21
+159.31845164306588
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+57.91666666666668
+ 20
+99.601648
+ 30
+0.0
+ 11
+46.08333333333334
+ 21
+99.60164800000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+46.08333333333334
+ 20
+99.60164800000001
+ 30
+0.0
+ 11
+46.08333333333334
+ 21
+99.10164800000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+46.08333333333334
+ 20
+99.10164800000003
+ 30
+0.0
+ 11
+57.91666666666668
+ 21
+99.10164800000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+57.91666666666668
+ 20
+99.10164800000001
+ 30
+0.0
+ 11
+57.91666666666668
+ 21
+99.601648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+1.2500000000000002
+ 20
+99.85164800000004
+ 30
+0.0
+ 11
+1.2500000000000002
+ 21
+97.35164800000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+1.2500000000000002
+ 20
+97.35164800000003
+ 30
+0.0
+ 11
+3.7500000000000004
+ 21
+99.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+3.7500000000000004
+ 20
+99.85164800000004
+ 30
+0.0
+ 11
+3.7500000000000004
+ 21
+107.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+3.7500000000000004
+ 20
+107.85164800000004
+ 30
+0.0
+ 11
+1.2500000000000002
+ 21
+110.35164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+1.2500000000000002
+ 20
+110.35164800000004
+ 30
+0.0
+ 11
+1.2500000000000002
+ 21
+107.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+46.00000000000001
+ 20
+134.85164800000004
+ 30
+0.0
+ 11
+46.00000000000001
+ 21
+130.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+46.00000000000001
+ 20
+130.851648
+ 30
+0.0
+ 11
+58.0
+ 21
+130.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+58.0
+ 20
+130.851648
+ 30
+0.0
+ 11
+58.0
+ 21
+134.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+58.0
+ 20
+134.85164800000004
+ 30
+0.0
+ 11
+46.00000000000001
+ 21
+134.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.50000000000001
+ 20
+122.85164800000003
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+118.85164800000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.50000000000001
+ 20
+118.85164800000003
+ 30
+0.0
+ 11
+56.50000000000001
+ 21
+118.85164800000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+56.50000000000001
+ 20
+118.85164800000003
+ 30
+0.0
+ 11
+56.50000000000001
+ 21
+122.85164800000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+56.50000000000001
+ 20
+122.85164800000003
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+122.85164800000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+46.00000000000001
+ 20
+159.35164800000004
+ 30
+0.0
+ 11
+46.00000000000001
+ 21
+136.351648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+46.00000000000001
+ 20
+136.351648
+ 30
+0.0
+ 11
+58.0
+ 21
+136.351648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+58.0
+ 20
+136.351648
+ 30
+0.0
+ 11
+58.0
+ 21
+159.35164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+58.0
+ 20
+159.35164800000004
+ 30
+0.0
+ 11
+46.00000000000001
+ 21
+159.35164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+46.00000000000001
+ 20
+164.85164800000004
+ 30
+0.0
+ 11
+46.00000000000001
+ 21
+160.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+46.00000000000001
+ 20
+160.851648
+ 30
+0.0
+ 11
+58.0
+ 21
+160.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+58.0
+ 20
+160.851648
+ 30
+0.0
+ 11
+58.0
+ 21
+164.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+58.0
+ 20
+164.85164800000004
+ 30
+0.0
+ 11
+46.00000000000001
+ 21
+164.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+46.333333333333336
+ 20
+187.35164800000004
+ 30
+0.0
+ 11
+46.333333333333336
+ 21
+182.35164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+46.333333333333336
+ 20
+182.35164800000004
+ 30
+0.0
+ 11
+57.666666666666664
+ 21
+182.35164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+57.666666666666664
+ 20
+182.35164800000004
+ 30
+0.0
+ 11
+57.666666666666664
+ 21
+187.35164800000004
+ 31
+0.0
+  0
+ENDSEC
+  0
+EOF
diff --git a/rocolib/builders/output/BoatWithBottomServo/graph-lasercutter.svg b/rocolib/builders/output/BoatWithBottomServo/graph-lasercutter.svg
new file mode 100644
index 0000000000000000000000000000000000000000..f42f6d395aaf54333845ef7cc5515977090679a2
--- /dev/null
+++ b/rocolib/builders/output/BoatWithBottomServo/graph-lasercutter.svg
@@ -0,0 +1,151 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="full" height="207.703296mm" version="1.1" viewBox="0.000000 0.000000 191.733402 207.703296" width="191.733402mm">
+  <defs/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="169.0" x2="169.0" y1="53.851648000000004" y2="153.851648"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="118.99999999999999" x2="118.99999999999999" y1="53.851648000000004" y2="153.851648"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="144.0" x2="118.99999999999999" y1="53.851648000000004" y2="53.851648000000004"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="169.0" x2="144.0" y1="53.851648000000004" y2="53.851648000000004"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="144.0" x2="118.99999999999999" y1="-7.134504187433777e-08" y2="53.851648000000004"/>
+  <line stroke="#000000" x1="110.51320686867432" x2="104.75660343433715" y1="33.97156470018156" y2="39.81150361779138"/>
+  <line stroke="#000000" x1="144.0" x2="110.51320686867432" y1="-7.13450560851925e-08" y2="33.97156470018156"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="118.99999999999999" x2="104.75660343433715" y1="53.851648000000004" y2="39.81150361779138"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="118.99999999999999" x2="98.99999999999997" y1="53.851648000000004" y2="45.6514425354012"/>
+  <line stroke="#000000" x1="104.75660343433715" x2="98.99999999999997" y1="39.81150361779138" y2="45.6514425354012"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="98.99999999999997" x2="98.99999999999997" y1="53.851648000000004" y2="45.651442535401195"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="118.99999999999999" x2="98.99999999999997" y1="53.851648000000004" y2="53.851648000000004"/>
+  <line stroke="#000000" x1="96.26659817846705" x2="98.99999999999997" y1="53.85164800000001" y2="53.85164800000001"/>
+  <line stroke="#000000" x1="96.26659817846705" x2="96.26659817846705" y1="45.6514425354012" y2="53.85164800000001"/>
+  <line stroke="#000000" x1="98.99999999999997" x2="96.26659817846705" y1="45.6514425354012" y2="45.6514425354012"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="99.0" x2="119.00000000000001" y1="153.851648" y2="153.851648"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="99.0" x2="119.00000000000001" y1="162.05185346459885" y2="153.851648"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="99.0" x2="99.0" y1="162.05185346459885" y2="153.851648"/>
+  <line stroke="#000000" x1="99.0" x2="104.7566034343372" y1="162.05185346459885" y2="167.89179238220865"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="104.7566034343372" x2="119.00000000000001" y1="167.89179238220865" y2="153.851648"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="144.00000000000003" x2="119.00000000000001" y1="207.70329607134505" y2="153.851648"/>
+  <line stroke="#000000" x1="110.51320686867436" x2="144.00000000000003" y1="173.73173129981845" y2="207.70329607134505"/>
+  <line stroke="#000000" x1="104.7566034343372" x2="110.51320686867436" y1="167.89179238220865" y2="173.73173129981845"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="119.00000000000001" x2="144.00000000000003" y1="153.851648" y2="153.851648"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="144.00000000000003" x2="169.0" y1="153.851648" y2="153.851648"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="144.00000000000003" x2="169.0" y1="207.70329607134505" y2="153.851648"/>
+  <line stroke="#000000" x1="177.48679313132567" x2="183.2433965656628" y1="173.73173129981845" y2="167.89179238220862"/>
+  <line stroke="#000000" x1="144.00000000000003" x2="177.48679313132567" y1="207.70329607134505" y2="173.73173129981845"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="169.0" x2="183.2433965656628" y1="153.851648" y2="167.89179238220862"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="169.00000000000003" x2="188.99999999999997" y1="153.851648" y2="162.05185346459876"/>
+  <line stroke="#000000" x1="183.2433965656628" x2="188.99999999999997" y1="167.89179238220862" y2="162.05185346459876"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="188.99999999999997" x2="188.99999999999997" y1="153.85164799999998" y2="162.05185346459876"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="169.0" x2="188.99999999999997" y1="153.851648" y2="153.85164799999998"/>
+  <line stroke="#000000" x1="191.73340182153294" x2="188.99999999999997" y1="153.85164799999998" y2="153.85164799999998"/>
+  <line stroke="#000000" x1="191.73340182153294" x2="191.73340182153294" y1="162.05185346459876" y2="153.85164799999998"/>
+  <line stroke="#000000" x1="188.99999999999997" x2="191.73340182153294" y1="162.05185346459876" y2="162.05185346459876"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="188.99999999999991" x2="168.99999999999991" y1="53.851648" y2="53.85164800000001"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="188.99999999999991" x2="168.99999999999991" y1="45.651442535401195" y2="53.85164800000001"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="188.99999999999991" x2="188.99999999999991" y1="45.651442535401195" y2="53.851648"/>
+  <line stroke="#000000" x1="188.99999999999991" x2="183.24339656566278" y1="45.651442535401195" y2="39.81150361779138"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="183.24339656566278" x2="168.99999999999991" y1="39.81150361779138" y2="53.85164800000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="143.9999999999999" x2="168.99999999999991" y1="-7.134499924177363e-08" y2="53.85164800000002"/>
+  <line stroke="#000000" x1="177.48679313132558" x2="143.9999999999999" y1="33.971564700181574" y2="-7.134499924177363e-08"/>
+  <line stroke="#000000" x1="183.24339656566278" x2="177.48679313132558" y1="39.811503617791395" y2="33.971564700181574"/>
+  <line stroke="#000000" x1="191.73340182153285" x2="188.99999999999991" y1="45.651442535401195" y2="45.651442535401195"/>
+  <line stroke="#000000" x1="191.73340182153285" x2="191.73340182153285" y1="53.851648000000004" y2="45.651442535401195"/>
+  <line stroke="#000000" x1="188.99999999999991" x2="191.73340182153285" y1="53.851648000000004" y2="53.851648000000004"/>
+  <line stroke="#000000" x1="188.99999999999994" x2="188.99999999999991" y1="91.85164799999998" y2="53.851648"/>
+  <line stroke="#000000" x1="188.99999999999994" x2="188.99999999999994" y1="115.851648" y2="91.85164799999998"/>
+  <line stroke="#000000" x1="188.99999999999997" x2="188.99999999999994" y1="153.85164799999998" y2="115.851648"/>
+  <line stroke="#000000" x1="188.99999999999997" x2="188.99999999999997" y1="153.85164799999998" y2="153.85164799999998"/>
+  <line stroke="#000000" x1="188.99999999999991" x2="188.99999999999991" y1="53.851648" y2="53.851648"/>
+  <line stroke="#000000" x1="96.26659817846708" x2="99.0" y1="162.05185346459885" y2="162.05185346459885"/>
+  <line stroke="#000000" x1="96.26659817846708" x2="96.26659817846708" y1="153.851648" y2="162.05185346459885"/>
+  <line stroke="#000000" x1="99.0" x2="96.26659817846708" y1="153.851648" y2="153.851648"/>
+  <line stroke="#000000" x1="99.0" x2="99.0" y1="115.85164800000001" y2="153.851648"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="98.99999999999999" x2="99.0" y1="91.851648" y2="115.85164800000001"/>
+  <line stroke="#000000" x1="98.99999999999997" x2="98.99999999999999" y1="53.851648000000004" y2="91.851648"/>
+  <line stroke="#000000" x1="98.99999999999997" x2="98.99999999999997" y1="53.851648000000004" y2="53.851648000000004"/>
+  <line stroke="#000000" x1="99.0" x2="99.0" y1="153.851648" y2="153.851648"/>
+  <line stroke="#000000" x1="82.0" x2="99.0" y1="115.85164800000001" y2="115.85164800000001"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="82.0" x2="82.0" y1="115.85164800000001" y2="91.851648"/>
+  <line stroke="#000000" x1="98.99999999999999" x2="82.0" y1="91.851648" y2="91.851648"/>
+  <line stroke="#000000" x1="82.0" x2="69.00000000000001" y1="91.851648" y2="91.85164800000003"/>
+  <line stroke="#000000" x1="69.00000000000001" x2="82.0" y1="115.85164800000003" y2="115.85164800000001"/>
+  <line stroke="#000000" x1="69.00000000000001" x2="35.00000000000001" y1="91.85164800000003" y2="91.85164800000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="35.00000000000001" x2="69.00000000000001" y1="115.85164800000003" y2="115.85164800000003"/>
+  <line stroke="#000000" x1="22.000000000000004" x2="35.00000000000001" y1="115.85164800000003" y2="115.85164800000003"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="22.000000000000004" x2="22.000000000000004" y1="91.85164800000003" y2="115.85164800000003"/>
+  <line stroke="#000000" x1="35.00000000000001" x2="22.000000000000004" y1="91.85164800000003" y2="91.85164800000003"/>
+  <line stroke="#000000" x1="22.000000000000004" x2="5.000000000000001" y1="91.85164800000003" y2="91.85164800000004"/>
+  <line stroke="#000000" x1="5.000000000000001" x2="22.000000000000004" y1="115.85164800000004" y2="115.85164800000003"/>
+  <line stroke="#000000" x1="0.0" x2="5.000000000000001" y1="115.85164800000004" y2="115.85164800000004"/>
+  <line stroke="#000000" x1="0.0" x2="0.0" y1="91.85164800000004" y2="115.85164800000004"/>
+  <line stroke="#000000" x1="5.000000000000001" x2="0.0" y1="91.85164800000004" y2="91.85164800000004"/>
+  <line stroke="#000000" x1="35.00000000000001" x2="35.00000000000001" y1="115.85164800000003" y2="135.851648"/>
+  <line stroke="#000000" x1="69.00000000000001" x2="69.00000000000001" y1="135.851648" y2="115.85164800000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="35.00000000000001" x2="69.00000000000001" y1="135.851648" y2="135.851648"/>
+  <line stroke="#000000" x1="35.00000000000001" x2="35.00000000000001" y1="135.851648" y2="159.85164800000004"/>
+  <line stroke="#000000" x1="69.00000000000001" x2="69.00000000000001" y1="159.85164800000004" y2="135.851648"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="35.00000000000001" x2="69.00000000000001" y1="159.85164800000004" y2="159.85164800000004"/>
+  <line stroke="#000000" x1="35.00000000000001" x2="35.00000000000001" y1="159.85164800000004" y2="179.85164800000004"/>
+  <line stroke="#000000" x1="69.00000000000001" x2="69.00000000000001" y1="179.85164800000004" y2="159.85164800000004"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="69.00000000000001" x2="35.00000000000001" y1="179.85164800000004" y2="179.85164800000004"/>
+  <line stroke="#000000" x1="69.00000000000001" x2="69.00000000000001" y1="189.85164800000004" y2="179.85164800000004"/>
+  <line stroke="#000000" x1="35.00000000000001" x2="69.00000000000001" y1="189.85164800000004" y2="189.85164800000004"/>
+  <line stroke="#000000" x1="35.00000000000001" x2="35.00000000000001" y1="179.85164800000004" y2="189.85164800000004"/>
+  <line stroke="#888888" x1="110.40786804847944" x2="108.1379966274785" y1="37.35482121234262" y2="39.65755243235412"/>
+  <line stroke="#888888" x1="108.1379966274785" x2="107.78191171333694" y1="39.65755243235412" y2="39.306548822798916"/>
+  <line stroke="#888888" x1="107.78191171333694" x2="110.05178313433787" y1="39.306548822798916" y2="37.003817602787414"/>
+  <line stroke="#888888" x1="110.05178313433787" x2="110.40786804847944" y1="37.003817602787414" y2="37.35482121234262"/>
+  <line stroke="#888888" x1="96.9499486338503" x2="98.31664954461677" y1="48.38484435693414" y2="48.38484435693414"/>
+  <line stroke="#888888" x1="98.31664954461677" x2="98.31664954461677" y1="48.38484435693414" y2="51.118246178467075"/>
+  <line stroke="#888888" x1="98.31664954461677" x2="96.9499486338503" y1="51.118246178467075" y2="51.118246178467075"/>
+  <line stroke="#888888" x1="108.13799662747854" x2="110.40786804847947" y1="168.0457435676459" y2="170.3484747876574"/>
+  <line stroke="#888888" x1="110.40786804847947" x2="110.05178313433791" y1="170.3484747876574" y2="170.69947839721263"/>
+  <line stroke="#888888" x1="110.05178313433791" x2="107.78191171333698" y1="170.69947839721263" y2="168.39674717720112"/>
+  <line stroke="#888888" x1="107.78191171333698" x2="108.13799662747854" y1="168.39674717720112" y2="168.0457435676459"/>
+  <line stroke="#888888" x1="177.59213195152054" x2="179.86200337252149" y1="170.34847478765738" y2="168.04574356764587"/>
+  <line stroke="#888888" x1="179.86200337252149" x2="180.21808828666306" y1="168.04574356764587" y2="168.3967471772011"/>
+  <line stroke="#888888" x1="180.21808828666306" x2="177.94821686566212" y1="168.3967471772011" y2="170.69947839721257"/>
+  <line stroke="#888888" x1="177.94821686566212" x2="177.59213195152054" y1="170.69947839721257" y2="170.34847478765738"/>
+  <line stroke="#888888" x1="191.0500513661497" x2="189.68335045538325" y1="159.31845164306583" y2="159.31845164306583"/>
+  <line stroke="#888888" x1="189.68335045538325" x2="189.68335045538325" y1="159.31845164306583" y2="156.5850498215329"/>
+  <line stroke="#888888" x1="189.68335045538325" x2="191.0500513661497" y1="156.5850498215329" y2="156.5850498215329"/>
+  <line stroke="#888888" x1="179.8620033725214" x2="177.59213195152049" y1="39.65755243235414" y2="37.354821212342635"/>
+  <line stroke="#888888" x1="177.59213195152049" x2="177.94821686566203" y1="37.354821212342635" y2="37.003817602787414"/>
+  <line stroke="#888888" x1="177.94821686566203" x2="180.21808828666295" y1="37.003817602787414" y2="39.306548822798916"/>
+  <line stroke="#888888" x1="180.21808828666295" x2="179.8620033725214" y1="39.306548822798916" y2="39.65755243235414"/>
+  <line stroke="#888888" x1="191.05005136614966" x2="189.6833504553832" y1="51.11824617846707" y2="51.11824617846707"/>
+  <line stroke="#888888" x1="189.6833504553832" x2="189.6833504553832" y1="51.11824617846707" y2="48.38484435693413"/>
+  <line stroke="#888888" x1="189.6833504553832" x2="191.05005136614966" y1="48.38484435693413" y2="48.38484435693413"/>
+  <line stroke="#888888" x1="184.99999999999997" x2="184.99999999999997" y1="108.101648" y2="99.601648"/>
+  <line stroke="#888888" x1="184.99999999999997" x2="185.49999999999997" y1="99.601648" y2="99.601648"/>
+  <line stroke="#888888" x1="185.49999999999997" x2="185.49999999999997" y1="99.601648" y2="108.101648"/>
+  <line stroke="#888888" x1="185.49999999999997" x2="184.99999999999997" y1="108.101648" y2="108.101648"/>
+  <line stroke="#888888" x1="96.94994863385031" x2="98.31664954461678" y1="156.58504982153295" y2="156.58504982153295"/>
+  <line stroke="#888888" x1="98.31664954461678" x2="98.31664954461678" y1="156.58504982153295" y2="159.31845164306588"/>
+  <line stroke="#888888" x1="98.31664954461678" x2="96.94994863385031" y1="159.31845164306588" y2="159.31845164306588"/>
+  <line stroke="#888888" x1="57.91666666666668" x2="46.08333333333334" y1="99.601648" y2="99.60164800000001"/>
+  <line stroke="#888888" x1="46.08333333333334" x2="46.08333333333334" y1="99.60164800000001" y2="99.10164800000003"/>
+  <line stroke="#888888" x1="46.08333333333334" x2="57.91666666666668" y1="99.10164800000003" y2="99.10164800000001"/>
+  <line stroke="#888888" x1="57.91666666666668" x2="57.91666666666668" y1="99.10164800000001" y2="99.601648"/>
+  <line stroke="#888888" x1="1.2500000000000002" x2="1.2500000000000002" y1="99.85164800000004" y2="97.35164800000003"/>
+  <line stroke="#888888" x1="1.2500000000000002" x2="3.7500000000000004" y1="97.35164800000003" y2="99.85164800000004"/>
+  <line stroke="#888888" x1="3.7500000000000004" x2="3.7500000000000004" y1="99.85164800000004" y2="107.85164800000004"/>
+  <line stroke="#888888" x1="3.7500000000000004" x2="1.2500000000000002" y1="107.85164800000004" y2="110.35164800000004"/>
+  <line stroke="#888888" x1="1.2500000000000002" x2="1.2500000000000002" y1="110.35164800000004" y2="107.85164800000004"/>
+  <line stroke="#888888" x1="46.00000000000001" x2="46.00000000000001" y1="134.85164800000004" y2="130.851648"/>
+  <line stroke="#888888" x1="46.00000000000001" x2="58.0" y1="130.851648" y2="130.851648"/>
+  <line stroke="#888888" x1="58.0" x2="58.0" y1="130.851648" y2="134.85164800000004"/>
+  <line stroke="#888888" x1="58.0" x2="46.00000000000001" y1="134.85164800000004" y2="134.85164800000004"/>
+  <line stroke="#888888" x1="47.50000000000001" x2="47.50000000000001" y1="122.85164800000003" y2="118.85164800000003"/>
+  <line stroke="#888888" x1="47.50000000000001" x2="56.50000000000001" y1="118.85164800000003" y2="118.85164800000003"/>
+  <line stroke="#888888" x1="56.50000000000001" x2="56.50000000000001" y1="118.85164800000003" y2="122.85164800000003"/>
+  <line stroke="#888888" x1="56.50000000000001" x2="47.50000000000001" y1="122.85164800000003" y2="122.85164800000003"/>
+  <line stroke="#888888" x1="46.00000000000001" x2="46.00000000000001" y1="159.35164800000004" y2="136.351648"/>
+  <line stroke="#888888" x1="46.00000000000001" x2="58.0" y1="136.351648" y2="136.351648"/>
+  <line stroke="#888888" x1="58.0" x2="58.0" y1="136.351648" y2="159.35164800000004"/>
+  <line stroke="#888888" x1="58.0" x2="46.00000000000001" y1="159.35164800000004" y2="159.35164800000004"/>
+  <line stroke="#888888" x1="46.00000000000001" x2="46.00000000000001" y1="164.85164800000004" y2="160.851648"/>
+  <line stroke="#888888" x1="46.00000000000001" x2="58.0" y1="160.851648" y2="160.851648"/>
+  <line stroke="#888888" x1="58.0" x2="58.0" y1="160.851648" y2="164.85164800000004"/>
+  <line stroke="#888888" x1="58.0" x2="46.00000000000001" y1="164.85164800000004" y2="164.85164800000004"/>
+  <line stroke="#888888" x1="46.333333333333336" x2="46.333333333333336" y1="187.35164800000004" y2="182.35164800000004"/>
+  <line stroke="#888888" x1="46.333333333333336" x2="57.666666666666664" y1="182.35164800000004" y2="182.35164800000004"/>
+  <line stroke="#888888" x1="57.666666666666664" x2="57.666666666666664" y1="182.35164800000004" y2="187.35164800000004"/>
+</svg>
diff --git a/rocolib/builders/output/BoatWithBottomServo/graph-model.png b/rocolib/builders/output/BoatWithBottomServo/graph-model.png
new file mode 100644
index 0000000000000000000000000000000000000000..783bdff50e073baebc8f1cbfc21cbafc5c7697f7
Binary files /dev/null and b/rocolib/builders/output/BoatWithBottomServo/graph-model.png differ
diff --git a/rocolib/builders/output/BoatWithBottomServo/graph-model.stl b/rocolib/builders/output/BoatWithBottomServo/graph-model.stl
new file mode 100644
index 0000000000000000000000000000000000000000..8acc463481047f63a05a8f1447decf72a3365b57
--- /dev/null
+++ b/rocolib/builders/output/BoatWithBottomServo/graph-model.stl
@@ -0,0 +1,548 @@
+solid python
+facet normal 0 0 0
+outer loop
+vertex -0.0250 0.0500 0.0000
+vertex -0.0250 -0.0500 0.0000
+vertex 0.0250 -0.0500 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 -0.0500 0.0000
+vertex 0.0250 0.0500 0.0000
+vertex -0.0250 0.0500 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 0.0500 -0.0200
+vertex -0.0250 -0.0500 -0.0200
+vertex -0.0250 -0.0500 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 -0.0500 0.0000
+vertex -0.0250 0.0500 0.0000
+vertex -0.0250 0.0500 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 0.0500 0.0000
+vertex 0.0250 -0.0500 0.0000
+vertex 0.0250 -0.0500 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 -0.0500 -0.0200
+vertex 0.0250 0.0500 -0.0200
+vertex 0.0250 0.0500 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 -0.0500 0.0000
+vertex -0.0250 -0.0500 -0.0200
+vertex -0.0213 -0.0573 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0213 -0.0573 -0.0200
+vertex 0.0000 -0.1000 -0.0200
+vertex -0.0250 -0.0500 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0000 -0.0500 0.0000
+vertex -0.0250 -0.0500 0.0000
+vertex -0.0000 -0.1000 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0000 -0.0500 0.0000
+vertex 0.0000 -0.1000 -0.0200
+vertex 0.0250 -0.0500 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0213 -0.0573 -0.0200
+vertex 0.0250 -0.0500 -0.0200
+vertex 0.0250 -0.0500 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 -0.0500 0.0000
+vertex 0.0000 -0.1000 -0.0200
+vertex 0.0213 -0.0573 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 -0.0500 -0.0200
+vertex -0.0250 -0.0500 0.0000
+vertex -0.0213 -0.0573 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 -0.0500 -0.0200
+vertex -0.0213 -0.0573 -0.0200
+vertex -0.0250 -0.0500 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 -0.0500 -0.0200
+vertex 0.0213 -0.0573 -0.0200
+vertex 0.0250 -0.0500 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 -0.0500 -0.0200
+vertex 0.0250 -0.0500 0.0000
+vertex 0.0213 -0.0573 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 0.0500 0.0000
+vertex 0.0250 0.0500 -0.0200
+vertex 0.0213 0.0573 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0213 0.0573 -0.0200
+vertex -0.0000 0.1000 -0.0200
+vertex 0.0250 0.0500 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0000 0.0500 0.0000
+vertex 0.0250 0.0500 0.0000
+vertex -0.0000 0.1000 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0000 0.0500 0.0000
+vertex -0.0000 0.1000 -0.0200
+vertex -0.0250 0.0500 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0213 0.0573 -0.0200
+vertex -0.0250 0.0500 -0.0200
+vertex -0.0250 0.0500 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 0.0500 0.0000
+vertex -0.0000 0.1000 -0.0200
+vertex -0.0213 0.0573 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 0.0500 -0.0200
+vertex 0.0250 0.0500 0.0000
+vertex 0.0213 0.0573 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 0.0500 -0.0200
+vertex 0.0213 0.0573 -0.0200
+vertex 0.0250 0.0500 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 0.0500 -0.0200
+vertex -0.0213 0.0573 -0.0200
+vertex -0.0250 0.0500 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 0.0500 -0.0200
+vertex -0.0250 0.0500 0.0000
+vertex -0.0213 0.0573 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0350 0.0120 -0.0200
+vertex 0.0350 -0.0120 -0.0200
+vertex 0.0350 -0.0120 -0.0030
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0350 -0.0120 -0.0030
+vertex 0.0350 0.0120 -0.0030
+vertex 0.0350 0.0120 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 -0.0120 -0.0200
+vertex -0.0250 0.0120 -0.0200
+vertex -0.0250 0.0120 -0.0030
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 0.0120 -0.0030
+vertex -0.0250 -0.0120 -0.0030
+vertex -0.0250 -0.0120 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0220 -0.0120 -0.0030
+vertex 0.0110 -0.0120 0.0120
+vertex -0.0010 -0.0120 0.0120
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0110 -0.0120 0.0120
+vertex 0.0220 -0.0120 -0.0030
+vertex 0.0220 -0.0120 0.0170
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0120 -0.0120 -0.0030
+vertex -0.0010 -0.0120 0.0120
+vertex -0.0120 -0.0120 0.0170
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0010 -0.0120 0.0120
+vertex -0.0120 -0.0120 -0.0030
+vertex 0.0220 -0.0120 -0.0030
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0110 -0.0120 0.0160
+vertex 0.0220 -0.0120 0.0170
+vertex -0.0120 -0.0120 0.0170
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0220 -0.0120 0.0170
+vertex 0.0110 -0.0120 0.0160
+vertex 0.0110 -0.0120 0.0120
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0010 -0.0120 0.0160
+vertex -0.0120 -0.0120 0.0170
+vertex -0.0010 -0.0120 0.0120
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0120 -0.0120 0.0170
+vertex -0.0010 -0.0120 0.0160
+vertex 0.0110 -0.0120 0.0160
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0220 -0.0120 0.0170
+vertex 0.0110 -0.0115 0.0170
+vertex -0.0010 -0.0115 0.0170
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0110 -0.0115 0.0170
+vertex 0.0220 -0.0120 0.0170
+vertex 0.0220 0.0120 0.0170
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0120 -0.0120 0.0170
+vertex -0.0010 -0.0115 0.0170
+vertex -0.0010 0.0115 0.0170
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0010 -0.0115 0.0170
+vertex -0.0120 -0.0120 0.0170
+vertex 0.0220 -0.0120 0.0170
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0110 0.0115 0.0170
+vertex 0.0220 0.0120 0.0170
+vertex -0.0120 0.0120 0.0170
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0220 0.0120 0.0170
+vertex 0.0110 0.0115 0.0170
+vertex 0.0110 -0.0115 0.0170
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0010 0.0115 0.0170
+vertex -0.0120 0.0120 0.0170
+vertex -0.0120 -0.0120 0.0170
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0120 0.0120 0.0170
+vertex -0.0010 0.0115 0.0170
+vertex 0.0110 0.0115 0.0170
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0220 0.0120 0.0170
+vertex 0.0110 0.0120 0.0120
+vertex 0.0110 0.0120 0.0160
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0110 0.0120 0.0120
+vertex 0.0220 0.0120 0.0170
+vertex 0.0220 0.0120 -0.0030
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0220 0.0120 0.0170
+vertex 0.0110 0.0120 0.0160
+vertex -0.0010 0.0120 0.0160
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0120 0.0120 0.0170
+vertex -0.0010 0.0120 0.0160
+vertex -0.0010 0.0120 0.0120
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0010 0.0120 0.0160
+vertex -0.0120 0.0120 0.0170
+vertex 0.0220 0.0120 0.0170
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0120 0.0120 0.0170
+vertex -0.0010 0.0120 0.0120
+vertex -0.0120 0.0120 -0.0030
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0110 0.0120 0.0120
+vertex 0.0095 0.0120 0.0040
+vertex -0.0010 0.0120 0.0120
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0120 0.0040
+vertex 0.0220 0.0120 -0.0030
+vertex 0.0095 0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0220 0.0120 -0.0030
+vertex 0.0095 0.0120 0.0040
+vertex 0.0110 0.0120 0.0120
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0120 0.0000
+vertex 0.0220 0.0120 -0.0030
+vertex -0.0120 0.0120 -0.0030
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0005 0.0120 0.0040
+vertex 0.0005 0.0120 0.0000
+vertex -0.0120 0.0120 -0.0030
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0120 0.0120 -0.0030
+vertex 0.0005 0.0120 0.0000
+vertex 0.0095 0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0005 0.0120 0.0040
+vertex -0.0120 0.0120 -0.0030
+vertex -0.0010 0.0120 0.0120
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0095 0.0120 0.0040
+vertex 0.0005 0.0120 0.0040
+vertex -0.0010 0.0120 0.0120
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0120 0.0120 -0.0030
+vertex 0.0220 0.0120 -0.0030
+vertex 0.0220 -0.0120 -0.0030
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0220 -0.0120 -0.0030
+vertex -0.0120 -0.0120 -0.0030
+vertex -0.0120 0.0120 -0.0030
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0220 -0.0120 -0.0030
+vertex 0.0220 0.0120 -0.0030
+vertex 0.0350 0.0120 -0.0030
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0350 0.0120 -0.0030
+vertex 0.0350 -0.0120 -0.0030
+vertex 0.0220 -0.0120 -0.0030
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0120 0.0120 -0.0030
+vertex -0.0120 -0.0120 -0.0030
+vertex -0.0250 -0.0120 -0.0030
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 -0.0120 -0.0030
+vertex -0.0250 0.0120 -0.0030
+vertex -0.0120 0.0120 -0.0030
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0216 -0.0575 -0.0173
+vertex -0.0213 -0.0573 -0.0200
+vertex -0.0250 -0.0500 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0250 -0.0500 -0.0200
+vertex -0.0253 -0.0501 -0.0173
+vertex -0.0216 -0.0575 -0.0173
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0253 -0.0501 -0.0173
+vertex 0.0250 -0.0500 -0.0200
+vertex 0.0213 -0.0573 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0213 -0.0573 -0.0200
+vertex 0.0216 -0.0575 -0.0173
+vertex 0.0253 -0.0501 -0.0173
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0216 0.0575 -0.0173
+vertex 0.0213 0.0573 -0.0200
+vertex 0.0250 0.0500 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 0.0500 -0.0200
+vertex 0.0253 0.0501 -0.0173
+vertex 0.0216 0.0575 -0.0173
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0253 0.0501 -0.0173
+vertex -0.0250 0.0500 -0.0200
+vertex -0.0213 0.0573 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0213 0.0573 -0.0200
+vertex -0.0216 0.0575 -0.0173
+vertex -0.0253 0.0501 -0.0173
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0220 -0.0020 -0.0030
+vertex 0.0220 -0.0120 -0.0030
+vertex -0.0120 -0.0120 -0.0030
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0120 -0.0120 -0.0030
+vertex -0.0120 -0.0020 -0.0030
+vertex 0.0220 -0.0020 -0.0030
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0350 -0.0120 -0.0250
+vertex 0.0350 -0.0120 -0.0200
+vertex 0.0350 0.0120 -0.0200
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0350 0.0120 -0.0200
+vertex 0.0350 0.0120 -0.0250
+vertex 0.0350 -0.0120 -0.0250
+endloop
+endfacet
+endsolid python
diff --git a/rocolib/builders/output/BoatWithBottomServo/graph-silhouette.dxf b/rocolib/builders/output/BoatWithBottomServo/graph-silhouette.dxf
new file mode 100644
index 0000000000000000000000000000000000000000..925c12efcdf937a4c9638a58adc31fcac50b4c94
--- /dev/null
+++ b/rocolib/builders/output/BoatWithBottomServo/graph-silhouette.dxf
@@ -0,0 +1,3654 @@
+  0
+SECTION
+  2
+HEADER
+  9
+$ACADVER
+  1
+AC1009
+  9
+$INSBASE
+ 10
+0.0
+ 20
+0.0
+ 30
+0.0
+  9
+$EXTMIN
+ 10
+0.0
+ 20
+0.0
+ 30
+0.0
+  9
+$EXTMAX
+ 10
+100.0
+ 20
+100.0
+ 30
+0.0
+  9
+$UNITMODE
+ 70
+0
+  9
+$AUNITS
+ 70
+0
+  9
+$ANGBASE
+ 50
+0.0
+  9
+$ANGDIR
+ 70
+0
+  0
+ENDSEC
+  0
+SECTION
+  2
+TABLES
+  0
+TABLE
+  2
+LTYPE
+ 70
+20
+  0
+LTYPE
+  2
+CONTINUOUS
+ 70
+0
+  3
+Solid
+ 72
+65
+ 73
+0
+ 40
+0.0
+  0
+LTYPE
+  2
+CENTER
+ 70
+0
+  3
+Center ____ _ ____ _ ____ _ ____ _ ____ _ ____
+ 72
+65
+ 73
+4
+ 40
+2.0
+ 49
+1.25
+ 49
+-0.25
+ 49
+0.25
+ 49
+-0.25
+  0
+LTYPE
+  2
+CENTERX2
+ 70
+0
+  3
+Center (2x) ________  __  ________  __  ________
+ 72
+65
+ 73
+4
+ 40
+3.5
+ 49
+2.5
+ 49
+-0.25
+ 49
+0.5
+ 49
+-0.25
+  0
+LTYPE
+  2
+CENTER2
+ 70
+0
+  3
+Center (.5x) ____ _ ____ _ ____ _ ____ _ ____
+ 72
+65
+ 73
+4
+ 40
+1.0
+ 49
+0.625
+ 49
+-0.125
+ 49
+0.125
+ 49
+-0.125
+  0
+LTYPE
+  2
+DASHED
+ 70
+0
+  3
+Dashed __ __ __ __ __ __ __ __ __ __ __ __ __ _
+ 72
+65
+ 73
+2
+ 40
+0.6
+ 49
+0.5
+ 49
+-0.1
+  0
+LTYPE
+  2
+DASHEDX2
+ 70
+0
+  3
+Dashed (2x) ____  ____  ____  ____  ____  ____
+ 72
+65
+ 73
+2
+ 40
+1.2
+ 49
+1.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DASHED2
+ 70
+0
+  3
+Dashed (.5x) _ _ _ _ _ _ _ _ _ _ _ _ _ _
+ 72
+65
+ 73
+2
+ 40
+0.3
+ 49
+0.25
+ 49
+-0.05
+  0
+LTYPE
+  2
+PHANTOM
+ 70
+0
+  3
+Phantom ______  __  __  ______  __  __  ______
+ 72
+65
+ 73
+6
+ 40
+2.5
+ 49
+1.25
+ 49
+-0.25
+ 49
+0.25
+ 49
+-0.25
+ 49
+0.25
+ 49
+-0.25
+  0
+LTYPE
+  2
+PHANTOMX2
+ 70
+0
+  3
+Phantom (2x)____________    ____    ____    ____________
+ 72
+65
+ 73
+6
+ 40
+4.25
+ 49
+2.5
+ 49
+-0.25
+ 49
+0.5
+ 49
+-0.25
+ 49
+0.5
+ 49
+-0.25
+  0
+LTYPE
+  2
+PHANTOM2
+ 70
+0
+  3
+Phantom (.5x) ___ _ _ ___ _ _ ___ _ _ ___ _ _ ___
+ 72
+65
+ 73
+6
+ 40
+1.25
+ 49
+0.625
+ 49
+-0.125
+ 49
+0.125
+ 49
+-0.125
+ 49
+0.125
+ 49
+-0.125
+  0
+LTYPE
+  2
+DASHDOT
+ 70
+0
+  3
+Dash dot __ . __ . __ . __ . __ . __ . __ . __
+ 72
+65
+ 73
+4
+ 40
+1.4
+ 49
+1.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DASHDOTX2
+ 70
+0
+  3
+Dash dot (2x) ____  .  ____  .  ____  .  ____
+ 72
+65
+ 73
+4
+ 40
+2.4
+ 49
+2.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DASHDOT2
+ 70
+0
+  3
+Dash dot (.5x) _ . _ . _ . _ . _ . _ . _ . _
+ 72
+65
+ 73
+4
+ 40
+0.7
+ 49
+0.5
+ 49
+-0.1
+ 49
+0.0
+ 49
+-0.1
+  0
+LTYPE
+  2
+DOT
+ 70
+0
+  3
+Dot .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .
+ 72
+65
+ 73
+2
+ 40
+0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DOTX2
+ 70
+0
+  3
+Dot (2x) .    .    .    .    .    .    .    . 
+ 72
+65
+ 73
+2
+ 40
+0.4
+ 49
+0.0
+ 49
+-0.4
+  0
+LTYPE
+  2
+DOT2
+ 70
+0
+  3
+Dot (.5) . . . . . . . . . . . . . . . . . . . 
+ 72
+65
+ 73
+2
+ 40
+0.1
+ 49
+0.0
+ 49
+-0.1
+  0
+LTYPE
+  2
+DIVIDE
+ 70
+0
+  3
+Divide __ . . __ . . __ . . __ . . __ . . __
+ 72
+65
+ 73
+6
+ 40
+1.6
+ 49
+1.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DIVIDEX2
+ 70
+0
+  3
+Divide (2x) ____  . .  ____  . .  ____  . .  ____
+ 72
+65
+ 73
+6
+ 40
+2.6
+ 49
+2.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DIVIDE2
+ 70
+0
+  3
+Divide(.5x) _ . _ . _ . _ . _ . _ . _ . _
+ 72
+65
+ 73
+6
+ 40
+0.8
+ 49
+0.5
+ 49
+-0.1
+ 49
+0.0
+ 49
+-0.1
+ 49
+0.0
+ 49
+-0.1
+  0
+LTYPE
+  2
+DOTTED
+ 70
+0
+  3
+
+ 72
+65
+ 73
+2
+ 40
+1.0
+ 49
+0.0
+ 49
+-1.0
+  0
+ENDTAB
+  0
+TABLE
+  2
+LAYER
+ 70
+5
+  0
+LAYER
+  2
+DIMENSIONS
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+TABLEBACKGROUND
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+TABLECONTENT
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+TABLEGRID
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+VIEWPORTS
+ 70
+0
+ 62
+7
+  6
+CONTINUOUS
+  0
+ENDTAB
+  0
+TABLE
+  2
+STYLE
+ 70
+12
+  0
+STYLE
+  2
+STANDARD
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+arial.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+arial.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL_BOLD
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+arialbd.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+ariali.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL_BOLD_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+arialbi.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL_BLACK
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+ariblk.ttf
+  4
+
+  0
+STYLE
+  2
+ISOCPEUR
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+isocpeur.ttf
+  4
+
+  0
+STYLE
+  2
+ISOCPEUR_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+isocpeui.ttf
+  4
+
+  0
+STYLE
+  2
+TIMES
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+times.ttf
+  4
+
+  0
+STYLE
+  2
+TIMES_BOLD
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+timesbd.ttf
+  4
+
+  0
+STYLE
+  2
+TIMES_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+timesi.ttf
+  4
+
+  0
+STYLE
+  2
+TIMES_BOLD_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+timesbi.ttf
+  4
+
+  0
+ENDTAB
+  0
+TABLE
+  2
+VIEW
+ 70
+0
+  0
+ENDTAB
+  0
+TABLE
+  2
+APPID
+ 70
+1
+  0
+APPID
+  2
+DXFWRITE
+ 70
+0
+  0
+ENDTAB
+  0
+TABLE
+  2
+VPORT
+ 70
+0
+  0
+ENDTAB
+  0
+TABLE
+  2
+UCS
+ 70
+0
+  0
+ENDTAB
+  0
+ENDSEC
+  0
+SECTION
+  2
+BLOCKS
+  0
+ENDSEC
+  0
+SECTION
+  2
+ENTITIES
+  0
+VIEWPORT
+  8
+VIEWPORTS
+ 67
+1
+ 10
+0.0
+ 20
+0.0
+ 30
+0.0
+ 40
+1.0
+ 41
+1.0
+ 68
+1
+ 69
+1
+1001
+ACAD
+1000
+MVIEW
+1002
+{
+1070
+16
+1010
+0.0
+1020
+0.0
+1030
+0.0
+1010
+0.0
+1020
+0.0
+1030
+0.0
+1040
+0.0
+1040
+1.0
+1040
+0.0
+1040
+0.0
+1040
+50.0
+1040
+0.0
+1040
+0.0
+1070
+0
+1070
+100
+1070
+1
+1070
+3
+1070
+0
+1070
+0
+1070
+0
+1070
+0
+1040
+0.0
+1040
+0.0
+1040
+0.0
+1040
+0.1
+1040
+0.1
+1040
+0.1
+1040
+0.1
+1070
+0
+1002
+{
+1002
+}
+1002
+}
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+169.0
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+169.0
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+118.99999999999999
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+118.99999999999999
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+144.0
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+118.99999999999999
+ 21
+53.851648000000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+169.0
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+144.0
+ 21
+53.851648000000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+144.0
+ 20
+-7.134504187433777e-08
+ 30
+0.0
+ 11
+118.99999999999999
+ 21
+53.851648000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+110.51320686867432
+ 20
+33.97156470018156
+ 30
+0.0
+ 11
+104.75660343433715
+ 21
+39.81150361779138
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.0
+ 20
+-7.13450560851925e-08
+ 30
+0.0
+ 11
+110.51320686867432
+ 21
+33.97156470018156
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+118.99999999999999
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+104.75660343433715
+ 21
+39.81150361779138
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+118.99999999999999
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+98.99999999999997
+ 21
+45.6514425354012
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+104.75660343433715
+ 20
+39.81150361779138
+ 30
+0.0
+ 11
+98.99999999999997
+ 21
+45.6514425354012
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+98.99999999999997
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+98.99999999999997
+ 21
+45.651442535401195
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+118.99999999999999
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+98.99999999999997
+ 21
+53.851648000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.26659817846705
+ 20
+53.85164800000001
+ 30
+0.0
+ 11
+98.99999999999997
+ 21
+53.85164800000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.26659817846705
+ 20
+45.6514425354012
+ 30
+0.0
+ 11
+96.26659817846705
+ 21
+53.85164800000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+98.99999999999997
+ 20
+45.6514425354012
+ 30
+0.0
+ 11
+96.26659817846705
+ 21
+45.6514425354012
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+99.0
+ 20
+153.851648
+ 30
+0.0
+ 11
+119.00000000000001
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+99.0
+ 20
+162.05185346459885
+ 30
+0.0
+ 11
+119.00000000000001
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+99.0
+ 20
+162.05185346459885
+ 30
+0.0
+ 11
+99.0
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+99.0
+ 20
+162.05185346459885
+ 30
+0.0
+ 11
+104.7566034343372
+ 21
+167.89179238220865
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+104.7566034343372
+ 20
+167.89179238220865
+ 30
+0.0
+ 11
+119.00000000000001
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+144.00000000000003
+ 20
+207.70329607134505
+ 30
+0.0
+ 11
+119.00000000000001
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+110.51320686867436
+ 20
+173.73173129981845
+ 30
+0.0
+ 11
+144.00000000000003
+ 21
+207.70329607134505
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+104.7566034343372
+ 20
+167.89179238220865
+ 30
+0.0
+ 11
+110.51320686867436
+ 21
+173.73173129981845
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+119.00000000000001
+ 20
+153.851648
+ 30
+0.0
+ 11
+144.00000000000003
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+144.00000000000003
+ 20
+153.851648
+ 30
+0.0
+ 11
+169.0
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+144.00000000000003
+ 20
+207.70329607134505
+ 30
+0.0
+ 11
+169.0
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+177.48679313132567
+ 20
+173.73173129981845
+ 30
+0.0
+ 11
+183.2433965656628
+ 21
+167.89179238220862
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.00000000000003
+ 20
+207.70329607134505
+ 30
+0.0
+ 11
+177.48679313132567
+ 21
+173.73173129981845
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+169.0
+ 20
+153.851648
+ 30
+0.0
+ 11
+183.2433965656628
+ 21
+167.89179238220862
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+169.00000000000003
+ 20
+153.851648
+ 30
+0.0
+ 11
+188.99999999999997
+ 21
+162.05185346459876
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+183.2433965656628
+ 20
+167.89179238220862
+ 30
+0.0
+ 11
+188.99999999999997
+ 21
+162.05185346459876
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+188.99999999999997
+ 20
+153.85164799999998
+ 30
+0.0
+ 11
+188.99999999999997
+ 21
+162.05185346459876
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+169.0
+ 20
+153.851648
+ 30
+0.0
+ 11
+188.99999999999997
+ 21
+153.85164799999998
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+191.73340182153294
+ 20
+153.85164799999998
+ 30
+0.0
+ 11
+188.99999999999997
+ 21
+153.85164799999998
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+191.73340182153294
+ 20
+162.05185346459876
+ 30
+0.0
+ 11
+191.73340182153294
+ 21
+153.85164799999998
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+188.99999999999997
+ 20
+162.05185346459876
+ 30
+0.0
+ 11
+191.73340182153294
+ 21
+162.05185346459876
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+188.99999999999991
+ 20
+53.851648
+ 30
+0.0
+ 11
+168.99999999999991
+ 21
+53.85164800000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+188.99999999999991
+ 20
+45.651442535401195
+ 30
+0.0
+ 11
+168.99999999999991
+ 21
+53.85164800000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+188.99999999999991
+ 20
+45.651442535401195
+ 30
+0.0
+ 11
+188.99999999999991
+ 21
+53.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+188.99999999999991
+ 20
+45.651442535401195
+ 30
+0.0
+ 11
+183.24339656566278
+ 21
+39.81150361779138
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+183.24339656566278
+ 20
+39.81150361779138
+ 30
+0.0
+ 11
+168.99999999999991
+ 21
+53.85164800000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+143.9999999999999
+ 20
+-7.134499924177363e-08
+ 30
+0.0
+ 11
+168.99999999999991
+ 21
+53.85164800000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+177.48679313132558
+ 20
+33.971564700181574
+ 30
+0.0
+ 11
+143.9999999999999
+ 21
+-7.134499924177363e-08
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+183.24339656566278
+ 20
+39.811503617791395
+ 30
+0.0
+ 11
+177.48679313132558
+ 21
+33.971564700181574
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+191.73340182153285
+ 20
+45.651442535401195
+ 30
+0.0
+ 11
+188.99999999999991
+ 21
+45.651442535401195
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+191.73340182153285
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+191.73340182153285
+ 21
+45.651442535401195
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+188.99999999999991
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+191.73340182153285
+ 21
+53.851648000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+188.99999999999994
+ 20
+91.85164799999998
+ 30
+0.0
+ 11
+188.99999999999991
+ 21
+53.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+188.99999999999994
+ 20
+115.851648
+ 30
+0.0
+ 11
+188.99999999999994
+ 21
+91.85164799999998
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+188.99999999999997
+ 20
+153.85164799999998
+ 30
+0.0
+ 11
+188.99999999999994
+ 21
+115.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+188.99999999999997
+ 20
+153.85164799999998
+ 30
+0.0
+ 11
+188.99999999999997
+ 21
+153.85164799999998
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+188.99999999999991
+ 20
+53.851648
+ 30
+0.0
+ 11
+188.99999999999991
+ 21
+53.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.26659817846708
+ 20
+162.05185346459885
+ 30
+0.0
+ 11
+99.0
+ 21
+162.05185346459885
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.26659817846708
+ 20
+153.851648
+ 30
+0.0
+ 11
+96.26659817846708
+ 21
+162.05185346459885
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+99.0
+ 20
+153.851648
+ 30
+0.0
+ 11
+96.26659817846708
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+99.0
+ 20
+115.85164800000001
+ 30
+0.0
+ 11
+99.0
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+98.99999999999999
+ 20
+91.851648
+ 30
+0.0
+ 11
+99.0
+ 21
+115.85164800000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+98.99999999999997
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+98.99999999999999
+ 21
+91.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+98.99999999999997
+ 20
+53.851648000000004
+ 30
+0.0
+ 11
+98.99999999999997
+ 21
+53.851648000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+99.0
+ 20
+153.851648
+ 30
+0.0
+ 11
+99.0
+ 21
+153.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+82.0
+ 20
+115.85164800000001
+ 30
+0.0
+ 11
+99.0
+ 21
+115.85164800000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+82.0
+ 20
+115.85164800000001
+ 30
+0.0
+ 11
+82.0
+ 21
+91.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+98.99999999999999
+ 20
+91.851648
+ 30
+0.0
+ 11
+82.0
+ 21
+91.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+82.0
+ 20
+91.851648
+ 30
+0.0
+ 11
+69.00000000000001
+ 21
+91.85164800000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+69.00000000000001
+ 20
+115.85164800000003
+ 30
+0.0
+ 11
+82.0
+ 21
+115.85164800000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+69.00000000000001
+ 20
+91.85164800000003
+ 30
+0.0
+ 11
+35.00000000000001
+ 21
+91.85164800000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+35.00000000000001
+ 20
+115.85164800000003
+ 30
+0.0
+ 11
+69.00000000000001
+ 21
+115.85164800000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+22.000000000000004
+ 20
+115.85164800000003
+ 30
+0.0
+ 11
+35.00000000000001
+ 21
+115.85164800000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+22.000000000000004
+ 20
+91.85164800000003
+ 30
+0.0
+ 11
+22.000000000000004
+ 21
+115.85164800000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+35.00000000000001
+ 20
+91.85164800000003
+ 30
+0.0
+ 11
+22.000000000000004
+ 21
+91.85164800000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+22.000000000000004
+ 20
+91.85164800000003
+ 30
+0.0
+ 11
+5.000000000000001
+ 21
+91.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+5.000000000000001
+ 20
+115.85164800000004
+ 30
+0.0
+ 11
+22.000000000000004
+ 21
+115.85164800000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+115.85164800000004
+ 30
+0.0
+ 11
+5.000000000000001
+ 21
+115.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+91.85164800000004
+ 30
+0.0
+ 11
+0.0
+ 21
+115.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+5.000000000000001
+ 20
+91.85164800000004
+ 30
+0.0
+ 11
+0.0
+ 21
+91.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+35.00000000000001
+ 20
+115.85164800000003
+ 30
+0.0
+ 11
+35.00000000000001
+ 21
+135.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+69.00000000000001
+ 20
+135.851648
+ 30
+0.0
+ 11
+69.00000000000001
+ 21
+115.85164800000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+35.00000000000001
+ 20
+135.851648
+ 30
+0.0
+ 11
+69.00000000000001
+ 21
+135.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+35.00000000000001
+ 20
+135.851648
+ 30
+0.0
+ 11
+35.00000000000001
+ 21
+159.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+69.00000000000001
+ 20
+159.85164800000004
+ 30
+0.0
+ 11
+69.00000000000001
+ 21
+135.851648
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+35.00000000000001
+ 20
+159.85164800000004
+ 30
+0.0
+ 11
+69.00000000000001
+ 21
+159.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+35.00000000000001
+ 20
+159.85164800000004
+ 30
+0.0
+ 11
+35.00000000000001
+ 21
+179.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+69.00000000000001
+ 20
+179.85164800000004
+ 30
+0.0
+ 11
+69.00000000000001
+ 21
+159.85164800000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+69.00000000000001
+ 20
+179.85164800000004
+ 30
+0.0
+ 11
+35.00000000000001
+ 21
+179.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+69.00000000000001
+ 20
+189.85164800000004
+ 30
+0.0
+ 11
+69.00000000000001
+ 21
+179.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+35.00000000000001
+ 20
+189.85164800000004
+ 30
+0.0
+ 11
+69.00000000000001
+ 21
+189.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+35.00000000000001
+ 20
+179.85164800000004
+ 30
+0.0
+ 11
+35.00000000000001
+ 21
+189.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+110.40786804847944
+ 20
+37.35482121234262
+ 30
+0.0
+ 11
+108.1379966274785
+ 21
+39.65755243235412
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.1379966274785
+ 20
+39.65755243235412
+ 30
+0.0
+ 11
+107.78191171333694
+ 21
+39.306548822798916
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+107.78191171333694
+ 20
+39.306548822798916
+ 30
+0.0
+ 11
+110.05178313433787
+ 21
+37.003817602787414
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+110.05178313433787
+ 20
+37.003817602787414
+ 30
+0.0
+ 11
+110.40786804847944
+ 21
+37.35482121234262
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.9499486338503
+ 20
+48.38484435693414
+ 30
+0.0
+ 11
+98.31664954461677
+ 21
+48.38484435693414
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+98.31664954461677
+ 20
+48.38484435693414
+ 30
+0.0
+ 11
+98.31664954461677
+ 21
+51.118246178467075
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+98.31664954461677
+ 20
+51.118246178467075
+ 30
+0.0
+ 11
+96.9499486338503
+ 21
+51.118246178467075
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.13799662747854
+ 20
+168.0457435676459
+ 30
+0.0
+ 11
+110.40786804847947
+ 21
+170.3484747876574
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+110.40786804847947
+ 20
+170.3484747876574
+ 30
+0.0
+ 11
+110.05178313433791
+ 21
+170.69947839721263
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+110.05178313433791
+ 20
+170.69947839721263
+ 30
+0.0
+ 11
+107.78191171333698
+ 21
+168.39674717720112
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+107.78191171333698
+ 20
+168.39674717720112
+ 30
+0.0
+ 11
+108.13799662747854
+ 21
+168.0457435676459
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+177.59213195152054
+ 20
+170.34847478765738
+ 30
+0.0
+ 11
+179.86200337252149
+ 21
+168.04574356764587
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+179.86200337252149
+ 20
+168.04574356764587
+ 30
+0.0
+ 11
+180.21808828666306
+ 21
+168.3967471772011
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+180.21808828666306
+ 20
+168.3967471772011
+ 30
+0.0
+ 11
+177.94821686566212
+ 21
+170.69947839721257
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+177.94821686566212
+ 20
+170.69947839721257
+ 30
+0.0
+ 11
+177.59213195152054
+ 21
+170.34847478765738
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+191.0500513661497
+ 20
+159.31845164306583
+ 30
+0.0
+ 11
+189.68335045538325
+ 21
+159.31845164306583
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+189.68335045538325
+ 20
+159.31845164306583
+ 30
+0.0
+ 11
+189.68335045538325
+ 21
+156.5850498215329
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+189.68335045538325
+ 20
+156.5850498215329
+ 30
+0.0
+ 11
+191.0500513661497
+ 21
+156.5850498215329
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+179.8620033725214
+ 20
+39.65755243235414
+ 30
+0.0
+ 11
+177.59213195152049
+ 21
+37.354821212342635
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+177.59213195152049
+ 20
+37.354821212342635
+ 30
+0.0
+ 11
+177.94821686566203
+ 21
+37.003817602787414
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+177.94821686566203
+ 20
+37.003817602787414
+ 30
+0.0
+ 11
+180.21808828666295
+ 21
+39.306548822798916
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+180.21808828666295
+ 20
+39.306548822798916
+ 30
+0.0
+ 11
+179.8620033725214
+ 21
+39.65755243235414
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+191.05005136614966
+ 20
+51.11824617846707
+ 30
+0.0
+ 11
+189.6833504553832
+ 21
+51.11824617846707
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+189.6833504553832
+ 20
+51.11824617846707
+ 30
+0.0
+ 11
+189.6833504553832
+ 21
+48.38484435693413
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+189.6833504553832
+ 20
+48.38484435693413
+ 30
+0.0
+ 11
+191.05005136614966
+ 21
+48.38484435693413
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+184.99999999999997
+ 20
+108.101648
+ 30
+0.0
+ 11
+184.99999999999997
+ 21
+99.601648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+184.99999999999997
+ 20
+99.601648
+ 30
+0.0
+ 11
+185.49999999999997
+ 21
+99.601648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+185.49999999999997
+ 20
+99.601648
+ 30
+0.0
+ 11
+185.49999999999997
+ 21
+108.101648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+185.49999999999997
+ 20
+108.101648
+ 30
+0.0
+ 11
+184.99999999999997
+ 21
+108.101648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.94994863385031
+ 20
+156.58504982153295
+ 30
+0.0
+ 11
+98.31664954461678
+ 21
+156.58504982153295
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+98.31664954461678
+ 20
+156.58504982153295
+ 30
+0.0
+ 11
+98.31664954461678
+ 21
+159.31845164306588
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+98.31664954461678
+ 20
+159.31845164306588
+ 30
+0.0
+ 11
+96.94994863385031
+ 21
+159.31845164306588
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+57.91666666666668
+ 20
+99.601648
+ 30
+0.0
+ 11
+46.08333333333334
+ 21
+99.60164800000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+46.08333333333334
+ 20
+99.60164800000001
+ 30
+0.0
+ 11
+46.08333333333334
+ 21
+99.10164800000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+46.08333333333334
+ 20
+99.10164800000003
+ 30
+0.0
+ 11
+57.91666666666668
+ 21
+99.10164800000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+57.91666666666668
+ 20
+99.10164800000001
+ 30
+0.0
+ 11
+57.91666666666668
+ 21
+99.601648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+1.2500000000000002
+ 20
+99.85164800000004
+ 30
+0.0
+ 11
+1.2500000000000002
+ 21
+97.35164800000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+1.2500000000000002
+ 20
+97.35164800000003
+ 30
+0.0
+ 11
+3.7500000000000004
+ 21
+99.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+3.7500000000000004
+ 20
+99.85164800000004
+ 30
+0.0
+ 11
+3.7500000000000004
+ 21
+107.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+3.7500000000000004
+ 20
+107.85164800000004
+ 30
+0.0
+ 11
+1.2500000000000002
+ 21
+110.35164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+1.2500000000000002
+ 20
+110.35164800000004
+ 30
+0.0
+ 11
+1.2500000000000002
+ 21
+107.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+46.00000000000001
+ 20
+134.85164800000004
+ 30
+0.0
+ 11
+46.00000000000001
+ 21
+130.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+46.00000000000001
+ 20
+130.851648
+ 30
+0.0
+ 11
+58.0
+ 21
+130.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+58.0
+ 20
+130.851648
+ 30
+0.0
+ 11
+58.0
+ 21
+134.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+58.0
+ 20
+134.85164800000004
+ 30
+0.0
+ 11
+46.00000000000001
+ 21
+134.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.50000000000001
+ 20
+122.85164800000003
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+118.85164800000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.50000000000001
+ 20
+118.85164800000003
+ 30
+0.0
+ 11
+56.50000000000001
+ 21
+118.85164800000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+56.50000000000001
+ 20
+118.85164800000003
+ 30
+0.0
+ 11
+56.50000000000001
+ 21
+122.85164800000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+56.50000000000001
+ 20
+122.85164800000003
+ 30
+0.0
+ 11
+47.50000000000001
+ 21
+122.85164800000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+46.00000000000001
+ 20
+159.35164800000004
+ 30
+0.0
+ 11
+46.00000000000001
+ 21
+136.351648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+46.00000000000001
+ 20
+136.351648
+ 30
+0.0
+ 11
+58.0
+ 21
+136.351648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+58.0
+ 20
+136.351648
+ 30
+0.0
+ 11
+58.0
+ 21
+159.35164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+58.0
+ 20
+159.35164800000004
+ 30
+0.0
+ 11
+46.00000000000001
+ 21
+159.35164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+46.00000000000001
+ 20
+164.85164800000004
+ 30
+0.0
+ 11
+46.00000000000001
+ 21
+160.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+46.00000000000001
+ 20
+160.851648
+ 30
+0.0
+ 11
+58.0
+ 21
+160.851648
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+58.0
+ 20
+160.851648
+ 30
+0.0
+ 11
+58.0
+ 21
+164.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+58.0
+ 20
+164.85164800000004
+ 30
+0.0
+ 11
+46.00000000000001
+ 21
+164.85164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+46.333333333333336
+ 20
+187.35164800000004
+ 30
+0.0
+ 11
+46.333333333333336
+ 21
+182.35164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+46.333333333333336
+ 20
+182.35164800000004
+ 30
+0.0
+ 11
+57.666666666666664
+ 21
+182.35164800000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+57.666666666666664
+ 20
+182.35164800000004
+ 30
+0.0
+ 11
+57.666666666666664
+ 21
+187.35164800000004
+ 31
+0.0
+  0
+ENDSEC
+  0
+EOF
diff --git a/rocolib/builders/output/BoatWithBottomServo/tree.png b/rocolib/builders/output/BoatWithBottomServo/tree.png
new file mode 100644
index 0000000000000000000000000000000000000000..7f3fdbbf44459e643fe170af43dbc3b45584a77a
Binary files /dev/null and b/rocolib/builders/output/BoatWithBottomServo/tree.png differ
diff --git a/rocolib/builders/output/BoatWithStackBattery/graph-anim.svg b/rocolib/builders/output/BoatWithStackBattery/graph-anim.svg
new file mode 100644
index 0000000000000000000000000000000000000000..f038e10b54e084ced24eff2b1419d2abd3658ba3
--- /dev/null
+++ b/rocolib/builders/output/BoatWithStackBattery/graph-anim.svg
@@ -0,0 +1,539 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="full" height="302.046506mm" version="1.1" viewBox="0.000000 0.000000 664.090590 302.046506" width="664.090590mm">
+  <defs/>
+  <line stroke="#000000" x1="160.30855606972293" x2="98.65427803486146" y1="120.52325300000003" y2="120.52325300000003"/>
+  <line stroke="#000000" x1="98.65427803486146" x2="160.30855606972293" y1="181.52325300000004" y2="181.52325300000004"/>
+  <line opacity="0.25" stroke="#ff0000" x1="98.65427803486146" x2="98.65427803486146" y1="181.52325300000004" y2="120.52325300000003"/>
+  <line stroke="#000000" x1="170.30855606972293" x2="160.30855606972293" y1="120.52325300000003" y2="120.52325300000003"/>
+  <line stroke="#000000" x1="170.30855606972293" x2="170.30855606972293" y1="181.52325300000004" y2="120.52325300000003"/>
+  <line stroke="#000000" x1="160.30855606972293" x2="170.30855606972293" y1="181.52325300000004" y2="181.52325300000004"/>
+  <line stroke="#000000" x1="71.65427803486145" x2="98.65427803486146" y1="181.52325300000004" y2="181.52325300000004"/>
+  <line opacity="0.25" stroke="#ff0000" x1="71.65427803486145" x2="71.65427803486145" y1="120.52325300000003" y2="181.52325300000004"/>
+  <line opacity="0.5" stroke="#0000ff" x1="98.65427803486146" x2="71.65427803486145" y1="120.52325300000003" y2="120.52325300000003"/>
+  <line stroke="#000000" x1="10.000000000000002" x2="71.65427803486145" y1="181.52325300000004" y2="181.52325300000004"/>
+  <line stroke="#000000" x1="71.65427803486145" x2="10.000000000000002" y1="120.52325300000003" y2="120.52325300000003"/>
+  <line stroke="#000000" x1="0.0" x2="10.000000000000002" y1="181.52325300000004" y2="181.52325300000004"/>
+  <line stroke="#000000" x1="0.0" x2="0.0" y1="120.52325300000003" y2="181.52325300000004"/>
+  <line stroke="#000000" x1="10.000000000000002" x2="0.0" y1="120.52325300000003" y2="120.52325300000003"/>
+  <line stroke="#000000" x1="98.65427803486146" x2="98.65427803486146" y1="120.52325300000003" y2="103.52325300000001"/>
+  <line stroke="#000000" x1="71.65427803486145" x2="71.65427803486145" y1="103.52325300000001" y2="120.52325300000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="98.65427803486146" x2="71.65427803486145" y1="103.52325300000001" y2="103.52325300000001"/>
+  <line stroke="#000000" x1="98.65427803486146" x2="98.65427803486146" y1="103.52325300000001" y2="42.52325300000002"/>
+  <line stroke="#000000" x1="71.65427803486145" x2="71.65427803486145" y1="42.52325300000002" y2="103.52325300000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="98.65427803486146" x2="71.65427803486145" y1="42.52325300000002" y2="42.52325300000002"/>
+  <line stroke="#000000" x1="98.65427803486146" x2="98.65427803486146" y1="42.52325300000002" y2="25.523253000000015"/>
+  <line stroke="#000000" x1="71.65427803486145" x2="71.65427803486145" y1="25.523253000000015" y2="42.52325300000002"/>
+  <line opacity="0.5" stroke="#0000ff" x1="71.65427803486145" x2="98.65427803486146" y1="25.523253000000015" y2="25.523253000000015"/>
+  <line stroke="#000000" x1="71.65427803486145" x2="71.65427803486145" y1="15.523253000000013" y2="25.523253000000015"/>
+  <line stroke="#000000" x1="98.65427803486146" x2="71.65427803486145" y1="15.523253000000013" y2="15.523253000000013"/>
+  <line stroke="#000000" x1="98.65427803486146" x2="98.65427803486146" y1="25.523253000000015" y2="15.523253000000013"/>
+  <line stroke="#888888" x1="167.80855606972293" x2="162.80855606972293" y1="170.43234390909095" y2="170.43234390909095"/>
+  <line stroke="#888888" x1="162.80855606972293" x2="162.80855606972293" y1="170.43234390909095" y2="159.34143481818182"/>
+  <line stroke="#888888" x1="162.80855606972293" x2="167.80855606972293" y1="159.34143481818182" y2="159.34143481818182"/>
+  <line stroke="#888888" x1="167.80855606972293" x2="162.80855606972293" y1="142.7050711818182" y2="142.7050711818182"/>
+  <line stroke="#888888" x1="162.80855606972293" x2="162.80855606972293" y1="142.7050711818182" y2="131.61416209090913"/>
+  <line stroke="#888888" x1="162.80855606972293" x2="167.80855606972293" y1="131.61416209090913" y2="131.61416209090913"/>
+  <line stroke="#888888" x1="94.15427803486146" x2="94.15427803486146" y1="118.02325300000003" y2="124.02325300000003"/>
+  <line stroke="#888888" x1="94.15427803486146" x2="76.15427803486145" y1="124.02325300000003" y2="124.02325300000003"/>
+  <line stroke="#888888" x1="76.15427803486145" x2="76.15427803486145" y1="124.02325300000003" y2="118.02325300000003"/>
+  <line stroke="#888888" x1="76.15427803486145" x2="94.15427803486146" y1="118.02325300000003" y2="118.02325300000003"/>
+  <line stroke="#888888" x1="80.40427803486146" x2="89.90427803486145" y1="173.77325300000004" y2="173.77325300000004"/>
+  <line stroke="#888888" x1="89.90427803486145" x2="89.90427803486145" y1="173.77325300000004" y2="174.27325300000004"/>
+  <line stroke="#888888" x1="89.90427803486145" x2="80.40427803486146" y1="174.27325300000004" y2="174.27325300000004"/>
+  <line stroke="#888888" x1="80.40427803486146" x2="80.40427803486146" y1="174.27325300000004" y2="173.77325300000004"/>
+  <line stroke="#888888" x1="2.5000000000000004" x2="7.500000000000001" y1="131.61416209090913" y2="131.61416209090913"/>
+  <line stroke="#888888" x1="7.500000000000001" x2="7.500000000000001" y1="131.61416209090913" y2="142.7050711818182"/>
+  <line stroke="#888888" x1="7.500000000000001" x2="2.5000000000000004" y1="142.7050711818182" y2="142.7050711818182"/>
+  <line stroke="#888888" x1="2.5000000000000004" x2="7.500000000000001" y1="159.34143481818185" y2="159.34143481818185"/>
+  <line stroke="#888888" x1="7.500000000000001" x2="7.500000000000001" y1="159.34143481818185" y2="170.43234390909095"/>
+  <line stroke="#888888" x1="7.500000000000001" x2="2.5000000000000004" y1="170.43234390909095" y2="170.43234390909095"/>
+  <line stroke="#888888" x1="89.65427803486146" x2="89.65427803486146" y1="18.023253000000015" y2="23.02325300000001"/>
+  <line stroke="#888888" x1="89.65427803486146" x2="80.65427803486146" y1="23.02325300000001" y2="23.02325300000001"/>
+  <line stroke="#888888" x1="80.65427803486146" x2="80.65427803486146" y1="23.02325300000001" y2="18.023253000000015"/>
+  <line opacity="0.5" stroke="#0000ff" x1="436.5858000680936" x2="436.5858000680936" y1="86.02325300000003" y2="216.023253"/>
+  <line opacity="0.5" stroke="#0000ff" x1="346.5858000680936" x2="346.5858000680936" y1="86.02325300000003" y2="216.023253"/>
+  <line opacity="0.3025684567112535" stroke="#0000ff" x1="391.5858000680936" x2="346.5858000680936" y1="86.02325300000003" y2="86.02325300000003"/>
+  <line opacity="0.3025684567112535" stroke="#0000ff" x1="436.5858000680936" x2="391.5858000680936" y1="86.02325300000003" y2="86.02325300000003"/>
+  <line opacity="0.31677294251280175" stroke="#0000ff" x1="391.5858000680936" x2="346.5858000680936" y1="3.2957373719000316e-07" y2="86.02325300000003"/>
+  <line stroke="#000000" x1="377.4211156634208" x2="327.0034578657572" y1="4.127328470363296" y2="18.818105326100866"/>
+  <line stroke="#000000" x1="391.5858000680936" x2="377.4211156634208" y1="3.295737656117126e-07" y2="4.127328470363296"/>
+  <line opacity="1.0" stroke="#0000ff" x1="346.5858000680936" x2="327.0034578657572" y1="86.02325300000005" y2="18.818105326100866"/>
+  <line opacity="1.0" stroke="#ff0000" x1="346.5858000680936" x2="276.5858000680936" y1="86.02325300000003" y2="33.50888218183837"/>
+  <line stroke="#000000" x1="327.0034578657572" x2="276.5858000680936" y1="18.818105326100834" y2="33.50888218183837"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="276.58580006809353" x2="276.5858000680936" y1="86.02325299999998" y2="33.508882181838395"/>
+  <line opacity="0.2332622916434259" stroke="#0000ff" x1="346.5858000680936" x2="276.58580006809353" y1="86.02325300000003" y2="86.02325299999998"/>
+  <line stroke="#000000" x1="259.08100979537306" x2="276.58580006809353" y1="86.02325299999997" y2="86.02325299999997"/>
+  <line stroke="#000000" x1="259.08100979537306" x2="259.08100979537306" y1="33.508882181838366" y2="86.02325299999997"/>
+  <line stroke="#000000" x1="276.5858000680936" x2="259.08100979537306" y1="33.50888218183837" y2="33.508882181838366"/>
+  <line opacity="0.2332622916434259" stroke="#0000ff" x1="276.5858000680935" x2="346.58580006809353" y1="216.023253" y2="216.02325300000004"/>
+  <line opacity="1.0" stroke="#ff0000" x1="276.5858000680934" x2="346.58580006809353" y1="268.53762381816165" y2="216.02325300000004"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="276.5858000680934" x2="276.5858000680935" y1="268.53762381816165" y2="216.023253"/>
+  <line stroke="#000000" x1="276.58580006809336" x2="327.003457865757" y1="268.53762381816165" y2="283.2284006738992"/>
+  <line opacity="1.0" stroke="#0000ff" x1="327.003457865757" x2="346.58580006809353" y1="283.2284006738992" y2="216.02325300000004"/>
+  <line opacity="0.31677294251280175" stroke="#0000ff" x1="391.5858000680934" x2="346.58580006809353" y1="302.04650567042637" y2="216.02325300000004"/>
+  <line stroke="#000000" x1="377.42111566342055" x2="391.5858000680934" y1="297.9191775296369" y2="302.04650567042637"/>
+  <line stroke="#000000" x1="327.003457865757" x2="377.42111566342055" y1="283.22840067389916" y2="297.9191775296369"/>
+  <line opacity="0.3025684567112535" stroke="#0000ff" x1="346.58580006809353" x2="391.58580006809353" y1="216.023253" y2="216.02325300000007"/>
+  <line opacity="0.3025684567112535" stroke="#0000ff" x1="391.58580006809353" x2="436.58580006809353" y1="216.02325300000012" y2="216.02325300000018"/>
+  <line opacity="0.31677294251280175" stroke="#0000ff" x1="391.5858000680934" x2="436.58580006809353" y1="302.04650567042637" y2="216.02325300000018"/>
+  <line stroke="#000000" x1="405.7504844727662" x2="456.1681422704299" y1="297.9191775296369" y2="283.2284006738994"/>
+  <line stroke="#000000" x1="391.5858000680934" x2="405.7504844727662" y1="302.04650567042637" y2="297.9191775296369"/>
+  <line opacity="1.0" stroke="#0000ff" x1="436.58580006809353" x2="456.1681422704299" y1="216.02325300000018" y2="283.2284006738994"/>
+  <line opacity="1.0" stroke="#ff0000" x1="436.58580006809353" x2="506.5858000680934" y1="216.02325300000018" y2="268.5376238181619"/>
+  <line stroke="#000000" x1="456.1681422704298" x2="506.5858000680934" y1="283.2284006738994" y2="268.5376238181619"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="506.58580006809353" x2="506.5858000680934" y1="216.02325300000032" y2="268.5376238181619"/>
+  <line opacity="0.2332622916434259" stroke="#0000ff" x1="436.58580006809353" x2="506.58580006809353" y1="216.02325300000018" y2="216.02325300000032"/>
+  <line stroke="#000000" x1="524.0905903408142" x2="506.58580006809353" y1="216.02325300000035" y2="216.02325300000032"/>
+  <line stroke="#000000" x1="524.090590340814" x2="524.0905903408142" y1="268.53762381816193" y2="216.02325300000035"/>
+  <line stroke="#000000" x1="506.5858000680934" x2="524.090590340814" y1="268.5376238181619" y2="268.53762381816193"/>
+  <line opacity="0.2332622916434259" stroke="#0000ff" x1="506.58580006809376" x2="436.58580006809376" y1="86.02325300000027" y2="86.02325300000012"/>
+  <line opacity="1.0" stroke="#ff0000" x1="506.5858000680939" x2="436.58580006809376" y1="33.50888218183868" y2="86.02325300000012"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="506.5858000680939" x2="506.58580006809376" y1="33.50888218183868" y2="86.02325300000027"/>
+  <line stroke="#000000" x1="506.5858000680939" x2="456.16814227043034" y1="33.50888218183864" y2="18.818105326100948"/>
+  <line opacity="1.0" stroke="#0000ff" x1="456.16814227043034" x2="436.58580006809376" y1="18.818105326100948" y2="86.02325300000011"/>
+  <line opacity="0.31677294251280175" stroke="#0000ff" x1="391.585800068094" x2="436.58580006809376" y1="3.295737087682938e-07" y2="86.02325300000012"/>
+  <line stroke="#000000" x1="405.7504844727668" x2="391.585800068094" y1="4.127328470363296" y2="3.295737087682938e-07"/>
+  <line stroke="#000000" x1="456.16814227043034" x2="405.7504844727668" y1="18.81810532610098" y2="4.127328470363296"/>
+  <line stroke="#000000" x1="524.0905903408144" x2="506.5858000680939" y1="33.50888218183872" y2="33.508882181838686"/>
+  <line stroke="#000000" x1="524.0905903408144" x2="524.0905903408144" y1="86.02325300000031" y2="33.50888218183872"/>
+  <line stroke="#000000" x1="506.58580006809376" x2="524.0905903408144" y1="86.02325300000028" y2="86.02325300000031"/>
+  <line stroke="#000000" x1="506.58580006809376" x2="506.58580006809376" y1="90.02325300000027" y2="86.02325300000028"/>
+  <line stroke="#000000" x1="506.58580006809353" x2="506.58580006809365" y1="212.02325300000032" y2="151.0232530000003"/>
+  <line stroke="#000000" x1="506.58580006809353" x2="506.58580006809353" y1="216.02325300000032" y2="212.02325300000032"/>
+  <line stroke="#000000" x1="506.58580006809353" x2="506.58580006809353" y1="216.02325300000032" y2="216.02325300000032"/>
+  <line stroke="#000000" x1="506.58580006809376" x2="506.58580006809376" y1="86.02325300000028" y2="86.02325300000028"/>
+  <line stroke="#000000" x1="516.5858000680937" x2="506.58580006809376" y1="90.02325300000031" y2="90.02325300000027"/>
+  <line stroke="#000000" x1="516.5858000680937" x2="516.5858000680937" y1="151.0232530000003" y2="90.02325300000031"/>
+  <line stroke="#000000" x1="506.58580006809365" x2="516.5858000680937" y1="151.0232530000003" y2="151.0232530000003"/>
+  <line stroke="#000000" x1="259.0810097953729" x2="276.5858000680934" y1="268.53762381816165" y2="268.53762381816165"/>
+  <line stroke="#000000" x1="259.0810097953729" x2="259.0810097953729" y1="216.02325299999998" y2="268.53762381816165"/>
+  <line stroke="#000000" x1="276.5858000680935" x2="259.0810097953729" y1="216.023253" y2="216.02325299999998"/>
+  <line stroke="#000000" x1="276.5858000680935" x2="276.5858000680935" y1="212.023253" y2="216.023253"/>
+  <line stroke="#000000" x1="276.5858000680935" x2="276.5858000680935" y1="151.02325299999998" y2="212.023253"/>
+  <line stroke="#000000" x1="276.58580006809353" x2="276.58580006809353" y1="86.02325299999997" y2="90.02325299999995"/>
+  <line stroke="#000000" x1="276.58580006809353" x2="276.58580006809353" y1="86.02325299999997" y2="86.02325299999997"/>
+  <line stroke="#000000" x1="276.5858000680935" x2="276.5858000680935" y1="216.023253" y2="216.023253"/>
+  <line opacity="0.25" stroke="#0000ff" x1="240.44717806890822" x2="240.44717806890824" y1="151.02325299999998" y2="90.02325299999994"/>
+  <line stroke="#000000" x1="276.58580006809353" x2="240.44717806890824" y1="90.02325299999995" y2="90.02325299999994"/>
+  <line stroke="#000000" x1="240.44717806890822" x2="276.5858000680935" y1="151.02325299999998" y2="151.02325299999998"/>
+  <line opacity="0.25" stroke="#0000ff" x1="216.44717806890824" x2="216.44717806890822" y1="90.02325299999993" y2="151.02325299999995"/>
+  <line opacity="0.5" stroke="#0000ff" x1="216.44717806890824" x2="240.44717806890827" y1="90.02325299999993" y2="90.02325299999994"/>
+  <line stroke="#000000" x1="180.3085560697229" x2="216.44717806890822" y1="151.0232529999999" y2="151.02325299999995"/>
+  <line stroke="#000000" x1="180.30855606972295" x2="180.3085560697229" y1="90.02325299999991" y2="151.0232529999999"/>
+  <line stroke="#000000" x1="216.44717806890824" x2="180.30855606972295" y1="90.02325299999993" y2="90.02325299999991"/>
+  <line stroke="#000000" x1="216.44717806890824" x2="216.44717806890824" y1="80.02325299999991" y2="90.02325299999994"/>
+  <line stroke="#000000" x1="240.44717806890824" x2="216.44717806890824" y1="80.02325299999993" y2="80.02325299999991"/>
+  <line stroke="#000000" x1="240.44717806890824" x2="240.44717806890824" y1="90.02325299999994" y2="80.02325299999993"/>
+  <line stroke="#000000" x1="240.44717806890822" x2="240.44717806890822" y1="161.02325299999998" y2="151.02325299999998"/>
+  <line stroke="#000000" x1="216.44717806890822" x2="240.44717806890822" y1="161.02325299999995" y2="161.02325299999998"/>
+  <line stroke="#000000" x1="216.44717806890822" x2="216.44717806890822" y1="151.02325299999995" y2="161.02325299999995"/>
+  <line stroke="#888888" x1="364.5978792657871" x2="347.31195656413337" y1="21.798749986471112" y2="26.83554947792412"/>
+  <line stroke="#888888" x1="347.31195656413337" x2="347.17208269125956" y1="26.83554947792412" y2="26.355512708824836"/>
+  <line stroke="#888888" x1="347.17208269125956" x2="364.4580053929133" y1="26.355512708824836" y2="21.318713217371826"/>
+  <line stroke="#888888" x1="364.4580053929133" x2="364.5978792657871" y1="21.318713217371826" y2="21.798749986471112"/>
+  <line stroke="#888888" x1="263.45720736355315" x2="272.2096024999135" y1="51.01367245455889" y2="51.0136724545589"/>
+  <line stroke="#888888" x1="272.2096024999135" x2="272.20960249991344" y1="51.0136724545589" y2="68.51846272727943"/>
+  <line stroke="#888888" x1="272.20960249991344" x2="263.45720736355315" y1="68.51846272727943" y2="68.51846272727941"/>
+  <line stroke="#888888" x1="347.3119565641332" x2="364.597879265787" y1="275.210956522076" y2="280.247756013529"/>
+  <line stroke="#888888" x1="364.597879265787" x2="364.45800539291315" y1="280.247756013529" y2="280.7277927826283"/>
+  <line stroke="#888888" x1="364.45800539291315" x2="347.1720826912594" y1="280.7277927826283" y2="275.69099329117523"/>
+  <line stroke="#888888" x1="347.1720826912594" x2="347.3119565641332" y1="275.69099329117523" y2="275.210956522076"/>
+  <line stroke="#888888" x1="418.5737208703999" x2="435.8596435720537" y1="280.2477560135291" y2="275.2109565220761"/>
+  <line stroke="#888888" x1="435.8596435720537" x2="435.9995174449275" y1="275.2109565220761" y2="275.69099329117535"/>
+  <line stroke="#888888" x1="435.9995174449275" x2="418.7135947432737" y1="275.69099329117535" y2="280.72779278262834"/>
+  <line stroke="#888888" x1="418.7135947432737" x2="418.5737208703999" y1="280.72779278262834" y2="280.2477560135291"/>
+  <line stroke="#888888" x1="519.7143927726339" x2="510.9619976362736" y1="251.0328335454414" y2="251.03283354544138"/>
+  <line stroke="#888888" x1="510.9619976362736" x2="510.9619976362736" y1="251.03283354544138" y2="233.52804327272085"/>
+  <line stroke="#888888" x1="510.9619976362736" x2="519.7143927726339" y1="233.52804327272085" y2="233.52804327272088"/>
+  <line stroke="#888888" x1="435.85964357205415" x2="418.57372087040034" y1="26.835549477924193" y2="21.79874998647114"/>
+  <line stroke="#888888" x1="418.57372087040034" x2="418.7135947432742" y1="21.79874998647114" y2="21.318713217371855"/>
+  <line stroke="#888888" x1="418.7135947432742" x2="435.99951744492796" y1="21.318713217371855" y2="26.35551270882492"/>
+  <line stroke="#888888" x1="435.99951744492796" x2="435.85964357205415" y1="26.35551270882492" y2="26.835549477924193"/>
+  <line stroke="#888888" x1="519.7143927726343" x2="510.9619976362739" y1="68.51846272727978" y2="68.51846272727977"/>
+  <line stroke="#888888" x1="510.9619976362739" x2="510.96199763627396" y1="68.51846272727977" y2="51.013672454559234"/>
+  <line stroke="#888888" x1="510.96199763627396" x2="519.7143927726343" y1="51.013672454559234" y2="51.01367245455925"/>
+  <line stroke="#888888" x1="498.83580006809365" x2="498.83580006809365" y1="173.45507118181848" y2="161.8641620909094"/>
+  <line stroke="#888888" x1="498.83580006809365" x2="499.33580006809365" y1="161.8641620909094" y2="161.8641620909094"/>
+  <line stroke="#888888" x1="499.33580006809365" x2="499.33580006809365" y1="161.8641620909094" y2="173.45507118181848"/>
+  <line stroke="#888888" x1="499.33580006809365" x2="498.83580006809365" y1="173.45507118181848" y2="173.45507118181848"/>
+  <line stroke="#888888" x1="498.83580006809353" x2="498.83580006809365" y1="201.1823439090912" y2="189.59143481818214"/>
+  <line stroke="#888888" x1="498.83580006809365" x2="499.3358000680936" y1="189.59143481818214" y2="189.59143481818214"/>
+  <line stroke="#888888" x1="499.3358000680936" x2="499.33580006809353" y1="189.59143481818214" y2="201.1823439090912"/>
+  <line stroke="#888888" x1="499.33580006809353" x2="498.83580006809353" y1="201.1823439090912" y2="201.1823439090912"/>
+  <line stroke="#888888" x1="514.0858000680936" x2="509.08580006809365" y1="139.93234390909123" y2="139.93234390909123"/>
+  <line stroke="#888888" x1="509.08580006809365" x2="509.0858000680937" y1="139.93234390909123" y2="128.8414348181821"/>
+  <line stroke="#888888" x1="509.0858000680937" x2="514.0858000680936" y1="128.8414348181821" y2="128.8414348181821"/>
+  <line stroke="#888888" x1="514.0858000680938" x2="509.0858000680937" y1="112.20507118181847" y2="112.20507118181847"/>
+  <line stroke="#888888" x1="509.0858000680937" x2="509.08580006809376" y1="112.20507118181847" y2="101.11416209090936"/>
+  <line stroke="#888888" x1="509.08580006809376" x2="514.0858000680938" y1="101.11416209090936" y2="101.11416209090936"/>
+  <line stroke="#888888" x1="263.4572073635531" x2="272.2096024999134" y1="233.5280432727205" y2="233.52804327272054"/>
+  <line stroke="#888888" x1="272.2096024999134" x2="272.20960249991333" y1="233.52804327272054" y2="251.03283354544106"/>
+  <line stroke="#888888" x1="272.20960249991333" x2="263.4572073635531" y1="251.03283354544106" y2="251.03283354544104"/>
+  <line stroke="#888888" x1="284.33580006809353" x2="284.33580006809353" y1="189.59143481818182" y2="201.18234390909092"/>
+  <line stroke="#888888" x1="284.33580006809353" x2="283.83580006809353" y1="201.18234390909092" y2="201.18234390909092"/>
+  <line stroke="#888888" x1="283.83580006809353" x2="283.83580006809353" y1="201.18234390909092" y2="189.59143481818182"/>
+  <line stroke="#888888" x1="283.83580006809353" x2="284.33580006809353" y1="189.59143481818182" y2="189.59143481818182"/>
+  <line stroke="#888888" x1="284.33580006809353" x2="284.33580006809353" y1="161.86416209090908" y2="173.45507118181817"/>
+  <line stroke="#888888" x1="284.33580006809353" x2="283.83580006809353" y1="173.45507118181817" y2="173.45507118181817"/>
+  <line stroke="#888888" x1="283.83580006809353" x2="283.83580006809353" y1="173.45507118181817" y2="161.86416209090908"/>
+  <line stroke="#888888" x1="283.83580006809353" x2="284.33580006809353" y1="161.86416209090908" y2="161.86416209090908"/>
+  <line stroke="#888888" x1="221.94717806890824" x2="221.94717806890824" y1="133.02325299999995" y2="122.02325299999994"/>
+  <line stroke="#888888" x1="221.94717806890824" x2="234.94717806890824" y1="122.02325299999994" y2="122.02325299999994"/>
+  <line stroke="#888888" x1="234.94717806890824" x2="234.94717806890824" y1="122.02325299999994" y2="133.02325299999995"/>
+  <line stroke="#888888" x1="234.94717806890824" x2="221.94717806890824" y1="133.02325299999995" y2="133.02325299999995"/>
+  <line stroke="#888888" x1="223.44717806890822" x2="223.44717806890824" y1="101.52325299999994" y2="95.52325299999994"/>
+  <line stroke="#888888" x1="223.44717806890824" x2="233.44717806890827" y1="95.52325299999994" y2="95.52325299999994"/>
+  <line stroke="#888888" x1="233.44717806890827" x2="233.44717806890824" y1="95.52325299999994" y2="101.52325299999994"/>
+  <line stroke="#888888" x1="233.44717806890824" x2="223.44717806890822" y1="101.52325299999994" y2="101.52325299999994"/>
+  <line stroke="#888888" x1="188.05855606972293" x2="188.05855606972293" y1="128.5914348181817" y2="140.1823439090908"/>
+  <line stroke="#888888" x1="188.05855606972293" x2="187.55855606972293" y1="140.1823439090908" y2="140.1823439090908"/>
+  <line stroke="#888888" x1="187.55855606972293" x2="187.55855606972293" y1="140.1823439090908" y2="128.5914348181817"/>
+  <line stroke="#888888" x1="187.55855606972293" x2="188.05855606972293" y1="128.5914348181817" y2="128.5914348181817"/>
+  <line stroke="#888888" x1="188.05855606972293" x2="188.05855606972293" y1="100.864162090909" y2="112.45507118181808"/>
+  <line stroke="#888888" x1="188.05855606972293" x2="187.55855606972293" y1="112.45507118181808" y2="112.45507118181808"/>
+  <line stroke="#888888" x1="187.55855606972293" x2="187.55855606972293" y1="112.45507118181808" y2="100.864162090909"/>
+  <line stroke="#888888" x1="187.55855606972293" x2="188.05855606972293" y1="100.864162090909" y2="100.864162090909"/>
+  <line stroke="#888888" x1="232.44717806890824" x2="232.44717806890824" y1="82.52325299999994" y2="87.52325299999994"/>
+  <line stroke="#888888" x1="232.44717806890824" x2="224.44717806890824" y1="87.52325299999994" y2="87.52325299999994"/>
+  <line stroke="#888888" x1="224.44717806890824" x2="224.44717806890824" y1="87.52325299999994" y2="82.52325299999991"/>
+  <line stroke="#888888" x1="224.44717806890822" x2="224.44717806890822" y1="158.52325299999995" y2="153.52325299999995"/>
+  <line stroke="#888888" x1="224.44717806890822" x2="232.44717806890822" y1="153.52325299999995" y2="153.52325299999995"/>
+  <line stroke="#888888" x1="232.44717806890822" x2="232.44717806890822" y1="153.52325299999995" y2="158.52325299999998"/>
+  <line opacity="0.5" stroke="#0000ff" x1="543.0905903408144" x2="604.0905903408143" y1="139.023253" y2="139.023253"/>
+  <line opacity="0.5" stroke="#0000ff" x1="604.0905903408143" x2="604.0905903408143" y1="139.023253" y2="163.02325300000004"/>
+  <line opacity="0.5" stroke="#0000ff" x1="604.0905903408143" x2="543.0905903408144" y1="163.02325300000004" y2="163.02325300000004"/>
+  <line opacity="0.5" stroke="#0000ff" x1="543.0905903408144" x2="543.0905903408144" y1="163.02325300000004" y2="139.023253"/>
+  <line stroke="#000000" x1="543.0905903408144" x2="543.0905903408144" y1="132.023253" y2="139.023253"/>
+  <line stroke="#000000" x1="579.0905903408144" x2="543.0905903408144" y1="132.023253" y2="132.023253"/>
+  <line stroke="#000000" x1="579.0905903408144" x2="579.0905903408144" y1="139.023253" y2="132.023253"/>
+  <line stroke="#000000" x1="611.0905903408143" x2="604.0905903408143" y1="139.023253" y2="139.023253"/>
+  <line stroke="#000000" x1="611.0905903408143" x2="611.0905903408143" y1="163.02325300000004" y2="139.023253"/>
+  <line stroke="#000000" x1="604.0905903408143" x2="611.0905903408143" y1="163.02325300000004" y2="163.02325300000004"/>
+  <line opacity="0.5" stroke="#0000ff" x1="604.0905903408143" x2="604.0905903408143" y1="163.02325300000004" y2="224.02325300000004"/>
+  <line stroke="#000000" x1="568.0905903408143" x2="604.0905903408143" y1="224.02325300000004" y2="224.02325300000004"/>
+  <line opacity="0.5" stroke="#0000ff" x1="568.0905903408143" x2="568.0905903408143" y1="163.02325300000004" y2="224.02325300000004"/>
+  <line stroke="#000000" x1="628.0905903408144" x2="604.0905903408143" y1="163.02325300000004" y2="163.02325300000004"/>
+  <line opacity="0.5" stroke="#0000ff" x1="628.0905903408144" x2="628.0905903408144" y1="163.02325300000004" y2="224.02325300000004"/>
+  <line stroke="#000000" x1="604.0905903408143" x2="628.0905903408144" y1="224.02325300000004" y2="224.02325300000004"/>
+  <line stroke="#000000" x1="664.0905903408144" x2="628.0905903408144" y1="163.02325300000004" y2="163.02325300000004"/>
+  <line stroke="#000000" x1="664.0905903408144" x2="664.0905903408144" y1="224.02325300000004" y2="163.02325300000004"/>
+  <line stroke="#000000" x1="628.0905903408144" x2="664.0905903408144" y1="224.02325300000004" y2="224.02325300000004"/>
+  <line stroke="#000000" x1="568.0905903408143" x2="544.0905903408144" y1="163.02325300000004" y2="163.02325300000004"/>
+  <line stroke="#000000" x1="544.0905903408144" x2="568.0905903408143" y1="224.02325300000004" y2="224.02325300000004"/>
+  <line opacity="0.5" stroke="#0000ff" x1="544.0905903408144" x2="544.0905903408144" y1="224.02325300000004" y2="163.02325300000004"/>
+  <line stroke="#000000" x1="534.0905903408144" x2="544.0905903408144" y1="224.02325300000004" y2="224.02325300000004"/>
+  <line stroke="#000000" x1="534.0905903408144" x2="534.0905903408144" y1="163.02325300000004" y2="224.02325300000004"/>
+  <line stroke="#000000" x1="544.0905903408144" x2="534.0905903408144" y1="163.02325300000004" y2="163.02325300000004"/>
+  <line stroke="#000000" x1="536.0905903408143" x2="543.0905903408144" y1="163.02325300000004" y2="163.02325300000004"/>
+  <line stroke="#000000" x1="536.0905903408143" x2="536.0905903408143" y1="139.023253" y2="163.02325300000004"/>
+  <line stroke="#000000" x1="543.0905903408144" x2="536.0905903408143" y1="139.023253" y2="139.023253"/>
+  <line stroke="#888888" x1="567.0905903408143" x2="570.5905903408144" y1="133.77325300000004" y2="133.77325300000004"/>
+  <line stroke="#888888" x1="570.5905903408144" x2="567.0905903408143" y1="133.77325300000004" y2="137.27325300000004"/>
+  <line stroke="#888888" x1="567.0905903408143" x2="555.0905903408144" y1="137.27325300000004" y2="137.27325300000004"/>
+  <line stroke="#888888" x1="555.0905903408144" x2="551.5905903408144" y1="137.27325300000004" y2="133.77325300000004"/>
+  <line stroke="#888888" x1="551.5905903408144" x2="555.0905903408144" y1="133.77325300000004" y2="133.77325300000004"/>
+  <line stroke="#888888" x1="609.3405903408144" x2="605.8405903408143" y1="155.023253" y2="155.023253"/>
+  <line stroke="#888888" x1="605.8405903408143" x2="605.8405903408143" y1="155.023253" y2="147.02325300000004"/>
+  <line stroke="#888888" x1="605.8405903408143" x2="609.3405903408144" y1="147.02325300000004" y2="147.02325300000004"/>
+  <line stroke="#888888" x1="581.2048760551" x2="581.2048760551" y1="217.77325300000004" y2="199.77325300000004"/>
+  <line stroke="#888888" x1="581.2048760551" x2="601.7763046265287" y1="199.77325300000004" y2="199.77325300000004"/>
+  <line stroke="#888888" x1="601.7763046265287" x2="601.7763046265287" y1="199.77325300000004" y2="217.77325300000004"/>
+  <line stroke="#888888" x1="601.7763046265287" x2="581.2048760551" y1="217.77325300000004" y2="217.77325300000004"/>
+  <line stroke="#888888" x1="604.5905903408143" x2="604.5905903408143" y1="176.27325300000004" y2="173.27325300000004"/>
+  <line stroke="#888888" x1="604.5905903408143" x2="607.5905903408144" y1="173.27325300000004" y2="173.27325300000004"/>
+  <line stroke="#888888" x1="607.5905903408144" x2="607.5905903408144" y1="173.27325300000004" y2="176.27325300000004"/>
+  <line stroke="#888888" x1="607.5905903408144" x2="604.5905903408143" y1="176.27325300000004" y2="176.27325300000004"/>
+  <line stroke="#888888" x1="625.5905903408144" x2="625.5905903408144" y1="175.273253" y2="174.27325300000004"/>
+  <line stroke="#888888" x1="625.5905903408144" x2="626.5905903408144" y1="174.27325300000004" y2="174.27325300000004"/>
+  <line stroke="#888888" x1="626.5905903408144" x2="626.5905903408144" y1="174.27325300000004" y2="175.273253"/>
+  <line stroke="#888888" x1="626.5905903408144" x2="625.5905903408144" y1="175.273253" y2="175.273253"/>
+  <line stroke="#888888" x1="605.5905903408144" x2="605.5905903408144" y1="177.773253" y2="176.77325300000004"/>
+  <line stroke="#888888" x1="605.5905903408144" x2="606.5905903408144" y1="176.77325300000004" y2="176.77325300000004"/>
+  <line stroke="#888888" x1="606.5905903408144" x2="606.5905903408144" y1="176.77325300000004" y2="177.773253"/>
+  <line stroke="#888888" x1="606.5905903408144" x2="605.5905903408144" y1="177.773253" y2="177.773253"/>
+  <line stroke="#888888" x1="625.5905903408144" x2="625.5905903408144" y1="177.773253" y2="176.77325300000004"/>
+  <line stroke="#888888" x1="625.5905903408144" x2="626.5905903408144" y1="176.77325300000004" y2="176.77325300000004"/>
+  <line stroke="#888888" x1="626.5905903408144" x2="626.5905903408144" y1="176.77325300000004" y2="177.773253"/>
+  <line stroke="#888888" x1="626.5905903408144" x2="625.5905903408144" y1="177.773253" y2="177.773253"/>
+  <line stroke="#888888" x1="605.5905903408144" x2="605.5905903408144" y1="180.27325300000004" y2="179.27325300000004"/>
+  <line stroke="#888888" x1="605.5905903408144" x2="606.5905903408144" y1="179.27325300000004" y2="179.27325300000004"/>
+  <line stroke="#888888" x1="606.5905903408144" x2="606.5905903408144" y1="179.27325300000004" y2="180.27325300000004"/>
+  <line stroke="#888888" x1="606.5905903408144" x2="605.5905903408144" y1="180.27325300000004" y2="180.27325300000004"/>
+  <line stroke="#888888" x1="625.5905903408144" x2="625.5905903408144" y1="180.27325300000004" y2="179.27325300000004"/>
+  <line stroke="#888888" x1="625.5905903408144" x2="626.5905903408144" y1="179.27325300000004" y2="179.27325300000004"/>
+  <line stroke="#888888" x1="626.5905903408144" x2="626.5905903408144" y1="179.27325300000004" y2="180.27325300000004"/>
+  <line stroke="#888888" x1="626.5905903408144" x2="625.5905903408144" y1="180.27325300000004" y2="180.27325300000004"/>
+  <line stroke="#888888" x1="605.5905903408144" x2="605.5905903408144" y1="182.77325300000004" y2="181.773253"/>
+  <line stroke="#888888" x1="605.5905903408144" x2="606.5905903408144" y1="181.773253" y2="181.773253"/>
+  <line stroke="#888888" x1="606.5905903408144" x2="606.5905903408144" y1="181.773253" y2="182.77325300000004"/>
+  <line stroke="#888888" x1="606.5905903408144" x2="605.5905903408144" y1="182.77325300000004" y2="182.77325300000004"/>
+  <line stroke="#888888" x1="625.5905903408144" x2="625.5905903408144" y1="182.77325300000004" y2="181.773253"/>
+  <line stroke="#888888" x1="625.5905903408144" x2="626.5905903408144" y1="181.773253" y2="181.773253"/>
+  <line stroke="#888888" x1="626.5905903408144" x2="626.5905903408144" y1="181.773253" y2="182.77325300000004"/>
+  <line stroke="#888888" x1="626.5905903408144" x2="625.5905903408144" y1="182.77325300000004" y2="182.77325300000004"/>
+  <line stroke="#888888" x1="605.5905903408144" x2="605.5905903408144" y1="185.27325300000004" y2="184.273253"/>
+  <line stroke="#888888" x1="605.5905903408144" x2="606.5905903408144" y1="184.273253" y2="184.273253"/>
+  <line stroke="#888888" x1="606.5905903408144" x2="606.5905903408144" y1="184.273253" y2="185.27325300000004"/>
+  <line stroke="#888888" x1="606.5905903408144" x2="605.5905903408144" y1="185.27325300000004" y2="185.27325300000004"/>
+  <line stroke="#888888" x1="625.5905903408144" x2="625.5905903408144" y1="185.27325300000004" y2="184.273253"/>
+  <line stroke="#888888" x1="625.5905903408144" x2="626.5905903408144" y1="184.273253" y2="184.273253"/>
+  <line stroke="#888888" x1="626.5905903408144" x2="626.5905903408144" y1="184.273253" y2="185.27325300000004"/>
+  <line stroke="#888888" x1="626.5905903408144" x2="625.5905903408144" y1="185.27325300000004" y2="185.27325300000004"/>
+  <line stroke="#888888" x1="605.5905903408144" x2="605.5905903408144" y1="187.77325300000004" y2="186.773253"/>
+  <line stroke="#888888" x1="605.5905903408144" x2="606.5905903408144" y1="186.773253" y2="186.773253"/>
+  <line stroke="#888888" x1="606.5905903408144" x2="606.5905903408144" y1="186.773253" y2="187.77325300000004"/>
+  <line stroke="#888888" x1="606.5905903408144" x2="605.5905903408144" y1="187.77325300000004" y2="187.77325300000004"/>
+  <line stroke="#888888" x1="625.5905903408144" x2="625.5905903408144" y1="187.77325300000004" y2="186.773253"/>
+  <line stroke="#888888" x1="625.5905903408144" x2="626.5905903408144" y1="186.773253" y2="186.773253"/>
+  <line stroke="#888888" x1="626.5905903408144" x2="626.5905903408144" y1="186.773253" y2="187.77325300000004"/>
+  <line stroke="#888888" x1="626.5905903408144" x2="625.5905903408144" y1="187.77325300000004" y2="187.77325300000004"/>
+  <line stroke="#888888" x1="605.5905903408144" x2="605.5905903408144" y1="190.27325300000004" y2="189.27325300000004"/>
+  <line stroke="#888888" x1="605.5905903408144" x2="606.5905903408144" y1="189.27325300000004" y2="189.27325300000004"/>
+  <line stroke="#888888" x1="606.5905903408144" x2="606.5905903408144" y1="189.27325300000004" y2="190.27325300000004"/>
+  <line stroke="#888888" x1="606.5905903408144" x2="605.5905903408144" y1="190.27325300000004" y2="190.27325300000004"/>
+  <line stroke="#888888" x1="625.5905903408144" x2="625.5905903408144" y1="190.27325300000004" y2="189.27325300000004"/>
+  <line stroke="#888888" x1="625.5905903408144" x2="626.5905903408144" y1="189.27325300000004" y2="189.27325300000004"/>
+  <line stroke="#888888" x1="626.5905903408144" x2="626.5905903408144" y1="189.27325300000004" y2="190.27325300000004"/>
+  <line stroke="#888888" x1="626.5905903408144" x2="625.5905903408144" y1="190.27325300000004" y2="190.27325300000004"/>
+  <line stroke="#888888" x1="605.5905903408144" x2="605.5905903408144" y1="192.77325300000004" y2="191.77325300000004"/>
+  <line stroke="#888888" x1="605.5905903408144" x2="606.5905903408144" y1="191.77325300000004" y2="191.77325300000004"/>
+  <line stroke="#888888" x1="606.5905903408144" x2="606.5905903408144" y1="191.77325300000004" y2="192.77325300000004"/>
+  <line stroke="#888888" x1="606.5905903408144" x2="605.5905903408144" y1="192.77325300000004" y2="192.77325300000004"/>
+  <line stroke="#888888" x1="625.5905903408144" x2="625.5905903408144" y1="192.77325300000004" y2="191.77325300000004"/>
+  <line stroke="#888888" x1="625.5905903408144" x2="626.5905903408144" y1="191.77325300000004" y2="191.77325300000004"/>
+  <line stroke="#888888" x1="626.5905903408144" x2="626.5905903408144" y1="191.77325300000004" y2="192.77325300000004"/>
+  <line stroke="#888888" x1="626.5905903408144" x2="625.5905903408144" y1="192.77325300000004" y2="192.77325300000004"/>
+  <line stroke="#888888" x1="605.5905903408144" x2="605.5905903408144" y1="195.27325300000004" y2="194.27325300000004"/>
+  <line stroke="#888888" x1="605.5905903408144" x2="606.5905903408144" y1="194.27325300000004" y2="194.27325300000004"/>
+  <line stroke="#888888" x1="606.5905903408144" x2="606.5905903408144" y1="194.27325300000004" y2="195.27325300000004"/>
+  <line stroke="#888888" x1="606.5905903408144" x2="605.5905903408144" y1="195.27325300000004" y2="195.27325300000004"/>
+  <line stroke="#888888" x1="625.5905903408144" x2="625.5905903408144" y1="195.27325300000004" y2="194.27325300000004"/>
+  <line stroke="#888888" x1="625.5905903408144" x2="626.5905903408144" y1="194.27325300000004" y2="194.27325300000004"/>
+  <line stroke="#888888" x1="626.5905903408144" x2="626.5905903408144" y1="194.27325300000004" y2="195.27325300000004"/>
+  <line stroke="#888888" x1="626.5905903408144" x2="625.5905903408144" y1="195.27325300000004" y2="195.27325300000004"/>
+  <line stroke="#888888" x1="605.5905903408144" x2="605.5905903408144" y1="197.773253" y2="196.77325300000004"/>
+  <line stroke="#888888" x1="605.5905903408144" x2="606.5905903408144" y1="196.77325300000004" y2="196.77325300000004"/>
+  <line stroke="#888888" x1="606.5905903408144" x2="606.5905903408144" y1="196.77325300000004" y2="197.773253"/>
+  <line stroke="#888888" x1="606.5905903408144" x2="605.5905903408144" y1="197.773253" y2="197.773253"/>
+  <line stroke="#888888" x1="625.5905903408144" x2="625.5905903408144" y1="197.773253" y2="196.77325300000004"/>
+  <line stroke="#888888" x1="625.5905903408144" x2="626.5905903408144" y1="196.77325300000004" y2="196.77325300000004"/>
+  <line stroke="#888888" x1="626.5905903408144" x2="626.5905903408144" y1="196.77325300000004" y2="197.773253"/>
+  <line stroke="#888888" x1="626.5905903408144" x2="625.5905903408144" y1="197.773253" y2="197.773253"/>
+  <line stroke="#888888" x1="605.5905903408144" x2="605.5905903408144" y1="200.273253" y2="199.27325300000004"/>
+  <line stroke="#888888" x1="605.5905903408144" x2="606.5905903408144" y1="199.27325300000004" y2="199.27325300000004"/>
+  <line stroke="#888888" x1="606.5905903408144" x2="606.5905903408144" y1="199.27325300000004" y2="200.273253"/>
+  <line stroke="#888888" x1="606.5905903408144" x2="605.5905903408144" y1="200.273253" y2="200.273253"/>
+  <line stroke="#888888" x1="625.5905903408144" x2="625.5905903408144" y1="200.273253" y2="199.27325300000004"/>
+  <line stroke="#888888" x1="625.5905903408144" x2="626.5905903408144" y1="199.27325300000004" y2="199.27325300000004"/>
+  <line stroke="#888888" x1="626.5905903408144" x2="626.5905903408144" y1="199.27325300000004" y2="200.273253"/>
+  <line stroke="#888888" x1="626.5905903408144" x2="625.5905903408144" y1="200.273253" y2="200.273253"/>
+  <line stroke="#888888" x1="605.5905903408144" x2="605.5905903408144" y1="202.77325300000004" y2="201.77325300000004"/>
+  <line stroke="#888888" x1="605.5905903408144" x2="606.5905903408144" y1="201.77325300000004" y2="201.77325300000004"/>
+  <line stroke="#888888" x1="606.5905903408144" x2="606.5905903408144" y1="201.77325300000004" y2="202.77325300000004"/>
+  <line stroke="#888888" x1="606.5905903408144" x2="605.5905903408144" y1="202.77325300000004" y2="202.77325300000004"/>
+  <line stroke="#888888" x1="625.5905903408144" x2="625.5905903408144" y1="202.77325300000004" y2="201.77325300000004"/>
+  <line stroke="#888888" x1="625.5905903408144" x2="626.5905903408144" y1="201.77325300000004" y2="201.77325300000004"/>
+  <line stroke="#888888" x1="626.5905903408144" x2="626.5905903408144" y1="201.77325300000004" y2="202.77325300000004"/>
+  <line stroke="#888888" x1="626.5905903408144" x2="625.5905903408144" y1="202.77325300000004" y2="202.77325300000004"/>
+  <line stroke="#888888" x1="605.5905903408144" x2="605.5905903408144" y1="205.27325300000004" y2="204.27325300000004"/>
+  <line stroke="#888888" x1="605.5905903408144" x2="606.5905903408144" y1="204.27325300000004" y2="204.27325300000004"/>
+  <line stroke="#888888" x1="606.5905903408144" x2="606.5905903408144" y1="204.27325300000004" y2="205.27325300000004"/>
+  <line stroke="#888888" x1="606.5905903408144" x2="605.5905903408144" y1="205.27325300000004" y2="205.27325300000004"/>
+  <line stroke="#888888" x1="625.5905903408144" x2="625.5905903408144" y1="205.27325300000004" y2="204.27325300000004"/>
+  <line stroke="#888888" x1="625.5905903408144" x2="626.5905903408144" y1="204.27325300000004" y2="204.27325300000004"/>
+  <line stroke="#888888" x1="626.5905903408144" x2="626.5905903408144" y1="204.27325300000004" y2="205.27325300000004"/>
+  <line stroke="#888888" x1="626.5905903408144" x2="625.5905903408144" y1="205.27325300000004" y2="205.27325300000004"/>
+  <line stroke="#888888" x1="605.5905903408144" x2="605.5905903408144" y1="207.77325300000004" y2="206.77325300000004"/>
+  <line stroke="#888888" x1="605.5905903408144" x2="606.5905903408144" y1="206.77325300000004" y2="206.77325300000004"/>
+  <line stroke="#888888" x1="606.5905903408144" x2="606.5905903408144" y1="206.77325300000004" y2="207.77325300000004"/>
+  <line stroke="#888888" x1="606.5905903408144" x2="605.5905903408144" y1="207.77325300000004" y2="207.77325300000004"/>
+  <line stroke="#888888" x1="625.5905903408144" x2="625.5905903408144" y1="207.77325300000004" y2="206.77325300000004"/>
+  <line stroke="#888888" x1="625.5905903408144" x2="626.5905903408144" y1="206.77325300000004" y2="206.77325300000004"/>
+  <line stroke="#888888" x1="626.5905903408144" x2="626.5905903408144" y1="206.77325300000004" y2="207.77325300000004"/>
+  <line stroke="#888888" x1="626.5905903408144" x2="625.5905903408144" y1="207.77325300000004" y2="207.77325300000004"/>
+  <line stroke="#888888" x1="605.5905903408144" x2="605.5905903408144" y1="210.27325300000004" y2="209.273253"/>
+  <line stroke="#888888" x1="605.5905903408144" x2="606.5905903408144" y1="209.273253" y2="209.273253"/>
+  <line stroke="#888888" x1="606.5905903408144" x2="606.5905903408144" y1="209.273253" y2="210.27325300000004"/>
+  <line stroke="#888888" x1="606.5905903408144" x2="605.5905903408144" y1="210.27325300000004" y2="210.27325300000004"/>
+  <line stroke="#888888" x1="625.5905903408144" x2="625.5905903408144" y1="210.27325300000004" y2="209.273253"/>
+  <line stroke="#888888" x1="625.5905903408144" x2="626.5905903408144" y1="209.273253" y2="209.273253"/>
+  <line stroke="#888888" x1="626.5905903408144" x2="626.5905903408144" y1="209.273253" y2="210.27325300000004"/>
+  <line stroke="#888888" x1="626.5905903408144" x2="625.5905903408144" y1="210.27325300000004" y2="210.27325300000004"/>
+  <line stroke="#888888" x1="605.5905903408144" x2="605.5905903408144" y1="212.77325300000004" y2="211.77325300000004"/>
+  <line stroke="#888888" x1="605.5905903408144" x2="606.5905903408144" y1="211.77325300000004" y2="211.77325300000004"/>
+  <line stroke="#888888" x1="606.5905903408144" x2="606.5905903408144" y1="211.77325300000004" y2="212.77325300000004"/>
+  <line stroke="#888888" x1="606.5905903408144" x2="605.5905903408144" y1="212.77325300000004" y2="212.77325300000004"/>
+  <line stroke="#888888" x1="624.5905903408144" x2="624.5905903408144" y1="213.773253" y2="210.77325300000004"/>
+  <line stroke="#888888" x1="624.5905903408144" x2="627.5905903408144" y1="210.77325300000004" y2="210.77325300000004"/>
+  <line stroke="#888888" x1="627.5905903408144" x2="627.5905903408144" y1="210.77325300000004" y2="213.773253"/>
+  <line stroke="#888888" x1="627.5905903408144" x2="624.5905903408144" y1="213.773253" y2="213.773253"/>
+  <line stroke="#888888" x1="620.3405903408144" x2="611.8405903408144" y1="170.773253" y2="170.773253"/>
+  <line stroke="#888888" x1="611.8405903408144" x2="611.8405903408144" y1="170.773253" y2="170.27325300000004"/>
+  <line stroke="#888888" x1="611.8405903408144" x2="620.3405903408144" y1="170.27325300000004" y2="170.27325300000004"/>
+  <line stroke="#888888" x1="620.3405903408144" x2="620.3405903408144" y1="170.27325300000004" y2="170.773253"/>
+  <line stroke="#888888" x1="611.8405903408144" x2="620.3405903408144" y1="218.523253" y2="218.523253"/>
+  <line stroke="#888888" x1="620.3405903408144" x2="620.3405903408144" y1="218.523253" y2="219.02325300000004"/>
+  <line stroke="#888888" x1="620.3405903408144" x2="611.8405903408144" y1="219.02325300000004" y2="219.02325300000004"/>
+  <line stroke="#888888" x1="611.8405903408144" x2="611.8405903408144" y1="219.02325300000004" y2="218.523253"/>
+  <line stroke="#888888" x1="633.6448760551" x2="633.6448760551" y1="219.54325300000002" y2="206.54325300000002"/>
+  <line stroke="#888888" x1="633.6448760551" x2="654.2163046265287" y1="206.54325300000002" y2="206.54325300000002"/>
+  <line stroke="#888888" x1="654.2163046265287" x2="654.2163046265287" y1="206.54325300000002" y2="219.54325300000002"/>
+  <line stroke="#888888" x1="654.2163046265287" x2="633.6448760551" y1="219.54325300000002" y2="219.54325300000002"/>
+  <line stroke="#888888" x1="652.3405903408143" x2="639.8405903408144" y1="168.523253" y2="168.523253"/>
+  <line stroke="#888888" x1="639.8405903408144" x2="639.8405903408144" y1="168.523253" y2="168.023253"/>
+  <line stroke="#888888" x1="639.8405903408144" x2="652.3405903408143" y1="168.023253" y2="168.023253"/>
+  <line stroke="#888888" x1="652.3405903408143" x2="652.3405903408143" y1="168.023253" y2="168.523253"/>
+  <line stroke="#888888" x1="656.3405903408144" x2="656.3405903408144" y1="185.45507118181823" y2="173.8641620909091"/>
+  <line stroke="#888888" x1="656.3405903408144" x2="656.8405903408144" y1="173.8641620909091" y2="173.8641620909091"/>
+  <line stroke="#888888" x1="656.8405903408144" x2="656.8405903408144" y1="173.8641620909091" y2="185.45507118181823"/>
+  <line stroke="#888888" x1="656.8405903408144" x2="656.3405903408144" y1="185.45507118181823" y2="185.45507118181823"/>
+  <line stroke="#888888" x1="656.3405903408144" x2="656.3405903408144" y1="213.18234390909095" y2="201.59143481818185"/>
+  <line stroke="#888888" x1="656.3405903408144" x2="656.8405903408144" y1="201.59143481818185" y2="201.59143481818185"/>
+  <line stroke="#888888" x1="656.8405903408144" x2="656.8405903408144" y1="201.59143481818185" y2="213.18234390909095"/>
+  <line stroke="#888888" x1="656.8405903408144" x2="656.3405903408144" y1="213.18234390909095" y2="213.18234390909095"/>
+  <line stroke="#888888" x1="544.5905903408144" x2="544.5905903408144" y1="176.27325300000004" y2="173.27325300000004"/>
+  <line stroke="#888888" x1="544.5905903408144" x2="547.5905903408143" y1="173.27325300000004" y2="173.27325300000004"/>
+  <line stroke="#888888" x1="547.5905903408143" x2="547.5905903408143" y1="173.27325300000004" y2="176.27325300000004"/>
+  <line stroke="#888888" x1="547.5905903408143" x2="544.5905903408144" y1="176.27325300000004" y2="176.27325300000004"/>
+  <line stroke="#888888" x1="565.5905903408143" x2="565.5905903408143" y1="175.273253" y2="174.27325300000004"/>
+  <line stroke="#888888" x1="565.5905903408143" x2="566.5905903408143" y1="174.27325300000004" y2="174.27325300000004"/>
+  <line stroke="#888888" x1="566.5905903408143" x2="566.5905903408143" y1="174.27325300000004" y2="175.273253"/>
+  <line stroke="#888888" x1="566.5905903408143" x2="565.5905903408143" y1="175.273253" y2="175.273253"/>
+  <line stroke="#888888" x1="545.5905903408144" x2="545.5905903408144" y1="177.773253" y2="176.77325300000004"/>
+  <line stroke="#888888" x1="545.5905903408144" x2="546.5905903408143" y1="176.77325300000004" y2="176.77325300000004"/>
+  <line stroke="#888888" x1="546.5905903408143" x2="546.5905903408143" y1="176.77325300000004" y2="177.773253"/>
+  <line stroke="#888888" x1="546.5905903408143" x2="545.5905903408144" y1="177.773253" y2="177.773253"/>
+  <line stroke="#888888" x1="565.5905903408143" x2="565.5905903408143" y1="177.773253" y2="176.77325300000004"/>
+  <line stroke="#888888" x1="565.5905903408143" x2="566.5905903408143" y1="176.77325300000004" y2="176.77325300000004"/>
+  <line stroke="#888888" x1="566.5905903408143" x2="566.5905903408143" y1="176.77325300000004" y2="177.773253"/>
+  <line stroke="#888888" x1="566.5905903408143" x2="565.5905903408143" y1="177.773253" y2="177.773253"/>
+  <line stroke="#888888" x1="545.5905903408144" x2="545.5905903408144" y1="180.27325300000004" y2="179.27325300000004"/>
+  <line stroke="#888888" x1="545.5905903408144" x2="546.5905903408143" y1="179.27325300000004" y2="179.27325300000004"/>
+  <line stroke="#888888" x1="546.5905903408143" x2="546.5905903408143" y1="179.27325300000004" y2="180.27325300000004"/>
+  <line stroke="#888888" x1="546.5905903408143" x2="545.5905903408144" y1="180.27325300000004" y2="180.27325300000004"/>
+  <line stroke="#888888" x1="565.5905903408143" x2="565.5905903408143" y1="180.27325300000004" y2="179.27325300000004"/>
+  <line stroke="#888888" x1="565.5905903408143" x2="566.5905903408143" y1="179.27325300000004" y2="179.27325300000004"/>
+  <line stroke="#888888" x1="566.5905903408143" x2="566.5905903408143" y1="179.27325300000004" y2="180.27325300000004"/>
+  <line stroke="#888888" x1="566.5905903408143" x2="565.5905903408143" y1="180.27325300000004" y2="180.27325300000004"/>
+  <line stroke="#888888" x1="545.5905903408144" x2="545.5905903408144" y1="182.77325300000004" y2="181.773253"/>
+  <line stroke="#888888" x1="545.5905903408144" x2="546.5905903408143" y1="181.773253" y2="181.773253"/>
+  <line stroke="#888888" x1="546.5905903408143" x2="546.5905903408143" y1="181.773253" y2="182.77325300000004"/>
+  <line stroke="#888888" x1="546.5905903408143" x2="545.5905903408144" y1="182.77325300000004" y2="182.77325300000004"/>
+  <line stroke="#888888" x1="565.5905903408143" x2="565.5905903408143" y1="182.77325300000004" y2="181.773253"/>
+  <line stroke="#888888" x1="565.5905903408143" x2="566.5905903408143" y1="181.773253" y2="181.773253"/>
+  <line stroke="#888888" x1="566.5905903408143" x2="566.5905903408143" y1="181.773253" y2="182.77325300000004"/>
+  <line stroke="#888888" x1="566.5905903408143" x2="565.5905903408143" y1="182.77325300000004" y2="182.77325300000004"/>
+  <line stroke="#888888" x1="545.5905903408144" x2="545.5905903408144" y1="185.27325300000004" y2="184.273253"/>
+  <line stroke="#888888" x1="545.5905903408144" x2="546.5905903408143" y1="184.273253" y2="184.273253"/>
+  <line stroke="#888888" x1="546.5905903408143" x2="546.5905903408143" y1="184.273253" y2="185.27325300000004"/>
+  <line stroke="#888888" x1="546.5905903408143" x2="545.5905903408144" y1="185.27325300000004" y2="185.27325300000004"/>
+  <line stroke="#888888" x1="565.5905903408143" x2="565.5905903408143" y1="185.27325300000004" y2="184.273253"/>
+  <line stroke="#888888" x1="565.5905903408143" x2="566.5905903408143" y1="184.273253" y2="184.273253"/>
+  <line stroke="#888888" x1="566.5905903408143" x2="566.5905903408143" y1="184.273253" y2="185.27325300000004"/>
+  <line stroke="#888888" x1="566.5905903408143" x2="565.5905903408143" y1="185.27325300000004" y2="185.27325300000004"/>
+  <line stroke="#888888" x1="545.5905903408144" x2="545.5905903408144" y1="187.77325300000004" y2="186.773253"/>
+  <line stroke="#888888" x1="545.5905903408144" x2="546.5905903408143" y1="186.773253" y2="186.773253"/>
+  <line stroke="#888888" x1="546.5905903408143" x2="546.5905903408143" y1="186.773253" y2="187.77325300000004"/>
+  <line stroke="#888888" x1="546.5905903408143" x2="545.5905903408144" y1="187.77325300000004" y2="187.77325300000004"/>
+  <line stroke="#888888" x1="565.5905903408143" x2="565.5905903408143" y1="187.77325300000004" y2="186.773253"/>
+  <line stroke="#888888" x1="565.5905903408143" x2="566.5905903408143" y1="186.773253" y2="186.773253"/>
+  <line stroke="#888888" x1="566.5905903408143" x2="566.5905903408143" y1="186.773253" y2="187.77325300000004"/>
+  <line stroke="#888888" x1="566.5905903408143" x2="565.5905903408143" y1="187.77325300000004" y2="187.77325300000004"/>
+  <line stroke="#888888" x1="545.5905903408144" x2="545.5905903408144" y1="190.27325300000004" y2="189.27325300000004"/>
+  <line stroke="#888888" x1="545.5905903408144" x2="546.5905903408143" y1="189.27325300000004" y2="189.27325300000004"/>
+  <line stroke="#888888" x1="546.5905903408143" x2="546.5905903408143" y1="189.27325300000004" y2="190.27325300000004"/>
+  <line stroke="#888888" x1="546.5905903408143" x2="545.5905903408144" y1="190.27325300000004" y2="190.27325300000004"/>
+  <line stroke="#888888" x1="565.5905903408143" x2="565.5905903408143" y1="190.27325300000004" y2="189.27325300000004"/>
+  <line stroke="#888888" x1="565.5905903408143" x2="566.5905903408143" y1="189.27325300000004" y2="189.27325300000004"/>
+  <line stroke="#888888" x1="566.5905903408143" x2="566.5905903408143" y1="189.27325300000004" y2="190.27325300000004"/>
+  <line stroke="#888888" x1="566.5905903408143" x2="565.5905903408143" y1="190.27325300000004" y2="190.27325300000004"/>
+  <line stroke="#888888" x1="545.5905903408144" x2="545.5905903408144" y1="192.77325300000004" y2="191.77325300000004"/>
+  <line stroke="#888888" x1="545.5905903408144" x2="546.5905903408143" y1="191.77325300000004" y2="191.77325300000004"/>
+  <line stroke="#888888" x1="546.5905903408143" x2="546.5905903408143" y1="191.77325300000004" y2="192.77325300000004"/>
+  <line stroke="#888888" x1="546.5905903408143" x2="545.5905903408144" y1="192.77325300000004" y2="192.77325300000004"/>
+  <line stroke="#888888" x1="565.5905903408143" x2="565.5905903408143" y1="192.77325300000004" y2="191.77325300000004"/>
+  <line stroke="#888888" x1="565.5905903408143" x2="566.5905903408143" y1="191.77325300000004" y2="191.77325300000004"/>
+  <line stroke="#888888" x1="566.5905903408143" x2="566.5905903408143" y1="191.77325300000004" y2="192.77325300000004"/>
+  <line stroke="#888888" x1="566.5905903408143" x2="565.5905903408143" y1="192.77325300000004" y2="192.77325300000004"/>
+  <line stroke="#888888" x1="545.5905903408144" x2="545.5905903408144" y1="195.27325300000004" y2="194.27325300000004"/>
+  <line stroke="#888888" x1="545.5905903408144" x2="546.5905903408143" y1="194.27325300000004" y2="194.27325300000004"/>
+  <line stroke="#888888" x1="546.5905903408143" x2="546.5905903408143" y1="194.27325300000004" y2="195.27325300000004"/>
+  <line stroke="#888888" x1="546.5905903408143" x2="545.5905903408144" y1="195.27325300000004" y2="195.27325300000004"/>
+  <line stroke="#888888" x1="565.5905903408143" x2="565.5905903408143" y1="195.27325300000004" y2="194.27325300000004"/>
+  <line stroke="#888888" x1="565.5905903408143" x2="566.5905903408143" y1="194.27325300000004" y2="194.27325300000004"/>
+  <line stroke="#888888" x1="566.5905903408143" x2="566.5905903408143" y1="194.27325300000004" y2="195.27325300000004"/>
+  <line stroke="#888888" x1="566.5905903408143" x2="565.5905903408143" y1="195.27325300000004" y2="195.27325300000004"/>
+  <line stroke="#888888" x1="545.5905903408144" x2="545.5905903408144" y1="197.773253" y2="196.77325300000004"/>
+  <line stroke="#888888" x1="545.5905903408144" x2="546.5905903408143" y1="196.77325300000004" y2="196.77325300000004"/>
+  <line stroke="#888888" x1="546.5905903408143" x2="546.5905903408143" y1="196.77325300000004" y2="197.773253"/>
+  <line stroke="#888888" x1="546.5905903408143" x2="545.5905903408144" y1="197.773253" y2="197.773253"/>
+  <line stroke="#888888" x1="565.5905903408143" x2="565.5905903408143" y1="197.773253" y2="196.77325300000004"/>
+  <line stroke="#888888" x1="565.5905903408143" x2="566.5905903408143" y1="196.77325300000004" y2="196.77325300000004"/>
+  <line stroke="#888888" x1="566.5905903408143" x2="566.5905903408143" y1="196.77325300000004" y2="197.773253"/>
+  <line stroke="#888888" x1="566.5905903408143" x2="565.5905903408143" y1="197.773253" y2="197.773253"/>
+  <line stroke="#888888" x1="545.5905903408144" x2="545.5905903408144" y1="200.273253" y2="199.27325300000004"/>
+  <line stroke="#888888" x1="545.5905903408144" x2="546.5905903408143" y1="199.27325300000004" y2="199.27325300000004"/>
+  <line stroke="#888888" x1="546.5905903408143" x2="546.5905903408143" y1="199.27325300000004" y2="200.273253"/>
+  <line stroke="#888888" x1="546.5905903408143" x2="545.5905903408144" y1="200.273253" y2="200.273253"/>
+  <line stroke="#888888" x1="565.5905903408143" x2="565.5905903408143" y1="200.273253" y2="199.27325300000004"/>
+  <line stroke="#888888" x1="565.5905903408143" x2="566.5905903408143" y1="199.27325300000004" y2="199.27325300000004"/>
+  <line stroke="#888888" x1="566.5905903408143" x2="566.5905903408143" y1="199.27325300000004" y2="200.273253"/>
+  <line stroke="#888888" x1="566.5905903408143" x2="565.5905903408143" y1="200.273253" y2="200.273253"/>
+  <line stroke="#888888" x1="545.5905903408144" x2="545.5905903408144" y1="202.77325300000004" y2="201.77325300000004"/>
+  <line stroke="#888888" x1="545.5905903408144" x2="546.5905903408143" y1="201.77325300000004" y2="201.77325300000004"/>
+  <line stroke="#888888" x1="546.5905903408143" x2="546.5905903408143" y1="201.77325300000004" y2="202.77325300000004"/>
+  <line stroke="#888888" x1="546.5905903408143" x2="545.5905903408144" y1="202.77325300000004" y2="202.77325300000004"/>
+  <line stroke="#888888" x1="565.5905903408143" x2="565.5905903408143" y1="202.77325300000004" y2="201.77325300000004"/>
+  <line stroke="#888888" x1="565.5905903408143" x2="566.5905903408143" y1="201.77325300000004" y2="201.77325300000004"/>
+  <line stroke="#888888" x1="566.5905903408143" x2="566.5905903408143" y1="201.77325300000004" y2="202.77325300000004"/>
+  <line stroke="#888888" x1="566.5905903408143" x2="565.5905903408143" y1="202.77325300000004" y2="202.77325300000004"/>
+  <line stroke="#888888" x1="545.5905903408144" x2="545.5905903408144" y1="205.27325300000004" y2="204.27325300000004"/>
+  <line stroke="#888888" x1="545.5905903408144" x2="546.5905903408143" y1="204.27325300000004" y2="204.27325300000004"/>
+  <line stroke="#888888" x1="546.5905903408143" x2="546.5905903408143" y1="204.27325300000004" y2="205.27325300000004"/>
+  <line stroke="#888888" x1="546.5905903408143" x2="545.5905903408144" y1="205.27325300000004" y2="205.27325300000004"/>
+  <line stroke="#888888" x1="565.5905903408143" x2="565.5905903408143" y1="205.27325300000004" y2="204.27325300000004"/>
+  <line stroke="#888888" x1="565.5905903408143" x2="566.5905903408143" y1="204.27325300000004" y2="204.27325300000004"/>
+  <line stroke="#888888" x1="566.5905903408143" x2="566.5905903408143" y1="204.27325300000004" y2="205.27325300000004"/>
+  <line stroke="#888888" x1="566.5905903408143" x2="565.5905903408143" y1="205.27325300000004" y2="205.27325300000004"/>
+  <line stroke="#888888" x1="545.5905903408144" x2="545.5905903408144" y1="207.77325300000004" y2="206.77325300000004"/>
+  <line stroke="#888888" x1="545.5905903408144" x2="546.5905903408143" y1="206.77325300000004" y2="206.77325300000004"/>
+  <line stroke="#888888" x1="546.5905903408143" x2="546.5905903408143" y1="206.77325300000004" y2="207.77325300000004"/>
+  <line stroke="#888888" x1="546.5905903408143" x2="545.5905903408144" y1="207.77325300000004" y2="207.77325300000004"/>
+  <line stroke="#888888" x1="565.5905903408143" x2="565.5905903408143" y1="207.77325300000004" y2="206.77325300000004"/>
+  <line stroke="#888888" x1="565.5905903408143" x2="566.5905903408143" y1="206.77325300000004" y2="206.77325300000004"/>
+  <line stroke="#888888" x1="566.5905903408143" x2="566.5905903408143" y1="206.77325300000004" y2="207.77325300000004"/>
+  <line stroke="#888888" x1="566.5905903408143" x2="565.5905903408143" y1="207.77325300000004" y2="207.77325300000004"/>
+  <line stroke="#888888" x1="545.5905903408144" x2="545.5905903408144" y1="210.27325300000004" y2="209.273253"/>
+  <line stroke="#888888" x1="545.5905903408144" x2="546.5905903408143" y1="209.273253" y2="209.273253"/>
+  <line stroke="#888888" x1="546.5905903408143" x2="546.5905903408143" y1="209.273253" y2="210.27325300000004"/>
+  <line stroke="#888888" x1="546.5905903408143" x2="545.5905903408144" y1="210.27325300000004" y2="210.27325300000004"/>
+  <line stroke="#888888" x1="565.5905903408143" x2="565.5905903408143" y1="210.27325300000004" y2="209.273253"/>
+  <line stroke="#888888" x1="565.5905903408143" x2="566.5905903408143" y1="209.273253" y2="209.273253"/>
+  <line stroke="#888888" x1="566.5905903408143" x2="566.5905903408143" y1="209.273253" y2="210.27325300000004"/>
+  <line stroke="#888888" x1="566.5905903408143" x2="565.5905903408143" y1="210.27325300000004" y2="210.27325300000004"/>
+  <line stroke="#888888" x1="545.5905903408144" x2="545.5905903408144" y1="212.77325300000004" y2="211.77325300000004"/>
+  <line stroke="#888888" x1="545.5905903408144" x2="546.5905903408143" y1="211.77325300000004" y2="211.77325300000004"/>
+  <line stroke="#888888" x1="546.5905903408143" x2="546.5905903408143" y1="211.77325300000004" y2="212.77325300000004"/>
+  <line stroke="#888888" x1="546.5905903408143" x2="545.5905903408144" y1="212.77325300000004" y2="212.77325300000004"/>
+  <line stroke="#888888" x1="564.5905903408143" x2="564.5905903408143" y1="213.773253" y2="210.77325300000004"/>
+  <line stroke="#888888" x1="564.5905903408143" x2="567.5905903408143" y1="210.77325300000004" y2="210.77325300000004"/>
+  <line stroke="#888888" x1="567.5905903408143" x2="567.5905903408143" y1="210.77325300000004" y2="213.773253"/>
+  <line stroke="#888888" x1="567.5905903408143" x2="564.5905903408143" y1="213.773253" y2="213.773253"/>
+  <line stroke="#888888" x1="560.3405903408143" x2="551.8405903408143" y1="170.773253" y2="170.773253"/>
+  <line stroke="#888888" x1="551.8405903408143" x2="551.8405903408143" y1="170.773253" y2="170.27325300000004"/>
+  <line stroke="#888888" x1="551.8405903408143" x2="560.3405903408143" y1="170.27325300000004" y2="170.27325300000004"/>
+  <line stroke="#888888" x1="560.3405903408143" x2="560.3405903408143" y1="170.27325300000004" y2="170.773253"/>
+  <line stroke="#888888" x1="551.8405903408143" x2="560.3405903408143" y1="218.523253" y2="218.523253"/>
+  <line stroke="#888888" x1="560.3405903408143" x2="560.3405903408143" y1="218.523253" y2="219.02325300000004"/>
+  <line stroke="#888888" x1="560.3405903408143" x2="551.8405903408143" y1="219.02325300000004" y2="219.02325300000004"/>
+  <line stroke="#888888" x1="551.8405903408143" x2="551.8405903408143" y1="219.02325300000004" y2="218.523253"/>
+  <line stroke="#888888" x1="536.5905903408143" x2="541.5905903408144" y1="174.1141620909091" y2="174.1141620909091"/>
+  <line stroke="#888888" x1="541.5905903408144" x2="541.5905903408144" y1="174.1141620909091" y2="185.20507118181823"/>
+  <line stroke="#888888" x1="541.5905903408144" x2="536.5905903408143" y1="185.20507118181823" y2="185.20507118181823"/>
+  <line stroke="#888888" x1="536.5905903408143" x2="541.5905903408144" y1="201.84143481818185" y2="201.84143481818185"/>
+  <line stroke="#888888" x1="541.5905903408144" x2="541.5905903408144" y1="201.84143481818185" y2="212.93234390909092"/>
+  <line stroke="#888888" x1="541.5905903408144" x2="536.5905903408143" y1="212.93234390909092" y2="212.93234390909092"/>
+  <line stroke="#888888" x1="537.8405903408144" x2="541.3405903408144" y1="147.02325300000004" y2="147.02325300000004"/>
+  <line stroke="#888888" x1="541.3405903408144" x2="541.3405903408144" y1="147.02325300000004" y2="155.023253"/>
+  <line stroke="#888888" x1="541.3405903408144" x2="537.8405903408144" y1="155.023253" y2="155.023253"/>
+</svg>
diff --git a/rocolib/builders/output/BoatWithStackBattery/graph-autofold-default.dxf b/rocolib/builders/output/BoatWithStackBattery/graph-autofold-default.dxf
new file mode 100644
index 0000000000000000000000000000000000000000..9c02b01a9d9307284e6ee99d8caf3ac258ca7c2a
--- /dev/null
+++ b/rocolib/builders/output/BoatWithStackBattery/graph-autofold-default.dxf
@@ -0,0 +1,10758 @@
+  0
+SECTION
+  2
+HEADER
+  9
+$ACADVER
+  1
+AC1009
+  9
+$INSBASE
+ 10
+0.0
+ 20
+0.0
+ 30
+0.0
+  9
+$EXTMIN
+ 10
+0.0
+ 20
+0.0
+ 30
+0.0
+  9
+$EXTMAX
+ 10
+100.0
+ 20
+100.0
+ 30
+0.0
+  9
+$UNITMODE
+ 70
+0
+  9
+$AUNITS
+ 70
+0
+  9
+$ANGBASE
+ 50
+0.0
+  9
+$ANGDIR
+ 70
+0
+  0
+ENDSEC
+  0
+SECTION
+  2
+TABLES
+  0
+TABLE
+  2
+LTYPE
+ 70
+20
+  0
+LTYPE
+  2
+CONTINUOUS
+ 70
+0
+  3
+Solid
+ 72
+65
+ 73
+0
+ 40
+0.0
+  0
+LTYPE
+  2
+CENTER
+ 70
+0
+  3
+Center ____ _ ____ _ ____ _ ____ _ ____ _ ____
+ 72
+65
+ 73
+4
+ 40
+2.0
+ 49
+1.25
+ 49
+-0.25
+ 49
+0.25
+ 49
+-0.25
+  0
+LTYPE
+  2
+CENTERX2
+ 70
+0
+  3
+Center (2x) ________  __  ________  __  ________
+ 72
+65
+ 73
+4
+ 40
+3.5
+ 49
+2.5
+ 49
+-0.25
+ 49
+0.5
+ 49
+-0.25
+  0
+LTYPE
+  2
+CENTER2
+ 70
+0
+  3
+Center (.5x) ____ _ ____ _ ____ _ ____ _ ____
+ 72
+65
+ 73
+4
+ 40
+1.0
+ 49
+0.625
+ 49
+-0.125
+ 49
+0.125
+ 49
+-0.125
+  0
+LTYPE
+  2
+DASHED
+ 70
+0
+  3
+Dashed __ __ __ __ __ __ __ __ __ __ __ __ __ _
+ 72
+65
+ 73
+2
+ 40
+0.6
+ 49
+0.5
+ 49
+-0.1
+  0
+LTYPE
+  2
+DASHEDX2
+ 70
+0
+  3
+Dashed (2x) ____  ____  ____  ____  ____  ____
+ 72
+65
+ 73
+2
+ 40
+1.2
+ 49
+1.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DASHED2
+ 70
+0
+  3
+Dashed (.5x) _ _ _ _ _ _ _ _ _ _ _ _ _ _
+ 72
+65
+ 73
+2
+ 40
+0.3
+ 49
+0.25
+ 49
+-0.05
+  0
+LTYPE
+  2
+PHANTOM
+ 70
+0
+  3
+Phantom ______  __  __  ______  __  __  ______
+ 72
+65
+ 73
+6
+ 40
+2.5
+ 49
+1.25
+ 49
+-0.25
+ 49
+0.25
+ 49
+-0.25
+ 49
+0.25
+ 49
+-0.25
+  0
+LTYPE
+  2
+PHANTOMX2
+ 70
+0
+  3
+Phantom (2x)____________    ____    ____    ____________
+ 72
+65
+ 73
+6
+ 40
+4.25
+ 49
+2.5
+ 49
+-0.25
+ 49
+0.5
+ 49
+-0.25
+ 49
+0.5
+ 49
+-0.25
+  0
+LTYPE
+  2
+PHANTOM2
+ 70
+0
+  3
+Phantom (.5x) ___ _ _ ___ _ _ ___ _ _ ___ _ _ ___
+ 72
+65
+ 73
+6
+ 40
+1.25
+ 49
+0.625
+ 49
+-0.125
+ 49
+0.125
+ 49
+-0.125
+ 49
+0.125
+ 49
+-0.125
+  0
+LTYPE
+  2
+DASHDOT
+ 70
+0
+  3
+Dash dot __ . __ . __ . __ . __ . __ . __ . __
+ 72
+65
+ 73
+4
+ 40
+1.4
+ 49
+1.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DASHDOTX2
+ 70
+0
+  3
+Dash dot (2x) ____  .  ____  .  ____  .  ____
+ 72
+65
+ 73
+4
+ 40
+2.4
+ 49
+2.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DASHDOT2
+ 70
+0
+  3
+Dash dot (.5x) _ . _ . _ . _ . _ . _ . _ . _
+ 72
+65
+ 73
+4
+ 40
+0.7
+ 49
+0.5
+ 49
+-0.1
+ 49
+0.0
+ 49
+-0.1
+  0
+LTYPE
+  2
+DOT
+ 70
+0
+  3
+Dot .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .
+ 72
+65
+ 73
+2
+ 40
+0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DOTX2
+ 70
+0
+  3
+Dot (2x) .    .    .    .    .    .    .    . 
+ 72
+65
+ 73
+2
+ 40
+0.4
+ 49
+0.0
+ 49
+-0.4
+  0
+LTYPE
+  2
+DOT2
+ 70
+0
+  3
+Dot (.5) . . . . . . . . . . . . . . . . . . . 
+ 72
+65
+ 73
+2
+ 40
+0.1
+ 49
+0.0
+ 49
+-0.1
+  0
+LTYPE
+  2
+DIVIDE
+ 70
+0
+  3
+Divide __ . . __ . . __ . . __ . . __ . . __
+ 72
+65
+ 73
+6
+ 40
+1.6
+ 49
+1.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DIVIDEX2
+ 70
+0
+  3
+Divide (2x) ____  . .  ____  . .  ____  . .  ____
+ 72
+65
+ 73
+6
+ 40
+2.6
+ 49
+2.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DIVIDE2
+ 70
+0
+  3
+Divide(.5x) _ . _ . _ . _ . _ . _ . _ . _
+ 72
+65
+ 73
+6
+ 40
+0.8
+ 49
+0.5
+ 49
+-0.1
+ 49
+0.0
+ 49
+-0.1
+ 49
+0.0
+ 49
+-0.1
+  0
+LTYPE
+  2
+DOTTED
+ 70
+0
+  3
+
+ 72
+65
+ 73
+2
+ 40
+1.0
+ 49
+0.0
+ 49
+-1.0
+  0
+ENDTAB
+  0
+TABLE
+  2
+LAYER
+ 70
+15
+  0
+LAYER
+  2
+DIMENSIONS
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+TABLEBACKGROUND
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+TABLECONTENT
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+TABLEGRID
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+VIEWPORTS
+ 70
+0
+ 62
+7
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+0
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+-45
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+90
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+54.462322208025626
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+57.019129652304315
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+180
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+-180
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+-174
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+41.987212495816664
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+45
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+ENDTAB
+  0
+TABLE
+  2
+STYLE
+ 70
+12
+  0
+STYLE
+  2
+STANDARD
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+arial.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+arial.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL_BOLD
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+arialbd.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+ariali.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL_BOLD_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+arialbi.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL_BLACK
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+ariblk.ttf
+  4
+
+  0
+STYLE
+  2
+ISOCPEUR
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+isocpeur.ttf
+  4
+
+  0
+STYLE
+  2
+ISOCPEUR_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+isocpeui.ttf
+  4
+
+  0
+STYLE
+  2
+TIMES
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+times.ttf
+  4
+
+  0
+STYLE
+  2
+TIMES_BOLD
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+timesbd.ttf
+  4
+
+  0
+STYLE
+  2
+TIMES_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+timesi.ttf
+  4
+
+  0
+STYLE
+  2
+TIMES_BOLD_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+timesbi.ttf
+  4
+
+  0
+ENDTAB
+  0
+TABLE
+  2
+VIEW
+ 70
+0
+  0
+ENDTAB
+  0
+TABLE
+  2
+APPID
+ 70
+1
+  0
+APPID
+  2
+DXFWRITE
+ 70
+0
+  0
+ENDTAB
+  0
+TABLE
+  2
+VPORT
+ 70
+0
+  0
+ENDTAB
+  0
+TABLE
+  2
+UCS
+ 70
+0
+  0
+ENDTAB
+  0
+ENDSEC
+  0
+SECTION
+  2
+BLOCKS
+  0
+ENDSEC
+  0
+SECTION
+  2
+ENTITIES
+  0
+VIEWPORT
+  8
+VIEWPORTS
+ 67
+1
+ 10
+0.0
+ 20
+0.0
+ 30
+0.0
+ 40
+1.0
+ 41
+1.0
+ 68
+1
+ 69
+1
+1001
+ACAD
+1000
+MVIEW
+1002
+{
+1070
+16
+1010
+0.0
+1020
+0.0
+1030
+0.0
+1010
+0.0
+1020
+0.0
+1030
+0.0
+1040
+0.0
+1040
+1.0
+1040
+0.0
+1040
+0.0
+1040
+50.0
+1040
+0.0
+1040
+0.0
+1070
+0
+1070
+100
+1070
+1
+1070
+3
+1070
+0
+1070
+0
+1070
+0
+1070
+0
+1040
+0.0
+1040
+0.0
+1040
+0.0
+1040
+0.1
+1040
+0.1
+1040
+0.1
+1040
+0.1
+1070
+0
+1002
+{
+1002
+}
+1002
+}
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+160.30855606972293
+ 20
+120.52325300000003
+ 30
+0.0
+ 11
+98.65427803486146
+ 21
+120.52325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+98.65427803486146
+ 20
+181.52325300000004
+ 30
+0.0
+ 11
+160.30855606972293
+ 21
+181.52325300000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-45
+ 10
+98.65427803486146
+ 20
+181.52325300000004
+ 30
+0.0
+ 11
+98.65427803486146
+ 21
+120.52325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+170.30855606972293
+ 20
+120.52325300000003
+ 30
+0.0
+ 11
+160.30855606972293
+ 21
+120.52325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+170.30855606972293
+ 20
+181.52325300000004
+ 30
+0.0
+ 11
+170.30855606972293
+ 21
+120.52325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+160.30855606972293
+ 20
+181.52325300000004
+ 30
+0.0
+ 11
+170.30855606972293
+ 21
+181.52325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+71.65427803486145
+ 20
+181.52325300000004
+ 30
+0.0
+ 11
+98.65427803486146
+ 21
+181.52325300000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-45
+ 10
+71.65427803486145
+ 20
+120.52325300000003
+ 30
+0.0
+ 11
+71.65427803486145
+ 21
+181.52325300000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+98.65427803486146
+ 20
+120.52325300000003
+ 30
+0.0
+ 11
+71.65427803486145
+ 21
+120.52325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+10.000000000000002
+ 20
+181.52325300000004
+ 30
+0.0
+ 11
+71.65427803486145
+ 21
+181.52325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+71.65427803486145
+ 20
+120.52325300000003
+ 30
+0.0
+ 11
+10.000000000000002
+ 21
+120.52325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+0.0
+ 20
+181.52325300000004
+ 30
+0.0
+ 11
+10.000000000000002
+ 21
+181.52325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+0.0
+ 20
+120.52325300000003
+ 30
+0.0
+ 11
+0.0
+ 21
+181.52325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+10.000000000000002
+ 20
+120.52325300000003
+ 30
+0.0
+ 11
+0.0
+ 21
+120.52325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+98.65427803486146
+ 20
+120.52325300000003
+ 30
+0.0
+ 11
+98.65427803486146
+ 21
+103.52325300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+71.65427803486145
+ 20
+103.52325300000001
+ 30
+0.0
+ 11
+71.65427803486145
+ 21
+120.52325300000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+98.65427803486146
+ 20
+103.52325300000001
+ 30
+0.0
+ 11
+71.65427803486145
+ 21
+103.52325300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+98.65427803486146
+ 20
+103.52325300000001
+ 30
+0.0
+ 11
+98.65427803486146
+ 21
+42.52325300000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+71.65427803486145
+ 20
+42.52325300000002
+ 30
+0.0
+ 11
+71.65427803486145
+ 21
+103.52325300000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+98.65427803486146
+ 20
+42.52325300000002
+ 30
+0.0
+ 11
+71.65427803486145
+ 21
+42.52325300000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+98.65427803486146
+ 20
+42.52325300000002
+ 30
+0.0
+ 11
+98.65427803486146
+ 21
+25.523253000000015
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+71.65427803486145
+ 20
+25.523253000000015
+ 30
+0.0
+ 11
+71.65427803486145
+ 21
+42.52325300000002
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+71.65427803486145
+ 20
+25.523253000000015
+ 30
+0.0
+ 11
+98.65427803486146
+ 21
+25.523253000000015
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+71.65427803486145
+ 20
+15.523253000000013
+ 30
+0.0
+ 11
+71.65427803486145
+ 21
+25.523253000000015
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+98.65427803486146
+ 20
+15.523253000000013
+ 30
+0.0
+ 11
+71.65427803486145
+ 21
+15.523253000000013
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+98.65427803486146
+ 20
+25.523253000000015
+ 30
+0.0
+ 11
+98.65427803486146
+ 21
+15.523253000000013
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+167.80855606972293
+ 20
+170.43234390909095
+ 30
+0.0
+ 11
+162.80855606972293
+ 21
+170.43234390909095
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+162.80855606972293
+ 20
+170.43234390909095
+ 30
+0.0
+ 11
+162.80855606972293
+ 21
+159.34143481818182
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+162.80855606972293
+ 20
+159.34143481818182
+ 30
+0.0
+ 11
+167.80855606972293
+ 21
+159.34143481818182
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+167.80855606972293
+ 20
+142.7050711818182
+ 30
+0.0
+ 11
+162.80855606972293
+ 21
+142.7050711818182
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+162.80855606972293
+ 20
+142.7050711818182
+ 30
+0.0
+ 11
+162.80855606972293
+ 21
+131.61416209090913
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+162.80855606972293
+ 20
+131.61416209090913
+ 30
+0.0
+ 11
+167.80855606972293
+ 21
+131.61416209090913
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+94.15427803486146
+ 20
+118.02325300000003
+ 30
+0.0
+ 11
+94.15427803486146
+ 21
+124.02325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+94.15427803486146
+ 20
+124.02325300000003
+ 30
+0.0
+ 11
+76.15427803486145
+ 21
+124.02325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+76.15427803486145
+ 20
+124.02325300000003
+ 30
+0.0
+ 11
+76.15427803486145
+ 21
+118.02325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+76.15427803486145
+ 20
+118.02325300000003
+ 30
+0.0
+ 11
+94.15427803486146
+ 21
+118.02325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+80.40427803486146
+ 20
+173.77325300000004
+ 30
+0.0
+ 11
+89.90427803486145
+ 21
+173.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+89.90427803486145
+ 20
+173.77325300000004
+ 30
+0.0
+ 11
+89.90427803486145
+ 21
+174.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+89.90427803486145
+ 20
+174.27325300000004
+ 30
+0.0
+ 11
+80.40427803486146
+ 21
+174.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+80.40427803486146
+ 20
+174.27325300000004
+ 30
+0.0
+ 11
+80.40427803486146
+ 21
+173.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+2.5000000000000004
+ 20
+131.61416209090913
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+131.61416209090913
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+7.500000000000001
+ 20
+131.61416209090913
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+142.7050711818182
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+7.500000000000001
+ 20
+142.7050711818182
+ 30
+0.0
+ 11
+2.5000000000000004
+ 21
+142.7050711818182
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+2.5000000000000004
+ 20
+159.34143481818185
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+159.34143481818185
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+7.500000000000001
+ 20
+159.34143481818185
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+170.43234390909095
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+7.500000000000001
+ 20
+170.43234390909095
+ 30
+0.0
+ 11
+2.5000000000000004
+ 21
+170.43234390909095
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+89.65427803486146
+ 20
+18.023253000000015
+ 30
+0.0
+ 11
+89.65427803486146
+ 21
+23.02325300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+89.65427803486146
+ 20
+23.02325300000001
+ 30
+0.0
+ 11
+80.65427803486146
+ 21
+23.02325300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+80.65427803486146
+ 20
+23.02325300000001
+ 30
+0.0
+ 11
+80.65427803486146
+ 21
+18.023253000000015
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+436.5858000680936
+ 20
+86.02325300000003
+ 30
+0.0
+ 11
+436.5858000680936
+ 21
+216.023253
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+346.5858000680936
+ 20
+86.02325300000003
+ 30
+0.0
+ 11
+346.5858000680936
+ 21
+216.023253
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+54.462322208025626
+ 10
+391.5858000680936
+ 20
+86.02325300000003
+ 30
+0.0
+ 11
+346.5858000680936
+ 21
+86.02325300000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+54.462322208025626
+ 10
+436.5858000680936
+ 20
+86.02325300000003
+ 30
+0.0
+ 11
+391.5858000680936
+ 21
+86.02325300000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+57.019129652304315
+ 10
+391.5858000680936
+ 20
+3.2957373719000316e-07
+ 30
+0.0
+ 11
+346.5858000680936
+ 21
+86.02325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+377.4211156634208
+ 20
+4.127328470363296
+ 30
+0.0
+ 11
+327.0034578657572
+ 21
+18.818105326100866
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+391.5858000680936
+ 20
+3.295737656117126e-07
+ 30
+0.0
+ 11
+377.4211156634208
+ 21
+4.127328470363296
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+180
+ 10
+346.5858000680936
+ 20
+86.02325300000005
+ 30
+0.0
+ 11
+327.0034578657572
+ 21
+18.818105326100866
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-180
+ 10
+346.5858000680936
+ 20
+86.02325300000003
+ 30
+0.0
+ 11
+276.5858000680936
+ 21
+33.50888218183837
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+327.0034578657572
+ 20
+18.818105326100834
+ 30
+0.0
+ 11
+276.5858000680936
+ 21
+33.50888218183837
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-174
+ 10
+276.58580006809353
+ 20
+86.02325299999998
+ 30
+0.0
+ 11
+276.5858000680936
+ 21
+33.508882181838395
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+41.987212495816664
+ 10
+346.5858000680936
+ 20
+86.02325300000003
+ 30
+0.0
+ 11
+276.58580006809353
+ 21
+86.02325299999998
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+259.08100979537306
+ 20
+86.02325299999997
+ 30
+0.0
+ 11
+276.58580006809353
+ 21
+86.02325299999997
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+259.08100979537306
+ 20
+33.508882181838366
+ 30
+0.0
+ 11
+259.08100979537306
+ 21
+86.02325299999997
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+276.5858000680936
+ 20
+33.50888218183837
+ 30
+0.0
+ 11
+259.08100979537306
+ 21
+33.508882181838366
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+41.987212495816664
+ 10
+276.5858000680935
+ 20
+216.023253
+ 30
+0.0
+ 11
+346.58580006809353
+ 21
+216.02325300000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-180
+ 10
+276.5858000680934
+ 20
+268.53762381816165
+ 30
+0.0
+ 11
+346.58580006809353
+ 21
+216.02325300000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-174
+ 10
+276.5858000680934
+ 20
+268.53762381816165
+ 30
+0.0
+ 11
+276.5858000680935
+ 21
+216.023253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+276.58580006809336
+ 20
+268.53762381816165
+ 30
+0.0
+ 11
+327.003457865757
+ 21
+283.2284006738992
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+180
+ 10
+327.003457865757
+ 20
+283.2284006738992
+ 30
+0.0
+ 11
+346.58580006809353
+ 21
+216.02325300000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+57.019129652304315
+ 10
+391.5858000680934
+ 20
+302.04650567042637
+ 30
+0.0
+ 11
+346.58580006809353
+ 21
+216.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+377.42111566342055
+ 20
+297.9191775296369
+ 30
+0.0
+ 11
+391.5858000680934
+ 21
+302.04650567042637
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+327.003457865757
+ 20
+283.22840067389916
+ 30
+0.0
+ 11
+377.42111566342055
+ 21
+297.9191775296369
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+54.462322208025626
+ 10
+346.58580006809353
+ 20
+216.023253
+ 30
+0.0
+ 11
+391.58580006809353
+ 21
+216.02325300000007
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+54.462322208025626
+ 10
+391.58580006809353
+ 20
+216.02325300000012
+ 30
+0.0
+ 11
+436.58580006809353
+ 21
+216.02325300000018
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+57.019129652304315
+ 10
+391.5858000680934
+ 20
+302.04650567042637
+ 30
+0.0
+ 11
+436.58580006809353
+ 21
+216.02325300000018
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+405.7504844727662
+ 20
+297.9191775296369
+ 30
+0.0
+ 11
+456.1681422704299
+ 21
+283.2284006738994
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+391.5858000680934
+ 20
+302.04650567042637
+ 30
+0.0
+ 11
+405.7504844727662
+ 21
+297.9191775296369
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+180
+ 10
+436.58580006809353
+ 20
+216.02325300000018
+ 30
+0.0
+ 11
+456.1681422704299
+ 21
+283.2284006738994
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-180
+ 10
+436.58580006809353
+ 20
+216.02325300000018
+ 30
+0.0
+ 11
+506.5858000680934
+ 21
+268.5376238181619
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+456.1681422704298
+ 20
+283.2284006738994
+ 30
+0.0
+ 11
+506.5858000680934
+ 21
+268.5376238181619
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-174
+ 10
+506.58580006809353
+ 20
+216.02325300000032
+ 30
+0.0
+ 11
+506.5858000680934
+ 21
+268.5376238181619
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+41.987212495816664
+ 10
+436.58580006809353
+ 20
+216.02325300000018
+ 30
+0.0
+ 11
+506.58580006809353
+ 21
+216.02325300000032
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+524.0905903408142
+ 20
+216.02325300000035
+ 30
+0.0
+ 11
+506.58580006809353
+ 21
+216.02325300000032
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+524.090590340814
+ 20
+268.53762381816193
+ 30
+0.0
+ 11
+524.0905903408142
+ 21
+216.02325300000035
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+506.5858000680934
+ 20
+268.5376238181619
+ 30
+0.0
+ 11
+524.090590340814
+ 21
+268.53762381816193
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+41.987212495816664
+ 10
+506.58580006809376
+ 20
+86.02325300000027
+ 30
+0.0
+ 11
+436.58580006809376
+ 21
+86.02325300000012
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-180
+ 10
+506.5858000680939
+ 20
+33.50888218183868
+ 30
+0.0
+ 11
+436.58580006809376
+ 21
+86.02325300000012
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-174
+ 10
+506.5858000680939
+ 20
+33.50888218183868
+ 30
+0.0
+ 11
+506.58580006809376
+ 21
+86.02325300000027
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+506.5858000680939
+ 20
+33.50888218183864
+ 30
+0.0
+ 11
+456.16814227043034
+ 21
+18.818105326100948
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+180
+ 10
+456.16814227043034
+ 20
+18.818105326100948
+ 30
+0.0
+ 11
+436.58580006809376
+ 21
+86.02325300000011
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+57.019129652304315
+ 10
+391.585800068094
+ 20
+3.295737087682938e-07
+ 30
+0.0
+ 11
+436.58580006809376
+ 21
+86.02325300000012
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+405.7504844727668
+ 20
+4.127328470363296
+ 30
+0.0
+ 11
+391.585800068094
+ 21
+3.295737087682938e-07
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+456.16814227043034
+ 20
+18.81810532610098
+ 30
+0.0
+ 11
+405.7504844727668
+ 21
+4.127328470363296
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+524.0905903408144
+ 20
+33.50888218183872
+ 30
+0.0
+ 11
+506.5858000680939
+ 21
+33.508882181838686
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+524.0905903408144
+ 20
+86.02325300000031
+ 30
+0.0
+ 11
+524.0905903408144
+ 21
+33.50888218183872
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+506.58580006809376
+ 20
+86.02325300000028
+ 30
+0.0
+ 11
+524.0905903408144
+ 21
+86.02325300000031
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+506.58580006809376
+ 20
+90.02325300000027
+ 30
+0.0
+ 11
+506.58580006809376
+ 21
+86.02325300000028
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+506.58580006809353
+ 20
+212.02325300000032
+ 30
+0.0
+ 11
+506.58580006809365
+ 21
+151.0232530000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+506.58580006809353
+ 20
+216.02325300000032
+ 30
+0.0
+ 11
+506.58580006809353
+ 21
+212.02325300000032
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+506.58580006809353
+ 20
+216.02325300000032
+ 30
+0.0
+ 11
+506.58580006809353
+ 21
+216.02325300000032
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+506.58580006809376
+ 20
+86.02325300000028
+ 30
+0.0
+ 11
+506.58580006809376
+ 21
+86.02325300000028
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+516.5858000680937
+ 20
+90.02325300000031
+ 30
+0.0
+ 11
+506.58580006809376
+ 21
+90.02325300000027
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+516.5858000680937
+ 20
+151.0232530000003
+ 30
+0.0
+ 11
+516.5858000680937
+ 21
+90.02325300000031
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+506.58580006809365
+ 20
+151.0232530000003
+ 30
+0.0
+ 11
+516.5858000680937
+ 21
+151.0232530000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+259.0810097953729
+ 20
+268.53762381816165
+ 30
+0.0
+ 11
+276.5858000680934
+ 21
+268.53762381816165
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+259.0810097953729
+ 20
+216.02325299999998
+ 30
+0.0
+ 11
+259.0810097953729
+ 21
+268.53762381816165
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+276.5858000680935
+ 20
+216.023253
+ 30
+0.0
+ 11
+259.0810097953729
+ 21
+216.02325299999998
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+276.5858000680935
+ 20
+212.023253
+ 30
+0.0
+ 11
+276.5858000680935
+ 21
+216.023253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+276.5858000680935
+ 20
+151.02325299999998
+ 30
+0.0
+ 11
+276.5858000680935
+ 21
+212.023253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+276.58580006809353
+ 20
+86.02325299999997
+ 30
+0.0
+ 11
+276.58580006809353
+ 21
+90.02325299999995
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+276.58580006809353
+ 20
+86.02325299999997
+ 30
+0.0
+ 11
+276.58580006809353
+ 21
+86.02325299999997
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+276.5858000680935
+ 20
+216.023253
+ 30
+0.0
+ 11
+276.5858000680935
+ 21
+216.023253
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+45
+ 10
+240.44717806890822
+ 20
+151.02325299999998
+ 30
+0.0
+ 11
+240.44717806890824
+ 21
+90.02325299999994
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+276.58580006809353
+ 20
+90.02325299999995
+ 30
+0.0
+ 11
+240.44717806890824
+ 21
+90.02325299999994
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+240.44717806890822
+ 20
+151.02325299999998
+ 30
+0.0
+ 11
+276.5858000680935
+ 21
+151.02325299999998
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+45
+ 10
+216.44717806890824
+ 20
+90.02325299999993
+ 30
+0.0
+ 11
+216.44717806890822
+ 21
+151.02325299999995
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+216.44717806890824
+ 20
+90.02325299999993
+ 30
+0.0
+ 11
+240.44717806890827
+ 21
+90.02325299999994
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+180.3085560697229
+ 20
+151.0232529999999
+ 30
+0.0
+ 11
+216.44717806890822
+ 21
+151.02325299999995
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+180.30855606972295
+ 20
+90.02325299999991
+ 30
+0.0
+ 11
+180.3085560697229
+ 21
+151.0232529999999
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+216.44717806890824
+ 20
+90.02325299999993
+ 30
+0.0
+ 11
+180.30855606972295
+ 21
+90.02325299999991
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+216.44717806890824
+ 20
+80.02325299999991
+ 30
+0.0
+ 11
+216.44717806890824
+ 21
+90.02325299999994
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+240.44717806890824
+ 20
+80.02325299999993
+ 30
+0.0
+ 11
+216.44717806890824
+ 21
+80.02325299999991
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+240.44717806890824
+ 20
+90.02325299999994
+ 30
+0.0
+ 11
+240.44717806890824
+ 21
+80.02325299999993
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+240.44717806890822
+ 20
+161.02325299999998
+ 30
+0.0
+ 11
+240.44717806890822
+ 21
+151.02325299999998
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+216.44717806890822
+ 20
+161.02325299999995
+ 30
+0.0
+ 11
+240.44717806890822
+ 21
+161.02325299999998
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+216.44717806890822
+ 20
+151.02325299999995
+ 30
+0.0
+ 11
+216.44717806890822
+ 21
+161.02325299999995
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+364.5978792657871
+ 20
+21.798749986471112
+ 30
+0.0
+ 11
+347.31195656413337
+ 21
+26.83554947792412
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+347.31195656413337
+ 20
+26.83554947792412
+ 30
+0.0
+ 11
+347.17208269125956
+ 21
+26.355512708824836
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+347.17208269125956
+ 20
+26.355512708824836
+ 30
+0.0
+ 11
+364.4580053929133
+ 21
+21.318713217371826
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+364.4580053929133
+ 20
+21.318713217371826
+ 30
+0.0
+ 11
+364.5978792657871
+ 21
+21.798749986471112
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+263.45720736355315
+ 20
+51.01367245455889
+ 30
+0.0
+ 11
+272.2096024999135
+ 21
+51.0136724545589
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+272.2096024999135
+ 20
+51.0136724545589
+ 30
+0.0
+ 11
+272.20960249991344
+ 21
+68.51846272727943
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+272.20960249991344
+ 20
+68.51846272727943
+ 30
+0.0
+ 11
+263.45720736355315
+ 21
+68.51846272727941
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+347.3119565641332
+ 20
+275.210956522076
+ 30
+0.0
+ 11
+364.597879265787
+ 21
+280.247756013529
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+364.597879265787
+ 20
+280.247756013529
+ 30
+0.0
+ 11
+364.45800539291315
+ 21
+280.7277927826283
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+364.45800539291315
+ 20
+280.7277927826283
+ 30
+0.0
+ 11
+347.1720826912594
+ 21
+275.69099329117523
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+347.1720826912594
+ 20
+275.69099329117523
+ 30
+0.0
+ 11
+347.3119565641332
+ 21
+275.210956522076
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+418.5737208703999
+ 20
+280.2477560135291
+ 30
+0.0
+ 11
+435.8596435720537
+ 21
+275.2109565220761
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+435.8596435720537
+ 20
+275.2109565220761
+ 30
+0.0
+ 11
+435.9995174449275
+ 21
+275.69099329117535
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+435.9995174449275
+ 20
+275.69099329117535
+ 30
+0.0
+ 11
+418.7135947432737
+ 21
+280.72779278262834
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+418.7135947432737
+ 20
+280.72779278262834
+ 30
+0.0
+ 11
+418.5737208703999
+ 21
+280.2477560135291
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+519.7143927726339
+ 20
+251.0328335454414
+ 30
+0.0
+ 11
+510.9619976362736
+ 21
+251.03283354544138
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+510.9619976362736
+ 20
+251.03283354544138
+ 30
+0.0
+ 11
+510.9619976362736
+ 21
+233.52804327272085
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+510.9619976362736
+ 20
+233.52804327272085
+ 30
+0.0
+ 11
+519.7143927726339
+ 21
+233.52804327272088
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+435.85964357205415
+ 20
+26.835549477924193
+ 30
+0.0
+ 11
+418.57372087040034
+ 21
+21.79874998647114
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+418.57372087040034
+ 20
+21.79874998647114
+ 30
+0.0
+ 11
+418.7135947432742
+ 21
+21.318713217371855
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+418.7135947432742
+ 20
+21.318713217371855
+ 30
+0.0
+ 11
+435.99951744492796
+ 21
+26.35551270882492
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+435.99951744492796
+ 20
+26.35551270882492
+ 30
+0.0
+ 11
+435.85964357205415
+ 21
+26.835549477924193
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+519.7143927726343
+ 20
+68.51846272727978
+ 30
+0.0
+ 11
+510.9619976362739
+ 21
+68.51846272727977
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+510.9619976362739
+ 20
+68.51846272727977
+ 30
+0.0
+ 11
+510.96199763627396
+ 21
+51.013672454559234
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+510.96199763627396
+ 20
+51.013672454559234
+ 30
+0.0
+ 11
+519.7143927726343
+ 21
+51.01367245455925
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+498.83580006809365
+ 20
+173.45507118181848
+ 30
+0.0
+ 11
+498.83580006809365
+ 21
+161.8641620909094
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+498.83580006809365
+ 20
+161.8641620909094
+ 30
+0.0
+ 11
+499.33580006809365
+ 21
+161.8641620909094
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+499.33580006809365
+ 20
+161.8641620909094
+ 30
+0.0
+ 11
+499.33580006809365
+ 21
+173.45507118181848
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+499.33580006809365
+ 20
+173.45507118181848
+ 30
+0.0
+ 11
+498.83580006809365
+ 21
+173.45507118181848
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+498.83580006809353
+ 20
+201.1823439090912
+ 30
+0.0
+ 11
+498.83580006809365
+ 21
+189.59143481818214
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+498.83580006809365
+ 20
+189.59143481818214
+ 30
+0.0
+ 11
+499.3358000680936
+ 21
+189.59143481818214
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+499.3358000680936
+ 20
+189.59143481818214
+ 30
+0.0
+ 11
+499.33580006809353
+ 21
+201.1823439090912
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+499.33580006809353
+ 20
+201.1823439090912
+ 30
+0.0
+ 11
+498.83580006809353
+ 21
+201.1823439090912
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+514.0858000680936
+ 20
+139.93234390909123
+ 30
+0.0
+ 11
+509.08580006809365
+ 21
+139.93234390909123
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+509.08580006809365
+ 20
+139.93234390909123
+ 30
+0.0
+ 11
+509.0858000680937
+ 21
+128.8414348181821
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+509.0858000680937
+ 20
+128.8414348181821
+ 30
+0.0
+ 11
+514.0858000680936
+ 21
+128.8414348181821
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+514.0858000680938
+ 20
+112.20507118181847
+ 30
+0.0
+ 11
+509.0858000680937
+ 21
+112.20507118181847
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+509.0858000680937
+ 20
+112.20507118181847
+ 30
+0.0
+ 11
+509.08580006809376
+ 21
+101.11416209090936
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+509.08580006809376
+ 20
+101.11416209090936
+ 30
+0.0
+ 11
+514.0858000680938
+ 21
+101.11416209090936
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+263.4572073635531
+ 20
+233.5280432727205
+ 30
+0.0
+ 11
+272.2096024999134
+ 21
+233.52804327272054
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+272.2096024999134
+ 20
+233.52804327272054
+ 30
+0.0
+ 11
+272.20960249991333
+ 21
+251.03283354544106
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+272.20960249991333
+ 20
+251.03283354544106
+ 30
+0.0
+ 11
+263.4572073635531
+ 21
+251.03283354544104
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+284.33580006809353
+ 20
+189.59143481818182
+ 30
+0.0
+ 11
+284.33580006809353
+ 21
+201.18234390909092
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+284.33580006809353
+ 20
+201.18234390909092
+ 30
+0.0
+ 11
+283.83580006809353
+ 21
+201.18234390909092
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+283.83580006809353
+ 20
+201.18234390909092
+ 30
+0.0
+ 11
+283.83580006809353
+ 21
+189.59143481818182
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+283.83580006809353
+ 20
+189.59143481818182
+ 30
+0.0
+ 11
+284.33580006809353
+ 21
+189.59143481818182
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+284.33580006809353
+ 20
+161.86416209090908
+ 30
+0.0
+ 11
+284.33580006809353
+ 21
+173.45507118181817
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+284.33580006809353
+ 20
+173.45507118181817
+ 30
+0.0
+ 11
+283.83580006809353
+ 21
+173.45507118181817
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+283.83580006809353
+ 20
+173.45507118181817
+ 30
+0.0
+ 11
+283.83580006809353
+ 21
+161.86416209090908
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+283.83580006809353
+ 20
+161.86416209090908
+ 30
+0.0
+ 11
+284.33580006809353
+ 21
+161.86416209090908
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+221.94717806890824
+ 20
+133.02325299999995
+ 30
+0.0
+ 11
+221.94717806890824
+ 21
+122.02325299999994
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+221.94717806890824
+ 20
+122.02325299999994
+ 30
+0.0
+ 11
+234.94717806890824
+ 21
+122.02325299999994
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+234.94717806890824
+ 20
+122.02325299999994
+ 30
+0.0
+ 11
+234.94717806890824
+ 21
+133.02325299999995
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+234.94717806890824
+ 20
+133.02325299999995
+ 30
+0.0
+ 11
+221.94717806890824
+ 21
+133.02325299999995
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+223.44717806890822
+ 20
+101.52325299999994
+ 30
+0.0
+ 11
+223.44717806890824
+ 21
+95.52325299999994
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+223.44717806890824
+ 20
+95.52325299999994
+ 30
+0.0
+ 11
+233.44717806890827
+ 21
+95.52325299999994
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+233.44717806890827
+ 20
+95.52325299999994
+ 30
+0.0
+ 11
+233.44717806890824
+ 21
+101.52325299999994
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+233.44717806890824
+ 20
+101.52325299999994
+ 30
+0.0
+ 11
+223.44717806890822
+ 21
+101.52325299999994
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+188.05855606972293
+ 20
+128.5914348181817
+ 30
+0.0
+ 11
+188.05855606972293
+ 21
+140.1823439090908
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+188.05855606972293
+ 20
+140.1823439090908
+ 30
+0.0
+ 11
+187.55855606972293
+ 21
+140.1823439090908
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+187.55855606972293
+ 20
+140.1823439090908
+ 30
+0.0
+ 11
+187.55855606972293
+ 21
+128.5914348181817
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+187.55855606972293
+ 20
+128.5914348181817
+ 30
+0.0
+ 11
+188.05855606972293
+ 21
+128.5914348181817
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+188.05855606972293
+ 20
+100.864162090909
+ 30
+0.0
+ 11
+188.05855606972293
+ 21
+112.45507118181808
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+188.05855606972293
+ 20
+112.45507118181808
+ 30
+0.0
+ 11
+187.55855606972293
+ 21
+112.45507118181808
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+187.55855606972293
+ 20
+112.45507118181808
+ 30
+0.0
+ 11
+187.55855606972293
+ 21
+100.864162090909
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+187.55855606972293
+ 20
+100.864162090909
+ 30
+0.0
+ 11
+188.05855606972293
+ 21
+100.864162090909
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+232.44717806890824
+ 20
+82.52325299999994
+ 30
+0.0
+ 11
+232.44717806890824
+ 21
+87.52325299999994
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+232.44717806890824
+ 20
+87.52325299999994
+ 30
+0.0
+ 11
+224.44717806890824
+ 21
+87.52325299999994
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+224.44717806890824
+ 20
+87.52325299999994
+ 30
+0.0
+ 11
+224.44717806890824
+ 21
+82.52325299999991
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+224.44717806890822
+ 20
+158.52325299999995
+ 30
+0.0
+ 11
+224.44717806890822
+ 21
+153.52325299999995
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+224.44717806890822
+ 20
+153.52325299999995
+ 30
+0.0
+ 11
+232.44717806890822
+ 21
+153.52325299999995
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+232.44717806890822
+ 20
+153.52325299999995
+ 30
+0.0
+ 11
+232.44717806890822
+ 21
+158.52325299999998
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+543.0905903408144
+ 20
+139.023253
+ 30
+0.0
+ 11
+604.0905903408143
+ 21
+139.023253
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+604.0905903408143
+ 20
+139.023253
+ 30
+0.0
+ 11
+604.0905903408143
+ 21
+163.02325300000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+604.0905903408143
+ 20
+163.02325300000004
+ 30
+0.0
+ 11
+543.0905903408144
+ 21
+163.02325300000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+543.0905903408144
+ 20
+163.02325300000004
+ 30
+0.0
+ 11
+543.0905903408144
+ 21
+139.023253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+543.0905903408144
+ 20
+132.023253
+ 30
+0.0
+ 11
+543.0905903408144
+ 21
+139.023253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+579.0905903408144
+ 20
+132.023253
+ 30
+0.0
+ 11
+543.0905903408144
+ 21
+132.023253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+579.0905903408144
+ 20
+139.023253
+ 30
+0.0
+ 11
+579.0905903408144
+ 21
+132.023253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+611.0905903408143
+ 20
+139.023253
+ 30
+0.0
+ 11
+604.0905903408143
+ 21
+139.023253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+611.0905903408143
+ 20
+163.02325300000004
+ 30
+0.0
+ 11
+611.0905903408143
+ 21
+139.023253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+604.0905903408143
+ 20
+163.02325300000004
+ 30
+0.0
+ 11
+611.0905903408143
+ 21
+163.02325300000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+604.0905903408143
+ 20
+163.02325300000004
+ 30
+0.0
+ 11
+604.0905903408143
+ 21
+224.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+568.0905903408143
+ 20
+224.02325300000004
+ 30
+0.0
+ 11
+604.0905903408143
+ 21
+224.02325300000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+568.0905903408143
+ 20
+163.02325300000004
+ 30
+0.0
+ 11
+568.0905903408143
+ 21
+224.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+628.0905903408144
+ 20
+163.02325300000004
+ 30
+0.0
+ 11
+604.0905903408143
+ 21
+163.02325300000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+628.0905903408144
+ 20
+163.02325300000004
+ 30
+0.0
+ 11
+628.0905903408144
+ 21
+224.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+604.0905903408143
+ 20
+224.02325300000004
+ 30
+0.0
+ 11
+628.0905903408144
+ 21
+224.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+664.0905903408144
+ 20
+163.02325300000004
+ 30
+0.0
+ 11
+628.0905903408144
+ 21
+163.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+664.0905903408144
+ 20
+224.02325300000004
+ 30
+0.0
+ 11
+664.0905903408144
+ 21
+163.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+628.0905903408144
+ 20
+224.02325300000004
+ 30
+0.0
+ 11
+664.0905903408144
+ 21
+224.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+568.0905903408143
+ 20
+163.02325300000004
+ 30
+0.0
+ 11
+544.0905903408144
+ 21
+163.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+544.0905903408144
+ 20
+224.02325300000004
+ 30
+0.0
+ 11
+568.0905903408143
+ 21
+224.02325300000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+544.0905903408144
+ 20
+224.02325300000004
+ 30
+0.0
+ 11
+544.0905903408144
+ 21
+163.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+534.0905903408144
+ 20
+224.02325300000004
+ 30
+0.0
+ 11
+544.0905903408144
+ 21
+224.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+534.0905903408144
+ 20
+163.02325300000004
+ 30
+0.0
+ 11
+534.0905903408144
+ 21
+224.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+544.0905903408144
+ 20
+163.02325300000004
+ 30
+0.0
+ 11
+534.0905903408144
+ 21
+163.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+536.0905903408143
+ 20
+163.02325300000004
+ 30
+0.0
+ 11
+543.0905903408144
+ 21
+163.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+536.0905903408143
+ 20
+139.023253
+ 30
+0.0
+ 11
+536.0905903408143
+ 21
+163.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+543.0905903408144
+ 20
+139.023253
+ 30
+0.0
+ 11
+536.0905903408143
+ 21
+139.023253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+567.0905903408143
+ 20
+133.77325300000004
+ 30
+0.0
+ 11
+570.5905903408144
+ 21
+133.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+570.5905903408144
+ 20
+133.77325300000004
+ 30
+0.0
+ 11
+567.0905903408143
+ 21
+137.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+567.0905903408143
+ 20
+137.27325300000004
+ 30
+0.0
+ 11
+555.0905903408144
+ 21
+137.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+555.0905903408144
+ 20
+137.27325300000004
+ 30
+0.0
+ 11
+551.5905903408144
+ 21
+133.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+551.5905903408144
+ 20
+133.77325300000004
+ 30
+0.0
+ 11
+555.0905903408144
+ 21
+133.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+609.3405903408144
+ 20
+155.023253
+ 30
+0.0
+ 11
+605.8405903408143
+ 21
+155.023253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+605.8405903408143
+ 20
+155.023253
+ 30
+0.0
+ 11
+605.8405903408143
+ 21
+147.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+605.8405903408143
+ 20
+147.02325300000004
+ 30
+0.0
+ 11
+609.3405903408144
+ 21
+147.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+581.2048760551
+ 20
+217.77325300000004
+ 30
+0.0
+ 11
+581.2048760551
+ 21
+199.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+581.2048760551
+ 20
+199.77325300000004
+ 30
+0.0
+ 11
+601.7763046265287
+ 21
+199.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+601.7763046265287
+ 20
+199.77325300000004
+ 30
+0.0
+ 11
+601.7763046265287
+ 21
+217.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+601.7763046265287
+ 20
+217.77325300000004
+ 30
+0.0
+ 11
+581.2048760551
+ 21
+217.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+604.5905903408143
+ 20
+176.27325300000004
+ 30
+0.0
+ 11
+604.5905903408143
+ 21
+173.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+604.5905903408143
+ 20
+173.27325300000004
+ 30
+0.0
+ 11
+607.5905903408144
+ 21
+173.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+607.5905903408144
+ 20
+173.27325300000004
+ 30
+0.0
+ 11
+607.5905903408144
+ 21
+176.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+607.5905903408144
+ 20
+176.27325300000004
+ 30
+0.0
+ 11
+604.5905903408143
+ 21
+176.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+625.5905903408144
+ 20
+175.273253
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+174.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+625.5905903408144
+ 20
+174.27325300000004
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+174.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+626.5905903408144
+ 20
+174.27325300000004
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+175.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+626.5905903408144
+ 20
+175.273253
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+175.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+605.5905903408144
+ 20
+177.773253
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+176.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+605.5905903408144
+ 20
+176.77325300000004
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+176.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+606.5905903408144
+ 20
+176.77325300000004
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+177.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+606.5905903408144
+ 20
+177.773253
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+177.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+625.5905903408144
+ 20
+177.773253
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+176.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+625.5905903408144
+ 20
+176.77325300000004
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+176.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+626.5905903408144
+ 20
+176.77325300000004
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+177.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+626.5905903408144
+ 20
+177.773253
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+177.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+605.5905903408144
+ 20
+180.27325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+179.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+605.5905903408144
+ 20
+179.27325300000004
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+179.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+606.5905903408144
+ 20
+179.27325300000004
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+180.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+606.5905903408144
+ 20
+180.27325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+180.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+625.5905903408144
+ 20
+180.27325300000004
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+179.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+625.5905903408144
+ 20
+179.27325300000004
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+179.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+626.5905903408144
+ 20
+179.27325300000004
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+180.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+626.5905903408144
+ 20
+180.27325300000004
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+180.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+605.5905903408144
+ 20
+182.77325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+181.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+605.5905903408144
+ 20
+181.773253
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+181.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+606.5905903408144
+ 20
+181.773253
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+182.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+606.5905903408144
+ 20
+182.77325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+182.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+625.5905903408144
+ 20
+182.77325300000004
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+181.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+625.5905903408144
+ 20
+181.773253
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+181.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+626.5905903408144
+ 20
+181.773253
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+182.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+626.5905903408144
+ 20
+182.77325300000004
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+182.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+605.5905903408144
+ 20
+185.27325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+184.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+605.5905903408144
+ 20
+184.273253
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+184.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+606.5905903408144
+ 20
+184.273253
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+185.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+606.5905903408144
+ 20
+185.27325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+185.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+625.5905903408144
+ 20
+185.27325300000004
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+184.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+625.5905903408144
+ 20
+184.273253
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+184.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+626.5905903408144
+ 20
+184.273253
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+185.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+626.5905903408144
+ 20
+185.27325300000004
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+185.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+605.5905903408144
+ 20
+187.77325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+186.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+605.5905903408144
+ 20
+186.773253
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+186.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+606.5905903408144
+ 20
+186.773253
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+187.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+606.5905903408144
+ 20
+187.77325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+187.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+625.5905903408144
+ 20
+187.77325300000004
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+186.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+625.5905903408144
+ 20
+186.773253
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+186.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+626.5905903408144
+ 20
+186.773253
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+187.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+626.5905903408144
+ 20
+187.77325300000004
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+187.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+605.5905903408144
+ 20
+190.27325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+189.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+605.5905903408144
+ 20
+189.27325300000004
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+189.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+606.5905903408144
+ 20
+189.27325300000004
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+190.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+606.5905903408144
+ 20
+190.27325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+190.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+625.5905903408144
+ 20
+190.27325300000004
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+189.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+625.5905903408144
+ 20
+189.27325300000004
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+189.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+626.5905903408144
+ 20
+189.27325300000004
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+190.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+626.5905903408144
+ 20
+190.27325300000004
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+190.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+605.5905903408144
+ 20
+192.77325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+191.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+605.5905903408144
+ 20
+191.77325300000004
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+191.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+606.5905903408144
+ 20
+191.77325300000004
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+192.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+606.5905903408144
+ 20
+192.77325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+192.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+625.5905903408144
+ 20
+192.77325300000004
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+191.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+625.5905903408144
+ 20
+191.77325300000004
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+191.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+626.5905903408144
+ 20
+191.77325300000004
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+192.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+626.5905903408144
+ 20
+192.77325300000004
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+192.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+605.5905903408144
+ 20
+195.27325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+194.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+605.5905903408144
+ 20
+194.27325300000004
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+194.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+606.5905903408144
+ 20
+194.27325300000004
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+195.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+606.5905903408144
+ 20
+195.27325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+195.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+625.5905903408144
+ 20
+195.27325300000004
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+194.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+625.5905903408144
+ 20
+194.27325300000004
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+194.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+626.5905903408144
+ 20
+194.27325300000004
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+195.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+626.5905903408144
+ 20
+195.27325300000004
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+195.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+605.5905903408144
+ 20
+197.773253
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+196.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+605.5905903408144
+ 20
+196.77325300000004
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+196.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+606.5905903408144
+ 20
+196.77325300000004
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+197.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+606.5905903408144
+ 20
+197.773253
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+197.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+625.5905903408144
+ 20
+197.773253
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+196.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+625.5905903408144
+ 20
+196.77325300000004
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+196.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+626.5905903408144
+ 20
+196.77325300000004
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+197.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+626.5905903408144
+ 20
+197.773253
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+197.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+605.5905903408144
+ 20
+200.273253
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+199.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+605.5905903408144
+ 20
+199.27325300000004
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+199.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+606.5905903408144
+ 20
+199.27325300000004
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+200.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+606.5905903408144
+ 20
+200.273253
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+200.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+625.5905903408144
+ 20
+200.273253
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+199.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+625.5905903408144
+ 20
+199.27325300000004
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+199.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+626.5905903408144
+ 20
+199.27325300000004
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+200.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+626.5905903408144
+ 20
+200.273253
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+200.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+605.5905903408144
+ 20
+202.77325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+201.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+605.5905903408144
+ 20
+201.77325300000004
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+201.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+606.5905903408144
+ 20
+201.77325300000004
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+202.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+606.5905903408144
+ 20
+202.77325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+202.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+625.5905903408144
+ 20
+202.77325300000004
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+201.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+625.5905903408144
+ 20
+201.77325300000004
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+201.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+626.5905903408144
+ 20
+201.77325300000004
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+202.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+626.5905903408144
+ 20
+202.77325300000004
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+202.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+605.5905903408144
+ 20
+205.27325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+204.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+605.5905903408144
+ 20
+204.27325300000004
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+204.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+606.5905903408144
+ 20
+204.27325300000004
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+205.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+606.5905903408144
+ 20
+205.27325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+205.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+625.5905903408144
+ 20
+205.27325300000004
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+204.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+625.5905903408144
+ 20
+204.27325300000004
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+204.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+626.5905903408144
+ 20
+204.27325300000004
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+205.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+626.5905903408144
+ 20
+205.27325300000004
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+205.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+605.5905903408144
+ 20
+207.77325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+206.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+605.5905903408144
+ 20
+206.77325300000004
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+206.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+606.5905903408144
+ 20
+206.77325300000004
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+207.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+606.5905903408144
+ 20
+207.77325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+207.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+625.5905903408144
+ 20
+207.77325300000004
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+206.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+625.5905903408144
+ 20
+206.77325300000004
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+206.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+626.5905903408144
+ 20
+206.77325300000004
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+207.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+626.5905903408144
+ 20
+207.77325300000004
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+207.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+605.5905903408144
+ 20
+210.27325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+209.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+605.5905903408144
+ 20
+209.273253
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+209.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+606.5905903408144
+ 20
+209.273253
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+210.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+606.5905903408144
+ 20
+210.27325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+210.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+625.5905903408144
+ 20
+210.27325300000004
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+209.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+625.5905903408144
+ 20
+209.273253
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+209.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+626.5905903408144
+ 20
+209.273253
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+210.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+626.5905903408144
+ 20
+210.27325300000004
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+210.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+605.5905903408144
+ 20
+212.77325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+211.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+605.5905903408144
+ 20
+211.77325300000004
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+211.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+606.5905903408144
+ 20
+211.77325300000004
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+212.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+606.5905903408144
+ 20
+212.77325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+212.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+624.5905903408144
+ 20
+213.773253
+ 30
+0.0
+ 11
+624.5905903408144
+ 21
+210.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+624.5905903408144
+ 20
+210.77325300000004
+ 30
+0.0
+ 11
+627.5905903408144
+ 21
+210.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+627.5905903408144
+ 20
+210.77325300000004
+ 30
+0.0
+ 11
+627.5905903408144
+ 21
+213.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+627.5905903408144
+ 20
+213.773253
+ 30
+0.0
+ 11
+624.5905903408144
+ 21
+213.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+620.3405903408144
+ 20
+170.773253
+ 30
+0.0
+ 11
+611.8405903408144
+ 21
+170.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+611.8405903408144
+ 20
+170.773253
+ 30
+0.0
+ 11
+611.8405903408144
+ 21
+170.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+611.8405903408144
+ 20
+170.27325300000004
+ 30
+0.0
+ 11
+620.3405903408144
+ 21
+170.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+620.3405903408144
+ 20
+170.27325300000004
+ 30
+0.0
+ 11
+620.3405903408144
+ 21
+170.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+611.8405903408144
+ 20
+218.523253
+ 30
+0.0
+ 11
+620.3405903408144
+ 21
+218.523253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+620.3405903408144
+ 20
+218.523253
+ 30
+0.0
+ 11
+620.3405903408144
+ 21
+219.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+620.3405903408144
+ 20
+219.02325300000004
+ 30
+0.0
+ 11
+611.8405903408144
+ 21
+219.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+611.8405903408144
+ 20
+219.02325300000004
+ 30
+0.0
+ 11
+611.8405903408144
+ 21
+218.523253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+633.6448760551
+ 20
+219.54325300000002
+ 30
+0.0
+ 11
+633.6448760551
+ 21
+206.54325300000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+633.6448760551
+ 20
+206.54325300000002
+ 30
+0.0
+ 11
+654.2163046265287
+ 21
+206.54325300000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+654.2163046265287
+ 20
+206.54325300000002
+ 30
+0.0
+ 11
+654.2163046265287
+ 21
+219.54325300000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+654.2163046265287
+ 20
+219.54325300000002
+ 30
+0.0
+ 11
+633.6448760551
+ 21
+219.54325300000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+652.3405903408143
+ 20
+168.523253
+ 30
+0.0
+ 11
+639.8405903408144
+ 21
+168.523253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+639.8405903408144
+ 20
+168.523253
+ 30
+0.0
+ 11
+639.8405903408144
+ 21
+168.023253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+639.8405903408144
+ 20
+168.023253
+ 30
+0.0
+ 11
+652.3405903408143
+ 21
+168.023253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+652.3405903408143
+ 20
+168.023253
+ 30
+0.0
+ 11
+652.3405903408143
+ 21
+168.523253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+656.3405903408144
+ 20
+185.45507118181823
+ 30
+0.0
+ 11
+656.3405903408144
+ 21
+173.8641620909091
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+656.3405903408144
+ 20
+173.8641620909091
+ 30
+0.0
+ 11
+656.8405903408144
+ 21
+173.8641620909091
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+656.8405903408144
+ 20
+173.8641620909091
+ 30
+0.0
+ 11
+656.8405903408144
+ 21
+185.45507118181823
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+656.8405903408144
+ 20
+185.45507118181823
+ 30
+0.0
+ 11
+656.3405903408144
+ 21
+185.45507118181823
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+656.3405903408144
+ 20
+213.18234390909095
+ 30
+0.0
+ 11
+656.3405903408144
+ 21
+201.59143481818185
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+656.3405903408144
+ 20
+201.59143481818185
+ 30
+0.0
+ 11
+656.8405903408144
+ 21
+201.59143481818185
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+656.8405903408144
+ 20
+201.59143481818185
+ 30
+0.0
+ 11
+656.8405903408144
+ 21
+213.18234390909095
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+656.8405903408144
+ 20
+213.18234390909095
+ 30
+0.0
+ 11
+656.3405903408144
+ 21
+213.18234390909095
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+544.5905903408144
+ 20
+176.27325300000004
+ 30
+0.0
+ 11
+544.5905903408144
+ 21
+173.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+544.5905903408144
+ 20
+173.27325300000004
+ 30
+0.0
+ 11
+547.5905903408143
+ 21
+173.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+547.5905903408143
+ 20
+173.27325300000004
+ 30
+0.0
+ 11
+547.5905903408143
+ 21
+176.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+547.5905903408143
+ 20
+176.27325300000004
+ 30
+0.0
+ 11
+544.5905903408144
+ 21
+176.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+565.5905903408143
+ 20
+175.273253
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+174.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+565.5905903408143
+ 20
+174.27325300000004
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+174.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+566.5905903408143
+ 20
+174.27325300000004
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+175.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+566.5905903408143
+ 20
+175.273253
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+175.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+545.5905903408144
+ 20
+177.773253
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+176.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+545.5905903408144
+ 20
+176.77325300000004
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+176.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+546.5905903408143
+ 20
+176.77325300000004
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+177.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+546.5905903408143
+ 20
+177.773253
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+177.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+565.5905903408143
+ 20
+177.773253
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+176.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+565.5905903408143
+ 20
+176.77325300000004
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+176.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+566.5905903408143
+ 20
+176.77325300000004
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+177.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+566.5905903408143
+ 20
+177.773253
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+177.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+545.5905903408144
+ 20
+180.27325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+179.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+545.5905903408144
+ 20
+179.27325300000004
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+179.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+546.5905903408143
+ 20
+179.27325300000004
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+180.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+546.5905903408143
+ 20
+180.27325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+180.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+565.5905903408143
+ 20
+180.27325300000004
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+179.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+565.5905903408143
+ 20
+179.27325300000004
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+179.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+566.5905903408143
+ 20
+179.27325300000004
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+180.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+566.5905903408143
+ 20
+180.27325300000004
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+180.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+545.5905903408144
+ 20
+182.77325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+181.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+545.5905903408144
+ 20
+181.773253
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+181.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+546.5905903408143
+ 20
+181.773253
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+182.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+546.5905903408143
+ 20
+182.77325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+182.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+565.5905903408143
+ 20
+182.77325300000004
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+181.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+565.5905903408143
+ 20
+181.773253
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+181.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+566.5905903408143
+ 20
+181.773253
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+182.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+566.5905903408143
+ 20
+182.77325300000004
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+182.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+545.5905903408144
+ 20
+185.27325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+184.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+545.5905903408144
+ 20
+184.273253
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+184.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+546.5905903408143
+ 20
+184.273253
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+185.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+546.5905903408143
+ 20
+185.27325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+185.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+565.5905903408143
+ 20
+185.27325300000004
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+184.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+565.5905903408143
+ 20
+184.273253
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+184.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+566.5905903408143
+ 20
+184.273253
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+185.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+566.5905903408143
+ 20
+185.27325300000004
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+185.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+545.5905903408144
+ 20
+187.77325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+186.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+545.5905903408144
+ 20
+186.773253
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+186.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+546.5905903408143
+ 20
+186.773253
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+187.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+546.5905903408143
+ 20
+187.77325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+187.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+565.5905903408143
+ 20
+187.77325300000004
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+186.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+565.5905903408143
+ 20
+186.773253
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+186.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+566.5905903408143
+ 20
+186.773253
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+187.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+566.5905903408143
+ 20
+187.77325300000004
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+187.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+545.5905903408144
+ 20
+190.27325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+189.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+545.5905903408144
+ 20
+189.27325300000004
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+189.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+546.5905903408143
+ 20
+189.27325300000004
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+190.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+546.5905903408143
+ 20
+190.27325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+190.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+565.5905903408143
+ 20
+190.27325300000004
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+189.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+565.5905903408143
+ 20
+189.27325300000004
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+189.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+566.5905903408143
+ 20
+189.27325300000004
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+190.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+566.5905903408143
+ 20
+190.27325300000004
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+190.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+545.5905903408144
+ 20
+192.77325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+191.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+545.5905903408144
+ 20
+191.77325300000004
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+191.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+546.5905903408143
+ 20
+191.77325300000004
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+192.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+546.5905903408143
+ 20
+192.77325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+192.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+565.5905903408143
+ 20
+192.77325300000004
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+191.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+565.5905903408143
+ 20
+191.77325300000004
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+191.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+566.5905903408143
+ 20
+191.77325300000004
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+192.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+566.5905903408143
+ 20
+192.77325300000004
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+192.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+545.5905903408144
+ 20
+195.27325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+194.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+545.5905903408144
+ 20
+194.27325300000004
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+194.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+546.5905903408143
+ 20
+194.27325300000004
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+195.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+546.5905903408143
+ 20
+195.27325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+195.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+565.5905903408143
+ 20
+195.27325300000004
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+194.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+565.5905903408143
+ 20
+194.27325300000004
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+194.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+566.5905903408143
+ 20
+194.27325300000004
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+195.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+566.5905903408143
+ 20
+195.27325300000004
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+195.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+545.5905903408144
+ 20
+197.773253
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+196.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+545.5905903408144
+ 20
+196.77325300000004
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+196.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+546.5905903408143
+ 20
+196.77325300000004
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+197.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+546.5905903408143
+ 20
+197.773253
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+197.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+565.5905903408143
+ 20
+197.773253
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+196.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+565.5905903408143
+ 20
+196.77325300000004
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+196.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+566.5905903408143
+ 20
+196.77325300000004
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+197.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+566.5905903408143
+ 20
+197.773253
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+197.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+545.5905903408144
+ 20
+200.273253
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+199.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+545.5905903408144
+ 20
+199.27325300000004
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+199.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+546.5905903408143
+ 20
+199.27325300000004
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+200.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+546.5905903408143
+ 20
+200.273253
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+200.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+565.5905903408143
+ 20
+200.273253
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+199.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+565.5905903408143
+ 20
+199.27325300000004
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+199.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+566.5905903408143
+ 20
+199.27325300000004
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+200.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+566.5905903408143
+ 20
+200.273253
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+200.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+545.5905903408144
+ 20
+202.77325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+201.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+545.5905903408144
+ 20
+201.77325300000004
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+201.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+546.5905903408143
+ 20
+201.77325300000004
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+202.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+546.5905903408143
+ 20
+202.77325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+202.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+565.5905903408143
+ 20
+202.77325300000004
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+201.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+565.5905903408143
+ 20
+201.77325300000004
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+201.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+566.5905903408143
+ 20
+201.77325300000004
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+202.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+566.5905903408143
+ 20
+202.77325300000004
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+202.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+545.5905903408144
+ 20
+205.27325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+204.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+545.5905903408144
+ 20
+204.27325300000004
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+204.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+546.5905903408143
+ 20
+204.27325300000004
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+205.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+546.5905903408143
+ 20
+205.27325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+205.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+565.5905903408143
+ 20
+205.27325300000004
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+204.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+565.5905903408143
+ 20
+204.27325300000004
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+204.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+566.5905903408143
+ 20
+204.27325300000004
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+205.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+566.5905903408143
+ 20
+205.27325300000004
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+205.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+545.5905903408144
+ 20
+207.77325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+206.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+545.5905903408144
+ 20
+206.77325300000004
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+206.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+546.5905903408143
+ 20
+206.77325300000004
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+207.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+546.5905903408143
+ 20
+207.77325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+207.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+565.5905903408143
+ 20
+207.77325300000004
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+206.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+565.5905903408143
+ 20
+206.77325300000004
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+206.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+566.5905903408143
+ 20
+206.77325300000004
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+207.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+566.5905903408143
+ 20
+207.77325300000004
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+207.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+545.5905903408144
+ 20
+210.27325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+209.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+545.5905903408144
+ 20
+209.273253
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+209.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+546.5905903408143
+ 20
+209.273253
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+210.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+546.5905903408143
+ 20
+210.27325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+210.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+565.5905903408143
+ 20
+210.27325300000004
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+209.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+565.5905903408143
+ 20
+209.273253
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+209.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+566.5905903408143
+ 20
+209.273253
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+210.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+566.5905903408143
+ 20
+210.27325300000004
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+210.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+545.5905903408144
+ 20
+212.77325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+211.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+545.5905903408144
+ 20
+211.77325300000004
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+211.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+546.5905903408143
+ 20
+211.77325300000004
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+212.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+546.5905903408143
+ 20
+212.77325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+212.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+564.5905903408143
+ 20
+213.773253
+ 30
+0.0
+ 11
+564.5905903408143
+ 21
+210.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+564.5905903408143
+ 20
+210.77325300000004
+ 30
+0.0
+ 11
+567.5905903408143
+ 21
+210.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+567.5905903408143
+ 20
+210.77325300000004
+ 30
+0.0
+ 11
+567.5905903408143
+ 21
+213.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+567.5905903408143
+ 20
+213.773253
+ 30
+0.0
+ 11
+564.5905903408143
+ 21
+213.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+560.3405903408143
+ 20
+170.773253
+ 30
+0.0
+ 11
+551.8405903408143
+ 21
+170.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+551.8405903408143
+ 20
+170.773253
+ 30
+0.0
+ 11
+551.8405903408143
+ 21
+170.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+551.8405903408143
+ 20
+170.27325300000004
+ 30
+0.0
+ 11
+560.3405903408143
+ 21
+170.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+560.3405903408143
+ 20
+170.27325300000004
+ 30
+0.0
+ 11
+560.3405903408143
+ 21
+170.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+551.8405903408143
+ 20
+218.523253
+ 30
+0.0
+ 11
+560.3405903408143
+ 21
+218.523253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+560.3405903408143
+ 20
+218.523253
+ 30
+0.0
+ 11
+560.3405903408143
+ 21
+219.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+560.3405903408143
+ 20
+219.02325300000004
+ 30
+0.0
+ 11
+551.8405903408143
+ 21
+219.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+551.8405903408143
+ 20
+219.02325300000004
+ 30
+0.0
+ 11
+551.8405903408143
+ 21
+218.523253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+536.5905903408143
+ 20
+174.1141620909091
+ 30
+0.0
+ 11
+541.5905903408144
+ 21
+174.1141620909091
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+541.5905903408144
+ 20
+174.1141620909091
+ 30
+0.0
+ 11
+541.5905903408144
+ 21
+185.20507118181823
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+541.5905903408144
+ 20
+185.20507118181823
+ 30
+0.0
+ 11
+536.5905903408143
+ 21
+185.20507118181823
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+536.5905903408143
+ 20
+201.84143481818185
+ 30
+0.0
+ 11
+541.5905903408144
+ 21
+201.84143481818185
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+541.5905903408144
+ 20
+201.84143481818185
+ 30
+0.0
+ 11
+541.5905903408144
+ 21
+212.93234390909092
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+541.5905903408144
+ 20
+212.93234390909092
+ 30
+0.0
+ 11
+536.5905903408143
+ 21
+212.93234390909092
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+537.8405903408144
+ 20
+147.02325300000004
+ 30
+0.0
+ 11
+541.3405903408144
+ 21
+147.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+541.3405903408144
+ 20
+147.02325300000004
+ 30
+0.0
+ 11
+541.3405903408144
+ 21
+155.023253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+541.3405903408144
+ 20
+155.023253
+ 30
+0.0
+ 11
+537.8405903408144
+ 21
+155.023253
+ 31
+0.0
+  0
+ENDSEC
+  0
+EOF
diff --git a/rocolib/builders/output/BoatWithStackBattery/graph-autofold-graph.dxf b/rocolib/builders/output/BoatWithStackBattery/graph-autofold-graph.dxf
new file mode 100644
index 0000000000000000000000000000000000000000..9df8a03cf77df3eba706f4414c0441a384c2af40
--- /dev/null
+++ b/rocolib/builders/output/BoatWithStackBattery/graph-autofold-graph.dxf
@@ -0,0 +1,10658 @@
+  0
+SECTION
+  2
+HEADER
+  9
+$ACADVER
+  1
+AC1009
+  9
+$INSBASE
+ 10
+0.0
+ 20
+0.0
+ 30
+0.0
+  9
+$EXTMIN
+ 10
+0.0
+ 20
+0.0
+ 30
+0.0
+  9
+$EXTMAX
+ 10
+100.0
+ 20
+100.0
+ 30
+0.0
+  9
+$UNITMODE
+ 70
+0
+  9
+$AUNITS
+ 70
+0
+  9
+$ANGBASE
+ 50
+0.0
+  9
+$ANGDIR
+ 70
+0
+  0
+ENDSEC
+  0
+SECTION
+  2
+TABLES
+  0
+TABLE
+  2
+LTYPE
+ 70
+20
+  0
+LTYPE
+  2
+CONTINUOUS
+ 70
+0
+  3
+Solid
+ 72
+65
+ 73
+0
+ 40
+0.0
+  0
+LTYPE
+  2
+CENTER
+ 70
+0
+  3
+Center ____ _ ____ _ ____ _ ____ _ ____ _ ____
+ 72
+65
+ 73
+4
+ 40
+2.0
+ 49
+1.25
+ 49
+-0.25
+ 49
+0.25
+ 49
+-0.25
+  0
+LTYPE
+  2
+CENTERX2
+ 70
+0
+  3
+Center (2x) ________  __  ________  __  ________
+ 72
+65
+ 73
+4
+ 40
+3.5
+ 49
+2.5
+ 49
+-0.25
+ 49
+0.5
+ 49
+-0.25
+  0
+LTYPE
+  2
+CENTER2
+ 70
+0
+  3
+Center (.5x) ____ _ ____ _ ____ _ ____ _ ____
+ 72
+65
+ 73
+4
+ 40
+1.0
+ 49
+0.625
+ 49
+-0.125
+ 49
+0.125
+ 49
+-0.125
+  0
+LTYPE
+  2
+DASHED
+ 70
+0
+  3
+Dashed __ __ __ __ __ __ __ __ __ __ __ __ __ _
+ 72
+65
+ 73
+2
+ 40
+0.6
+ 49
+0.5
+ 49
+-0.1
+  0
+LTYPE
+  2
+DASHEDX2
+ 70
+0
+  3
+Dashed (2x) ____  ____  ____  ____  ____  ____
+ 72
+65
+ 73
+2
+ 40
+1.2
+ 49
+1.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DASHED2
+ 70
+0
+  3
+Dashed (.5x) _ _ _ _ _ _ _ _ _ _ _ _ _ _
+ 72
+65
+ 73
+2
+ 40
+0.3
+ 49
+0.25
+ 49
+-0.05
+  0
+LTYPE
+  2
+PHANTOM
+ 70
+0
+  3
+Phantom ______  __  __  ______  __  __  ______
+ 72
+65
+ 73
+6
+ 40
+2.5
+ 49
+1.25
+ 49
+-0.25
+ 49
+0.25
+ 49
+-0.25
+ 49
+0.25
+ 49
+-0.25
+  0
+LTYPE
+  2
+PHANTOMX2
+ 70
+0
+  3
+Phantom (2x)____________    ____    ____    ____________
+ 72
+65
+ 73
+6
+ 40
+4.25
+ 49
+2.5
+ 49
+-0.25
+ 49
+0.5
+ 49
+-0.25
+ 49
+0.5
+ 49
+-0.25
+  0
+LTYPE
+  2
+PHANTOM2
+ 70
+0
+  3
+Phantom (.5x) ___ _ _ ___ _ _ ___ _ _ ___ _ _ ___
+ 72
+65
+ 73
+6
+ 40
+1.25
+ 49
+0.625
+ 49
+-0.125
+ 49
+0.125
+ 49
+-0.125
+ 49
+0.125
+ 49
+-0.125
+  0
+LTYPE
+  2
+DASHDOT
+ 70
+0
+  3
+Dash dot __ . __ . __ . __ . __ . __ . __ . __
+ 72
+65
+ 73
+4
+ 40
+1.4
+ 49
+1.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DASHDOTX2
+ 70
+0
+  3
+Dash dot (2x) ____  .  ____  .  ____  .  ____
+ 72
+65
+ 73
+4
+ 40
+2.4
+ 49
+2.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DASHDOT2
+ 70
+0
+  3
+Dash dot (.5x) _ . _ . _ . _ . _ . _ . _ . _
+ 72
+65
+ 73
+4
+ 40
+0.7
+ 49
+0.5
+ 49
+-0.1
+ 49
+0.0
+ 49
+-0.1
+  0
+LTYPE
+  2
+DOT
+ 70
+0
+  3
+Dot .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .
+ 72
+65
+ 73
+2
+ 40
+0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DOTX2
+ 70
+0
+  3
+Dot (2x) .    .    .    .    .    .    .    . 
+ 72
+65
+ 73
+2
+ 40
+0.4
+ 49
+0.0
+ 49
+-0.4
+  0
+LTYPE
+  2
+DOT2
+ 70
+0
+  3
+Dot (.5) . . . . . . . . . . . . . . . . . . . 
+ 72
+65
+ 73
+2
+ 40
+0.1
+ 49
+0.0
+ 49
+-0.1
+  0
+LTYPE
+  2
+DIVIDE
+ 70
+0
+  3
+Divide __ . . __ . . __ . . __ . . __ . . __
+ 72
+65
+ 73
+6
+ 40
+1.6
+ 49
+1.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DIVIDEX2
+ 70
+0
+  3
+Divide (2x) ____  . .  ____  . .  ____  . .  ____
+ 72
+65
+ 73
+6
+ 40
+2.6
+ 49
+2.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DIVIDE2
+ 70
+0
+  3
+Divide(.5x) _ . _ . _ . _ . _ . _ . _ . _
+ 72
+65
+ 73
+6
+ 40
+0.8
+ 49
+0.5
+ 49
+-0.1
+ 49
+0.0
+ 49
+-0.1
+ 49
+0.0
+ 49
+-0.1
+  0
+LTYPE
+  2
+DOTTED
+ 70
+0
+  3
+
+ 72
+65
+ 73
+2
+ 40
+1.0
+ 49
+0.0
+ 49
+-1.0
+  0
+ENDTAB
+  0
+TABLE
+  2
+LAYER
+ 70
+5
+  0
+LAYER
+  2
+DIMENSIONS
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+TABLEBACKGROUND
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+TABLECONTENT
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+TABLEGRID
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+VIEWPORTS
+ 70
+0
+ 62
+7
+  6
+CONTINUOUS
+  0
+ENDTAB
+  0
+TABLE
+  2
+STYLE
+ 70
+12
+  0
+STYLE
+  2
+STANDARD
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+arial.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+arial.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL_BOLD
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+arialbd.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+ariali.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL_BOLD_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+arialbi.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL_BLACK
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+ariblk.ttf
+  4
+
+  0
+STYLE
+  2
+ISOCPEUR
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+isocpeur.ttf
+  4
+
+  0
+STYLE
+  2
+ISOCPEUR_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+isocpeui.ttf
+  4
+
+  0
+STYLE
+  2
+TIMES
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+times.ttf
+  4
+
+  0
+STYLE
+  2
+TIMES_BOLD
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+timesbd.ttf
+  4
+
+  0
+STYLE
+  2
+TIMES_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+timesi.ttf
+  4
+
+  0
+STYLE
+  2
+TIMES_BOLD_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+timesbi.ttf
+  4
+
+  0
+ENDTAB
+  0
+TABLE
+  2
+VIEW
+ 70
+0
+  0
+ENDTAB
+  0
+TABLE
+  2
+APPID
+ 70
+1
+  0
+APPID
+  2
+DXFWRITE
+ 70
+0
+  0
+ENDTAB
+  0
+TABLE
+  2
+VPORT
+ 70
+0
+  0
+ENDTAB
+  0
+TABLE
+  2
+UCS
+ 70
+0
+  0
+ENDTAB
+  0
+ENDSEC
+  0
+SECTION
+  2
+BLOCKS
+  0
+ENDSEC
+  0
+SECTION
+  2
+ENTITIES
+  0
+VIEWPORT
+  8
+VIEWPORTS
+ 67
+1
+ 10
+0.0
+ 20
+0.0
+ 30
+0.0
+ 40
+1.0
+ 41
+1.0
+ 68
+1
+ 69
+1
+1001
+ACAD
+1000
+MVIEW
+1002
+{
+1070
+16
+1010
+0.0
+1020
+0.0
+1030
+0.0
+1010
+0.0
+1020
+0.0
+1030
+0.0
+1040
+0.0
+1040
+1.0
+1040
+0.0
+1040
+0.0
+1040
+50.0
+1040
+0.0
+1040
+0.0
+1070
+0
+1070
+100
+1070
+1
+1070
+3
+1070
+0
+1070
+0
+1070
+0
+1070
+0
+1040
+0.0
+1040
+0.0
+1040
+0.0
+1040
+0.1
+1040
+0.1
+1040
+0.1
+1040
+0.1
+1070
+0
+1002
+{
+1002
+}
+1002
+}
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+160.30855606972293
+ 20
+120.52325300000003
+ 30
+0.0
+ 11
+98.65427803486146
+ 21
+120.52325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+98.65427803486146
+ 20
+181.52325300000004
+ 30
+0.0
+ 11
+160.30855606972293
+ 21
+181.52325300000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+98.65427803486146
+ 20
+181.52325300000004
+ 30
+0.0
+ 11
+98.65427803486146
+ 21
+120.52325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+170.30855606972293
+ 20
+120.52325300000003
+ 30
+0.0
+ 11
+160.30855606972293
+ 21
+120.52325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+170.30855606972293
+ 20
+181.52325300000004
+ 30
+0.0
+ 11
+170.30855606972293
+ 21
+120.52325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+160.30855606972293
+ 20
+181.52325300000004
+ 30
+0.0
+ 11
+170.30855606972293
+ 21
+181.52325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+71.65427803486145
+ 20
+181.52325300000004
+ 30
+0.0
+ 11
+98.65427803486146
+ 21
+181.52325300000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+71.65427803486145
+ 20
+120.52325300000003
+ 30
+0.0
+ 11
+71.65427803486145
+ 21
+181.52325300000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+98.65427803486146
+ 20
+120.52325300000003
+ 30
+0.0
+ 11
+71.65427803486145
+ 21
+120.52325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+10.000000000000002
+ 20
+181.52325300000004
+ 30
+0.0
+ 11
+71.65427803486145
+ 21
+181.52325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+71.65427803486145
+ 20
+120.52325300000003
+ 30
+0.0
+ 11
+10.000000000000002
+ 21
+120.52325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+181.52325300000004
+ 30
+0.0
+ 11
+10.000000000000002
+ 21
+181.52325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+120.52325300000003
+ 30
+0.0
+ 11
+0.0
+ 21
+181.52325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+10.000000000000002
+ 20
+120.52325300000003
+ 30
+0.0
+ 11
+0.0
+ 21
+120.52325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+98.65427803486146
+ 20
+120.52325300000003
+ 30
+0.0
+ 11
+98.65427803486146
+ 21
+103.52325300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+71.65427803486145
+ 20
+103.52325300000001
+ 30
+0.0
+ 11
+71.65427803486145
+ 21
+120.52325300000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+98.65427803486146
+ 20
+103.52325300000001
+ 30
+0.0
+ 11
+71.65427803486145
+ 21
+103.52325300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+98.65427803486146
+ 20
+103.52325300000001
+ 30
+0.0
+ 11
+98.65427803486146
+ 21
+42.52325300000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+71.65427803486145
+ 20
+42.52325300000002
+ 30
+0.0
+ 11
+71.65427803486145
+ 21
+103.52325300000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+98.65427803486146
+ 20
+42.52325300000002
+ 30
+0.0
+ 11
+71.65427803486145
+ 21
+42.52325300000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+98.65427803486146
+ 20
+42.52325300000002
+ 30
+0.0
+ 11
+98.65427803486146
+ 21
+25.523253000000015
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+71.65427803486145
+ 20
+25.523253000000015
+ 30
+0.0
+ 11
+71.65427803486145
+ 21
+42.52325300000002
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+71.65427803486145
+ 20
+25.523253000000015
+ 30
+0.0
+ 11
+98.65427803486146
+ 21
+25.523253000000015
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+71.65427803486145
+ 20
+15.523253000000013
+ 30
+0.0
+ 11
+71.65427803486145
+ 21
+25.523253000000015
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+98.65427803486146
+ 20
+15.523253000000013
+ 30
+0.0
+ 11
+71.65427803486145
+ 21
+15.523253000000013
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+98.65427803486146
+ 20
+25.523253000000015
+ 30
+0.0
+ 11
+98.65427803486146
+ 21
+15.523253000000013
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+167.80855606972293
+ 20
+170.43234390909095
+ 30
+0.0
+ 11
+162.80855606972293
+ 21
+170.43234390909095
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+162.80855606972293
+ 20
+170.43234390909095
+ 30
+0.0
+ 11
+162.80855606972293
+ 21
+159.34143481818182
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+162.80855606972293
+ 20
+159.34143481818182
+ 30
+0.0
+ 11
+167.80855606972293
+ 21
+159.34143481818182
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+167.80855606972293
+ 20
+142.7050711818182
+ 30
+0.0
+ 11
+162.80855606972293
+ 21
+142.7050711818182
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+162.80855606972293
+ 20
+142.7050711818182
+ 30
+0.0
+ 11
+162.80855606972293
+ 21
+131.61416209090913
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+162.80855606972293
+ 20
+131.61416209090913
+ 30
+0.0
+ 11
+167.80855606972293
+ 21
+131.61416209090913
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+94.15427803486146
+ 20
+118.02325300000003
+ 30
+0.0
+ 11
+94.15427803486146
+ 21
+124.02325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+94.15427803486146
+ 20
+124.02325300000003
+ 30
+0.0
+ 11
+76.15427803486145
+ 21
+124.02325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+76.15427803486145
+ 20
+124.02325300000003
+ 30
+0.0
+ 11
+76.15427803486145
+ 21
+118.02325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+76.15427803486145
+ 20
+118.02325300000003
+ 30
+0.0
+ 11
+94.15427803486146
+ 21
+118.02325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+80.40427803486146
+ 20
+173.77325300000004
+ 30
+0.0
+ 11
+89.90427803486145
+ 21
+173.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+89.90427803486145
+ 20
+173.77325300000004
+ 30
+0.0
+ 11
+89.90427803486145
+ 21
+174.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+89.90427803486145
+ 20
+174.27325300000004
+ 30
+0.0
+ 11
+80.40427803486146
+ 21
+174.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+80.40427803486146
+ 20
+174.27325300000004
+ 30
+0.0
+ 11
+80.40427803486146
+ 21
+173.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+2.5000000000000004
+ 20
+131.61416209090913
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+131.61416209090913
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+7.500000000000001
+ 20
+131.61416209090913
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+142.7050711818182
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+7.500000000000001
+ 20
+142.7050711818182
+ 30
+0.0
+ 11
+2.5000000000000004
+ 21
+142.7050711818182
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+2.5000000000000004
+ 20
+159.34143481818185
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+159.34143481818185
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+7.500000000000001
+ 20
+159.34143481818185
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+170.43234390909095
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+7.500000000000001
+ 20
+170.43234390909095
+ 30
+0.0
+ 11
+2.5000000000000004
+ 21
+170.43234390909095
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+89.65427803486146
+ 20
+18.023253000000015
+ 30
+0.0
+ 11
+89.65427803486146
+ 21
+23.02325300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+89.65427803486146
+ 20
+23.02325300000001
+ 30
+0.0
+ 11
+80.65427803486146
+ 21
+23.02325300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+80.65427803486146
+ 20
+23.02325300000001
+ 30
+0.0
+ 11
+80.65427803486146
+ 21
+18.023253000000015
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+436.5858000680936
+ 20
+86.02325300000003
+ 30
+0.0
+ 11
+436.5858000680936
+ 21
+216.023253
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+346.5858000680936
+ 20
+86.02325300000003
+ 30
+0.0
+ 11
+346.5858000680936
+ 21
+216.023253
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+391.5858000680936
+ 20
+86.02325300000003
+ 30
+0.0
+ 11
+346.5858000680936
+ 21
+86.02325300000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+436.5858000680936
+ 20
+86.02325300000003
+ 30
+0.0
+ 11
+391.5858000680936
+ 21
+86.02325300000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+391.5858000680936
+ 20
+3.2957373719000316e-07
+ 30
+0.0
+ 11
+346.5858000680936
+ 21
+86.02325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+377.4211156634208
+ 20
+4.127328470363296
+ 30
+0.0
+ 11
+327.0034578657572
+ 21
+18.818105326100866
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+391.5858000680936
+ 20
+3.295737656117126e-07
+ 30
+0.0
+ 11
+377.4211156634208
+ 21
+4.127328470363296
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+346.5858000680936
+ 20
+86.02325300000005
+ 30
+0.0
+ 11
+327.0034578657572
+ 21
+18.818105326100866
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+346.5858000680936
+ 20
+86.02325300000003
+ 30
+0.0
+ 11
+276.5858000680936
+ 21
+33.50888218183837
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+327.0034578657572
+ 20
+18.818105326100834
+ 30
+0.0
+ 11
+276.5858000680936
+ 21
+33.50888218183837
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+276.58580006809353
+ 20
+86.02325299999998
+ 30
+0.0
+ 11
+276.5858000680936
+ 21
+33.508882181838395
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+346.5858000680936
+ 20
+86.02325300000003
+ 30
+0.0
+ 11
+276.58580006809353
+ 21
+86.02325299999998
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+259.08100979537306
+ 20
+86.02325299999997
+ 30
+0.0
+ 11
+276.58580006809353
+ 21
+86.02325299999997
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+259.08100979537306
+ 20
+33.508882181838366
+ 30
+0.0
+ 11
+259.08100979537306
+ 21
+86.02325299999997
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+276.5858000680936
+ 20
+33.50888218183837
+ 30
+0.0
+ 11
+259.08100979537306
+ 21
+33.508882181838366
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+276.5858000680935
+ 20
+216.023253
+ 30
+0.0
+ 11
+346.58580006809353
+ 21
+216.02325300000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+276.5858000680934
+ 20
+268.53762381816165
+ 30
+0.0
+ 11
+346.58580006809353
+ 21
+216.02325300000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+276.5858000680934
+ 20
+268.53762381816165
+ 30
+0.0
+ 11
+276.5858000680935
+ 21
+216.023253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+276.58580006809336
+ 20
+268.53762381816165
+ 30
+0.0
+ 11
+327.003457865757
+ 21
+283.2284006738992
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+327.003457865757
+ 20
+283.2284006738992
+ 30
+0.0
+ 11
+346.58580006809353
+ 21
+216.02325300000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+391.5858000680934
+ 20
+302.04650567042637
+ 30
+0.0
+ 11
+346.58580006809353
+ 21
+216.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+377.42111566342055
+ 20
+297.9191775296369
+ 30
+0.0
+ 11
+391.5858000680934
+ 21
+302.04650567042637
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+327.003457865757
+ 20
+283.22840067389916
+ 30
+0.0
+ 11
+377.42111566342055
+ 21
+297.9191775296369
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+346.58580006809353
+ 20
+216.023253
+ 30
+0.0
+ 11
+391.58580006809353
+ 21
+216.02325300000007
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+391.58580006809353
+ 20
+216.02325300000012
+ 30
+0.0
+ 11
+436.58580006809353
+ 21
+216.02325300000018
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+391.5858000680934
+ 20
+302.04650567042637
+ 30
+0.0
+ 11
+436.58580006809353
+ 21
+216.02325300000018
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+405.7504844727662
+ 20
+297.9191775296369
+ 30
+0.0
+ 11
+456.1681422704299
+ 21
+283.2284006738994
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+391.5858000680934
+ 20
+302.04650567042637
+ 30
+0.0
+ 11
+405.7504844727662
+ 21
+297.9191775296369
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+436.58580006809353
+ 20
+216.02325300000018
+ 30
+0.0
+ 11
+456.1681422704299
+ 21
+283.2284006738994
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+436.58580006809353
+ 20
+216.02325300000018
+ 30
+0.0
+ 11
+506.5858000680934
+ 21
+268.5376238181619
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+456.1681422704298
+ 20
+283.2284006738994
+ 30
+0.0
+ 11
+506.5858000680934
+ 21
+268.5376238181619
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+506.58580006809353
+ 20
+216.02325300000032
+ 30
+0.0
+ 11
+506.5858000680934
+ 21
+268.5376238181619
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+436.58580006809353
+ 20
+216.02325300000018
+ 30
+0.0
+ 11
+506.58580006809353
+ 21
+216.02325300000032
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+524.0905903408142
+ 20
+216.02325300000035
+ 30
+0.0
+ 11
+506.58580006809353
+ 21
+216.02325300000032
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+524.090590340814
+ 20
+268.53762381816193
+ 30
+0.0
+ 11
+524.0905903408142
+ 21
+216.02325300000035
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+506.5858000680934
+ 20
+268.5376238181619
+ 30
+0.0
+ 11
+524.090590340814
+ 21
+268.53762381816193
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+506.58580006809376
+ 20
+86.02325300000027
+ 30
+0.0
+ 11
+436.58580006809376
+ 21
+86.02325300000012
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+506.5858000680939
+ 20
+33.50888218183868
+ 30
+0.0
+ 11
+436.58580006809376
+ 21
+86.02325300000012
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+506.5858000680939
+ 20
+33.50888218183868
+ 30
+0.0
+ 11
+506.58580006809376
+ 21
+86.02325300000027
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+506.5858000680939
+ 20
+33.50888218183864
+ 30
+0.0
+ 11
+456.16814227043034
+ 21
+18.818105326100948
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+456.16814227043034
+ 20
+18.818105326100948
+ 30
+0.0
+ 11
+436.58580006809376
+ 21
+86.02325300000011
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+391.585800068094
+ 20
+3.295737087682938e-07
+ 30
+0.0
+ 11
+436.58580006809376
+ 21
+86.02325300000012
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+405.7504844727668
+ 20
+4.127328470363296
+ 30
+0.0
+ 11
+391.585800068094
+ 21
+3.295737087682938e-07
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+456.16814227043034
+ 20
+18.81810532610098
+ 30
+0.0
+ 11
+405.7504844727668
+ 21
+4.127328470363296
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+524.0905903408144
+ 20
+33.50888218183872
+ 30
+0.0
+ 11
+506.5858000680939
+ 21
+33.508882181838686
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+524.0905903408144
+ 20
+86.02325300000031
+ 30
+0.0
+ 11
+524.0905903408144
+ 21
+33.50888218183872
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+506.58580006809376
+ 20
+86.02325300000028
+ 30
+0.0
+ 11
+524.0905903408144
+ 21
+86.02325300000031
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+506.58580006809376
+ 20
+90.02325300000027
+ 30
+0.0
+ 11
+506.58580006809376
+ 21
+86.02325300000028
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+506.58580006809353
+ 20
+212.02325300000032
+ 30
+0.0
+ 11
+506.58580006809365
+ 21
+151.0232530000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+506.58580006809353
+ 20
+216.02325300000032
+ 30
+0.0
+ 11
+506.58580006809353
+ 21
+212.02325300000032
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+506.58580006809353
+ 20
+216.02325300000032
+ 30
+0.0
+ 11
+506.58580006809353
+ 21
+216.02325300000032
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+506.58580006809376
+ 20
+86.02325300000028
+ 30
+0.0
+ 11
+506.58580006809376
+ 21
+86.02325300000028
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+516.5858000680937
+ 20
+90.02325300000031
+ 30
+0.0
+ 11
+506.58580006809376
+ 21
+90.02325300000027
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+516.5858000680937
+ 20
+151.0232530000003
+ 30
+0.0
+ 11
+516.5858000680937
+ 21
+90.02325300000031
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+506.58580006809365
+ 20
+151.0232530000003
+ 30
+0.0
+ 11
+516.5858000680937
+ 21
+151.0232530000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+259.0810097953729
+ 20
+268.53762381816165
+ 30
+0.0
+ 11
+276.5858000680934
+ 21
+268.53762381816165
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+259.0810097953729
+ 20
+216.02325299999998
+ 30
+0.0
+ 11
+259.0810097953729
+ 21
+268.53762381816165
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+276.5858000680935
+ 20
+216.023253
+ 30
+0.0
+ 11
+259.0810097953729
+ 21
+216.02325299999998
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+276.5858000680935
+ 20
+212.023253
+ 30
+0.0
+ 11
+276.5858000680935
+ 21
+216.023253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+276.5858000680935
+ 20
+151.02325299999998
+ 30
+0.0
+ 11
+276.5858000680935
+ 21
+212.023253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+276.58580006809353
+ 20
+86.02325299999997
+ 30
+0.0
+ 11
+276.58580006809353
+ 21
+90.02325299999995
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+276.58580006809353
+ 20
+86.02325299999997
+ 30
+0.0
+ 11
+276.58580006809353
+ 21
+86.02325299999997
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+276.5858000680935
+ 20
+216.023253
+ 30
+0.0
+ 11
+276.5858000680935
+ 21
+216.023253
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+240.44717806890822
+ 20
+151.02325299999998
+ 30
+0.0
+ 11
+240.44717806890824
+ 21
+90.02325299999994
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+276.58580006809353
+ 20
+90.02325299999995
+ 30
+0.0
+ 11
+240.44717806890824
+ 21
+90.02325299999994
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+240.44717806890822
+ 20
+151.02325299999998
+ 30
+0.0
+ 11
+276.5858000680935
+ 21
+151.02325299999998
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+216.44717806890824
+ 20
+90.02325299999993
+ 30
+0.0
+ 11
+216.44717806890822
+ 21
+151.02325299999995
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+216.44717806890824
+ 20
+90.02325299999993
+ 30
+0.0
+ 11
+240.44717806890827
+ 21
+90.02325299999994
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+180.3085560697229
+ 20
+151.0232529999999
+ 30
+0.0
+ 11
+216.44717806890822
+ 21
+151.02325299999995
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+180.30855606972295
+ 20
+90.02325299999991
+ 30
+0.0
+ 11
+180.3085560697229
+ 21
+151.0232529999999
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+216.44717806890824
+ 20
+90.02325299999993
+ 30
+0.0
+ 11
+180.30855606972295
+ 21
+90.02325299999991
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+216.44717806890824
+ 20
+80.02325299999991
+ 30
+0.0
+ 11
+216.44717806890824
+ 21
+90.02325299999994
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+240.44717806890824
+ 20
+80.02325299999993
+ 30
+0.0
+ 11
+216.44717806890824
+ 21
+80.02325299999991
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+240.44717806890824
+ 20
+90.02325299999994
+ 30
+0.0
+ 11
+240.44717806890824
+ 21
+80.02325299999993
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+240.44717806890822
+ 20
+161.02325299999998
+ 30
+0.0
+ 11
+240.44717806890822
+ 21
+151.02325299999998
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+216.44717806890822
+ 20
+161.02325299999995
+ 30
+0.0
+ 11
+240.44717806890822
+ 21
+161.02325299999998
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+216.44717806890822
+ 20
+151.02325299999995
+ 30
+0.0
+ 11
+216.44717806890822
+ 21
+161.02325299999995
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+364.5978792657871
+ 20
+21.798749986471112
+ 30
+0.0
+ 11
+347.31195656413337
+ 21
+26.83554947792412
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+347.31195656413337
+ 20
+26.83554947792412
+ 30
+0.0
+ 11
+347.17208269125956
+ 21
+26.355512708824836
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+347.17208269125956
+ 20
+26.355512708824836
+ 30
+0.0
+ 11
+364.4580053929133
+ 21
+21.318713217371826
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+364.4580053929133
+ 20
+21.318713217371826
+ 30
+0.0
+ 11
+364.5978792657871
+ 21
+21.798749986471112
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+263.45720736355315
+ 20
+51.01367245455889
+ 30
+0.0
+ 11
+272.2096024999135
+ 21
+51.0136724545589
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+272.2096024999135
+ 20
+51.0136724545589
+ 30
+0.0
+ 11
+272.20960249991344
+ 21
+68.51846272727943
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+272.20960249991344
+ 20
+68.51846272727943
+ 30
+0.0
+ 11
+263.45720736355315
+ 21
+68.51846272727941
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+347.3119565641332
+ 20
+275.210956522076
+ 30
+0.0
+ 11
+364.597879265787
+ 21
+280.247756013529
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+364.597879265787
+ 20
+280.247756013529
+ 30
+0.0
+ 11
+364.45800539291315
+ 21
+280.7277927826283
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+364.45800539291315
+ 20
+280.7277927826283
+ 30
+0.0
+ 11
+347.1720826912594
+ 21
+275.69099329117523
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+347.1720826912594
+ 20
+275.69099329117523
+ 30
+0.0
+ 11
+347.3119565641332
+ 21
+275.210956522076
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+418.5737208703999
+ 20
+280.2477560135291
+ 30
+0.0
+ 11
+435.8596435720537
+ 21
+275.2109565220761
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+435.8596435720537
+ 20
+275.2109565220761
+ 30
+0.0
+ 11
+435.9995174449275
+ 21
+275.69099329117535
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+435.9995174449275
+ 20
+275.69099329117535
+ 30
+0.0
+ 11
+418.7135947432737
+ 21
+280.72779278262834
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+418.7135947432737
+ 20
+280.72779278262834
+ 30
+0.0
+ 11
+418.5737208703999
+ 21
+280.2477560135291
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+519.7143927726339
+ 20
+251.0328335454414
+ 30
+0.0
+ 11
+510.9619976362736
+ 21
+251.03283354544138
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+510.9619976362736
+ 20
+251.03283354544138
+ 30
+0.0
+ 11
+510.9619976362736
+ 21
+233.52804327272085
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+510.9619976362736
+ 20
+233.52804327272085
+ 30
+0.0
+ 11
+519.7143927726339
+ 21
+233.52804327272088
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+435.85964357205415
+ 20
+26.835549477924193
+ 30
+0.0
+ 11
+418.57372087040034
+ 21
+21.79874998647114
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+418.57372087040034
+ 20
+21.79874998647114
+ 30
+0.0
+ 11
+418.7135947432742
+ 21
+21.318713217371855
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+418.7135947432742
+ 20
+21.318713217371855
+ 30
+0.0
+ 11
+435.99951744492796
+ 21
+26.35551270882492
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+435.99951744492796
+ 20
+26.35551270882492
+ 30
+0.0
+ 11
+435.85964357205415
+ 21
+26.835549477924193
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+519.7143927726343
+ 20
+68.51846272727978
+ 30
+0.0
+ 11
+510.9619976362739
+ 21
+68.51846272727977
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+510.9619976362739
+ 20
+68.51846272727977
+ 30
+0.0
+ 11
+510.96199763627396
+ 21
+51.013672454559234
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+510.96199763627396
+ 20
+51.013672454559234
+ 30
+0.0
+ 11
+519.7143927726343
+ 21
+51.01367245455925
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+498.83580006809365
+ 20
+173.45507118181848
+ 30
+0.0
+ 11
+498.83580006809365
+ 21
+161.8641620909094
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+498.83580006809365
+ 20
+161.8641620909094
+ 30
+0.0
+ 11
+499.33580006809365
+ 21
+161.8641620909094
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+499.33580006809365
+ 20
+161.8641620909094
+ 30
+0.0
+ 11
+499.33580006809365
+ 21
+173.45507118181848
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+499.33580006809365
+ 20
+173.45507118181848
+ 30
+0.0
+ 11
+498.83580006809365
+ 21
+173.45507118181848
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+498.83580006809353
+ 20
+201.1823439090912
+ 30
+0.0
+ 11
+498.83580006809365
+ 21
+189.59143481818214
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+498.83580006809365
+ 20
+189.59143481818214
+ 30
+0.0
+ 11
+499.3358000680936
+ 21
+189.59143481818214
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+499.3358000680936
+ 20
+189.59143481818214
+ 30
+0.0
+ 11
+499.33580006809353
+ 21
+201.1823439090912
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+499.33580006809353
+ 20
+201.1823439090912
+ 30
+0.0
+ 11
+498.83580006809353
+ 21
+201.1823439090912
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+514.0858000680936
+ 20
+139.93234390909123
+ 30
+0.0
+ 11
+509.08580006809365
+ 21
+139.93234390909123
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+509.08580006809365
+ 20
+139.93234390909123
+ 30
+0.0
+ 11
+509.0858000680937
+ 21
+128.8414348181821
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+509.0858000680937
+ 20
+128.8414348181821
+ 30
+0.0
+ 11
+514.0858000680936
+ 21
+128.8414348181821
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+514.0858000680938
+ 20
+112.20507118181847
+ 30
+0.0
+ 11
+509.0858000680937
+ 21
+112.20507118181847
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+509.0858000680937
+ 20
+112.20507118181847
+ 30
+0.0
+ 11
+509.08580006809376
+ 21
+101.11416209090936
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+509.08580006809376
+ 20
+101.11416209090936
+ 30
+0.0
+ 11
+514.0858000680938
+ 21
+101.11416209090936
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+263.4572073635531
+ 20
+233.5280432727205
+ 30
+0.0
+ 11
+272.2096024999134
+ 21
+233.52804327272054
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+272.2096024999134
+ 20
+233.52804327272054
+ 30
+0.0
+ 11
+272.20960249991333
+ 21
+251.03283354544106
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+272.20960249991333
+ 20
+251.03283354544106
+ 30
+0.0
+ 11
+263.4572073635531
+ 21
+251.03283354544104
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+284.33580006809353
+ 20
+189.59143481818182
+ 30
+0.0
+ 11
+284.33580006809353
+ 21
+201.18234390909092
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+284.33580006809353
+ 20
+201.18234390909092
+ 30
+0.0
+ 11
+283.83580006809353
+ 21
+201.18234390909092
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+283.83580006809353
+ 20
+201.18234390909092
+ 30
+0.0
+ 11
+283.83580006809353
+ 21
+189.59143481818182
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+283.83580006809353
+ 20
+189.59143481818182
+ 30
+0.0
+ 11
+284.33580006809353
+ 21
+189.59143481818182
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+284.33580006809353
+ 20
+161.86416209090908
+ 30
+0.0
+ 11
+284.33580006809353
+ 21
+173.45507118181817
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+284.33580006809353
+ 20
+173.45507118181817
+ 30
+0.0
+ 11
+283.83580006809353
+ 21
+173.45507118181817
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+283.83580006809353
+ 20
+173.45507118181817
+ 30
+0.0
+ 11
+283.83580006809353
+ 21
+161.86416209090908
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+283.83580006809353
+ 20
+161.86416209090908
+ 30
+0.0
+ 11
+284.33580006809353
+ 21
+161.86416209090908
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+221.94717806890824
+ 20
+133.02325299999995
+ 30
+0.0
+ 11
+221.94717806890824
+ 21
+122.02325299999994
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+221.94717806890824
+ 20
+122.02325299999994
+ 30
+0.0
+ 11
+234.94717806890824
+ 21
+122.02325299999994
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+234.94717806890824
+ 20
+122.02325299999994
+ 30
+0.0
+ 11
+234.94717806890824
+ 21
+133.02325299999995
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+234.94717806890824
+ 20
+133.02325299999995
+ 30
+0.0
+ 11
+221.94717806890824
+ 21
+133.02325299999995
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.44717806890822
+ 20
+101.52325299999994
+ 30
+0.0
+ 11
+223.44717806890824
+ 21
+95.52325299999994
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.44717806890824
+ 20
+95.52325299999994
+ 30
+0.0
+ 11
+233.44717806890827
+ 21
+95.52325299999994
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+233.44717806890827
+ 20
+95.52325299999994
+ 30
+0.0
+ 11
+233.44717806890824
+ 21
+101.52325299999994
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+233.44717806890824
+ 20
+101.52325299999994
+ 30
+0.0
+ 11
+223.44717806890822
+ 21
+101.52325299999994
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+188.05855606972293
+ 20
+128.5914348181817
+ 30
+0.0
+ 11
+188.05855606972293
+ 21
+140.1823439090908
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+188.05855606972293
+ 20
+140.1823439090908
+ 30
+0.0
+ 11
+187.55855606972293
+ 21
+140.1823439090908
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+187.55855606972293
+ 20
+140.1823439090908
+ 30
+0.0
+ 11
+187.55855606972293
+ 21
+128.5914348181817
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+187.55855606972293
+ 20
+128.5914348181817
+ 30
+0.0
+ 11
+188.05855606972293
+ 21
+128.5914348181817
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+188.05855606972293
+ 20
+100.864162090909
+ 30
+0.0
+ 11
+188.05855606972293
+ 21
+112.45507118181808
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+188.05855606972293
+ 20
+112.45507118181808
+ 30
+0.0
+ 11
+187.55855606972293
+ 21
+112.45507118181808
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+187.55855606972293
+ 20
+112.45507118181808
+ 30
+0.0
+ 11
+187.55855606972293
+ 21
+100.864162090909
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+187.55855606972293
+ 20
+100.864162090909
+ 30
+0.0
+ 11
+188.05855606972293
+ 21
+100.864162090909
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+232.44717806890824
+ 20
+82.52325299999994
+ 30
+0.0
+ 11
+232.44717806890824
+ 21
+87.52325299999994
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+232.44717806890824
+ 20
+87.52325299999994
+ 30
+0.0
+ 11
+224.44717806890824
+ 21
+87.52325299999994
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+224.44717806890824
+ 20
+87.52325299999994
+ 30
+0.0
+ 11
+224.44717806890824
+ 21
+82.52325299999991
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+224.44717806890822
+ 20
+158.52325299999995
+ 30
+0.0
+ 11
+224.44717806890822
+ 21
+153.52325299999995
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+224.44717806890822
+ 20
+153.52325299999995
+ 30
+0.0
+ 11
+232.44717806890822
+ 21
+153.52325299999995
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+232.44717806890822
+ 20
+153.52325299999995
+ 30
+0.0
+ 11
+232.44717806890822
+ 21
+158.52325299999998
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+543.0905903408144
+ 20
+139.023253
+ 30
+0.0
+ 11
+604.0905903408143
+ 21
+139.023253
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+604.0905903408143
+ 20
+139.023253
+ 30
+0.0
+ 11
+604.0905903408143
+ 21
+163.02325300000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+604.0905903408143
+ 20
+163.02325300000004
+ 30
+0.0
+ 11
+543.0905903408144
+ 21
+163.02325300000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+543.0905903408144
+ 20
+163.02325300000004
+ 30
+0.0
+ 11
+543.0905903408144
+ 21
+139.023253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+543.0905903408144
+ 20
+132.023253
+ 30
+0.0
+ 11
+543.0905903408144
+ 21
+139.023253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+579.0905903408144
+ 20
+132.023253
+ 30
+0.0
+ 11
+543.0905903408144
+ 21
+132.023253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+579.0905903408144
+ 20
+139.023253
+ 30
+0.0
+ 11
+579.0905903408144
+ 21
+132.023253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+611.0905903408143
+ 20
+139.023253
+ 30
+0.0
+ 11
+604.0905903408143
+ 21
+139.023253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+611.0905903408143
+ 20
+163.02325300000004
+ 30
+0.0
+ 11
+611.0905903408143
+ 21
+139.023253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+604.0905903408143
+ 20
+163.02325300000004
+ 30
+0.0
+ 11
+611.0905903408143
+ 21
+163.02325300000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+604.0905903408143
+ 20
+163.02325300000004
+ 30
+0.0
+ 11
+604.0905903408143
+ 21
+224.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+568.0905903408143
+ 20
+224.02325300000004
+ 30
+0.0
+ 11
+604.0905903408143
+ 21
+224.02325300000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+568.0905903408143
+ 20
+163.02325300000004
+ 30
+0.0
+ 11
+568.0905903408143
+ 21
+224.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+628.0905903408144
+ 20
+163.02325300000004
+ 30
+0.0
+ 11
+604.0905903408143
+ 21
+163.02325300000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+628.0905903408144
+ 20
+163.02325300000004
+ 30
+0.0
+ 11
+628.0905903408144
+ 21
+224.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+604.0905903408143
+ 20
+224.02325300000004
+ 30
+0.0
+ 11
+628.0905903408144
+ 21
+224.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+664.0905903408144
+ 20
+163.02325300000004
+ 30
+0.0
+ 11
+628.0905903408144
+ 21
+163.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+664.0905903408144
+ 20
+224.02325300000004
+ 30
+0.0
+ 11
+664.0905903408144
+ 21
+163.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+628.0905903408144
+ 20
+224.02325300000004
+ 30
+0.0
+ 11
+664.0905903408144
+ 21
+224.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+568.0905903408143
+ 20
+163.02325300000004
+ 30
+0.0
+ 11
+544.0905903408144
+ 21
+163.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+544.0905903408144
+ 20
+224.02325300000004
+ 30
+0.0
+ 11
+568.0905903408143
+ 21
+224.02325300000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+544.0905903408144
+ 20
+224.02325300000004
+ 30
+0.0
+ 11
+544.0905903408144
+ 21
+163.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+534.0905903408144
+ 20
+224.02325300000004
+ 30
+0.0
+ 11
+544.0905903408144
+ 21
+224.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+534.0905903408144
+ 20
+163.02325300000004
+ 30
+0.0
+ 11
+534.0905903408144
+ 21
+224.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+544.0905903408144
+ 20
+163.02325300000004
+ 30
+0.0
+ 11
+534.0905903408144
+ 21
+163.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+536.0905903408143
+ 20
+163.02325300000004
+ 30
+0.0
+ 11
+543.0905903408144
+ 21
+163.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+536.0905903408143
+ 20
+139.023253
+ 30
+0.0
+ 11
+536.0905903408143
+ 21
+163.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+543.0905903408144
+ 20
+139.023253
+ 30
+0.0
+ 11
+536.0905903408143
+ 21
+139.023253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+567.0905903408143
+ 20
+133.77325300000004
+ 30
+0.0
+ 11
+570.5905903408144
+ 21
+133.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+570.5905903408144
+ 20
+133.77325300000004
+ 30
+0.0
+ 11
+567.0905903408143
+ 21
+137.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+567.0905903408143
+ 20
+137.27325300000004
+ 30
+0.0
+ 11
+555.0905903408144
+ 21
+137.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+555.0905903408144
+ 20
+137.27325300000004
+ 30
+0.0
+ 11
+551.5905903408144
+ 21
+133.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+551.5905903408144
+ 20
+133.77325300000004
+ 30
+0.0
+ 11
+555.0905903408144
+ 21
+133.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+609.3405903408144
+ 20
+155.023253
+ 30
+0.0
+ 11
+605.8405903408143
+ 21
+155.023253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+605.8405903408143
+ 20
+155.023253
+ 30
+0.0
+ 11
+605.8405903408143
+ 21
+147.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+605.8405903408143
+ 20
+147.02325300000004
+ 30
+0.0
+ 11
+609.3405903408144
+ 21
+147.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+581.2048760551
+ 20
+217.77325300000004
+ 30
+0.0
+ 11
+581.2048760551
+ 21
+199.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+581.2048760551
+ 20
+199.77325300000004
+ 30
+0.0
+ 11
+601.7763046265287
+ 21
+199.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+601.7763046265287
+ 20
+199.77325300000004
+ 30
+0.0
+ 11
+601.7763046265287
+ 21
+217.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+601.7763046265287
+ 20
+217.77325300000004
+ 30
+0.0
+ 11
+581.2048760551
+ 21
+217.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+604.5905903408143
+ 20
+176.27325300000004
+ 30
+0.0
+ 11
+604.5905903408143
+ 21
+173.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+604.5905903408143
+ 20
+173.27325300000004
+ 30
+0.0
+ 11
+607.5905903408144
+ 21
+173.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+607.5905903408144
+ 20
+173.27325300000004
+ 30
+0.0
+ 11
+607.5905903408144
+ 21
+176.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+607.5905903408144
+ 20
+176.27325300000004
+ 30
+0.0
+ 11
+604.5905903408143
+ 21
+176.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+625.5905903408144
+ 20
+175.273253
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+174.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+625.5905903408144
+ 20
+174.27325300000004
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+174.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+626.5905903408144
+ 20
+174.27325300000004
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+175.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+626.5905903408144
+ 20
+175.273253
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+175.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+605.5905903408144
+ 20
+177.773253
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+176.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+605.5905903408144
+ 20
+176.77325300000004
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+176.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+606.5905903408144
+ 20
+176.77325300000004
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+177.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+606.5905903408144
+ 20
+177.773253
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+177.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+625.5905903408144
+ 20
+177.773253
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+176.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+625.5905903408144
+ 20
+176.77325300000004
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+176.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+626.5905903408144
+ 20
+176.77325300000004
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+177.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+626.5905903408144
+ 20
+177.773253
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+177.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+605.5905903408144
+ 20
+180.27325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+179.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+605.5905903408144
+ 20
+179.27325300000004
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+179.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+606.5905903408144
+ 20
+179.27325300000004
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+180.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+606.5905903408144
+ 20
+180.27325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+180.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+625.5905903408144
+ 20
+180.27325300000004
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+179.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+625.5905903408144
+ 20
+179.27325300000004
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+179.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+626.5905903408144
+ 20
+179.27325300000004
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+180.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+626.5905903408144
+ 20
+180.27325300000004
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+180.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+605.5905903408144
+ 20
+182.77325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+181.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+605.5905903408144
+ 20
+181.773253
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+181.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+606.5905903408144
+ 20
+181.773253
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+182.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+606.5905903408144
+ 20
+182.77325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+182.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+625.5905903408144
+ 20
+182.77325300000004
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+181.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+625.5905903408144
+ 20
+181.773253
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+181.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+626.5905903408144
+ 20
+181.773253
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+182.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+626.5905903408144
+ 20
+182.77325300000004
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+182.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+605.5905903408144
+ 20
+185.27325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+184.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+605.5905903408144
+ 20
+184.273253
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+184.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+606.5905903408144
+ 20
+184.273253
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+185.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+606.5905903408144
+ 20
+185.27325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+185.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+625.5905903408144
+ 20
+185.27325300000004
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+184.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+625.5905903408144
+ 20
+184.273253
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+184.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+626.5905903408144
+ 20
+184.273253
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+185.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+626.5905903408144
+ 20
+185.27325300000004
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+185.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+605.5905903408144
+ 20
+187.77325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+186.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+605.5905903408144
+ 20
+186.773253
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+186.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+606.5905903408144
+ 20
+186.773253
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+187.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+606.5905903408144
+ 20
+187.77325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+187.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+625.5905903408144
+ 20
+187.77325300000004
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+186.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+625.5905903408144
+ 20
+186.773253
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+186.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+626.5905903408144
+ 20
+186.773253
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+187.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+626.5905903408144
+ 20
+187.77325300000004
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+187.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+605.5905903408144
+ 20
+190.27325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+189.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+605.5905903408144
+ 20
+189.27325300000004
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+189.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+606.5905903408144
+ 20
+189.27325300000004
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+190.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+606.5905903408144
+ 20
+190.27325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+190.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+625.5905903408144
+ 20
+190.27325300000004
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+189.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+625.5905903408144
+ 20
+189.27325300000004
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+189.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+626.5905903408144
+ 20
+189.27325300000004
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+190.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+626.5905903408144
+ 20
+190.27325300000004
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+190.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+605.5905903408144
+ 20
+192.77325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+191.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+605.5905903408144
+ 20
+191.77325300000004
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+191.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+606.5905903408144
+ 20
+191.77325300000004
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+192.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+606.5905903408144
+ 20
+192.77325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+192.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+625.5905903408144
+ 20
+192.77325300000004
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+191.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+625.5905903408144
+ 20
+191.77325300000004
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+191.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+626.5905903408144
+ 20
+191.77325300000004
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+192.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+626.5905903408144
+ 20
+192.77325300000004
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+192.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+605.5905903408144
+ 20
+195.27325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+194.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+605.5905903408144
+ 20
+194.27325300000004
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+194.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+606.5905903408144
+ 20
+194.27325300000004
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+195.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+606.5905903408144
+ 20
+195.27325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+195.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+625.5905903408144
+ 20
+195.27325300000004
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+194.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+625.5905903408144
+ 20
+194.27325300000004
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+194.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+626.5905903408144
+ 20
+194.27325300000004
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+195.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+626.5905903408144
+ 20
+195.27325300000004
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+195.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+605.5905903408144
+ 20
+197.773253
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+196.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+605.5905903408144
+ 20
+196.77325300000004
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+196.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+606.5905903408144
+ 20
+196.77325300000004
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+197.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+606.5905903408144
+ 20
+197.773253
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+197.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+625.5905903408144
+ 20
+197.773253
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+196.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+625.5905903408144
+ 20
+196.77325300000004
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+196.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+626.5905903408144
+ 20
+196.77325300000004
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+197.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+626.5905903408144
+ 20
+197.773253
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+197.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+605.5905903408144
+ 20
+200.273253
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+199.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+605.5905903408144
+ 20
+199.27325300000004
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+199.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+606.5905903408144
+ 20
+199.27325300000004
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+200.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+606.5905903408144
+ 20
+200.273253
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+200.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+625.5905903408144
+ 20
+200.273253
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+199.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+625.5905903408144
+ 20
+199.27325300000004
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+199.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+626.5905903408144
+ 20
+199.27325300000004
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+200.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+626.5905903408144
+ 20
+200.273253
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+200.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+605.5905903408144
+ 20
+202.77325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+201.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+605.5905903408144
+ 20
+201.77325300000004
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+201.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+606.5905903408144
+ 20
+201.77325300000004
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+202.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+606.5905903408144
+ 20
+202.77325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+202.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+625.5905903408144
+ 20
+202.77325300000004
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+201.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+625.5905903408144
+ 20
+201.77325300000004
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+201.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+626.5905903408144
+ 20
+201.77325300000004
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+202.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+626.5905903408144
+ 20
+202.77325300000004
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+202.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+605.5905903408144
+ 20
+205.27325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+204.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+605.5905903408144
+ 20
+204.27325300000004
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+204.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+606.5905903408144
+ 20
+204.27325300000004
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+205.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+606.5905903408144
+ 20
+205.27325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+205.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+625.5905903408144
+ 20
+205.27325300000004
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+204.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+625.5905903408144
+ 20
+204.27325300000004
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+204.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+626.5905903408144
+ 20
+204.27325300000004
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+205.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+626.5905903408144
+ 20
+205.27325300000004
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+205.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+605.5905903408144
+ 20
+207.77325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+206.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+605.5905903408144
+ 20
+206.77325300000004
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+206.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+606.5905903408144
+ 20
+206.77325300000004
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+207.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+606.5905903408144
+ 20
+207.77325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+207.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+625.5905903408144
+ 20
+207.77325300000004
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+206.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+625.5905903408144
+ 20
+206.77325300000004
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+206.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+626.5905903408144
+ 20
+206.77325300000004
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+207.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+626.5905903408144
+ 20
+207.77325300000004
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+207.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+605.5905903408144
+ 20
+210.27325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+209.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+605.5905903408144
+ 20
+209.273253
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+209.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+606.5905903408144
+ 20
+209.273253
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+210.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+606.5905903408144
+ 20
+210.27325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+210.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+625.5905903408144
+ 20
+210.27325300000004
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+209.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+625.5905903408144
+ 20
+209.273253
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+209.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+626.5905903408144
+ 20
+209.273253
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+210.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+626.5905903408144
+ 20
+210.27325300000004
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+210.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+605.5905903408144
+ 20
+212.77325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+211.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+605.5905903408144
+ 20
+211.77325300000004
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+211.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+606.5905903408144
+ 20
+211.77325300000004
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+212.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+606.5905903408144
+ 20
+212.77325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+212.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+624.5905903408144
+ 20
+213.773253
+ 30
+0.0
+ 11
+624.5905903408144
+ 21
+210.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+624.5905903408144
+ 20
+210.77325300000004
+ 30
+0.0
+ 11
+627.5905903408144
+ 21
+210.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+627.5905903408144
+ 20
+210.77325300000004
+ 30
+0.0
+ 11
+627.5905903408144
+ 21
+213.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+627.5905903408144
+ 20
+213.773253
+ 30
+0.0
+ 11
+624.5905903408144
+ 21
+213.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+620.3405903408144
+ 20
+170.773253
+ 30
+0.0
+ 11
+611.8405903408144
+ 21
+170.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+611.8405903408144
+ 20
+170.773253
+ 30
+0.0
+ 11
+611.8405903408144
+ 21
+170.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+611.8405903408144
+ 20
+170.27325300000004
+ 30
+0.0
+ 11
+620.3405903408144
+ 21
+170.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+620.3405903408144
+ 20
+170.27325300000004
+ 30
+0.0
+ 11
+620.3405903408144
+ 21
+170.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+611.8405903408144
+ 20
+218.523253
+ 30
+0.0
+ 11
+620.3405903408144
+ 21
+218.523253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+620.3405903408144
+ 20
+218.523253
+ 30
+0.0
+ 11
+620.3405903408144
+ 21
+219.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+620.3405903408144
+ 20
+219.02325300000004
+ 30
+0.0
+ 11
+611.8405903408144
+ 21
+219.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+611.8405903408144
+ 20
+219.02325300000004
+ 30
+0.0
+ 11
+611.8405903408144
+ 21
+218.523253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+633.6448760551
+ 20
+219.54325300000002
+ 30
+0.0
+ 11
+633.6448760551
+ 21
+206.54325300000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+633.6448760551
+ 20
+206.54325300000002
+ 30
+0.0
+ 11
+654.2163046265287
+ 21
+206.54325300000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+654.2163046265287
+ 20
+206.54325300000002
+ 30
+0.0
+ 11
+654.2163046265287
+ 21
+219.54325300000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+654.2163046265287
+ 20
+219.54325300000002
+ 30
+0.0
+ 11
+633.6448760551
+ 21
+219.54325300000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+652.3405903408143
+ 20
+168.523253
+ 30
+0.0
+ 11
+639.8405903408144
+ 21
+168.523253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+639.8405903408144
+ 20
+168.523253
+ 30
+0.0
+ 11
+639.8405903408144
+ 21
+168.023253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+639.8405903408144
+ 20
+168.023253
+ 30
+0.0
+ 11
+652.3405903408143
+ 21
+168.023253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+652.3405903408143
+ 20
+168.023253
+ 30
+0.0
+ 11
+652.3405903408143
+ 21
+168.523253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+656.3405903408144
+ 20
+185.45507118181823
+ 30
+0.0
+ 11
+656.3405903408144
+ 21
+173.8641620909091
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+656.3405903408144
+ 20
+173.8641620909091
+ 30
+0.0
+ 11
+656.8405903408144
+ 21
+173.8641620909091
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+656.8405903408144
+ 20
+173.8641620909091
+ 30
+0.0
+ 11
+656.8405903408144
+ 21
+185.45507118181823
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+656.8405903408144
+ 20
+185.45507118181823
+ 30
+0.0
+ 11
+656.3405903408144
+ 21
+185.45507118181823
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+656.3405903408144
+ 20
+213.18234390909095
+ 30
+0.0
+ 11
+656.3405903408144
+ 21
+201.59143481818185
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+656.3405903408144
+ 20
+201.59143481818185
+ 30
+0.0
+ 11
+656.8405903408144
+ 21
+201.59143481818185
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+656.8405903408144
+ 20
+201.59143481818185
+ 30
+0.0
+ 11
+656.8405903408144
+ 21
+213.18234390909095
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+656.8405903408144
+ 20
+213.18234390909095
+ 30
+0.0
+ 11
+656.3405903408144
+ 21
+213.18234390909095
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+544.5905903408144
+ 20
+176.27325300000004
+ 30
+0.0
+ 11
+544.5905903408144
+ 21
+173.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+544.5905903408144
+ 20
+173.27325300000004
+ 30
+0.0
+ 11
+547.5905903408143
+ 21
+173.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+547.5905903408143
+ 20
+173.27325300000004
+ 30
+0.0
+ 11
+547.5905903408143
+ 21
+176.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+547.5905903408143
+ 20
+176.27325300000004
+ 30
+0.0
+ 11
+544.5905903408144
+ 21
+176.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.5905903408143
+ 20
+175.273253
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+174.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.5905903408143
+ 20
+174.27325300000004
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+174.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+566.5905903408143
+ 20
+174.27325300000004
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+175.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+566.5905903408143
+ 20
+175.273253
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+175.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+545.5905903408144
+ 20
+177.773253
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+176.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+545.5905903408144
+ 20
+176.77325300000004
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+176.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+546.5905903408143
+ 20
+176.77325300000004
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+177.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+546.5905903408143
+ 20
+177.773253
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+177.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.5905903408143
+ 20
+177.773253
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+176.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.5905903408143
+ 20
+176.77325300000004
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+176.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+566.5905903408143
+ 20
+176.77325300000004
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+177.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+566.5905903408143
+ 20
+177.773253
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+177.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+545.5905903408144
+ 20
+180.27325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+179.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+545.5905903408144
+ 20
+179.27325300000004
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+179.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+546.5905903408143
+ 20
+179.27325300000004
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+180.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+546.5905903408143
+ 20
+180.27325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+180.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.5905903408143
+ 20
+180.27325300000004
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+179.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.5905903408143
+ 20
+179.27325300000004
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+179.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+566.5905903408143
+ 20
+179.27325300000004
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+180.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+566.5905903408143
+ 20
+180.27325300000004
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+180.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+545.5905903408144
+ 20
+182.77325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+181.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+545.5905903408144
+ 20
+181.773253
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+181.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+546.5905903408143
+ 20
+181.773253
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+182.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+546.5905903408143
+ 20
+182.77325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+182.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.5905903408143
+ 20
+182.77325300000004
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+181.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.5905903408143
+ 20
+181.773253
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+181.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+566.5905903408143
+ 20
+181.773253
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+182.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+566.5905903408143
+ 20
+182.77325300000004
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+182.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+545.5905903408144
+ 20
+185.27325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+184.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+545.5905903408144
+ 20
+184.273253
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+184.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+546.5905903408143
+ 20
+184.273253
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+185.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+546.5905903408143
+ 20
+185.27325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+185.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.5905903408143
+ 20
+185.27325300000004
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+184.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.5905903408143
+ 20
+184.273253
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+184.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+566.5905903408143
+ 20
+184.273253
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+185.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+566.5905903408143
+ 20
+185.27325300000004
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+185.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+545.5905903408144
+ 20
+187.77325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+186.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+545.5905903408144
+ 20
+186.773253
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+186.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+546.5905903408143
+ 20
+186.773253
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+187.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+546.5905903408143
+ 20
+187.77325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+187.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.5905903408143
+ 20
+187.77325300000004
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+186.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.5905903408143
+ 20
+186.773253
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+186.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+566.5905903408143
+ 20
+186.773253
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+187.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+566.5905903408143
+ 20
+187.77325300000004
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+187.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+545.5905903408144
+ 20
+190.27325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+189.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+545.5905903408144
+ 20
+189.27325300000004
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+189.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+546.5905903408143
+ 20
+189.27325300000004
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+190.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+546.5905903408143
+ 20
+190.27325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+190.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.5905903408143
+ 20
+190.27325300000004
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+189.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.5905903408143
+ 20
+189.27325300000004
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+189.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+566.5905903408143
+ 20
+189.27325300000004
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+190.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+566.5905903408143
+ 20
+190.27325300000004
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+190.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+545.5905903408144
+ 20
+192.77325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+191.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+545.5905903408144
+ 20
+191.77325300000004
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+191.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+546.5905903408143
+ 20
+191.77325300000004
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+192.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+546.5905903408143
+ 20
+192.77325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+192.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.5905903408143
+ 20
+192.77325300000004
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+191.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.5905903408143
+ 20
+191.77325300000004
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+191.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+566.5905903408143
+ 20
+191.77325300000004
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+192.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+566.5905903408143
+ 20
+192.77325300000004
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+192.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+545.5905903408144
+ 20
+195.27325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+194.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+545.5905903408144
+ 20
+194.27325300000004
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+194.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+546.5905903408143
+ 20
+194.27325300000004
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+195.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+546.5905903408143
+ 20
+195.27325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+195.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.5905903408143
+ 20
+195.27325300000004
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+194.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.5905903408143
+ 20
+194.27325300000004
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+194.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+566.5905903408143
+ 20
+194.27325300000004
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+195.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+566.5905903408143
+ 20
+195.27325300000004
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+195.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+545.5905903408144
+ 20
+197.773253
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+196.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+545.5905903408144
+ 20
+196.77325300000004
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+196.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+546.5905903408143
+ 20
+196.77325300000004
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+197.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+546.5905903408143
+ 20
+197.773253
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+197.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.5905903408143
+ 20
+197.773253
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+196.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.5905903408143
+ 20
+196.77325300000004
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+196.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+566.5905903408143
+ 20
+196.77325300000004
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+197.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+566.5905903408143
+ 20
+197.773253
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+197.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+545.5905903408144
+ 20
+200.273253
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+199.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+545.5905903408144
+ 20
+199.27325300000004
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+199.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+546.5905903408143
+ 20
+199.27325300000004
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+200.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+546.5905903408143
+ 20
+200.273253
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+200.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.5905903408143
+ 20
+200.273253
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+199.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.5905903408143
+ 20
+199.27325300000004
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+199.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+566.5905903408143
+ 20
+199.27325300000004
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+200.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+566.5905903408143
+ 20
+200.273253
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+200.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+545.5905903408144
+ 20
+202.77325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+201.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+545.5905903408144
+ 20
+201.77325300000004
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+201.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+546.5905903408143
+ 20
+201.77325300000004
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+202.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+546.5905903408143
+ 20
+202.77325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+202.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.5905903408143
+ 20
+202.77325300000004
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+201.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.5905903408143
+ 20
+201.77325300000004
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+201.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+566.5905903408143
+ 20
+201.77325300000004
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+202.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+566.5905903408143
+ 20
+202.77325300000004
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+202.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+545.5905903408144
+ 20
+205.27325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+204.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+545.5905903408144
+ 20
+204.27325300000004
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+204.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+546.5905903408143
+ 20
+204.27325300000004
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+205.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+546.5905903408143
+ 20
+205.27325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+205.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.5905903408143
+ 20
+205.27325300000004
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+204.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.5905903408143
+ 20
+204.27325300000004
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+204.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+566.5905903408143
+ 20
+204.27325300000004
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+205.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+566.5905903408143
+ 20
+205.27325300000004
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+205.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+545.5905903408144
+ 20
+207.77325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+206.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+545.5905903408144
+ 20
+206.77325300000004
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+206.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+546.5905903408143
+ 20
+206.77325300000004
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+207.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+546.5905903408143
+ 20
+207.77325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+207.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.5905903408143
+ 20
+207.77325300000004
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+206.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.5905903408143
+ 20
+206.77325300000004
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+206.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+566.5905903408143
+ 20
+206.77325300000004
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+207.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+566.5905903408143
+ 20
+207.77325300000004
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+207.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+545.5905903408144
+ 20
+210.27325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+209.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+545.5905903408144
+ 20
+209.273253
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+209.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+546.5905903408143
+ 20
+209.273253
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+210.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+546.5905903408143
+ 20
+210.27325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+210.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.5905903408143
+ 20
+210.27325300000004
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+209.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.5905903408143
+ 20
+209.273253
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+209.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+566.5905903408143
+ 20
+209.273253
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+210.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+566.5905903408143
+ 20
+210.27325300000004
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+210.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+545.5905903408144
+ 20
+212.77325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+211.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+545.5905903408144
+ 20
+211.77325300000004
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+211.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+546.5905903408143
+ 20
+211.77325300000004
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+212.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+546.5905903408143
+ 20
+212.77325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+212.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+564.5905903408143
+ 20
+213.773253
+ 30
+0.0
+ 11
+564.5905903408143
+ 21
+210.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+564.5905903408143
+ 20
+210.77325300000004
+ 30
+0.0
+ 11
+567.5905903408143
+ 21
+210.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+567.5905903408143
+ 20
+210.77325300000004
+ 30
+0.0
+ 11
+567.5905903408143
+ 21
+213.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+567.5905903408143
+ 20
+213.773253
+ 30
+0.0
+ 11
+564.5905903408143
+ 21
+213.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+560.3405903408143
+ 20
+170.773253
+ 30
+0.0
+ 11
+551.8405903408143
+ 21
+170.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+551.8405903408143
+ 20
+170.773253
+ 30
+0.0
+ 11
+551.8405903408143
+ 21
+170.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+551.8405903408143
+ 20
+170.27325300000004
+ 30
+0.0
+ 11
+560.3405903408143
+ 21
+170.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+560.3405903408143
+ 20
+170.27325300000004
+ 30
+0.0
+ 11
+560.3405903408143
+ 21
+170.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+551.8405903408143
+ 20
+218.523253
+ 30
+0.0
+ 11
+560.3405903408143
+ 21
+218.523253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+560.3405903408143
+ 20
+218.523253
+ 30
+0.0
+ 11
+560.3405903408143
+ 21
+219.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+560.3405903408143
+ 20
+219.02325300000004
+ 30
+0.0
+ 11
+551.8405903408143
+ 21
+219.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+551.8405903408143
+ 20
+219.02325300000004
+ 30
+0.0
+ 11
+551.8405903408143
+ 21
+218.523253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+536.5905903408143
+ 20
+174.1141620909091
+ 30
+0.0
+ 11
+541.5905903408144
+ 21
+174.1141620909091
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+541.5905903408144
+ 20
+174.1141620909091
+ 30
+0.0
+ 11
+541.5905903408144
+ 21
+185.20507118181823
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+541.5905903408144
+ 20
+185.20507118181823
+ 30
+0.0
+ 11
+536.5905903408143
+ 21
+185.20507118181823
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+536.5905903408143
+ 20
+201.84143481818185
+ 30
+0.0
+ 11
+541.5905903408144
+ 21
+201.84143481818185
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+541.5905903408144
+ 20
+201.84143481818185
+ 30
+0.0
+ 11
+541.5905903408144
+ 21
+212.93234390909092
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+541.5905903408144
+ 20
+212.93234390909092
+ 30
+0.0
+ 11
+536.5905903408143
+ 21
+212.93234390909092
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+537.8405903408144
+ 20
+147.02325300000004
+ 30
+0.0
+ 11
+541.3405903408144
+ 21
+147.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+541.3405903408144
+ 20
+147.02325300000004
+ 30
+0.0
+ 11
+541.3405903408144
+ 21
+155.023253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+541.3405903408144
+ 20
+155.023253
+ 30
+0.0
+ 11
+537.8405903408144
+ 21
+155.023253
+ 31
+0.0
+  0
+ENDSEC
+  0
+EOF
diff --git a/rocolib/builders/output/BoatWithStackBattery/graph-lasercutter.svg b/rocolib/builders/output/BoatWithStackBattery/graph-lasercutter.svg
new file mode 100644
index 0000000000000000000000000000000000000000..59f76ddc730f45be8a1df09a4c9b34b376736127
--- /dev/null
+++ b/rocolib/builders/output/BoatWithStackBattery/graph-lasercutter.svg
@@ -0,0 +1,539 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="full" height="302.046506mm" version="1.1" viewBox="0.000000 0.000000 664.090590 302.046506" width="664.090590mm">
+  <defs/>
+  <line stroke="#000000" x1="160.30855606972293" x2="98.65427803486146" y1="120.52325300000003" y2="120.52325300000003"/>
+  <line stroke="#000000" x1="98.65427803486146" x2="160.30855606972293" y1="181.52325300000004" y2="181.52325300000004"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="98.65427803486146" x2="98.65427803486146" y1="181.52325300000004" y2="120.52325300000003"/>
+  <line stroke="#000000" x1="170.30855606972293" x2="160.30855606972293" y1="120.52325300000003" y2="120.52325300000003"/>
+  <line stroke="#000000" x1="170.30855606972293" x2="170.30855606972293" y1="181.52325300000004" y2="120.52325300000003"/>
+  <line stroke="#000000" x1="160.30855606972293" x2="170.30855606972293" y1="181.52325300000004" y2="181.52325300000004"/>
+  <line stroke="#000000" x1="71.65427803486145" x2="98.65427803486146" y1="181.52325300000004" y2="181.52325300000004"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="71.65427803486145" x2="71.65427803486145" y1="120.52325300000003" y2="181.52325300000004"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="98.65427803486146" x2="71.65427803486145" y1="120.52325300000003" y2="120.52325300000003"/>
+  <line stroke="#000000" x1="10.000000000000002" x2="71.65427803486145" y1="181.52325300000004" y2="181.52325300000004"/>
+  <line stroke="#000000" x1="71.65427803486145" x2="10.000000000000002" y1="120.52325300000003" y2="120.52325300000003"/>
+  <line stroke="#000000" x1="0.0" x2="10.000000000000002" y1="181.52325300000004" y2="181.52325300000004"/>
+  <line stroke="#000000" x1="0.0" x2="0.0" y1="120.52325300000003" y2="181.52325300000004"/>
+  <line stroke="#000000" x1="10.000000000000002" x2="0.0" y1="120.52325300000003" y2="120.52325300000003"/>
+  <line stroke="#000000" x1="98.65427803486146" x2="98.65427803486146" y1="120.52325300000003" y2="103.52325300000001"/>
+  <line stroke="#000000" x1="71.65427803486145" x2="71.65427803486145" y1="103.52325300000001" y2="120.52325300000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="98.65427803486146" x2="71.65427803486145" y1="103.52325300000001" y2="103.52325300000001"/>
+  <line stroke="#000000" x1="98.65427803486146" x2="98.65427803486146" y1="103.52325300000001" y2="42.52325300000002"/>
+  <line stroke="#000000" x1="71.65427803486145" x2="71.65427803486145" y1="42.52325300000002" y2="103.52325300000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="98.65427803486146" x2="71.65427803486145" y1="42.52325300000002" y2="42.52325300000002"/>
+  <line stroke="#000000" x1="98.65427803486146" x2="98.65427803486146" y1="42.52325300000002" y2="25.523253000000015"/>
+  <line stroke="#000000" x1="71.65427803486145" x2="71.65427803486145" y1="25.523253000000015" y2="42.52325300000002"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="71.65427803486145" x2="98.65427803486146" y1="25.523253000000015" y2="25.523253000000015"/>
+  <line stroke="#000000" x1="71.65427803486145" x2="71.65427803486145" y1="15.523253000000013" y2="25.523253000000015"/>
+  <line stroke="#000000" x1="98.65427803486146" x2="71.65427803486145" y1="15.523253000000013" y2="15.523253000000013"/>
+  <line stroke="#000000" x1="98.65427803486146" x2="98.65427803486146" y1="25.523253000000015" y2="15.523253000000013"/>
+  <line stroke="#888888" x1="167.80855606972293" x2="162.80855606972293" y1="170.43234390909095" y2="170.43234390909095"/>
+  <line stroke="#888888" x1="162.80855606972293" x2="162.80855606972293" y1="170.43234390909095" y2="159.34143481818182"/>
+  <line stroke="#888888" x1="162.80855606972293" x2="167.80855606972293" y1="159.34143481818182" y2="159.34143481818182"/>
+  <line stroke="#888888" x1="167.80855606972293" x2="162.80855606972293" y1="142.7050711818182" y2="142.7050711818182"/>
+  <line stroke="#888888" x1="162.80855606972293" x2="162.80855606972293" y1="142.7050711818182" y2="131.61416209090913"/>
+  <line stroke="#888888" x1="162.80855606972293" x2="167.80855606972293" y1="131.61416209090913" y2="131.61416209090913"/>
+  <line stroke="#888888" x1="94.15427803486146" x2="94.15427803486146" y1="118.02325300000003" y2="124.02325300000003"/>
+  <line stroke="#888888" x1="94.15427803486146" x2="76.15427803486145" y1="124.02325300000003" y2="124.02325300000003"/>
+  <line stroke="#888888" x1="76.15427803486145" x2="76.15427803486145" y1="124.02325300000003" y2="118.02325300000003"/>
+  <line stroke="#888888" x1="76.15427803486145" x2="94.15427803486146" y1="118.02325300000003" y2="118.02325300000003"/>
+  <line stroke="#888888" x1="80.40427803486146" x2="89.90427803486145" y1="173.77325300000004" y2="173.77325300000004"/>
+  <line stroke="#888888" x1="89.90427803486145" x2="89.90427803486145" y1="173.77325300000004" y2="174.27325300000004"/>
+  <line stroke="#888888" x1="89.90427803486145" x2="80.40427803486146" y1="174.27325300000004" y2="174.27325300000004"/>
+  <line stroke="#888888" x1="80.40427803486146" x2="80.40427803486146" y1="174.27325300000004" y2="173.77325300000004"/>
+  <line stroke="#888888" x1="2.5000000000000004" x2="7.500000000000001" y1="131.61416209090913" y2="131.61416209090913"/>
+  <line stroke="#888888" x1="7.500000000000001" x2="7.500000000000001" y1="131.61416209090913" y2="142.7050711818182"/>
+  <line stroke="#888888" x1="7.500000000000001" x2="2.5000000000000004" y1="142.7050711818182" y2="142.7050711818182"/>
+  <line stroke="#888888" x1="2.5000000000000004" x2="7.500000000000001" y1="159.34143481818185" y2="159.34143481818185"/>
+  <line stroke="#888888" x1="7.500000000000001" x2="7.500000000000001" y1="159.34143481818185" y2="170.43234390909095"/>
+  <line stroke="#888888" x1="7.500000000000001" x2="2.5000000000000004" y1="170.43234390909095" y2="170.43234390909095"/>
+  <line stroke="#888888" x1="89.65427803486146" x2="89.65427803486146" y1="18.023253000000015" y2="23.02325300000001"/>
+  <line stroke="#888888" x1="89.65427803486146" x2="80.65427803486146" y1="23.02325300000001" y2="23.02325300000001"/>
+  <line stroke="#888888" x1="80.65427803486146" x2="80.65427803486146" y1="23.02325300000001" y2="18.023253000000015"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="436.5858000680936" x2="436.5858000680936" y1="86.02325300000003" y2="216.023253"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="346.5858000680936" x2="346.5858000680936" y1="86.02325300000003" y2="216.023253"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="391.5858000680936" x2="346.5858000680936" y1="86.02325300000003" y2="86.02325300000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="436.5858000680936" x2="391.5858000680936" y1="86.02325300000003" y2="86.02325300000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="391.5858000680936" x2="346.5858000680936" y1="3.2957373719000316e-07" y2="86.02325300000003"/>
+  <line stroke="#000000" x1="377.4211156634208" x2="327.0034578657572" y1="4.127328470363296" y2="18.818105326100866"/>
+  <line stroke="#000000" x1="391.5858000680936" x2="377.4211156634208" y1="3.295737656117126e-07" y2="4.127328470363296"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="346.5858000680936" x2="327.0034578657572" y1="86.02325300000005" y2="18.818105326100866"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="346.5858000680936" x2="276.5858000680936" y1="86.02325300000003" y2="33.50888218183837"/>
+  <line stroke="#000000" x1="327.0034578657572" x2="276.5858000680936" y1="18.818105326100834" y2="33.50888218183837"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="276.58580006809353" x2="276.5858000680936" y1="86.02325299999998" y2="33.508882181838395"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="346.5858000680936" x2="276.58580006809353" y1="86.02325300000003" y2="86.02325299999998"/>
+  <line stroke="#000000" x1="259.08100979537306" x2="276.58580006809353" y1="86.02325299999997" y2="86.02325299999997"/>
+  <line stroke="#000000" x1="259.08100979537306" x2="259.08100979537306" y1="33.508882181838366" y2="86.02325299999997"/>
+  <line stroke="#000000" x1="276.5858000680936" x2="259.08100979537306" y1="33.50888218183837" y2="33.508882181838366"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="276.5858000680935" x2="346.58580006809353" y1="216.023253" y2="216.02325300000004"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="276.5858000680934" x2="346.58580006809353" y1="268.53762381816165" y2="216.02325300000004"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="276.5858000680934" x2="276.5858000680935" y1="268.53762381816165" y2="216.023253"/>
+  <line stroke="#000000" x1="276.58580006809336" x2="327.003457865757" y1="268.53762381816165" y2="283.2284006738992"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="327.003457865757" x2="346.58580006809353" y1="283.2284006738992" y2="216.02325300000004"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="391.5858000680934" x2="346.58580006809353" y1="302.04650567042637" y2="216.02325300000004"/>
+  <line stroke="#000000" x1="377.42111566342055" x2="391.5858000680934" y1="297.9191775296369" y2="302.04650567042637"/>
+  <line stroke="#000000" x1="327.003457865757" x2="377.42111566342055" y1="283.22840067389916" y2="297.9191775296369"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="346.58580006809353" x2="391.58580006809353" y1="216.023253" y2="216.02325300000007"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="391.58580006809353" x2="436.58580006809353" y1="216.02325300000012" y2="216.02325300000018"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="391.5858000680934" x2="436.58580006809353" y1="302.04650567042637" y2="216.02325300000018"/>
+  <line stroke="#000000" x1="405.7504844727662" x2="456.1681422704299" y1="297.9191775296369" y2="283.2284006738994"/>
+  <line stroke="#000000" x1="391.5858000680934" x2="405.7504844727662" y1="302.04650567042637" y2="297.9191775296369"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="436.58580006809353" x2="456.1681422704299" y1="216.02325300000018" y2="283.2284006738994"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="436.58580006809353" x2="506.5858000680934" y1="216.02325300000018" y2="268.5376238181619"/>
+  <line stroke="#000000" x1="456.1681422704298" x2="506.5858000680934" y1="283.2284006738994" y2="268.5376238181619"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="506.58580006809353" x2="506.5858000680934" y1="216.02325300000032" y2="268.5376238181619"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="436.58580006809353" x2="506.58580006809353" y1="216.02325300000018" y2="216.02325300000032"/>
+  <line stroke="#000000" x1="524.0905903408142" x2="506.58580006809353" y1="216.02325300000035" y2="216.02325300000032"/>
+  <line stroke="#000000" x1="524.090590340814" x2="524.0905903408142" y1="268.53762381816193" y2="216.02325300000035"/>
+  <line stroke="#000000" x1="506.5858000680934" x2="524.090590340814" y1="268.5376238181619" y2="268.53762381816193"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="506.58580006809376" x2="436.58580006809376" y1="86.02325300000027" y2="86.02325300000012"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="506.5858000680939" x2="436.58580006809376" y1="33.50888218183868" y2="86.02325300000012"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="506.5858000680939" x2="506.58580006809376" y1="33.50888218183868" y2="86.02325300000027"/>
+  <line stroke="#000000" x1="506.5858000680939" x2="456.16814227043034" y1="33.50888218183864" y2="18.818105326100948"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="456.16814227043034" x2="436.58580006809376" y1="18.818105326100948" y2="86.02325300000011"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="391.585800068094" x2="436.58580006809376" y1="3.295737087682938e-07" y2="86.02325300000012"/>
+  <line stroke="#000000" x1="405.7504844727668" x2="391.585800068094" y1="4.127328470363296" y2="3.295737087682938e-07"/>
+  <line stroke="#000000" x1="456.16814227043034" x2="405.7504844727668" y1="18.81810532610098" y2="4.127328470363296"/>
+  <line stroke="#000000" x1="524.0905903408144" x2="506.5858000680939" y1="33.50888218183872" y2="33.508882181838686"/>
+  <line stroke="#000000" x1="524.0905903408144" x2="524.0905903408144" y1="86.02325300000031" y2="33.50888218183872"/>
+  <line stroke="#000000" x1="506.58580006809376" x2="524.0905903408144" y1="86.02325300000028" y2="86.02325300000031"/>
+  <line stroke="#000000" x1="506.58580006809376" x2="506.58580006809376" y1="90.02325300000027" y2="86.02325300000028"/>
+  <line stroke="#000000" x1="506.58580006809353" x2="506.58580006809365" y1="212.02325300000032" y2="151.0232530000003"/>
+  <line stroke="#000000" x1="506.58580006809353" x2="506.58580006809353" y1="216.02325300000032" y2="212.02325300000032"/>
+  <line stroke="#000000" x1="506.58580006809353" x2="506.58580006809353" y1="216.02325300000032" y2="216.02325300000032"/>
+  <line stroke="#000000" x1="506.58580006809376" x2="506.58580006809376" y1="86.02325300000028" y2="86.02325300000028"/>
+  <line stroke="#000000" x1="516.5858000680937" x2="506.58580006809376" y1="90.02325300000031" y2="90.02325300000027"/>
+  <line stroke="#000000" x1="516.5858000680937" x2="516.5858000680937" y1="151.0232530000003" y2="90.02325300000031"/>
+  <line stroke="#000000" x1="506.58580006809365" x2="516.5858000680937" y1="151.0232530000003" y2="151.0232530000003"/>
+  <line stroke="#000000" x1="259.0810097953729" x2="276.5858000680934" y1="268.53762381816165" y2="268.53762381816165"/>
+  <line stroke="#000000" x1="259.0810097953729" x2="259.0810097953729" y1="216.02325299999998" y2="268.53762381816165"/>
+  <line stroke="#000000" x1="276.5858000680935" x2="259.0810097953729" y1="216.023253" y2="216.02325299999998"/>
+  <line stroke="#000000" x1="276.5858000680935" x2="276.5858000680935" y1="212.023253" y2="216.023253"/>
+  <line stroke="#000000" x1="276.5858000680935" x2="276.5858000680935" y1="151.02325299999998" y2="212.023253"/>
+  <line stroke="#000000" x1="276.58580006809353" x2="276.58580006809353" y1="86.02325299999997" y2="90.02325299999995"/>
+  <line stroke="#000000" x1="276.58580006809353" x2="276.58580006809353" y1="86.02325299999997" y2="86.02325299999997"/>
+  <line stroke="#000000" x1="276.5858000680935" x2="276.5858000680935" y1="216.023253" y2="216.023253"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="240.44717806890822" x2="240.44717806890824" y1="151.02325299999998" y2="90.02325299999994"/>
+  <line stroke="#000000" x1="276.58580006809353" x2="240.44717806890824" y1="90.02325299999995" y2="90.02325299999994"/>
+  <line stroke="#000000" x1="240.44717806890822" x2="276.5858000680935" y1="151.02325299999998" y2="151.02325299999998"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="216.44717806890824" x2="216.44717806890822" y1="90.02325299999993" y2="151.02325299999995"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="216.44717806890824" x2="240.44717806890827" y1="90.02325299999993" y2="90.02325299999994"/>
+  <line stroke="#000000" x1="180.3085560697229" x2="216.44717806890822" y1="151.0232529999999" y2="151.02325299999995"/>
+  <line stroke="#000000" x1="180.30855606972295" x2="180.3085560697229" y1="90.02325299999991" y2="151.0232529999999"/>
+  <line stroke="#000000" x1="216.44717806890824" x2="180.30855606972295" y1="90.02325299999993" y2="90.02325299999991"/>
+  <line stroke="#000000" x1="216.44717806890824" x2="216.44717806890824" y1="80.02325299999991" y2="90.02325299999994"/>
+  <line stroke="#000000" x1="240.44717806890824" x2="216.44717806890824" y1="80.02325299999993" y2="80.02325299999991"/>
+  <line stroke="#000000" x1="240.44717806890824" x2="240.44717806890824" y1="90.02325299999994" y2="80.02325299999993"/>
+  <line stroke="#000000" x1="240.44717806890822" x2="240.44717806890822" y1="161.02325299999998" y2="151.02325299999998"/>
+  <line stroke="#000000" x1="216.44717806890822" x2="240.44717806890822" y1="161.02325299999995" y2="161.02325299999998"/>
+  <line stroke="#000000" x1="216.44717806890822" x2="216.44717806890822" y1="151.02325299999995" y2="161.02325299999995"/>
+  <line stroke="#888888" x1="364.5978792657871" x2="347.31195656413337" y1="21.798749986471112" y2="26.83554947792412"/>
+  <line stroke="#888888" x1="347.31195656413337" x2="347.17208269125956" y1="26.83554947792412" y2="26.355512708824836"/>
+  <line stroke="#888888" x1="347.17208269125956" x2="364.4580053929133" y1="26.355512708824836" y2="21.318713217371826"/>
+  <line stroke="#888888" x1="364.4580053929133" x2="364.5978792657871" y1="21.318713217371826" y2="21.798749986471112"/>
+  <line stroke="#888888" x1="263.45720736355315" x2="272.2096024999135" y1="51.01367245455889" y2="51.0136724545589"/>
+  <line stroke="#888888" x1="272.2096024999135" x2="272.20960249991344" y1="51.0136724545589" y2="68.51846272727943"/>
+  <line stroke="#888888" x1="272.20960249991344" x2="263.45720736355315" y1="68.51846272727943" y2="68.51846272727941"/>
+  <line stroke="#888888" x1="347.3119565641332" x2="364.597879265787" y1="275.210956522076" y2="280.247756013529"/>
+  <line stroke="#888888" x1="364.597879265787" x2="364.45800539291315" y1="280.247756013529" y2="280.7277927826283"/>
+  <line stroke="#888888" x1="364.45800539291315" x2="347.1720826912594" y1="280.7277927826283" y2="275.69099329117523"/>
+  <line stroke="#888888" x1="347.1720826912594" x2="347.3119565641332" y1="275.69099329117523" y2="275.210956522076"/>
+  <line stroke="#888888" x1="418.5737208703999" x2="435.8596435720537" y1="280.2477560135291" y2="275.2109565220761"/>
+  <line stroke="#888888" x1="435.8596435720537" x2="435.9995174449275" y1="275.2109565220761" y2="275.69099329117535"/>
+  <line stroke="#888888" x1="435.9995174449275" x2="418.7135947432737" y1="275.69099329117535" y2="280.72779278262834"/>
+  <line stroke="#888888" x1="418.7135947432737" x2="418.5737208703999" y1="280.72779278262834" y2="280.2477560135291"/>
+  <line stroke="#888888" x1="519.7143927726339" x2="510.9619976362736" y1="251.0328335454414" y2="251.03283354544138"/>
+  <line stroke="#888888" x1="510.9619976362736" x2="510.9619976362736" y1="251.03283354544138" y2="233.52804327272085"/>
+  <line stroke="#888888" x1="510.9619976362736" x2="519.7143927726339" y1="233.52804327272085" y2="233.52804327272088"/>
+  <line stroke="#888888" x1="435.85964357205415" x2="418.57372087040034" y1="26.835549477924193" y2="21.79874998647114"/>
+  <line stroke="#888888" x1="418.57372087040034" x2="418.7135947432742" y1="21.79874998647114" y2="21.318713217371855"/>
+  <line stroke="#888888" x1="418.7135947432742" x2="435.99951744492796" y1="21.318713217371855" y2="26.35551270882492"/>
+  <line stroke="#888888" x1="435.99951744492796" x2="435.85964357205415" y1="26.35551270882492" y2="26.835549477924193"/>
+  <line stroke="#888888" x1="519.7143927726343" x2="510.9619976362739" y1="68.51846272727978" y2="68.51846272727977"/>
+  <line stroke="#888888" x1="510.9619976362739" x2="510.96199763627396" y1="68.51846272727977" y2="51.013672454559234"/>
+  <line stroke="#888888" x1="510.96199763627396" x2="519.7143927726343" y1="51.013672454559234" y2="51.01367245455925"/>
+  <line stroke="#888888" x1="498.83580006809365" x2="498.83580006809365" y1="173.45507118181848" y2="161.8641620909094"/>
+  <line stroke="#888888" x1="498.83580006809365" x2="499.33580006809365" y1="161.8641620909094" y2="161.8641620909094"/>
+  <line stroke="#888888" x1="499.33580006809365" x2="499.33580006809365" y1="161.8641620909094" y2="173.45507118181848"/>
+  <line stroke="#888888" x1="499.33580006809365" x2="498.83580006809365" y1="173.45507118181848" y2="173.45507118181848"/>
+  <line stroke="#888888" x1="498.83580006809353" x2="498.83580006809365" y1="201.1823439090912" y2="189.59143481818214"/>
+  <line stroke="#888888" x1="498.83580006809365" x2="499.3358000680936" y1="189.59143481818214" y2="189.59143481818214"/>
+  <line stroke="#888888" x1="499.3358000680936" x2="499.33580006809353" y1="189.59143481818214" y2="201.1823439090912"/>
+  <line stroke="#888888" x1="499.33580006809353" x2="498.83580006809353" y1="201.1823439090912" y2="201.1823439090912"/>
+  <line stroke="#888888" x1="514.0858000680936" x2="509.08580006809365" y1="139.93234390909123" y2="139.93234390909123"/>
+  <line stroke="#888888" x1="509.08580006809365" x2="509.0858000680937" y1="139.93234390909123" y2="128.8414348181821"/>
+  <line stroke="#888888" x1="509.0858000680937" x2="514.0858000680936" y1="128.8414348181821" y2="128.8414348181821"/>
+  <line stroke="#888888" x1="514.0858000680938" x2="509.0858000680937" y1="112.20507118181847" y2="112.20507118181847"/>
+  <line stroke="#888888" x1="509.0858000680937" x2="509.08580006809376" y1="112.20507118181847" y2="101.11416209090936"/>
+  <line stroke="#888888" x1="509.08580006809376" x2="514.0858000680938" y1="101.11416209090936" y2="101.11416209090936"/>
+  <line stroke="#888888" x1="263.4572073635531" x2="272.2096024999134" y1="233.5280432727205" y2="233.52804327272054"/>
+  <line stroke="#888888" x1="272.2096024999134" x2="272.20960249991333" y1="233.52804327272054" y2="251.03283354544106"/>
+  <line stroke="#888888" x1="272.20960249991333" x2="263.4572073635531" y1="251.03283354544106" y2="251.03283354544104"/>
+  <line stroke="#888888" x1="284.33580006809353" x2="284.33580006809353" y1="189.59143481818182" y2="201.18234390909092"/>
+  <line stroke="#888888" x1="284.33580006809353" x2="283.83580006809353" y1="201.18234390909092" y2="201.18234390909092"/>
+  <line stroke="#888888" x1="283.83580006809353" x2="283.83580006809353" y1="201.18234390909092" y2="189.59143481818182"/>
+  <line stroke="#888888" x1="283.83580006809353" x2="284.33580006809353" y1="189.59143481818182" y2="189.59143481818182"/>
+  <line stroke="#888888" x1="284.33580006809353" x2="284.33580006809353" y1="161.86416209090908" y2="173.45507118181817"/>
+  <line stroke="#888888" x1="284.33580006809353" x2="283.83580006809353" y1="173.45507118181817" y2="173.45507118181817"/>
+  <line stroke="#888888" x1="283.83580006809353" x2="283.83580006809353" y1="173.45507118181817" y2="161.86416209090908"/>
+  <line stroke="#888888" x1="283.83580006809353" x2="284.33580006809353" y1="161.86416209090908" y2="161.86416209090908"/>
+  <line stroke="#888888" x1="221.94717806890824" x2="221.94717806890824" y1="133.02325299999995" y2="122.02325299999994"/>
+  <line stroke="#888888" x1="221.94717806890824" x2="234.94717806890824" y1="122.02325299999994" y2="122.02325299999994"/>
+  <line stroke="#888888" x1="234.94717806890824" x2="234.94717806890824" y1="122.02325299999994" y2="133.02325299999995"/>
+  <line stroke="#888888" x1="234.94717806890824" x2="221.94717806890824" y1="133.02325299999995" y2="133.02325299999995"/>
+  <line stroke="#888888" x1="223.44717806890822" x2="223.44717806890824" y1="101.52325299999994" y2="95.52325299999994"/>
+  <line stroke="#888888" x1="223.44717806890824" x2="233.44717806890827" y1="95.52325299999994" y2="95.52325299999994"/>
+  <line stroke="#888888" x1="233.44717806890827" x2="233.44717806890824" y1="95.52325299999994" y2="101.52325299999994"/>
+  <line stroke="#888888" x1="233.44717806890824" x2="223.44717806890822" y1="101.52325299999994" y2="101.52325299999994"/>
+  <line stroke="#888888" x1="188.05855606972293" x2="188.05855606972293" y1="128.5914348181817" y2="140.1823439090908"/>
+  <line stroke="#888888" x1="188.05855606972293" x2="187.55855606972293" y1="140.1823439090908" y2="140.1823439090908"/>
+  <line stroke="#888888" x1="187.55855606972293" x2="187.55855606972293" y1="140.1823439090908" y2="128.5914348181817"/>
+  <line stroke="#888888" x1="187.55855606972293" x2="188.05855606972293" y1="128.5914348181817" y2="128.5914348181817"/>
+  <line stroke="#888888" x1="188.05855606972293" x2="188.05855606972293" y1="100.864162090909" y2="112.45507118181808"/>
+  <line stroke="#888888" x1="188.05855606972293" x2="187.55855606972293" y1="112.45507118181808" y2="112.45507118181808"/>
+  <line stroke="#888888" x1="187.55855606972293" x2="187.55855606972293" y1="112.45507118181808" y2="100.864162090909"/>
+  <line stroke="#888888" x1="187.55855606972293" x2="188.05855606972293" y1="100.864162090909" y2="100.864162090909"/>
+  <line stroke="#888888" x1="232.44717806890824" x2="232.44717806890824" y1="82.52325299999994" y2="87.52325299999994"/>
+  <line stroke="#888888" x1="232.44717806890824" x2="224.44717806890824" y1="87.52325299999994" y2="87.52325299999994"/>
+  <line stroke="#888888" x1="224.44717806890824" x2="224.44717806890824" y1="87.52325299999994" y2="82.52325299999991"/>
+  <line stroke="#888888" x1="224.44717806890822" x2="224.44717806890822" y1="158.52325299999995" y2="153.52325299999995"/>
+  <line stroke="#888888" x1="224.44717806890822" x2="232.44717806890822" y1="153.52325299999995" y2="153.52325299999995"/>
+  <line stroke="#888888" x1="232.44717806890822" x2="232.44717806890822" y1="153.52325299999995" y2="158.52325299999998"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="543.0905903408144" x2="604.0905903408143" y1="139.023253" y2="139.023253"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="604.0905903408143" x2="604.0905903408143" y1="139.023253" y2="163.02325300000004"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="604.0905903408143" x2="543.0905903408144" y1="163.02325300000004" y2="163.02325300000004"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="543.0905903408144" x2="543.0905903408144" y1="163.02325300000004" y2="139.023253"/>
+  <line stroke="#000000" x1="543.0905903408144" x2="543.0905903408144" y1="132.023253" y2="139.023253"/>
+  <line stroke="#000000" x1="579.0905903408144" x2="543.0905903408144" y1="132.023253" y2="132.023253"/>
+  <line stroke="#000000" x1="579.0905903408144" x2="579.0905903408144" y1="139.023253" y2="132.023253"/>
+  <line stroke="#000000" x1="611.0905903408143" x2="604.0905903408143" y1="139.023253" y2="139.023253"/>
+  <line stroke="#000000" x1="611.0905903408143" x2="611.0905903408143" y1="163.02325300000004" y2="139.023253"/>
+  <line stroke="#000000" x1="604.0905903408143" x2="611.0905903408143" y1="163.02325300000004" y2="163.02325300000004"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="604.0905903408143" x2="604.0905903408143" y1="163.02325300000004" y2="224.02325300000004"/>
+  <line stroke="#000000" x1="568.0905903408143" x2="604.0905903408143" y1="224.02325300000004" y2="224.02325300000004"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="568.0905903408143" x2="568.0905903408143" y1="163.02325300000004" y2="224.02325300000004"/>
+  <line stroke="#000000" x1="628.0905903408144" x2="604.0905903408143" y1="163.02325300000004" y2="163.02325300000004"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="628.0905903408144" x2="628.0905903408144" y1="163.02325300000004" y2="224.02325300000004"/>
+  <line stroke="#000000" x1="604.0905903408143" x2="628.0905903408144" y1="224.02325300000004" y2="224.02325300000004"/>
+  <line stroke="#000000" x1="664.0905903408144" x2="628.0905903408144" y1="163.02325300000004" y2="163.02325300000004"/>
+  <line stroke="#000000" x1="664.0905903408144" x2="664.0905903408144" y1="224.02325300000004" y2="163.02325300000004"/>
+  <line stroke="#000000" x1="628.0905903408144" x2="664.0905903408144" y1="224.02325300000004" y2="224.02325300000004"/>
+  <line stroke="#000000" x1="568.0905903408143" x2="544.0905903408144" y1="163.02325300000004" y2="163.02325300000004"/>
+  <line stroke="#000000" x1="544.0905903408144" x2="568.0905903408143" y1="224.02325300000004" y2="224.02325300000004"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="544.0905903408144" x2="544.0905903408144" y1="224.02325300000004" y2="163.02325300000004"/>
+  <line stroke="#000000" x1="534.0905903408144" x2="544.0905903408144" y1="224.02325300000004" y2="224.02325300000004"/>
+  <line stroke="#000000" x1="534.0905903408144" x2="534.0905903408144" y1="163.02325300000004" y2="224.02325300000004"/>
+  <line stroke="#000000" x1="544.0905903408144" x2="534.0905903408144" y1="163.02325300000004" y2="163.02325300000004"/>
+  <line stroke="#000000" x1="536.0905903408143" x2="543.0905903408144" y1="163.02325300000004" y2="163.02325300000004"/>
+  <line stroke="#000000" x1="536.0905903408143" x2="536.0905903408143" y1="139.023253" y2="163.02325300000004"/>
+  <line stroke="#000000" x1="543.0905903408144" x2="536.0905903408143" y1="139.023253" y2="139.023253"/>
+  <line stroke="#888888" x1="567.0905903408143" x2="570.5905903408144" y1="133.77325300000004" y2="133.77325300000004"/>
+  <line stroke="#888888" x1="570.5905903408144" x2="567.0905903408143" y1="133.77325300000004" y2="137.27325300000004"/>
+  <line stroke="#888888" x1="567.0905903408143" x2="555.0905903408144" y1="137.27325300000004" y2="137.27325300000004"/>
+  <line stroke="#888888" x1="555.0905903408144" x2="551.5905903408144" y1="137.27325300000004" y2="133.77325300000004"/>
+  <line stroke="#888888" x1="551.5905903408144" x2="555.0905903408144" y1="133.77325300000004" y2="133.77325300000004"/>
+  <line stroke="#888888" x1="609.3405903408144" x2="605.8405903408143" y1="155.023253" y2="155.023253"/>
+  <line stroke="#888888" x1="605.8405903408143" x2="605.8405903408143" y1="155.023253" y2="147.02325300000004"/>
+  <line stroke="#888888" x1="605.8405903408143" x2="609.3405903408144" y1="147.02325300000004" y2="147.02325300000004"/>
+  <line stroke="#888888" x1="581.2048760551" x2="581.2048760551" y1="217.77325300000004" y2="199.77325300000004"/>
+  <line stroke="#888888" x1="581.2048760551" x2="601.7763046265287" y1="199.77325300000004" y2="199.77325300000004"/>
+  <line stroke="#888888" x1="601.7763046265287" x2="601.7763046265287" y1="199.77325300000004" y2="217.77325300000004"/>
+  <line stroke="#888888" x1="601.7763046265287" x2="581.2048760551" y1="217.77325300000004" y2="217.77325300000004"/>
+  <line stroke="#888888" x1="604.5905903408143" x2="604.5905903408143" y1="176.27325300000004" y2="173.27325300000004"/>
+  <line stroke="#888888" x1="604.5905903408143" x2="607.5905903408144" y1="173.27325300000004" y2="173.27325300000004"/>
+  <line stroke="#888888" x1="607.5905903408144" x2="607.5905903408144" y1="173.27325300000004" y2="176.27325300000004"/>
+  <line stroke="#888888" x1="607.5905903408144" x2="604.5905903408143" y1="176.27325300000004" y2="176.27325300000004"/>
+  <line stroke="#888888" x1="625.5905903408144" x2="625.5905903408144" y1="175.273253" y2="174.27325300000004"/>
+  <line stroke="#888888" x1="625.5905903408144" x2="626.5905903408144" y1="174.27325300000004" y2="174.27325300000004"/>
+  <line stroke="#888888" x1="626.5905903408144" x2="626.5905903408144" y1="174.27325300000004" y2="175.273253"/>
+  <line stroke="#888888" x1="626.5905903408144" x2="625.5905903408144" y1="175.273253" y2="175.273253"/>
+  <line stroke="#888888" x1="605.5905903408144" x2="605.5905903408144" y1="177.773253" y2="176.77325300000004"/>
+  <line stroke="#888888" x1="605.5905903408144" x2="606.5905903408144" y1="176.77325300000004" y2="176.77325300000004"/>
+  <line stroke="#888888" x1="606.5905903408144" x2="606.5905903408144" y1="176.77325300000004" y2="177.773253"/>
+  <line stroke="#888888" x1="606.5905903408144" x2="605.5905903408144" y1="177.773253" y2="177.773253"/>
+  <line stroke="#888888" x1="625.5905903408144" x2="625.5905903408144" y1="177.773253" y2="176.77325300000004"/>
+  <line stroke="#888888" x1="625.5905903408144" x2="626.5905903408144" y1="176.77325300000004" y2="176.77325300000004"/>
+  <line stroke="#888888" x1="626.5905903408144" x2="626.5905903408144" y1="176.77325300000004" y2="177.773253"/>
+  <line stroke="#888888" x1="626.5905903408144" x2="625.5905903408144" y1="177.773253" y2="177.773253"/>
+  <line stroke="#888888" x1="605.5905903408144" x2="605.5905903408144" y1="180.27325300000004" y2="179.27325300000004"/>
+  <line stroke="#888888" x1="605.5905903408144" x2="606.5905903408144" y1="179.27325300000004" y2="179.27325300000004"/>
+  <line stroke="#888888" x1="606.5905903408144" x2="606.5905903408144" y1="179.27325300000004" y2="180.27325300000004"/>
+  <line stroke="#888888" x1="606.5905903408144" x2="605.5905903408144" y1="180.27325300000004" y2="180.27325300000004"/>
+  <line stroke="#888888" x1="625.5905903408144" x2="625.5905903408144" y1="180.27325300000004" y2="179.27325300000004"/>
+  <line stroke="#888888" x1="625.5905903408144" x2="626.5905903408144" y1="179.27325300000004" y2="179.27325300000004"/>
+  <line stroke="#888888" x1="626.5905903408144" x2="626.5905903408144" y1="179.27325300000004" y2="180.27325300000004"/>
+  <line stroke="#888888" x1="626.5905903408144" x2="625.5905903408144" y1="180.27325300000004" y2="180.27325300000004"/>
+  <line stroke="#888888" x1="605.5905903408144" x2="605.5905903408144" y1="182.77325300000004" y2="181.773253"/>
+  <line stroke="#888888" x1="605.5905903408144" x2="606.5905903408144" y1="181.773253" y2="181.773253"/>
+  <line stroke="#888888" x1="606.5905903408144" x2="606.5905903408144" y1="181.773253" y2="182.77325300000004"/>
+  <line stroke="#888888" x1="606.5905903408144" x2="605.5905903408144" y1="182.77325300000004" y2="182.77325300000004"/>
+  <line stroke="#888888" x1="625.5905903408144" x2="625.5905903408144" y1="182.77325300000004" y2="181.773253"/>
+  <line stroke="#888888" x1="625.5905903408144" x2="626.5905903408144" y1="181.773253" y2="181.773253"/>
+  <line stroke="#888888" x1="626.5905903408144" x2="626.5905903408144" y1="181.773253" y2="182.77325300000004"/>
+  <line stroke="#888888" x1="626.5905903408144" x2="625.5905903408144" y1="182.77325300000004" y2="182.77325300000004"/>
+  <line stroke="#888888" x1="605.5905903408144" x2="605.5905903408144" y1="185.27325300000004" y2="184.273253"/>
+  <line stroke="#888888" x1="605.5905903408144" x2="606.5905903408144" y1="184.273253" y2="184.273253"/>
+  <line stroke="#888888" x1="606.5905903408144" x2="606.5905903408144" y1="184.273253" y2="185.27325300000004"/>
+  <line stroke="#888888" x1="606.5905903408144" x2="605.5905903408144" y1="185.27325300000004" y2="185.27325300000004"/>
+  <line stroke="#888888" x1="625.5905903408144" x2="625.5905903408144" y1="185.27325300000004" y2="184.273253"/>
+  <line stroke="#888888" x1="625.5905903408144" x2="626.5905903408144" y1="184.273253" y2="184.273253"/>
+  <line stroke="#888888" x1="626.5905903408144" x2="626.5905903408144" y1="184.273253" y2="185.27325300000004"/>
+  <line stroke="#888888" x1="626.5905903408144" x2="625.5905903408144" y1="185.27325300000004" y2="185.27325300000004"/>
+  <line stroke="#888888" x1="605.5905903408144" x2="605.5905903408144" y1="187.77325300000004" y2="186.773253"/>
+  <line stroke="#888888" x1="605.5905903408144" x2="606.5905903408144" y1="186.773253" y2="186.773253"/>
+  <line stroke="#888888" x1="606.5905903408144" x2="606.5905903408144" y1="186.773253" y2="187.77325300000004"/>
+  <line stroke="#888888" x1="606.5905903408144" x2="605.5905903408144" y1="187.77325300000004" y2="187.77325300000004"/>
+  <line stroke="#888888" x1="625.5905903408144" x2="625.5905903408144" y1="187.77325300000004" y2="186.773253"/>
+  <line stroke="#888888" x1="625.5905903408144" x2="626.5905903408144" y1="186.773253" y2="186.773253"/>
+  <line stroke="#888888" x1="626.5905903408144" x2="626.5905903408144" y1="186.773253" y2="187.77325300000004"/>
+  <line stroke="#888888" x1="626.5905903408144" x2="625.5905903408144" y1="187.77325300000004" y2="187.77325300000004"/>
+  <line stroke="#888888" x1="605.5905903408144" x2="605.5905903408144" y1="190.27325300000004" y2="189.27325300000004"/>
+  <line stroke="#888888" x1="605.5905903408144" x2="606.5905903408144" y1="189.27325300000004" y2="189.27325300000004"/>
+  <line stroke="#888888" x1="606.5905903408144" x2="606.5905903408144" y1="189.27325300000004" y2="190.27325300000004"/>
+  <line stroke="#888888" x1="606.5905903408144" x2="605.5905903408144" y1="190.27325300000004" y2="190.27325300000004"/>
+  <line stroke="#888888" x1="625.5905903408144" x2="625.5905903408144" y1="190.27325300000004" y2="189.27325300000004"/>
+  <line stroke="#888888" x1="625.5905903408144" x2="626.5905903408144" y1="189.27325300000004" y2="189.27325300000004"/>
+  <line stroke="#888888" x1="626.5905903408144" x2="626.5905903408144" y1="189.27325300000004" y2="190.27325300000004"/>
+  <line stroke="#888888" x1="626.5905903408144" x2="625.5905903408144" y1="190.27325300000004" y2="190.27325300000004"/>
+  <line stroke="#888888" x1="605.5905903408144" x2="605.5905903408144" y1="192.77325300000004" y2="191.77325300000004"/>
+  <line stroke="#888888" x1="605.5905903408144" x2="606.5905903408144" y1="191.77325300000004" y2="191.77325300000004"/>
+  <line stroke="#888888" x1="606.5905903408144" x2="606.5905903408144" y1="191.77325300000004" y2="192.77325300000004"/>
+  <line stroke="#888888" x1="606.5905903408144" x2="605.5905903408144" y1="192.77325300000004" y2="192.77325300000004"/>
+  <line stroke="#888888" x1="625.5905903408144" x2="625.5905903408144" y1="192.77325300000004" y2="191.77325300000004"/>
+  <line stroke="#888888" x1="625.5905903408144" x2="626.5905903408144" y1="191.77325300000004" y2="191.77325300000004"/>
+  <line stroke="#888888" x1="626.5905903408144" x2="626.5905903408144" y1="191.77325300000004" y2="192.77325300000004"/>
+  <line stroke="#888888" x1="626.5905903408144" x2="625.5905903408144" y1="192.77325300000004" y2="192.77325300000004"/>
+  <line stroke="#888888" x1="605.5905903408144" x2="605.5905903408144" y1="195.27325300000004" y2="194.27325300000004"/>
+  <line stroke="#888888" x1="605.5905903408144" x2="606.5905903408144" y1="194.27325300000004" y2="194.27325300000004"/>
+  <line stroke="#888888" x1="606.5905903408144" x2="606.5905903408144" y1="194.27325300000004" y2="195.27325300000004"/>
+  <line stroke="#888888" x1="606.5905903408144" x2="605.5905903408144" y1="195.27325300000004" y2="195.27325300000004"/>
+  <line stroke="#888888" x1="625.5905903408144" x2="625.5905903408144" y1="195.27325300000004" y2="194.27325300000004"/>
+  <line stroke="#888888" x1="625.5905903408144" x2="626.5905903408144" y1="194.27325300000004" y2="194.27325300000004"/>
+  <line stroke="#888888" x1="626.5905903408144" x2="626.5905903408144" y1="194.27325300000004" y2="195.27325300000004"/>
+  <line stroke="#888888" x1="626.5905903408144" x2="625.5905903408144" y1="195.27325300000004" y2="195.27325300000004"/>
+  <line stroke="#888888" x1="605.5905903408144" x2="605.5905903408144" y1="197.773253" y2="196.77325300000004"/>
+  <line stroke="#888888" x1="605.5905903408144" x2="606.5905903408144" y1="196.77325300000004" y2="196.77325300000004"/>
+  <line stroke="#888888" x1="606.5905903408144" x2="606.5905903408144" y1="196.77325300000004" y2="197.773253"/>
+  <line stroke="#888888" x1="606.5905903408144" x2="605.5905903408144" y1="197.773253" y2="197.773253"/>
+  <line stroke="#888888" x1="625.5905903408144" x2="625.5905903408144" y1="197.773253" y2="196.77325300000004"/>
+  <line stroke="#888888" x1="625.5905903408144" x2="626.5905903408144" y1="196.77325300000004" y2="196.77325300000004"/>
+  <line stroke="#888888" x1="626.5905903408144" x2="626.5905903408144" y1="196.77325300000004" y2="197.773253"/>
+  <line stroke="#888888" x1="626.5905903408144" x2="625.5905903408144" y1="197.773253" y2="197.773253"/>
+  <line stroke="#888888" x1="605.5905903408144" x2="605.5905903408144" y1="200.273253" y2="199.27325300000004"/>
+  <line stroke="#888888" x1="605.5905903408144" x2="606.5905903408144" y1="199.27325300000004" y2="199.27325300000004"/>
+  <line stroke="#888888" x1="606.5905903408144" x2="606.5905903408144" y1="199.27325300000004" y2="200.273253"/>
+  <line stroke="#888888" x1="606.5905903408144" x2="605.5905903408144" y1="200.273253" y2="200.273253"/>
+  <line stroke="#888888" x1="625.5905903408144" x2="625.5905903408144" y1="200.273253" y2="199.27325300000004"/>
+  <line stroke="#888888" x1="625.5905903408144" x2="626.5905903408144" y1="199.27325300000004" y2="199.27325300000004"/>
+  <line stroke="#888888" x1="626.5905903408144" x2="626.5905903408144" y1="199.27325300000004" y2="200.273253"/>
+  <line stroke="#888888" x1="626.5905903408144" x2="625.5905903408144" y1="200.273253" y2="200.273253"/>
+  <line stroke="#888888" x1="605.5905903408144" x2="605.5905903408144" y1="202.77325300000004" y2="201.77325300000004"/>
+  <line stroke="#888888" x1="605.5905903408144" x2="606.5905903408144" y1="201.77325300000004" y2="201.77325300000004"/>
+  <line stroke="#888888" x1="606.5905903408144" x2="606.5905903408144" y1="201.77325300000004" y2="202.77325300000004"/>
+  <line stroke="#888888" x1="606.5905903408144" x2="605.5905903408144" y1="202.77325300000004" y2="202.77325300000004"/>
+  <line stroke="#888888" x1="625.5905903408144" x2="625.5905903408144" y1="202.77325300000004" y2="201.77325300000004"/>
+  <line stroke="#888888" x1="625.5905903408144" x2="626.5905903408144" y1="201.77325300000004" y2="201.77325300000004"/>
+  <line stroke="#888888" x1="626.5905903408144" x2="626.5905903408144" y1="201.77325300000004" y2="202.77325300000004"/>
+  <line stroke="#888888" x1="626.5905903408144" x2="625.5905903408144" y1="202.77325300000004" y2="202.77325300000004"/>
+  <line stroke="#888888" x1="605.5905903408144" x2="605.5905903408144" y1="205.27325300000004" y2="204.27325300000004"/>
+  <line stroke="#888888" x1="605.5905903408144" x2="606.5905903408144" y1="204.27325300000004" y2="204.27325300000004"/>
+  <line stroke="#888888" x1="606.5905903408144" x2="606.5905903408144" y1="204.27325300000004" y2="205.27325300000004"/>
+  <line stroke="#888888" x1="606.5905903408144" x2="605.5905903408144" y1="205.27325300000004" y2="205.27325300000004"/>
+  <line stroke="#888888" x1="625.5905903408144" x2="625.5905903408144" y1="205.27325300000004" y2="204.27325300000004"/>
+  <line stroke="#888888" x1="625.5905903408144" x2="626.5905903408144" y1="204.27325300000004" y2="204.27325300000004"/>
+  <line stroke="#888888" x1="626.5905903408144" x2="626.5905903408144" y1="204.27325300000004" y2="205.27325300000004"/>
+  <line stroke="#888888" x1="626.5905903408144" x2="625.5905903408144" y1="205.27325300000004" y2="205.27325300000004"/>
+  <line stroke="#888888" x1="605.5905903408144" x2="605.5905903408144" y1="207.77325300000004" y2="206.77325300000004"/>
+  <line stroke="#888888" x1="605.5905903408144" x2="606.5905903408144" y1="206.77325300000004" y2="206.77325300000004"/>
+  <line stroke="#888888" x1="606.5905903408144" x2="606.5905903408144" y1="206.77325300000004" y2="207.77325300000004"/>
+  <line stroke="#888888" x1="606.5905903408144" x2="605.5905903408144" y1="207.77325300000004" y2="207.77325300000004"/>
+  <line stroke="#888888" x1="625.5905903408144" x2="625.5905903408144" y1="207.77325300000004" y2="206.77325300000004"/>
+  <line stroke="#888888" x1="625.5905903408144" x2="626.5905903408144" y1="206.77325300000004" y2="206.77325300000004"/>
+  <line stroke="#888888" x1="626.5905903408144" x2="626.5905903408144" y1="206.77325300000004" y2="207.77325300000004"/>
+  <line stroke="#888888" x1="626.5905903408144" x2="625.5905903408144" y1="207.77325300000004" y2="207.77325300000004"/>
+  <line stroke="#888888" x1="605.5905903408144" x2="605.5905903408144" y1="210.27325300000004" y2="209.273253"/>
+  <line stroke="#888888" x1="605.5905903408144" x2="606.5905903408144" y1="209.273253" y2="209.273253"/>
+  <line stroke="#888888" x1="606.5905903408144" x2="606.5905903408144" y1="209.273253" y2="210.27325300000004"/>
+  <line stroke="#888888" x1="606.5905903408144" x2="605.5905903408144" y1="210.27325300000004" y2="210.27325300000004"/>
+  <line stroke="#888888" x1="625.5905903408144" x2="625.5905903408144" y1="210.27325300000004" y2="209.273253"/>
+  <line stroke="#888888" x1="625.5905903408144" x2="626.5905903408144" y1="209.273253" y2="209.273253"/>
+  <line stroke="#888888" x1="626.5905903408144" x2="626.5905903408144" y1="209.273253" y2="210.27325300000004"/>
+  <line stroke="#888888" x1="626.5905903408144" x2="625.5905903408144" y1="210.27325300000004" y2="210.27325300000004"/>
+  <line stroke="#888888" x1="605.5905903408144" x2="605.5905903408144" y1="212.77325300000004" y2="211.77325300000004"/>
+  <line stroke="#888888" x1="605.5905903408144" x2="606.5905903408144" y1="211.77325300000004" y2="211.77325300000004"/>
+  <line stroke="#888888" x1="606.5905903408144" x2="606.5905903408144" y1="211.77325300000004" y2="212.77325300000004"/>
+  <line stroke="#888888" x1="606.5905903408144" x2="605.5905903408144" y1="212.77325300000004" y2="212.77325300000004"/>
+  <line stroke="#888888" x1="624.5905903408144" x2="624.5905903408144" y1="213.773253" y2="210.77325300000004"/>
+  <line stroke="#888888" x1="624.5905903408144" x2="627.5905903408144" y1="210.77325300000004" y2="210.77325300000004"/>
+  <line stroke="#888888" x1="627.5905903408144" x2="627.5905903408144" y1="210.77325300000004" y2="213.773253"/>
+  <line stroke="#888888" x1="627.5905903408144" x2="624.5905903408144" y1="213.773253" y2="213.773253"/>
+  <line stroke="#888888" x1="620.3405903408144" x2="611.8405903408144" y1="170.773253" y2="170.773253"/>
+  <line stroke="#888888" x1="611.8405903408144" x2="611.8405903408144" y1="170.773253" y2="170.27325300000004"/>
+  <line stroke="#888888" x1="611.8405903408144" x2="620.3405903408144" y1="170.27325300000004" y2="170.27325300000004"/>
+  <line stroke="#888888" x1="620.3405903408144" x2="620.3405903408144" y1="170.27325300000004" y2="170.773253"/>
+  <line stroke="#888888" x1="611.8405903408144" x2="620.3405903408144" y1="218.523253" y2="218.523253"/>
+  <line stroke="#888888" x1="620.3405903408144" x2="620.3405903408144" y1="218.523253" y2="219.02325300000004"/>
+  <line stroke="#888888" x1="620.3405903408144" x2="611.8405903408144" y1="219.02325300000004" y2="219.02325300000004"/>
+  <line stroke="#888888" x1="611.8405903408144" x2="611.8405903408144" y1="219.02325300000004" y2="218.523253"/>
+  <line stroke="#888888" x1="633.6448760551" x2="633.6448760551" y1="219.54325300000002" y2="206.54325300000002"/>
+  <line stroke="#888888" x1="633.6448760551" x2="654.2163046265287" y1="206.54325300000002" y2="206.54325300000002"/>
+  <line stroke="#888888" x1="654.2163046265287" x2="654.2163046265287" y1="206.54325300000002" y2="219.54325300000002"/>
+  <line stroke="#888888" x1="654.2163046265287" x2="633.6448760551" y1="219.54325300000002" y2="219.54325300000002"/>
+  <line stroke="#888888" x1="652.3405903408143" x2="639.8405903408144" y1="168.523253" y2="168.523253"/>
+  <line stroke="#888888" x1="639.8405903408144" x2="639.8405903408144" y1="168.523253" y2="168.023253"/>
+  <line stroke="#888888" x1="639.8405903408144" x2="652.3405903408143" y1="168.023253" y2="168.023253"/>
+  <line stroke="#888888" x1="652.3405903408143" x2="652.3405903408143" y1="168.023253" y2="168.523253"/>
+  <line stroke="#888888" x1="656.3405903408144" x2="656.3405903408144" y1="185.45507118181823" y2="173.8641620909091"/>
+  <line stroke="#888888" x1="656.3405903408144" x2="656.8405903408144" y1="173.8641620909091" y2="173.8641620909091"/>
+  <line stroke="#888888" x1="656.8405903408144" x2="656.8405903408144" y1="173.8641620909091" y2="185.45507118181823"/>
+  <line stroke="#888888" x1="656.8405903408144" x2="656.3405903408144" y1="185.45507118181823" y2="185.45507118181823"/>
+  <line stroke="#888888" x1="656.3405903408144" x2="656.3405903408144" y1="213.18234390909095" y2="201.59143481818185"/>
+  <line stroke="#888888" x1="656.3405903408144" x2="656.8405903408144" y1="201.59143481818185" y2="201.59143481818185"/>
+  <line stroke="#888888" x1="656.8405903408144" x2="656.8405903408144" y1="201.59143481818185" y2="213.18234390909095"/>
+  <line stroke="#888888" x1="656.8405903408144" x2="656.3405903408144" y1="213.18234390909095" y2="213.18234390909095"/>
+  <line stroke="#888888" x1="544.5905903408144" x2="544.5905903408144" y1="176.27325300000004" y2="173.27325300000004"/>
+  <line stroke="#888888" x1="544.5905903408144" x2="547.5905903408143" y1="173.27325300000004" y2="173.27325300000004"/>
+  <line stroke="#888888" x1="547.5905903408143" x2="547.5905903408143" y1="173.27325300000004" y2="176.27325300000004"/>
+  <line stroke="#888888" x1="547.5905903408143" x2="544.5905903408144" y1="176.27325300000004" y2="176.27325300000004"/>
+  <line stroke="#888888" x1="565.5905903408143" x2="565.5905903408143" y1="175.273253" y2="174.27325300000004"/>
+  <line stroke="#888888" x1="565.5905903408143" x2="566.5905903408143" y1="174.27325300000004" y2="174.27325300000004"/>
+  <line stroke="#888888" x1="566.5905903408143" x2="566.5905903408143" y1="174.27325300000004" y2="175.273253"/>
+  <line stroke="#888888" x1="566.5905903408143" x2="565.5905903408143" y1="175.273253" y2="175.273253"/>
+  <line stroke="#888888" x1="545.5905903408144" x2="545.5905903408144" y1="177.773253" y2="176.77325300000004"/>
+  <line stroke="#888888" x1="545.5905903408144" x2="546.5905903408143" y1="176.77325300000004" y2="176.77325300000004"/>
+  <line stroke="#888888" x1="546.5905903408143" x2="546.5905903408143" y1="176.77325300000004" y2="177.773253"/>
+  <line stroke="#888888" x1="546.5905903408143" x2="545.5905903408144" y1="177.773253" y2="177.773253"/>
+  <line stroke="#888888" x1="565.5905903408143" x2="565.5905903408143" y1="177.773253" y2="176.77325300000004"/>
+  <line stroke="#888888" x1="565.5905903408143" x2="566.5905903408143" y1="176.77325300000004" y2="176.77325300000004"/>
+  <line stroke="#888888" x1="566.5905903408143" x2="566.5905903408143" y1="176.77325300000004" y2="177.773253"/>
+  <line stroke="#888888" x1="566.5905903408143" x2="565.5905903408143" y1="177.773253" y2="177.773253"/>
+  <line stroke="#888888" x1="545.5905903408144" x2="545.5905903408144" y1="180.27325300000004" y2="179.27325300000004"/>
+  <line stroke="#888888" x1="545.5905903408144" x2="546.5905903408143" y1="179.27325300000004" y2="179.27325300000004"/>
+  <line stroke="#888888" x1="546.5905903408143" x2="546.5905903408143" y1="179.27325300000004" y2="180.27325300000004"/>
+  <line stroke="#888888" x1="546.5905903408143" x2="545.5905903408144" y1="180.27325300000004" y2="180.27325300000004"/>
+  <line stroke="#888888" x1="565.5905903408143" x2="565.5905903408143" y1="180.27325300000004" y2="179.27325300000004"/>
+  <line stroke="#888888" x1="565.5905903408143" x2="566.5905903408143" y1="179.27325300000004" y2="179.27325300000004"/>
+  <line stroke="#888888" x1="566.5905903408143" x2="566.5905903408143" y1="179.27325300000004" y2="180.27325300000004"/>
+  <line stroke="#888888" x1="566.5905903408143" x2="565.5905903408143" y1="180.27325300000004" y2="180.27325300000004"/>
+  <line stroke="#888888" x1="545.5905903408144" x2="545.5905903408144" y1="182.77325300000004" y2="181.773253"/>
+  <line stroke="#888888" x1="545.5905903408144" x2="546.5905903408143" y1="181.773253" y2="181.773253"/>
+  <line stroke="#888888" x1="546.5905903408143" x2="546.5905903408143" y1="181.773253" y2="182.77325300000004"/>
+  <line stroke="#888888" x1="546.5905903408143" x2="545.5905903408144" y1="182.77325300000004" y2="182.77325300000004"/>
+  <line stroke="#888888" x1="565.5905903408143" x2="565.5905903408143" y1="182.77325300000004" y2="181.773253"/>
+  <line stroke="#888888" x1="565.5905903408143" x2="566.5905903408143" y1="181.773253" y2="181.773253"/>
+  <line stroke="#888888" x1="566.5905903408143" x2="566.5905903408143" y1="181.773253" y2="182.77325300000004"/>
+  <line stroke="#888888" x1="566.5905903408143" x2="565.5905903408143" y1="182.77325300000004" y2="182.77325300000004"/>
+  <line stroke="#888888" x1="545.5905903408144" x2="545.5905903408144" y1="185.27325300000004" y2="184.273253"/>
+  <line stroke="#888888" x1="545.5905903408144" x2="546.5905903408143" y1="184.273253" y2="184.273253"/>
+  <line stroke="#888888" x1="546.5905903408143" x2="546.5905903408143" y1="184.273253" y2="185.27325300000004"/>
+  <line stroke="#888888" x1="546.5905903408143" x2="545.5905903408144" y1="185.27325300000004" y2="185.27325300000004"/>
+  <line stroke="#888888" x1="565.5905903408143" x2="565.5905903408143" y1="185.27325300000004" y2="184.273253"/>
+  <line stroke="#888888" x1="565.5905903408143" x2="566.5905903408143" y1="184.273253" y2="184.273253"/>
+  <line stroke="#888888" x1="566.5905903408143" x2="566.5905903408143" y1="184.273253" y2="185.27325300000004"/>
+  <line stroke="#888888" x1="566.5905903408143" x2="565.5905903408143" y1="185.27325300000004" y2="185.27325300000004"/>
+  <line stroke="#888888" x1="545.5905903408144" x2="545.5905903408144" y1="187.77325300000004" y2="186.773253"/>
+  <line stroke="#888888" x1="545.5905903408144" x2="546.5905903408143" y1="186.773253" y2="186.773253"/>
+  <line stroke="#888888" x1="546.5905903408143" x2="546.5905903408143" y1="186.773253" y2="187.77325300000004"/>
+  <line stroke="#888888" x1="546.5905903408143" x2="545.5905903408144" y1="187.77325300000004" y2="187.77325300000004"/>
+  <line stroke="#888888" x1="565.5905903408143" x2="565.5905903408143" y1="187.77325300000004" y2="186.773253"/>
+  <line stroke="#888888" x1="565.5905903408143" x2="566.5905903408143" y1="186.773253" y2="186.773253"/>
+  <line stroke="#888888" x1="566.5905903408143" x2="566.5905903408143" y1="186.773253" y2="187.77325300000004"/>
+  <line stroke="#888888" x1="566.5905903408143" x2="565.5905903408143" y1="187.77325300000004" y2="187.77325300000004"/>
+  <line stroke="#888888" x1="545.5905903408144" x2="545.5905903408144" y1="190.27325300000004" y2="189.27325300000004"/>
+  <line stroke="#888888" x1="545.5905903408144" x2="546.5905903408143" y1="189.27325300000004" y2="189.27325300000004"/>
+  <line stroke="#888888" x1="546.5905903408143" x2="546.5905903408143" y1="189.27325300000004" y2="190.27325300000004"/>
+  <line stroke="#888888" x1="546.5905903408143" x2="545.5905903408144" y1="190.27325300000004" y2="190.27325300000004"/>
+  <line stroke="#888888" x1="565.5905903408143" x2="565.5905903408143" y1="190.27325300000004" y2="189.27325300000004"/>
+  <line stroke="#888888" x1="565.5905903408143" x2="566.5905903408143" y1="189.27325300000004" y2="189.27325300000004"/>
+  <line stroke="#888888" x1="566.5905903408143" x2="566.5905903408143" y1="189.27325300000004" y2="190.27325300000004"/>
+  <line stroke="#888888" x1="566.5905903408143" x2="565.5905903408143" y1="190.27325300000004" y2="190.27325300000004"/>
+  <line stroke="#888888" x1="545.5905903408144" x2="545.5905903408144" y1="192.77325300000004" y2="191.77325300000004"/>
+  <line stroke="#888888" x1="545.5905903408144" x2="546.5905903408143" y1="191.77325300000004" y2="191.77325300000004"/>
+  <line stroke="#888888" x1="546.5905903408143" x2="546.5905903408143" y1="191.77325300000004" y2="192.77325300000004"/>
+  <line stroke="#888888" x1="546.5905903408143" x2="545.5905903408144" y1="192.77325300000004" y2="192.77325300000004"/>
+  <line stroke="#888888" x1="565.5905903408143" x2="565.5905903408143" y1="192.77325300000004" y2="191.77325300000004"/>
+  <line stroke="#888888" x1="565.5905903408143" x2="566.5905903408143" y1="191.77325300000004" y2="191.77325300000004"/>
+  <line stroke="#888888" x1="566.5905903408143" x2="566.5905903408143" y1="191.77325300000004" y2="192.77325300000004"/>
+  <line stroke="#888888" x1="566.5905903408143" x2="565.5905903408143" y1="192.77325300000004" y2="192.77325300000004"/>
+  <line stroke="#888888" x1="545.5905903408144" x2="545.5905903408144" y1="195.27325300000004" y2="194.27325300000004"/>
+  <line stroke="#888888" x1="545.5905903408144" x2="546.5905903408143" y1="194.27325300000004" y2="194.27325300000004"/>
+  <line stroke="#888888" x1="546.5905903408143" x2="546.5905903408143" y1="194.27325300000004" y2="195.27325300000004"/>
+  <line stroke="#888888" x1="546.5905903408143" x2="545.5905903408144" y1="195.27325300000004" y2="195.27325300000004"/>
+  <line stroke="#888888" x1="565.5905903408143" x2="565.5905903408143" y1="195.27325300000004" y2="194.27325300000004"/>
+  <line stroke="#888888" x1="565.5905903408143" x2="566.5905903408143" y1="194.27325300000004" y2="194.27325300000004"/>
+  <line stroke="#888888" x1="566.5905903408143" x2="566.5905903408143" y1="194.27325300000004" y2="195.27325300000004"/>
+  <line stroke="#888888" x1="566.5905903408143" x2="565.5905903408143" y1="195.27325300000004" y2="195.27325300000004"/>
+  <line stroke="#888888" x1="545.5905903408144" x2="545.5905903408144" y1="197.773253" y2="196.77325300000004"/>
+  <line stroke="#888888" x1="545.5905903408144" x2="546.5905903408143" y1="196.77325300000004" y2="196.77325300000004"/>
+  <line stroke="#888888" x1="546.5905903408143" x2="546.5905903408143" y1="196.77325300000004" y2="197.773253"/>
+  <line stroke="#888888" x1="546.5905903408143" x2="545.5905903408144" y1="197.773253" y2="197.773253"/>
+  <line stroke="#888888" x1="565.5905903408143" x2="565.5905903408143" y1="197.773253" y2="196.77325300000004"/>
+  <line stroke="#888888" x1="565.5905903408143" x2="566.5905903408143" y1="196.77325300000004" y2="196.77325300000004"/>
+  <line stroke="#888888" x1="566.5905903408143" x2="566.5905903408143" y1="196.77325300000004" y2="197.773253"/>
+  <line stroke="#888888" x1="566.5905903408143" x2="565.5905903408143" y1="197.773253" y2="197.773253"/>
+  <line stroke="#888888" x1="545.5905903408144" x2="545.5905903408144" y1="200.273253" y2="199.27325300000004"/>
+  <line stroke="#888888" x1="545.5905903408144" x2="546.5905903408143" y1="199.27325300000004" y2="199.27325300000004"/>
+  <line stroke="#888888" x1="546.5905903408143" x2="546.5905903408143" y1="199.27325300000004" y2="200.273253"/>
+  <line stroke="#888888" x1="546.5905903408143" x2="545.5905903408144" y1="200.273253" y2="200.273253"/>
+  <line stroke="#888888" x1="565.5905903408143" x2="565.5905903408143" y1="200.273253" y2="199.27325300000004"/>
+  <line stroke="#888888" x1="565.5905903408143" x2="566.5905903408143" y1="199.27325300000004" y2="199.27325300000004"/>
+  <line stroke="#888888" x1="566.5905903408143" x2="566.5905903408143" y1="199.27325300000004" y2="200.273253"/>
+  <line stroke="#888888" x1="566.5905903408143" x2="565.5905903408143" y1="200.273253" y2="200.273253"/>
+  <line stroke="#888888" x1="545.5905903408144" x2="545.5905903408144" y1="202.77325300000004" y2="201.77325300000004"/>
+  <line stroke="#888888" x1="545.5905903408144" x2="546.5905903408143" y1="201.77325300000004" y2="201.77325300000004"/>
+  <line stroke="#888888" x1="546.5905903408143" x2="546.5905903408143" y1="201.77325300000004" y2="202.77325300000004"/>
+  <line stroke="#888888" x1="546.5905903408143" x2="545.5905903408144" y1="202.77325300000004" y2="202.77325300000004"/>
+  <line stroke="#888888" x1="565.5905903408143" x2="565.5905903408143" y1="202.77325300000004" y2="201.77325300000004"/>
+  <line stroke="#888888" x1="565.5905903408143" x2="566.5905903408143" y1="201.77325300000004" y2="201.77325300000004"/>
+  <line stroke="#888888" x1="566.5905903408143" x2="566.5905903408143" y1="201.77325300000004" y2="202.77325300000004"/>
+  <line stroke="#888888" x1="566.5905903408143" x2="565.5905903408143" y1="202.77325300000004" y2="202.77325300000004"/>
+  <line stroke="#888888" x1="545.5905903408144" x2="545.5905903408144" y1="205.27325300000004" y2="204.27325300000004"/>
+  <line stroke="#888888" x1="545.5905903408144" x2="546.5905903408143" y1="204.27325300000004" y2="204.27325300000004"/>
+  <line stroke="#888888" x1="546.5905903408143" x2="546.5905903408143" y1="204.27325300000004" y2="205.27325300000004"/>
+  <line stroke="#888888" x1="546.5905903408143" x2="545.5905903408144" y1="205.27325300000004" y2="205.27325300000004"/>
+  <line stroke="#888888" x1="565.5905903408143" x2="565.5905903408143" y1="205.27325300000004" y2="204.27325300000004"/>
+  <line stroke="#888888" x1="565.5905903408143" x2="566.5905903408143" y1="204.27325300000004" y2="204.27325300000004"/>
+  <line stroke="#888888" x1="566.5905903408143" x2="566.5905903408143" y1="204.27325300000004" y2="205.27325300000004"/>
+  <line stroke="#888888" x1="566.5905903408143" x2="565.5905903408143" y1="205.27325300000004" y2="205.27325300000004"/>
+  <line stroke="#888888" x1="545.5905903408144" x2="545.5905903408144" y1="207.77325300000004" y2="206.77325300000004"/>
+  <line stroke="#888888" x1="545.5905903408144" x2="546.5905903408143" y1="206.77325300000004" y2="206.77325300000004"/>
+  <line stroke="#888888" x1="546.5905903408143" x2="546.5905903408143" y1="206.77325300000004" y2="207.77325300000004"/>
+  <line stroke="#888888" x1="546.5905903408143" x2="545.5905903408144" y1="207.77325300000004" y2="207.77325300000004"/>
+  <line stroke="#888888" x1="565.5905903408143" x2="565.5905903408143" y1="207.77325300000004" y2="206.77325300000004"/>
+  <line stroke="#888888" x1="565.5905903408143" x2="566.5905903408143" y1="206.77325300000004" y2="206.77325300000004"/>
+  <line stroke="#888888" x1="566.5905903408143" x2="566.5905903408143" y1="206.77325300000004" y2="207.77325300000004"/>
+  <line stroke="#888888" x1="566.5905903408143" x2="565.5905903408143" y1="207.77325300000004" y2="207.77325300000004"/>
+  <line stroke="#888888" x1="545.5905903408144" x2="545.5905903408144" y1="210.27325300000004" y2="209.273253"/>
+  <line stroke="#888888" x1="545.5905903408144" x2="546.5905903408143" y1="209.273253" y2="209.273253"/>
+  <line stroke="#888888" x1="546.5905903408143" x2="546.5905903408143" y1="209.273253" y2="210.27325300000004"/>
+  <line stroke="#888888" x1="546.5905903408143" x2="545.5905903408144" y1="210.27325300000004" y2="210.27325300000004"/>
+  <line stroke="#888888" x1="565.5905903408143" x2="565.5905903408143" y1="210.27325300000004" y2="209.273253"/>
+  <line stroke="#888888" x1="565.5905903408143" x2="566.5905903408143" y1="209.273253" y2="209.273253"/>
+  <line stroke="#888888" x1="566.5905903408143" x2="566.5905903408143" y1="209.273253" y2="210.27325300000004"/>
+  <line stroke="#888888" x1="566.5905903408143" x2="565.5905903408143" y1="210.27325300000004" y2="210.27325300000004"/>
+  <line stroke="#888888" x1="545.5905903408144" x2="545.5905903408144" y1="212.77325300000004" y2="211.77325300000004"/>
+  <line stroke="#888888" x1="545.5905903408144" x2="546.5905903408143" y1="211.77325300000004" y2="211.77325300000004"/>
+  <line stroke="#888888" x1="546.5905903408143" x2="546.5905903408143" y1="211.77325300000004" y2="212.77325300000004"/>
+  <line stroke="#888888" x1="546.5905903408143" x2="545.5905903408144" y1="212.77325300000004" y2="212.77325300000004"/>
+  <line stroke="#888888" x1="564.5905903408143" x2="564.5905903408143" y1="213.773253" y2="210.77325300000004"/>
+  <line stroke="#888888" x1="564.5905903408143" x2="567.5905903408143" y1="210.77325300000004" y2="210.77325300000004"/>
+  <line stroke="#888888" x1="567.5905903408143" x2="567.5905903408143" y1="210.77325300000004" y2="213.773253"/>
+  <line stroke="#888888" x1="567.5905903408143" x2="564.5905903408143" y1="213.773253" y2="213.773253"/>
+  <line stroke="#888888" x1="560.3405903408143" x2="551.8405903408143" y1="170.773253" y2="170.773253"/>
+  <line stroke="#888888" x1="551.8405903408143" x2="551.8405903408143" y1="170.773253" y2="170.27325300000004"/>
+  <line stroke="#888888" x1="551.8405903408143" x2="560.3405903408143" y1="170.27325300000004" y2="170.27325300000004"/>
+  <line stroke="#888888" x1="560.3405903408143" x2="560.3405903408143" y1="170.27325300000004" y2="170.773253"/>
+  <line stroke="#888888" x1="551.8405903408143" x2="560.3405903408143" y1="218.523253" y2="218.523253"/>
+  <line stroke="#888888" x1="560.3405903408143" x2="560.3405903408143" y1="218.523253" y2="219.02325300000004"/>
+  <line stroke="#888888" x1="560.3405903408143" x2="551.8405903408143" y1="219.02325300000004" y2="219.02325300000004"/>
+  <line stroke="#888888" x1="551.8405903408143" x2="551.8405903408143" y1="219.02325300000004" y2="218.523253"/>
+  <line stroke="#888888" x1="536.5905903408143" x2="541.5905903408144" y1="174.1141620909091" y2="174.1141620909091"/>
+  <line stroke="#888888" x1="541.5905903408144" x2="541.5905903408144" y1="174.1141620909091" y2="185.20507118181823"/>
+  <line stroke="#888888" x1="541.5905903408144" x2="536.5905903408143" y1="185.20507118181823" y2="185.20507118181823"/>
+  <line stroke="#888888" x1="536.5905903408143" x2="541.5905903408144" y1="201.84143481818185" y2="201.84143481818185"/>
+  <line stroke="#888888" x1="541.5905903408144" x2="541.5905903408144" y1="201.84143481818185" y2="212.93234390909092"/>
+  <line stroke="#888888" x1="541.5905903408144" x2="536.5905903408143" y1="212.93234390909092" y2="212.93234390909092"/>
+  <line stroke="#888888" x1="537.8405903408144" x2="541.3405903408144" y1="147.02325300000004" y2="147.02325300000004"/>
+  <line stroke="#888888" x1="541.3405903408144" x2="541.3405903408144" y1="147.02325300000004" y2="155.023253"/>
+  <line stroke="#888888" x1="541.3405903408144" x2="537.8405903408144" y1="155.023253" y2="155.023253"/>
+</svg>
diff --git a/rocolib/builders/output/BoatWithStackBattery/graph-model.png b/rocolib/builders/output/BoatWithStackBattery/graph-model.png
new file mode 100644
index 0000000000000000000000000000000000000000..e4ea89f1cb49a4219ceb05c65d94685ff7384f54
Binary files /dev/null and b/rocolib/builders/output/BoatWithStackBattery/graph-model.png differ
diff --git a/rocolib/builders/output/BoatWithStackBattery/graph-model.stl b/rocolib/builders/output/BoatWithStackBattery/graph-model.stl
new file mode 100644
index 0000000000000000000000000000000000000000..c0f41518870c773a6c7f61832496908a0d8eb14b
--- /dev/null
+++ b/rocolib/builders/output/BoatWithStackBattery/graph-model.stl
@@ -0,0 +1,3474 @@
+solid python
+facet normal 0 0 0
+outer loop
+vertex -0.0308 0.0305 0.0000
+vertex -0.0308 -0.0305 0.0000
+vertex 0.0308 -0.0305 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0308 -0.0305 0.0000
+vertex 0.0308 0.0305 0.0000
+vertex -0.0308 0.0305 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0499 -0.0305 0.0191
+vertex -0.0499 0.0305 0.0191
+vertex -0.0499 0.0305 0.0807
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0499 0.0305 0.0807
+vertex -0.0499 -0.0305 0.0807
+vertex -0.0499 -0.0305 0.0191
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0499 0.0305 0.0191
+vertex -0.0308 0.0305 -0.0000
+vertex -0.0428 0.0305 -0.0120
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0428 0.0305 -0.0120
+vertex -0.0619 0.0305 0.0071
+vertex -0.0499 0.0305 0.0191
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0619 0.0305 0.0071
+vertex -0.0428 0.0305 -0.0120
+vertex -0.0428 -0.0305 -0.0120
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0428 -0.0305 -0.0120
+vertex -0.0619 -0.0305 0.0071
+vertex -0.0619 0.0305 0.0071
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0619 -0.0305 0.0071
+vertex -0.0428 -0.0305 -0.0120
+vertex -0.0308 -0.0305 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0308 -0.0305 0.0000
+vertex -0.0499 -0.0305 0.0191
+vertex -0.0619 -0.0305 0.0071
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0340 -0.0330 0.0032
+vertex -0.0467 -0.0305 0.0159
+vertex -0.0467 -0.0330 0.0159
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0308 -0.0305 0.0000
+vertex -0.0340 -0.0270 0.0032
+vertex -0.0340 -0.0305 0.0032
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0340 -0.0270 0.0032
+vertex -0.0308 0.0305 0.0000
+vertex -0.0499 0.0305 0.0191
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0308 0.0305 0.0000
+vertex -0.0340 -0.0270 0.0032
+vertex -0.0308 -0.0305 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0467 -0.0270 0.0159
+vertex -0.0499 0.0305 0.0191
+vertex -0.0499 -0.0305 0.0191
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0499 0.0305 0.0191
+vertex -0.0467 -0.0270 0.0159
+vertex -0.0340 -0.0270 0.0032
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0499 -0.0305 0.0191
+vertex -0.0467 -0.0305 0.0159
+vertex -0.0467 -0.0270 0.0159
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0467 -0.0305 0.0159
+vertex -0.0340 -0.0330 0.0032
+vertex -0.0340 -0.0305 0.0032
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0450 0.0650 0.0000
+vertex -0.0450 -0.0650 0.0000
+vertex 0.0450 -0.0650 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0450 -0.0650 0.0000
+vertex 0.0450 0.0650 0.0000
+vertex -0.0450 0.0650 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0450 0.0650 -0.0700
+vertex -0.0450 -0.0650 -0.0700
+vertex -0.0450 -0.0650 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0450 -0.0650 0.0000
+vertex -0.0450 0.0650 0.0000
+vertex -0.0450 0.0650 -0.0700
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0450 0.0650 0.0000
+vertex 0.0450 -0.0650 0.0000
+vertex 0.0450 -0.0650 -0.0700
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0450 -0.0650 -0.0700
+vertex 0.0450 0.0650 -0.0700
+vertex 0.0450 0.0650 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0450 -0.0650 0.0000
+vertex -0.0450 -0.0650 -0.0700
+vertex -0.0099 -0.1040 -0.0700
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0099 -0.1040 -0.0700
+vertex 0.0000 -0.1150 -0.0700
+vertex -0.0450 -0.0650 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0000 -0.0650 0.0000
+vertex -0.0450 -0.0650 0.0000
+vertex 0.0000 -0.1150 -0.0700
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0000 -0.0650 0.0000
+vertex -0.0000 -0.1150 -0.0700
+vertex 0.0450 -0.0650 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0099 -0.1040 -0.0700
+vertex 0.0450 -0.0650 -0.0700
+vertex 0.0450 -0.0650 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0450 -0.0650 0.0000
+vertex -0.0000 -0.1150 -0.0700
+vertex 0.0099 -0.1040 -0.0700
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0450 -0.0650 -0.0700
+vertex -0.0450 -0.0650 0.0000
+vertex -0.0099 -0.1040 -0.0700
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0450 -0.0650 -0.0700
+vertex -0.0099 -0.1040 -0.0700
+vertex -0.0450 -0.0650 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0450 -0.0650 -0.0700
+vertex 0.0099 -0.1040 -0.0700
+vertex 0.0450 -0.0650 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0450 -0.0650 -0.0700
+vertex 0.0450 -0.0650 0.0000
+vertex 0.0099 -0.1040 -0.0700
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0450 0.0650 0.0000
+vertex 0.0450 0.0650 -0.0700
+vertex 0.0099 0.1040 -0.0700
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0099 0.1040 -0.0700
+vertex 0.0000 0.1150 -0.0700
+vertex 0.0450 0.0650 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0000 0.0650 -0.0000
+vertex 0.0450 0.0650 -0.0000
+vertex 0.0000 0.1150 -0.0700
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0000 0.0650 0.0000
+vertex 0.0000 0.1150 -0.0700
+vertex -0.0450 0.0650 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0099 0.1040 -0.0700
+vertex -0.0450 0.0650 -0.0700
+vertex -0.0450 0.0650 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0450 0.0650 0.0000
+vertex 0.0000 0.1150 -0.0700
+vertex -0.0099 0.1040 -0.0700
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0450 0.0650 -0.0700
+vertex 0.0450 0.0650 0.0000
+vertex 0.0099 0.1040 -0.0700
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0450 0.0650 -0.0700
+vertex 0.0099 0.1040 -0.0700
+vertex 0.0450 0.0650 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0450 0.0650 -0.0700
+vertex -0.0099 0.1040 -0.0700
+vertex -0.0450 0.0650 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0450 0.0650 -0.0700
+vertex -0.0450 0.0650 0.0000
+vertex -0.0099 0.1040 -0.0700
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0305 0.0120 0.0000
+vertex -0.0305 -0.0120 0.0000
+vertex 0.0305 -0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0120 0.0000
+vertex 0.0305 0.0120 0.0000
+vertex -0.0305 0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0450 0.0000 -0.0700
+vertex -0.0450 0.0000 -0.1061
+vertex -0.0450 -0.0610 -0.1061
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0450 -0.0610 -0.1061
+vertex -0.0450 -0.0610 -0.0700
+vertex -0.0450 0.0000 -0.0700
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0081 -0.0610 -0.1231
+vertex -0.0280 -0.0610 -0.1231
+vertex -0.0280 0.0000 -0.1231
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0280 0.0000 -0.1231
+vertex 0.0081 0.0000 -0.1231
+vertex 0.0081 -0.0610 -0.1231
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0280 0.0000 -0.1231
+vertex -0.0319 -0.0290 -0.1192
+vertex -0.0319 -0.0180 -0.1192
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0319 -0.0290 -0.1192
+vertex -0.0280 0.0000 -0.1231
+vertex -0.0280 -0.0610 -0.1231
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0280 0.0000 -0.1231
+vertex -0.0319 -0.0180 -0.1192
+vertex -0.0411 -0.0180 -0.1100
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0450 0.0000 -0.1061
+vertex -0.0411 -0.0180 -0.1100
+vertex -0.0411 -0.0290 -0.1100
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0411 -0.0180 -0.1100
+vertex -0.0450 0.0000 -0.1061
+vertex -0.0280 0.0000 -0.1231
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0450 0.0000 -0.1061
+vertex -0.0411 -0.0290 -0.1100
+vertex -0.0450 -0.0610 -0.1061
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0319 -0.0290 -0.1192
+vertex -0.0330 -0.0495 -0.1182
+vertex -0.0411 -0.0290 -0.1100
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0330 -0.0495 -0.1182
+vertex -0.0280 -0.0610 -0.1231
+vertex -0.0330 -0.0555 -0.1182
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0280 -0.0610 -0.1231
+vertex -0.0330 -0.0495 -0.1182
+vertex -0.0319 -0.0290 -0.1192
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0330 -0.0555 -0.1182
+vertex -0.0280 -0.0610 -0.1231
+vertex -0.0450 -0.0610 -0.1061
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0401 -0.0495 -0.1111
+vertex -0.0401 -0.0555 -0.1111
+vertex -0.0450 -0.0610 -0.1061
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0450 -0.0610 -0.1061
+vertex -0.0401 -0.0555 -0.1111
+vertex -0.0330 -0.0555 -0.1182
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0401 -0.0495 -0.1111
+vertex -0.0450 -0.0610 -0.1061
+vertex -0.0411 -0.0290 -0.1100
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0330 -0.0495 -0.1182
+vertex -0.0401 -0.0495 -0.1111
+vertex -0.0411 -0.0290 -0.1100
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0120 0.0000
+vertex -0.0055 -0.0115 -0.0103
+vertex -0.0055 -0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0115 -0.0132
+vertex -0.0055 -0.0105 -0.0138
+vertex -0.0055 -0.0105 -0.0148
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0115 -0.0103
+vertex -0.0055 -0.0120 0.0000
+vertex -0.0055 -0.0085 -0.0103
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0120 0.0000
+vertex -0.0055 -0.0115 -0.0132
+vertex -0.0055 -0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0148
+vertex -0.0055 -0.0105 -0.0163
+vertex -0.0055 -0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0163
+vertex -0.0055 -0.0105 -0.0148
+vertex -0.0055 -0.0095 -0.0148
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0173
+vertex -0.0055 -0.0105 -0.0187
+vertex -0.0055 -0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0187
+vertex -0.0055 -0.0105 -0.0173
+vertex -0.0055 -0.0095 -0.0173
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0163
+vertex -0.0055 -0.0105 -0.0173
+vertex -0.0055 -0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0115 -0.0132
+vertex -0.0055 -0.0105 -0.0187
+vertex -0.0055 -0.0105 -0.0198
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0198
+vertex -0.0055 -0.0105 -0.0213
+vertex -0.0055 -0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0213
+vertex -0.0055 -0.0105 -0.0198
+vertex -0.0055 -0.0095 -0.0198
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0222
+vertex -0.0055 -0.0105 -0.0238
+vertex -0.0055 -0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0238
+vertex -0.0055 -0.0105 -0.0222
+vertex -0.0055 -0.0095 -0.0222
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0213
+vertex -0.0055 -0.0105 -0.0222
+vertex -0.0055 -0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0248
+vertex -0.0055 -0.0105 -0.0262
+vertex -0.0055 -0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0262
+vertex -0.0055 -0.0105 -0.0248
+vertex -0.0055 -0.0095 -0.0248
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0272
+vertex -0.0055 -0.0105 -0.0288
+vertex -0.0055 -0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0288
+vertex -0.0055 -0.0105 -0.0272
+vertex -0.0055 -0.0095 -0.0272
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0262
+vertex -0.0055 -0.0105 -0.0272
+vertex -0.0055 -0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0238
+vertex -0.0055 -0.0105 -0.0248
+vertex -0.0055 -0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0115 -0.0132
+vertex -0.0055 -0.0105 -0.0288
+vertex -0.0055 -0.0105 -0.0298
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0095 -0.0163
+vertex -0.0055 -0.0105 -0.0163
+vertex -0.0055 -0.0095 -0.0148
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0095 -0.0148
+vertex -0.0055 -0.0095 -0.0138
+vertex -0.0055 -0.0085 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0095 -0.0187
+vertex -0.0055 -0.0105 -0.0187
+vertex -0.0055 -0.0095 -0.0173
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0095 -0.0173
+vertex -0.0055 -0.0095 -0.0163
+vertex -0.0055 -0.0085 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0095 -0.0148
+vertex -0.0055 -0.0085 -0.0132
+vertex -0.0055 -0.0095 -0.0163
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0095 -0.0173
+vertex -0.0055 0.0095 -0.0173
+vertex -0.0055 -0.0095 -0.0187
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0085 -0.0132
+vertex -0.0055 -0.0085 -0.0103
+vertex -0.0055 0.0095 -0.0112
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0095 -0.0213
+vertex -0.0055 -0.0105 -0.0213
+vertex -0.0055 -0.0095 -0.0198
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0187
+vertex -0.0055 -0.0095 -0.0198
+vertex -0.0055 -0.0095 -0.0187
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0095 -0.0198
+vertex -0.0055 0.0095 -0.0198
+vertex -0.0055 -0.0095 -0.0213
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0095 -0.0138
+vertex -0.0055 -0.0115 -0.0132
+vertex -0.0055 -0.0085 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0138
+vertex -0.0055 -0.0115 -0.0132
+vertex -0.0055 -0.0095 -0.0138
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0095 -0.0238
+vertex -0.0055 -0.0105 -0.0238
+vertex -0.0055 -0.0095 -0.0222
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0213
+vertex -0.0055 -0.0095 -0.0222
+vertex -0.0055 -0.0095 -0.0213
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0095 -0.0248
+vertex -0.0055 -0.0095 -0.0262
+vertex -0.0055 -0.0105 -0.0262
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0095 -0.0238
+vertex -0.0055 -0.0095 -0.0222
+vertex -0.0055 0.0095 -0.0222
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0248
+vertex -0.0055 -0.0095 -0.0262
+vertex -0.0055 -0.0095 -0.0248
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0272
+vertex -0.0055 -0.0095 -0.0288
+vertex -0.0055 -0.0095 -0.0272
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0288
+vertex -0.0055 -0.0095 -0.0298
+vertex -0.0055 -0.0095 -0.0288
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0095 -0.0272
+vertex -0.0055 -0.0095 -0.0262
+vertex -0.0055 0.0095 -0.0262
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0095 -0.0288
+vertex -0.0055 -0.0105 -0.0288
+vertex -0.0055 -0.0095 -0.0272
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0095 -0.0248
+vertex -0.0055 -0.0095 -0.0238
+vertex -0.0055 0.0095 -0.0238
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0298
+vertex -0.0055 -0.0095 -0.0298
+vertex -0.0055 -0.0095 -0.0312
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0095 -0.0298
+vertex -0.0055 0.0095 -0.0298
+vertex -0.0055 -0.0095 -0.0312
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0120 0.0000
+vertex -0.0055 0.0120 0.0000
+vertex -0.0055 -0.0085 -0.0103
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0115 -0.0132
+vertex -0.0055 -0.0105 -0.0298
+vertex -0.0055 -0.0105 -0.0312
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0338
+vertex -0.0055 -0.0115 -0.0132
+vertex -0.0055 -0.0105 -0.0323
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0348
+vertex -0.0055 -0.0120 -0.0610
+vertex -0.0055 -0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0323
+vertex -0.0055 -0.0095 -0.0323
+vertex -0.0055 -0.0105 -0.0338
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0348
+vertex -0.0055 -0.0115 -0.0132
+vertex -0.0055 -0.0105 -0.0338
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0362
+vertex -0.0055 -0.0105 -0.0372
+vertex -0.0055 -0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0387
+vertex -0.0055 -0.0105 -0.0398
+vertex -0.0055 -0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0372
+vertex -0.0055 -0.0095 -0.0372
+vertex -0.0055 -0.0105 -0.0387
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0372
+vertex -0.0055 -0.0105 -0.0387
+vertex -0.0055 -0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0348
+vertex -0.0055 -0.0095 -0.0348
+vertex -0.0055 -0.0105 -0.0362
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0348
+vertex -0.0055 -0.0105 -0.0362
+vertex -0.0055 -0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0413
+vertex -0.0055 -0.0105 -0.0423
+vertex -0.0055 -0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0120 -0.0610
+vertex -0.0055 -0.0105 -0.0438
+vertex -0.0055 -0.0105 -0.0447
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0438
+vertex -0.0055 -0.0120 -0.0610
+vertex -0.0055 -0.0105 -0.0423
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0423
+vertex -0.0055 -0.0095 -0.0423
+vertex -0.0055 -0.0105 -0.0438
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0413
+vertex -0.0055 -0.0120 -0.0610
+vertex -0.0055 -0.0105 -0.0398
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0447
+vertex -0.0055 -0.0105 -0.0462
+vertex -0.0055 -0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0462
+vertex -0.0055 -0.0105 -0.0447
+vertex -0.0055 -0.0095 -0.0447
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0473
+vertex -0.0055 -0.0105 -0.0488
+vertex -0.0055 -0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0488
+vertex -0.0055 -0.0105 -0.0473
+vertex -0.0055 -0.0095 -0.0473
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0462
+vertex -0.0055 -0.0105 -0.0473
+vertex -0.0055 -0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0120 -0.0610
+vertex -0.0055 -0.0105 -0.0488
+vertex -0.0055 -0.0105 -0.0498
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0398
+vertex -0.0055 -0.0095 -0.0398
+vertex -0.0055 -0.0105 -0.0413
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0323
+vertex -0.0055 -0.0115 -0.0132
+vertex -0.0055 -0.0105 -0.0312
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0095 -0.0338
+vertex -0.0055 -0.0105 -0.0338
+vertex -0.0055 -0.0095 -0.0323
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0312
+vertex -0.0055 -0.0095 -0.0323
+vertex -0.0055 -0.0095 -0.0312
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0095 -0.0362
+vertex -0.0055 -0.0105 -0.0362
+vertex -0.0055 -0.0095 -0.0348
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0338
+vertex -0.0055 -0.0095 -0.0348
+vertex -0.0055 -0.0095 -0.0338
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0095 -0.0338
+vertex -0.0055 -0.0095 -0.0323
+vertex -0.0055 0.0095 -0.0323
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0095 -0.0387
+vertex -0.0055 -0.0105 -0.0387
+vertex -0.0055 -0.0095 -0.0372
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0362
+vertex -0.0055 -0.0095 -0.0372
+vertex -0.0055 -0.0095 -0.0362
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0095 -0.0413
+vertex -0.0055 -0.0105 -0.0413
+vertex -0.0055 -0.0095 -0.0398
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0387
+vertex -0.0055 -0.0095 -0.0398
+vertex -0.0055 -0.0095 -0.0387
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0095 -0.0387
+vertex -0.0055 -0.0095 -0.0372
+vertex -0.0055 0.0095 -0.0372
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0095 -0.0362
+vertex -0.0055 -0.0095 -0.0348
+vertex -0.0055 0.0095 -0.0348
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0095 -0.0438
+vertex -0.0055 -0.0105 -0.0438
+vertex -0.0055 -0.0095 -0.0423
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0413
+vertex -0.0055 -0.0095 -0.0423
+vertex -0.0055 -0.0095 -0.0413
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0095 -0.0447
+vertex -0.0055 -0.0095 -0.0462
+vertex -0.0055 -0.0105 -0.0462
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0095 -0.0438
+vertex -0.0055 -0.0095 -0.0423
+vertex -0.0055 0.0095 -0.0423
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0085 -0.0478
+vertex -0.0055 -0.0095 -0.0462
+vertex -0.0055 -0.0095 -0.0447
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0085 -0.0478
+vertex -0.0055 -0.0095 -0.0488
+vertex -0.0055 -0.0095 -0.0473
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0085 -0.0478
+vertex -0.0055 -0.0095 -0.0498
+vertex -0.0055 -0.0095 -0.0488
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0095 -0.0473
+vertex -0.0055 -0.0095 -0.0462
+vertex -0.0055 0.0085 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0095 -0.0488
+vertex -0.0055 -0.0105 -0.0488
+vertex -0.0055 -0.0095 -0.0473
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0095 -0.0447
+vertex -0.0055 -0.0095 -0.0438
+vertex -0.0055 0.0085 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0498
+vertex -0.0055 -0.0095 -0.0498
+vertex -0.0055 -0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0095 -0.0413
+vertex -0.0055 -0.0095 -0.0398
+vertex -0.0055 0.0095 -0.0398
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0105 -0.0312
+vertex -0.0055 -0.0105 -0.0298
+vertex -0.0055 -0.0095 -0.0312
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0120 -0.0610
+vertex -0.0055 -0.0095 -0.0498
+vertex -0.0055 0.0085 -0.0508
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0173
+vertex -0.0055 -0.0095 -0.0173
+vertex -0.0055 -0.0085 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0138
+vertex -0.0055 -0.0085 -0.0132
+vertex -0.0055 0.0095 -0.0123
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0163
+vertex -0.0055 -0.0085 -0.0132
+vertex -0.0055 0.0095 -0.0148
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0123
+vertex -0.0055 0.0105 -0.0123
+vertex -0.0055 0.0095 -0.0138
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0148
+vertex -0.0055 -0.0085 -0.0132
+vertex -0.0055 0.0095 -0.0138
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0187
+vertex -0.0055 -0.0095 -0.0187
+vertex -0.0055 0.0095 -0.0173
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0213
+vertex -0.0055 -0.0095 -0.0213
+vertex -0.0055 0.0095 -0.0198
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0173
+vertex -0.0055 0.0105 -0.0173
+vertex -0.0055 0.0095 -0.0187
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0198
+vertex -0.0055 -0.0095 -0.0198
+vertex -0.0055 0.0095 -0.0187
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0148
+vertex -0.0055 0.0105 -0.0148
+vertex -0.0055 0.0095 -0.0163
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0173
+vertex -0.0055 -0.0085 -0.0132
+vertex -0.0055 0.0095 -0.0163
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0238
+vertex -0.0055 -0.0095 -0.0238
+vertex -0.0055 0.0095 -0.0222
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0262
+vertex -0.0055 -0.0095 -0.0262
+vertex -0.0055 0.0095 -0.0248
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0222
+vertex -0.0055 0.0105 -0.0222
+vertex -0.0055 0.0095 -0.0238
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0248
+vertex -0.0055 -0.0095 -0.0248
+vertex -0.0055 0.0095 -0.0238
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0288
+vertex -0.0055 -0.0095 -0.0288
+vertex -0.0055 0.0095 -0.0272
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0312
+vertex -0.0055 -0.0095 -0.0312
+vertex -0.0055 0.0095 -0.0298
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0272
+vertex -0.0055 0.0105 -0.0272
+vertex -0.0055 0.0095 -0.0288
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0298
+vertex -0.0055 -0.0095 -0.0298
+vertex -0.0055 0.0095 -0.0288
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0248
+vertex -0.0055 0.0105 -0.0248
+vertex -0.0055 0.0095 -0.0262
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0272
+vertex -0.0055 -0.0095 -0.0272
+vertex -0.0055 0.0095 -0.0262
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0198
+vertex -0.0055 0.0105 -0.0198
+vertex -0.0055 0.0095 -0.0213
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0222
+vertex -0.0055 -0.0095 -0.0222
+vertex -0.0055 0.0095 -0.0213
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0123
+vertex -0.0055 0.0105 -0.0112
+vertex -0.0055 0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0148
+vertex -0.0055 0.0105 -0.0138
+vertex -0.0055 0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0123
+vertex -0.0055 0.0120 0.0000
+vertex -0.0055 0.0105 -0.0138
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0123
+vertex -0.0055 0.0105 -0.0138
+vertex -0.0055 0.0095 -0.0138
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0163
+vertex -0.0055 0.0120 0.0000
+vertex -0.0055 0.0105 -0.0173
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0120 0.0000
+vertex -0.0055 0.0105 -0.0163
+vertex -0.0055 0.0105 -0.0148
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0173
+vertex -0.0055 0.0105 -0.0187
+vertex -0.0055 0.0095 -0.0187
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0187
+vertex -0.0055 0.0105 -0.0173
+vertex -0.0055 0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0120 0.0000
+vertex -0.0055 0.0105 -0.0198
+vertex -0.0055 0.0105 -0.0187
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0112
+vertex -0.0055 0.0095 -0.0112
+vertex -0.0055 0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0148
+vertex -0.0055 0.0105 -0.0163
+vertex -0.0055 0.0095 -0.0163
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0198
+vertex -0.0055 0.0105 -0.0213
+vertex -0.0055 0.0095 -0.0213
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0213
+vertex -0.0055 0.0105 -0.0198
+vertex -0.0055 0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0222
+vertex -0.0055 0.0105 -0.0238
+vertex -0.0055 0.0095 -0.0238
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0238
+vertex -0.0055 0.0105 -0.0222
+vertex -0.0055 0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0213
+vertex -0.0055 0.0120 0.0000
+vertex -0.0055 0.0105 -0.0222
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0248
+vertex -0.0055 0.0105 -0.0262
+vertex -0.0055 0.0095 -0.0262
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0262
+vertex -0.0055 0.0105 -0.0248
+vertex -0.0055 0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0272
+vertex -0.0055 0.0105 -0.0288
+vertex -0.0055 0.0095 -0.0288
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0115 -0.0478
+vertex -0.0055 0.0105 -0.0288
+vertex -0.0055 0.0105 -0.0272
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0115 -0.0478
+vertex -0.0055 0.0105 -0.0298
+vertex -0.0055 0.0105 -0.0288
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0272
+vertex -0.0055 0.0105 -0.0262
+vertex -0.0055 0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0238
+vertex -0.0055 0.0120 0.0000
+vertex -0.0055 0.0105 -0.0248
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0120 0.0000
+vertex -0.0055 0.0115 -0.0478
+vertex -0.0055 0.0105 -0.0262
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0112
+vertex -0.0055 -0.0085 -0.0103
+vertex -0.0055 0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0298
+vertex -0.0055 0.0105 -0.0298
+vertex -0.0055 0.0105 -0.0312
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0338
+vertex -0.0055 -0.0095 -0.0338
+vertex -0.0055 0.0095 -0.0323
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0362
+vertex -0.0055 -0.0095 -0.0362
+vertex -0.0055 0.0095 -0.0348
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0323
+vertex -0.0055 0.0105 -0.0323
+vertex -0.0055 0.0095 -0.0338
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0348
+vertex -0.0055 -0.0095 -0.0348
+vertex -0.0055 0.0095 -0.0338
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0387
+vertex -0.0055 -0.0095 -0.0387
+vertex -0.0055 0.0095 -0.0372
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0413
+vertex -0.0055 -0.0095 -0.0413
+vertex -0.0055 0.0095 -0.0398
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0372
+vertex -0.0055 0.0105 -0.0372
+vertex -0.0055 0.0095 -0.0387
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0398
+vertex -0.0055 -0.0095 -0.0398
+vertex -0.0055 0.0095 -0.0387
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0348
+vertex -0.0055 0.0105 -0.0348
+vertex -0.0055 0.0095 -0.0362
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0372
+vertex -0.0055 -0.0095 -0.0372
+vertex -0.0055 0.0095 -0.0362
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0438
+vertex -0.0055 -0.0095 -0.0438
+vertex -0.0055 0.0095 -0.0423
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0085 -0.0478
+vertex -0.0055 0.0085 -0.0508
+vertex -0.0055 -0.0095 -0.0498
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0115 -0.0478
+vertex -0.0055 0.0085 -0.0478
+vertex -0.0055 0.0095 -0.0473
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0095 -0.0438
+vertex -0.0055 0.0095 -0.0438
+vertex -0.0055 0.0085 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0095 -0.0423
+vertex -0.0055 0.0095 -0.0413
+vertex -0.0055 0.0095 -0.0423
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0438
+vertex -0.0055 0.0095 -0.0447
+vertex -0.0055 0.0085 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0462
+vertex -0.0055 0.0095 -0.0473
+vertex -0.0055 0.0085 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0447
+vertex -0.0055 0.0105 -0.0447
+vertex -0.0055 0.0095 -0.0462
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0447
+vertex -0.0055 0.0095 -0.0462
+vertex -0.0055 0.0085 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0423
+vertex -0.0055 0.0105 -0.0423
+vertex -0.0055 0.0095 -0.0438
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0473
+vertex -0.0055 0.0105 -0.0473
+vertex -0.0055 0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0398
+vertex -0.0055 0.0105 -0.0398
+vertex -0.0055 0.0095 -0.0413
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0095 -0.0323
+vertex -0.0055 0.0095 -0.0312
+vertex -0.0055 0.0095 -0.0323
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0323
+vertex -0.0055 0.0105 -0.0312
+vertex -0.0055 0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0348
+vertex -0.0055 0.0105 -0.0338
+vertex -0.0055 0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0323
+vertex -0.0055 0.0115 -0.0478
+vertex -0.0055 0.0105 -0.0338
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0323
+vertex -0.0055 0.0105 -0.0338
+vertex -0.0055 0.0095 -0.0338
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0372
+vertex -0.0055 0.0105 -0.0362
+vertex -0.0055 0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0398
+vertex -0.0055 0.0105 -0.0387
+vertex -0.0055 0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0372
+vertex -0.0055 0.0115 -0.0478
+vertex -0.0055 0.0105 -0.0387
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0372
+vertex -0.0055 0.0105 -0.0387
+vertex -0.0055 0.0095 -0.0387
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0348
+vertex -0.0055 0.0115 -0.0478
+vertex -0.0055 0.0105 -0.0362
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0348
+vertex -0.0055 0.0105 -0.0362
+vertex -0.0055 0.0095 -0.0362
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0423
+vertex -0.0055 0.0105 -0.0413
+vertex -0.0055 0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0447
+vertex -0.0055 0.0105 -0.0438
+vertex -0.0055 0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0423
+vertex -0.0055 0.0115 -0.0478
+vertex -0.0055 0.0105 -0.0438
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0423
+vertex -0.0055 0.0105 -0.0438
+vertex -0.0055 0.0095 -0.0438
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0473
+vertex -0.0055 0.0105 -0.0462
+vertex -0.0055 0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0115 -0.0478
+vertex -0.0055 0.0120 -0.0610
+vertex -0.0055 0.0115 -0.0508
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0120 -0.0610
+vertex -0.0055 0.0115 -0.0478
+vertex -0.0055 0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0120 -0.0610
+vertex -0.0055 0.0085 -0.0508
+vertex -0.0055 0.0115 -0.0508
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0462
+vertex -0.0055 0.0105 -0.0447
+vertex -0.0055 0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0413
+vertex -0.0055 0.0105 -0.0398
+vertex -0.0055 0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0447
+vertex -0.0055 0.0105 -0.0462
+vertex -0.0055 0.0095 -0.0462
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0312
+vertex -0.0055 0.0105 -0.0298
+vertex -0.0055 0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0105 -0.0398
+vertex -0.0055 0.0105 -0.0413
+vertex -0.0055 0.0095 -0.0413
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0312
+vertex -0.0055 0.0095 -0.0298
+vertex -0.0055 0.0105 -0.0312
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0085 -0.0508
+vertex -0.0055 0.0120 -0.0610
+vertex -0.0055 -0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0095 -0.0123
+vertex -0.0055 -0.0085 -0.0132
+vertex -0.0055 0.0095 -0.0112
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0120 0.0000
+vertex 0.0076 0.0120 -0.0367
+vertex -0.0055 0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0076 0.0120 -0.0367
+vertex -0.0055 0.0120 0.0000
+vertex 0.0305 0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 0.0120 -0.0610
+vertex 0.0076 0.0120 -0.0548
+vertex 0.0305 0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0076 0.0120 -0.0548
+vertex -0.0055 0.0120 -0.0610
+vertex 0.0076 0.0120 -0.0367
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0282 0.0120 -0.0367
+vertex 0.0305 0.0120 0.0000
+vertex 0.0305 0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0120 0.0000
+vertex 0.0282 0.0120 -0.0367
+vertex 0.0076 0.0120 -0.0367
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0282 0.0120 -0.0548
+vertex 0.0305 0.0120 -0.0610
+vertex 0.0076 0.0120 -0.0548
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0120 -0.0610
+vertex 0.0282 0.0120 -0.0548
+vertex 0.0282 0.0120 -0.0367
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0120 0.0000
+vertex 0.0305 0.0115 -0.0103
+vertex 0.0305 0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0115 -0.0132
+vertex 0.0305 0.0105 -0.0138
+vertex 0.0305 0.0105 -0.0148
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0115 -0.0103
+vertex 0.0305 0.0120 0.0000
+vertex 0.0305 0.0085 -0.0103
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0120 0.0000
+vertex 0.0305 0.0115 -0.0132
+vertex 0.0305 0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0148
+vertex 0.0305 0.0105 -0.0163
+vertex 0.0305 0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0163
+vertex 0.0305 0.0105 -0.0148
+vertex 0.0305 0.0095 -0.0148
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0173
+vertex 0.0305 0.0105 -0.0187
+vertex 0.0305 0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0187
+vertex 0.0305 0.0105 -0.0173
+vertex 0.0305 0.0095 -0.0173
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0163
+vertex 0.0305 0.0105 -0.0173
+vertex 0.0305 0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0115 -0.0132
+vertex 0.0305 0.0105 -0.0187
+vertex 0.0305 0.0105 -0.0198
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0198
+vertex 0.0305 0.0105 -0.0213
+vertex 0.0305 0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0213
+vertex 0.0305 0.0105 -0.0198
+vertex 0.0305 0.0095 -0.0198
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0222
+vertex 0.0305 0.0105 -0.0238
+vertex 0.0305 0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0238
+vertex 0.0305 0.0105 -0.0222
+vertex 0.0305 0.0095 -0.0222
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0213
+vertex 0.0305 0.0105 -0.0222
+vertex 0.0305 0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0248
+vertex 0.0305 0.0105 -0.0262
+vertex 0.0305 0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0262
+vertex 0.0305 0.0105 -0.0248
+vertex 0.0305 0.0095 -0.0248
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0272
+vertex 0.0305 0.0105 -0.0288
+vertex 0.0305 0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0288
+vertex 0.0305 0.0105 -0.0272
+vertex 0.0305 0.0095 -0.0272
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0262
+vertex 0.0305 0.0105 -0.0272
+vertex 0.0305 0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0238
+vertex 0.0305 0.0105 -0.0248
+vertex 0.0305 0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0115 -0.0132
+vertex 0.0305 0.0105 -0.0288
+vertex 0.0305 0.0105 -0.0298
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0095 -0.0163
+vertex 0.0305 0.0105 -0.0163
+vertex 0.0305 0.0095 -0.0148
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0095 -0.0148
+vertex 0.0305 0.0095 -0.0138
+vertex 0.0305 0.0085 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0095 -0.0187
+vertex 0.0305 0.0105 -0.0187
+vertex 0.0305 0.0095 -0.0173
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0095 -0.0173
+vertex 0.0305 0.0095 -0.0163
+vertex 0.0305 0.0085 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0095 -0.0148
+vertex 0.0305 0.0085 -0.0132
+vertex 0.0305 0.0095 -0.0163
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0095 -0.0173
+vertex 0.0305 -0.0095 -0.0173
+vertex 0.0305 0.0095 -0.0187
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0085 -0.0132
+vertex 0.0305 0.0085 -0.0103
+vertex 0.0305 -0.0095 -0.0112
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0095 -0.0213
+vertex 0.0305 0.0105 -0.0213
+vertex 0.0305 0.0095 -0.0198
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0187
+vertex 0.0305 0.0095 -0.0198
+vertex 0.0305 0.0095 -0.0187
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0095 -0.0198
+vertex 0.0305 -0.0095 -0.0198
+vertex 0.0305 0.0095 -0.0213
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0095 -0.0138
+vertex 0.0305 0.0115 -0.0132
+vertex 0.0305 0.0085 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0138
+vertex 0.0305 0.0115 -0.0132
+vertex 0.0305 0.0095 -0.0138
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0095 -0.0238
+vertex 0.0305 0.0105 -0.0238
+vertex 0.0305 0.0095 -0.0222
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0213
+vertex 0.0305 0.0095 -0.0222
+vertex 0.0305 0.0095 -0.0213
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0095 -0.0248
+vertex 0.0305 0.0095 -0.0262
+vertex 0.0305 0.0105 -0.0262
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0095 -0.0238
+vertex 0.0305 0.0095 -0.0222
+vertex 0.0305 -0.0095 -0.0222
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0248
+vertex 0.0305 0.0095 -0.0262
+vertex 0.0305 0.0095 -0.0248
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0272
+vertex 0.0305 0.0095 -0.0288
+vertex 0.0305 0.0095 -0.0272
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0288
+vertex 0.0305 0.0095 -0.0298
+vertex 0.0305 0.0095 -0.0288
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0095 -0.0272
+vertex 0.0305 0.0095 -0.0262
+vertex 0.0305 -0.0095 -0.0262
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0095 -0.0288
+vertex 0.0305 0.0105 -0.0288
+vertex 0.0305 0.0095 -0.0272
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0095 -0.0248
+vertex 0.0305 0.0095 -0.0238
+vertex 0.0305 -0.0095 -0.0238
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0298
+vertex 0.0305 0.0095 -0.0298
+vertex 0.0305 0.0095 -0.0312
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0095 -0.0298
+vertex 0.0305 -0.0095 -0.0298
+vertex 0.0305 0.0095 -0.0312
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0120 0.0000
+vertex 0.0305 -0.0120 0.0000
+vertex 0.0305 0.0085 -0.0103
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0115 -0.0132
+vertex 0.0305 0.0105 -0.0298
+vertex 0.0305 0.0105 -0.0312
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0338
+vertex 0.0305 0.0115 -0.0132
+vertex 0.0305 0.0105 -0.0323
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0348
+vertex 0.0305 0.0120 -0.0610
+vertex 0.0305 0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0323
+vertex 0.0305 0.0095 -0.0323
+vertex 0.0305 0.0105 -0.0338
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0348
+vertex 0.0305 0.0115 -0.0132
+vertex 0.0305 0.0105 -0.0338
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0362
+vertex 0.0305 0.0105 -0.0372
+vertex 0.0305 0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0387
+vertex 0.0305 0.0105 -0.0398
+vertex 0.0305 0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0372
+vertex 0.0305 0.0095 -0.0372
+vertex 0.0305 0.0105 -0.0387
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0372
+vertex 0.0305 0.0105 -0.0387
+vertex 0.0305 0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0348
+vertex 0.0305 0.0095 -0.0348
+vertex 0.0305 0.0105 -0.0362
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0348
+vertex 0.0305 0.0105 -0.0362
+vertex 0.0305 0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0413
+vertex 0.0305 0.0105 -0.0423
+vertex 0.0305 0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0120 -0.0610
+vertex 0.0305 0.0105 -0.0438
+vertex 0.0305 0.0105 -0.0447
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0438
+vertex 0.0305 0.0120 -0.0610
+vertex 0.0305 0.0105 -0.0423
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0423
+vertex 0.0305 0.0095 -0.0423
+vertex 0.0305 0.0105 -0.0438
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0413
+vertex 0.0305 0.0120 -0.0610
+vertex 0.0305 0.0105 -0.0398
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0447
+vertex 0.0305 0.0105 -0.0462
+vertex 0.0305 0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0462
+vertex 0.0305 0.0105 -0.0447
+vertex 0.0305 0.0095 -0.0447
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0473
+vertex 0.0305 0.0105 -0.0488
+vertex 0.0305 0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0488
+vertex 0.0305 0.0105 -0.0473
+vertex 0.0305 0.0095 -0.0473
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0462
+vertex 0.0305 0.0105 -0.0473
+vertex 0.0305 0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0120 -0.0610
+vertex 0.0305 0.0105 -0.0488
+vertex 0.0305 0.0105 -0.0498
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0398
+vertex 0.0305 0.0095 -0.0398
+vertex 0.0305 0.0105 -0.0413
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0323
+vertex 0.0305 0.0115 -0.0132
+vertex 0.0305 0.0105 -0.0312
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0095 -0.0338
+vertex 0.0305 0.0105 -0.0338
+vertex 0.0305 0.0095 -0.0323
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0312
+vertex 0.0305 0.0095 -0.0323
+vertex 0.0305 0.0095 -0.0312
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0095 -0.0362
+vertex 0.0305 0.0105 -0.0362
+vertex 0.0305 0.0095 -0.0348
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0338
+vertex 0.0305 0.0095 -0.0348
+vertex 0.0305 0.0095 -0.0338
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0095 -0.0338
+vertex 0.0305 0.0095 -0.0323
+vertex 0.0305 -0.0095 -0.0323
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0095 -0.0387
+vertex 0.0305 0.0105 -0.0387
+vertex 0.0305 0.0095 -0.0372
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0362
+vertex 0.0305 0.0095 -0.0372
+vertex 0.0305 0.0095 -0.0362
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0095 -0.0413
+vertex 0.0305 0.0105 -0.0413
+vertex 0.0305 0.0095 -0.0398
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0387
+vertex 0.0305 0.0095 -0.0398
+vertex 0.0305 0.0095 -0.0387
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0095 -0.0387
+vertex 0.0305 0.0095 -0.0372
+vertex 0.0305 -0.0095 -0.0372
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0095 -0.0362
+vertex 0.0305 0.0095 -0.0348
+vertex 0.0305 -0.0095 -0.0348
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0095 -0.0438
+vertex 0.0305 0.0105 -0.0438
+vertex 0.0305 0.0095 -0.0423
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0413
+vertex 0.0305 0.0095 -0.0423
+vertex 0.0305 0.0095 -0.0413
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0095 -0.0447
+vertex 0.0305 0.0095 -0.0462
+vertex 0.0305 0.0105 -0.0462
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0095 -0.0438
+vertex 0.0305 0.0095 -0.0423
+vertex 0.0305 -0.0095 -0.0423
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0085 -0.0478
+vertex 0.0305 0.0095 -0.0462
+vertex 0.0305 0.0095 -0.0447
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0085 -0.0478
+vertex 0.0305 0.0095 -0.0488
+vertex 0.0305 0.0095 -0.0473
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0085 -0.0478
+vertex 0.0305 0.0095 -0.0498
+vertex 0.0305 0.0095 -0.0488
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0095 -0.0473
+vertex 0.0305 0.0095 -0.0462
+vertex 0.0305 -0.0085 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0095 -0.0488
+vertex 0.0305 0.0105 -0.0488
+vertex 0.0305 0.0095 -0.0473
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0095 -0.0447
+vertex 0.0305 0.0095 -0.0438
+vertex 0.0305 -0.0085 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0498
+vertex 0.0305 0.0095 -0.0498
+vertex 0.0305 0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0095 -0.0413
+vertex 0.0305 0.0095 -0.0398
+vertex 0.0305 -0.0095 -0.0398
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0105 -0.0312
+vertex 0.0305 0.0105 -0.0298
+vertex 0.0305 0.0095 -0.0312
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0120 -0.0610
+vertex 0.0305 0.0095 -0.0498
+vertex 0.0305 -0.0085 -0.0508
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0173
+vertex 0.0305 0.0095 -0.0173
+vertex 0.0305 0.0085 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0138
+vertex 0.0305 0.0085 -0.0132
+vertex 0.0305 -0.0095 -0.0123
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0163
+vertex 0.0305 0.0085 -0.0132
+vertex 0.0305 -0.0095 -0.0148
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0123
+vertex 0.0305 -0.0105 -0.0123
+vertex 0.0305 -0.0095 -0.0138
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0148
+vertex 0.0305 0.0085 -0.0132
+vertex 0.0305 -0.0095 -0.0138
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0187
+vertex 0.0305 0.0095 -0.0187
+vertex 0.0305 -0.0095 -0.0173
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0213
+vertex 0.0305 0.0095 -0.0213
+vertex 0.0305 -0.0095 -0.0198
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0173
+vertex 0.0305 -0.0105 -0.0173
+vertex 0.0305 -0.0095 -0.0187
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0198
+vertex 0.0305 0.0095 -0.0198
+vertex 0.0305 -0.0095 -0.0187
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0148
+vertex 0.0305 -0.0105 -0.0148
+vertex 0.0305 -0.0095 -0.0163
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0173
+vertex 0.0305 0.0085 -0.0132
+vertex 0.0305 -0.0095 -0.0163
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0238
+vertex 0.0305 0.0095 -0.0238
+vertex 0.0305 -0.0095 -0.0222
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0262
+vertex 0.0305 0.0095 -0.0262
+vertex 0.0305 -0.0095 -0.0248
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0222
+vertex 0.0305 -0.0105 -0.0222
+vertex 0.0305 -0.0095 -0.0238
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0248
+vertex 0.0305 0.0095 -0.0248
+vertex 0.0305 -0.0095 -0.0238
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0288
+vertex 0.0305 0.0095 -0.0288
+vertex 0.0305 -0.0095 -0.0272
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0312
+vertex 0.0305 0.0095 -0.0312
+vertex 0.0305 -0.0095 -0.0298
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0272
+vertex 0.0305 -0.0105 -0.0272
+vertex 0.0305 -0.0095 -0.0288
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0298
+vertex 0.0305 0.0095 -0.0298
+vertex 0.0305 -0.0095 -0.0288
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0248
+vertex 0.0305 -0.0105 -0.0248
+vertex 0.0305 -0.0095 -0.0262
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0272
+vertex 0.0305 0.0095 -0.0272
+vertex 0.0305 -0.0095 -0.0262
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0198
+vertex 0.0305 -0.0105 -0.0198
+vertex 0.0305 -0.0095 -0.0213
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0222
+vertex 0.0305 0.0095 -0.0222
+vertex 0.0305 -0.0095 -0.0213
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0123
+vertex 0.0305 -0.0105 -0.0112
+vertex 0.0305 -0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0148
+vertex 0.0305 -0.0105 -0.0138
+vertex 0.0305 -0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0123
+vertex 0.0305 -0.0120 0.0000
+vertex 0.0305 -0.0105 -0.0138
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0123
+vertex 0.0305 -0.0105 -0.0138
+vertex 0.0305 -0.0095 -0.0138
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0163
+vertex 0.0305 -0.0120 0.0000
+vertex 0.0305 -0.0105 -0.0173
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0120 0.0000
+vertex 0.0305 -0.0105 -0.0163
+vertex 0.0305 -0.0105 -0.0148
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0173
+vertex 0.0305 -0.0105 -0.0187
+vertex 0.0305 -0.0095 -0.0187
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0187
+vertex 0.0305 -0.0105 -0.0173
+vertex 0.0305 -0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0120 0.0000
+vertex 0.0305 -0.0105 -0.0198
+vertex 0.0305 -0.0105 -0.0187
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0112
+vertex 0.0305 -0.0095 -0.0112
+vertex 0.0305 -0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0148
+vertex 0.0305 -0.0105 -0.0163
+vertex 0.0305 -0.0095 -0.0163
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0198
+vertex 0.0305 -0.0105 -0.0213
+vertex 0.0305 -0.0095 -0.0213
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0213
+vertex 0.0305 -0.0105 -0.0198
+vertex 0.0305 -0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0222
+vertex 0.0305 -0.0105 -0.0238
+vertex 0.0305 -0.0095 -0.0238
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0238
+vertex 0.0305 -0.0105 -0.0222
+vertex 0.0305 -0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0213
+vertex 0.0305 -0.0120 0.0000
+vertex 0.0305 -0.0105 -0.0222
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0248
+vertex 0.0305 -0.0105 -0.0262
+vertex 0.0305 -0.0095 -0.0262
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0262
+vertex 0.0305 -0.0105 -0.0248
+vertex 0.0305 -0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0272
+vertex 0.0305 -0.0105 -0.0288
+vertex 0.0305 -0.0095 -0.0288
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0115 -0.0478
+vertex 0.0305 -0.0105 -0.0288
+vertex 0.0305 -0.0105 -0.0272
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0115 -0.0478
+vertex 0.0305 -0.0105 -0.0298
+vertex 0.0305 -0.0105 -0.0288
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0272
+vertex 0.0305 -0.0105 -0.0262
+vertex 0.0305 -0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0238
+vertex 0.0305 -0.0120 0.0000
+vertex 0.0305 -0.0105 -0.0248
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0120 0.0000
+vertex 0.0305 -0.0115 -0.0478
+vertex 0.0305 -0.0105 -0.0262
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0112
+vertex 0.0305 0.0085 -0.0103
+vertex 0.0305 -0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0298
+vertex 0.0305 -0.0105 -0.0298
+vertex 0.0305 -0.0105 -0.0312
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0338
+vertex 0.0305 0.0095 -0.0338
+vertex 0.0305 -0.0095 -0.0323
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0362
+vertex 0.0305 0.0095 -0.0362
+vertex 0.0305 -0.0095 -0.0348
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0323
+vertex 0.0305 -0.0105 -0.0323
+vertex 0.0305 -0.0095 -0.0338
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0348
+vertex 0.0305 0.0095 -0.0348
+vertex 0.0305 -0.0095 -0.0338
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0387
+vertex 0.0305 0.0095 -0.0387
+vertex 0.0305 -0.0095 -0.0372
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0413
+vertex 0.0305 0.0095 -0.0413
+vertex 0.0305 -0.0095 -0.0398
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0372
+vertex 0.0305 -0.0105 -0.0372
+vertex 0.0305 -0.0095 -0.0387
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0398
+vertex 0.0305 0.0095 -0.0398
+vertex 0.0305 -0.0095 -0.0387
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0348
+vertex 0.0305 -0.0105 -0.0348
+vertex 0.0305 -0.0095 -0.0362
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0372
+vertex 0.0305 0.0095 -0.0372
+vertex 0.0305 -0.0095 -0.0362
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0438
+vertex 0.0305 0.0095 -0.0438
+vertex 0.0305 -0.0095 -0.0423
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0085 -0.0478
+vertex 0.0305 -0.0085 -0.0508
+vertex 0.0305 0.0095 -0.0498
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0115 -0.0478
+vertex 0.0305 -0.0085 -0.0478
+vertex 0.0305 -0.0095 -0.0473
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0095 -0.0438
+vertex 0.0305 -0.0095 -0.0438
+vertex 0.0305 -0.0085 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0095 -0.0423
+vertex 0.0305 -0.0095 -0.0413
+vertex 0.0305 -0.0095 -0.0423
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0438
+vertex 0.0305 -0.0095 -0.0447
+vertex 0.0305 -0.0085 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0462
+vertex 0.0305 -0.0095 -0.0473
+vertex 0.0305 -0.0085 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0447
+vertex 0.0305 -0.0105 -0.0447
+vertex 0.0305 -0.0095 -0.0462
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0447
+vertex 0.0305 -0.0095 -0.0462
+vertex 0.0305 -0.0085 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0423
+vertex 0.0305 -0.0105 -0.0423
+vertex 0.0305 -0.0095 -0.0438
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0473
+vertex 0.0305 -0.0105 -0.0473
+vertex 0.0305 -0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0398
+vertex 0.0305 -0.0105 -0.0398
+vertex 0.0305 -0.0095 -0.0413
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0095 -0.0323
+vertex 0.0305 -0.0095 -0.0312
+vertex 0.0305 -0.0095 -0.0323
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0323
+vertex 0.0305 -0.0105 -0.0312
+vertex 0.0305 -0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0348
+vertex 0.0305 -0.0105 -0.0338
+vertex 0.0305 -0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0323
+vertex 0.0305 -0.0115 -0.0478
+vertex 0.0305 -0.0105 -0.0338
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0323
+vertex 0.0305 -0.0105 -0.0338
+vertex 0.0305 -0.0095 -0.0338
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0372
+vertex 0.0305 -0.0105 -0.0362
+vertex 0.0305 -0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0398
+vertex 0.0305 -0.0105 -0.0387
+vertex 0.0305 -0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0372
+vertex 0.0305 -0.0115 -0.0478
+vertex 0.0305 -0.0105 -0.0387
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0372
+vertex 0.0305 -0.0105 -0.0387
+vertex 0.0305 -0.0095 -0.0387
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0348
+vertex 0.0305 -0.0115 -0.0478
+vertex 0.0305 -0.0105 -0.0362
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0348
+vertex 0.0305 -0.0105 -0.0362
+vertex 0.0305 -0.0095 -0.0362
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0423
+vertex 0.0305 -0.0105 -0.0413
+vertex 0.0305 -0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0447
+vertex 0.0305 -0.0105 -0.0438
+vertex 0.0305 -0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0423
+vertex 0.0305 -0.0115 -0.0478
+vertex 0.0305 -0.0105 -0.0438
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0423
+vertex 0.0305 -0.0105 -0.0438
+vertex 0.0305 -0.0095 -0.0438
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0473
+vertex 0.0305 -0.0105 -0.0462
+vertex 0.0305 -0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0115 -0.0478
+vertex 0.0305 -0.0120 -0.0610
+vertex 0.0305 -0.0115 -0.0508
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0120 -0.0610
+vertex 0.0305 -0.0115 -0.0478
+vertex 0.0305 -0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0120 -0.0610
+vertex 0.0305 -0.0085 -0.0508
+vertex 0.0305 -0.0115 -0.0508
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0462
+vertex 0.0305 -0.0105 -0.0447
+vertex 0.0305 -0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0413
+vertex 0.0305 -0.0105 -0.0398
+vertex 0.0305 -0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0447
+vertex 0.0305 -0.0105 -0.0462
+vertex 0.0305 -0.0095 -0.0462
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0312
+vertex 0.0305 -0.0105 -0.0298
+vertex 0.0305 -0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0105 -0.0398
+vertex 0.0305 -0.0105 -0.0413
+vertex 0.0305 -0.0095 -0.0413
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0312
+vertex 0.0305 -0.0095 -0.0298
+vertex 0.0305 -0.0105 -0.0312
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0085 -0.0508
+vertex 0.0305 -0.0120 -0.0610
+vertex 0.0305 0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0095 -0.0123
+vertex 0.0305 0.0085 -0.0132
+vertex 0.0305 -0.0095 -0.0112
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0120 0.0000
+vertex 0.0249 -0.0120 -0.0435
+vertex 0.0305 -0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0249 -0.0120 -0.0435
+vertex 0.0305 -0.0120 0.0000
+vertex 0.0044 -0.0120 -0.0435
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0120 -0.0610
+vertex 0.0249 -0.0120 -0.0565
+vertex 0.0044 -0.0120 -0.0565
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0249 -0.0120 -0.0565
+vertex 0.0305 -0.0120 -0.0610
+vertex 0.0249 -0.0120 -0.0435
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0044 -0.0120 -0.0435
+vertex -0.0055 -0.0120 0.0000
+vertex -0.0055 -0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0120 0.0000
+vertex 0.0044 -0.0120 -0.0435
+vertex 0.0305 -0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0044 -0.0120 -0.0565
+vertex -0.0055 -0.0120 -0.0610
+vertex 0.0305 -0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0120 -0.0610
+vertex 0.0044 -0.0120 -0.0565
+vertex 0.0044 -0.0120 -0.0435
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0308 0.0205 -0.0000
+vertex -0.0308 0.0305 -0.0000
+vertex -0.0499 0.0305 0.0191
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0499 0.0305 0.0191
+vertex -0.0499 0.0205 0.0191
+vertex -0.0308 0.0205 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0112 -0.1053 -0.0526
+vertex -0.0099 -0.1040 -0.0700
+vertex -0.0450 -0.0650 -0.0700
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0450 -0.0650 -0.0700
+vertex -0.0464 -0.0662 -0.0526
+vertex -0.0112 -0.1053 -0.0526
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0464 -0.0662 -0.0526
+vertex 0.0450 -0.0650 -0.0700
+vertex 0.0099 -0.1040 -0.0700
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0099 -0.1040 -0.0700
+vertex 0.0112 -0.1053 -0.0526
+vertex 0.0464 -0.0662 -0.0526
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0112 0.1053 -0.0526
+vertex 0.0099 0.1040 -0.0700
+vertex 0.0450 0.0650 -0.0700
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0450 0.0650 -0.0700
+vertex 0.0464 0.0662 -0.0526
+vertex 0.0112 0.1053 -0.0526
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0464 0.0662 -0.0526
+vertex -0.0450 0.0650 -0.0700
+vertex -0.0099 0.1040 -0.0700
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0099 0.1040 -0.0700
+vertex -0.0112 0.1053 -0.0526
+vertex -0.0464 0.0662 -0.0526
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0408 0.0305 0.0000
+vertex 0.0308 0.0305 0.0000
+vertex 0.0308 -0.0305 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0308 -0.0305 0.0000
+vertex 0.0408 -0.0305 0.0000
+vertex 0.0408 0.0305 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0499 -0.0305 0.0907
+vertex -0.0499 -0.0305 0.0807
+vertex -0.0499 0.0305 0.0807
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0499 0.0305 0.0807
+vertex -0.0499 0.0305 0.0907
+vertex -0.0499 -0.0305 0.0907
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0450 0.0000 -0.0800
+vertex 0.0450 0.0000 -0.0700
+vertex 0.0450 -0.0610 -0.0700
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0450 -0.0610 -0.0700
+vertex 0.0450 -0.0610 -0.0800
+vertex 0.0450 0.0000 -0.0800
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0280 0.0100 -0.1231
+vertex -0.0280 0.0000 -0.1231
+vertex -0.0450 0.0000 -0.1061
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0450 0.0000 -0.1061
+vertex -0.0450 0.0100 -0.1061
+vertex -0.0280 0.0100 -0.1231
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0120 -0.0070
+vertex 0.0305 0.0120 0.0000
+vertex 0.0305 -0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0120 0.0000
+vertex 0.0305 -0.0120 -0.0070
+vertex 0.0305 0.0120 -0.0070
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0379 -0.0610 -0.0991
+vertex -0.0450 -0.0610 -0.1061
+vertex -0.0280 -0.0610 -0.1231
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0280 -0.0610 -0.1231
+vertex -0.0210 -0.0610 -0.1160
+vertex -0.0379 -0.0610 -0.0991
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0305 -0.0120 -0.0070
+vertex -0.0305 -0.0120 0.0000
+vertex -0.0305 0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0305 0.0120 0.0000
+vertex -0.0305 0.0120 -0.0070
+vertex -0.0305 -0.0120 -0.0070
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0055 -0.0120 -0.0070
+vertex 0.0055 -0.0120 0.0000
+vertex -0.0305 -0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0305 -0.0120 0.0000
+vertex -0.0305 -0.0120 -0.0070
+vertex 0.0055 -0.0120 -0.0070
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0045 -0.0120 -0.0000
+vertex -0.0055 -0.0120 0.0000
+vertex -0.0055 -0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0055 -0.0120 -0.0610
+vertex 0.0045 -0.0120 -0.0610
+vertex 0.0045 -0.0120 -0.0000
+endloop
+endfacet
+endsolid python
diff --git a/rocolib/builders/output/BoatWithStackBattery/graph-silhouette.dxf b/rocolib/builders/output/BoatWithStackBattery/graph-silhouette.dxf
new file mode 100644
index 0000000000000000000000000000000000000000..0bfe8e0c547a10d0a032bb697edd82a31826630c
--- /dev/null
+++ b/rocolib/builders/output/BoatWithStackBattery/graph-silhouette.dxf
@@ -0,0 +1,10658 @@
+  0
+SECTION
+  2
+HEADER
+  9
+$ACADVER
+  1
+AC1009
+  9
+$INSBASE
+ 10
+0.0
+ 20
+0.0
+ 30
+0.0
+  9
+$EXTMIN
+ 10
+0.0
+ 20
+0.0
+ 30
+0.0
+  9
+$EXTMAX
+ 10
+100.0
+ 20
+100.0
+ 30
+0.0
+  9
+$UNITMODE
+ 70
+0
+  9
+$AUNITS
+ 70
+0
+  9
+$ANGBASE
+ 50
+0.0
+  9
+$ANGDIR
+ 70
+0
+  0
+ENDSEC
+  0
+SECTION
+  2
+TABLES
+  0
+TABLE
+  2
+LTYPE
+ 70
+20
+  0
+LTYPE
+  2
+CONTINUOUS
+ 70
+0
+  3
+Solid
+ 72
+65
+ 73
+0
+ 40
+0.0
+  0
+LTYPE
+  2
+CENTER
+ 70
+0
+  3
+Center ____ _ ____ _ ____ _ ____ _ ____ _ ____
+ 72
+65
+ 73
+4
+ 40
+2.0
+ 49
+1.25
+ 49
+-0.25
+ 49
+0.25
+ 49
+-0.25
+  0
+LTYPE
+  2
+CENTERX2
+ 70
+0
+  3
+Center (2x) ________  __  ________  __  ________
+ 72
+65
+ 73
+4
+ 40
+3.5
+ 49
+2.5
+ 49
+-0.25
+ 49
+0.5
+ 49
+-0.25
+  0
+LTYPE
+  2
+CENTER2
+ 70
+0
+  3
+Center (.5x) ____ _ ____ _ ____ _ ____ _ ____
+ 72
+65
+ 73
+4
+ 40
+1.0
+ 49
+0.625
+ 49
+-0.125
+ 49
+0.125
+ 49
+-0.125
+  0
+LTYPE
+  2
+DASHED
+ 70
+0
+  3
+Dashed __ __ __ __ __ __ __ __ __ __ __ __ __ _
+ 72
+65
+ 73
+2
+ 40
+0.6
+ 49
+0.5
+ 49
+-0.1
+  0
+LTYPE
+  2
+DASHEDX2
+ 70
+0
+  3
+Dashed (2x) ____  ____  ____  ____  ____  ____
+ 72
+65
+ 73
+2
+ 40
+1.2
+ 49
+1.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DASHED2
+ 70
+0
+  3
+Dashed (.5x) _ _ _ _ _ _ _ _ _ _ _ _ _ _
+ 72
+65
+ 73
+2
+ 40
+0.3
+ 49
+0.25
+ 49
+-0.05
+  0
+LTYPE
+  2
+PHANTOM
+ 70
+0
+  3
+Phantom ______  __  __  ______  __  __  ______
+ 72
+65
+ 73
+6
+ 40
+2.5
+ 49
+1.25
+ 49
+-0.25
+ 49
+0.25
+ 49
+-0.25
+ 49
+0.25
+ 49
+-0.25
+  0
+LTYPE
+  2
+PHANTOMX2
+ 70
+0
+  3
+Phantom (2x)____________    ____    ____    ____________
+ 72
+65
+ 73
+6
+ 40
+4.25
+ 49
+2.5
+ 49
+-0.25
+ 49
+0.5
+ 49
+-0.25
+ 49
+0.5
+ 49
+-0.25
+  0
+LTYPE
+  2
+PHANTOM2
+ 70
+0
+  3
+Phantom (.5x) ___ _ _ ___ _ _ ___ _ _ ___ _ _ ___
+ 72
+65
+ 73
+6
+ 40
+1.25
+ 49
+0.625
+ 49
+-0.125
+ 49
+0.125
+ 49
+-0.125
+ 49
+0.125
+ 49
+-0.125
+  0
+LTYPE
+  2
+DASHDOT
+ 70
+0
+  3
+Dash dot __ . __ . __ . __ . __ . __ . __ . __
+ 72
+65
+ 73
+4
+ 40
+1.4
+ 49
+1.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DASHDOTX2
+ 70
+0
+  3
+Dash dot (2x) ____  .  ____  .  ____  .  ____
+ 72
+65
+ 73
+4
+ 40
+2.4
+ 49
+2.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DASHDOT2
+ 70
+0
+  3
+Dash dot (.5x) _ . _ . _ . _ . _ . _ . _ . _
+ 72
+65
+ 73
+4
+ 40
+0.7
+ 49
+0.5
+ 49
+-0.1
+ 49
+0.0
+ 49
+-0.1
+  0
+LTYPE
+  2
+DOT
+ 70
+0
+  3
+Dot .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .
+ 72
+65
+ 73
+2
+ 40
+0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DOTX2
+ 70
+0
+  3
+Dot (2x) .    .    .    .    .    .    .    . 
+ 72
+65
+ 73
+2
+ 40
+0.4
+ 49
+0.0
+ 49
+-0.4
+  0
+LTYPE
+  2
+DOT2
+ 70
+0
+  3
+Dot (.5) . . . . . . . . . . . . . . . . . . . 
+ 72
+65
+ 73
+2
+ 40
+0.1
+ 49
+0.0
+ 49
+-0.1
+  0
+LTYPE
+  2
+DIVIDE
+ 70
+0
+  3
+Divide __ . . __ . . __ . . __ . . __ . . __
+ 72
+65
+ 73
+6
+ 40
+1.6
+ 49
+1.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DIVIDEX2
+ 70
+0
+  3
+Divide (2x) ____  . .  ____  . .  ____  . .  ____
+ 72
+65
+ 73
+6
+ 40
+2.6
+ 49
+2.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+ 49
+0.0
+ 49
+-0.2
+  0
+LTYPE
+  2
+DIVIDE2
+ 70
+0
+  3
+Divide(.5x) _ . _ . _ . _ . _ . _ . _ . _
+ 72
+65
+ 73
+6
+ 40
+0.8
+ 49
+0.5
+ 49
+-0.1
+ 49
+0.0
+ 49
+-0.1
+ 49
+0.0
+ 49
+-0.1
+  0
+LTYPE
+  2
+DOTTED
+ 70
+0
+  3
+
+ 72
+65
+ 73
+2
+ 40
+1.0
+ 49
+0.0
+ 49
+-1.0
+  0
+ENDTAB
+  0
+TABLE
+  2
+LAYER
+ 70
+5
+  0
+LAYER
+  2
+DIMENSIONS
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+TABLEBACKGROUND
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+TABLECONTENT
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+TABLEGRID
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+VIEWPORTS
+ 70
+0
+ 62
+7
+  6
+CONTINUOUS
+  0
+ENDTAB
+  0
+TABLE
+  2
+STYLE
+ 70
+12
+  0
+STYLE
+  2
+STANDARD
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+arial.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+arial.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL_BOLD
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+arialbd.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+ariali.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL_BOLD_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+arialbi.ttf
+  4
+
+  0
+STYLE
+  2
+ARIAL_BLACK
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+ariblk.ttf
+  4
+
+  0
+STYLE
+  2
+ISOCPEUR
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+isocpeur.ttf
+  4
+
+  0
+STYLE
+  2
+ISOCPEUR_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+isocpeui.ttf
+  4
+
+  0
+STYLE
+  2
+TIMES
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+times.ttf
+  4
+
+  0
+STYLE
+  2
+TIMES_BOLD
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+timesbd.ttf
+  4
+
+  0
+STYLE
+  2
+TIMES_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+timesi.ttf
+  4
+
+  0
+STYLE
+  2
+TIMES_BOLD_ITALIC
+ 70
+0
+ 40
+0.0
+ 41
+1.0
+ 42
+1.0
+ 50
+0.0
+ 71
+0
+  3
+timesbi.ttf
+  4
+
+  0
+ENDTAB
+  0
+TABLE
+  2
+VIEW
+ 70
+0
+  0
+ENDTAB
+  0
+TABLE
+  2
+APPID
+ 70
+1
+  0
+APPID
+  2
+DXFWRITE
+ 70
+0
+  0
+ENDTAB
+  0
+TABLE
+  2
+VPORT
+ 70
+0
+  0
+ENDTAB
+  0
+TABLE
+  2
+UCS
+ 70
+0
+  0
+ENDTAB
+  0
+ENDSEC
+  0
+SECTION
+  2
+BLOCKS
+  0
+ENDSEC
+  0
+SECTION
+  2
+ENTITIES
+  0
+VIEWPORT
+  8
+VIEWPORTS
+ 67
+1
+ 10
+0.0
+ 20
+0.0
+ 30
+0.0
+ 40
+1.0
+ 41
+1.0
+ 68
+1
+ 69
+1
+1001
+ACAD
+1000
+MVIEW
+1002
+{
+1070
+16
+1010
+0.0
+1020
+0.0
+1030
+0.0
+1010
+0.0
+1020
+0.0
+1030
+0.0
+1040
+0.0
+1040
+1.0
+1040
+0.0
+1040
+0.0
+1040
+50.0
+1040
+0.0
+1040
+0.0
+1070
+0
+1070
+100
+1070
+1
+1070
+3
+1070
+0
+1070
+0
+1070
+0
+1070
+0
+1040
+0.0
+1040
+0.0
+1040
+0.0
+1040
+0.1
+1040
+0.1
+1040
+0.1
+1040
+0.1
+1070
+0
+1002
+{
+1002
+}
+1002
+}
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+160.30855606972293
+ 20
+120.52325300000003
+ 30
+0.0
+ 11
+98.65427803486146
+ 21
+120.52325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+98.65427803486146
+ 20
+181.52325300000004
+ 30
+0.0
+ 11
+160.30855606972293
+ 21
+181.52325300000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+98.65427803486146
+ 20
+181.52325300000004
+ 30
+0.0
+ 11
+98.65427803486146
+ 21
+120.52325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+170.30855606972293
+ 20
+120.52325300000003
+ 30
+0.0
+ 11
+160.30855606972293
+ 21
+120.52325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+170.30855606972293
+ 20
+181.52325300000004
+ 30
+0.0
+ 11
+170.30855606972293
+ 21
+120.52325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+160.30855606972293
+ 20
+181.52325300000004
+ 30
+0.0
+ 11
+170.30855606972293
+ 21
+181.52325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+71.65427803486145
+ 20
+181.52325300000004
+ 30
+0.0
+ 11
+98.65427803486146
+ 21
+181.52325300000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+71.65427803486145
+ 20
+120.52325300000003
+ 30
+0.0
+ 11
+71.65427803486145
+ 21
+181.52325300000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+98.65427803486146
+ 20
+120.52325300000003
+ 30
+0.0
+ 11
+71.65427803486145
+ 21
+120.52325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+10.000000000000002
+ 20
+181.52325300000004
+ 30
+0.0
+ 11
+71.65427803486145
+ 21
+181.52325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+71.65427803486145
+ 20
+120.52325300000003
+ 30
+0.0
+ 11
+10.000000000000002
+ 21
+120.52325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+181.52325300000004
+ 30
+0.0
+ 11
+10.000000000000002
+ 21
+181.52325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+120.52325300000003
+ 30
+0.0
+ 11
+0.0
+ 21
+181.52325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+10.000000000000002
+ 20
+120.52325300000003
+ 30
+0.0
+ 11
+0.0
+ 21
+120.52325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+98.65427803486146
+ 20
+120.52325300000003
+ 30
+0.0
+ 11
+98.65427803486146
+ 21
+103.52325300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+71.65427803486145
+ 20
+103.52325300000001
+ 30
+0.0
+ 11
+71.65427803486145
+ 21
+120.52325300000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+98.65427803486146
+ 20
+103.52325300000001
+ 30
+0.0
+ 11
+71.65427803486145
+ 21
+103.52325300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+98.65427803486146
+ 20
+103.52325300000001
+ 30
+0.0
+ 11
+98.65427803486146
+ 21
+42.52325300000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+71.65427803486145
+ 20
+42.52325300000002
+ 30
+0.0
+ 11
+71.65427803486145
+ 21
+103.52325300000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+98.65427803486146
+ 20
+42.52325300000002
+ 30
+0.0
+ 11
+71.65427803486145
+ 21
+42.52325300000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+98.65427803486146
+ 20
+42.52325300000002
+ 30
+0.0
+ 11
+98.65427803486146
+ 21
+25.523253000000015
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+71.65427803486145
+ 20
+25.523253000000015
+ 30
+0.0
+ 11
+71.65427803486145
+ 21
+42.52325300000002
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+71.65427803486145
+ 20
+25.523253000000015
+ 30
+0.0
+ 11
+98.65427803486146
+ 21
+25.523253000000015
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+71.65427803486145
+ 20
+15.523253000000013
+ 30
+0.0
+ 11
+71.65427803486145
+ 21
+25.523253000000015
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+98.65427803486146
+ 20
+15.523253000000013
+ 30
+0.0
+ 11
+71.65427803486145
+ 21
+15.523253000000013
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+98.65427803486146
+ 20
+25.523253000000015
+ 30
+0.0
+ 11
+98.65427803486146
+ 21
+15.523253000000013
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+167.80855606972293
+ 20
+170.43234390909095
+ 30
+0.0
+ 11
+162.80855606972293
+ 21
+170.43234390909095
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+162.80855606972293
+ 20
+170.43234390909095
+ 30
+0.0
+ 11
+162.80855606972293
+ 21
+159.34143481818182
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+162.80855606972293
+ 20
+159.34143481818182
+ 30
+0.0
+ 11
+167.80855606972293
+ 21
+159.34143481818182
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+167.80855606972293
+ 20
+142.7050711818182
+ 30
+0.0
+ 11
+162.80855606972293
+ 21
+142.7050711818182
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+162.80855606972293
+ 20
+142.7050711818182
+ 30
+0.0
+ 11
+162.80855606972293
+ 21
+131.61416209090913
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+162.80855606972293
+ 20
+131.61416209090913
+ 30
+0.0
+ 11
+167.80855606972293
+ 21
+131.61416209090913
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+94.15427803486146
+ 20
+118.02325300000003
+ 30
+0.0
+ 11
+94.15427803486146
+ 21
+124.02325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+94.15427803486146
+ 20
+124.02325300000003
+ 30
+0.0
+ 11
+76.15427803486145
+ 21
+124.02325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+76.15427803486145
+ 20
+124.02325300000003
+ 30
+0.0
+ 11
+76.15427803486145
+ 21
+118.02325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+76.15427803486145
+ 20
+118.02325300000003
+ 30
+0.0
+ 11
+94.15427803486146
+ 21
+118.02325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+80.40427803486146
+ 20
+173.77325300000004
+ 30
+0.0
+ 11
+89.90427803486145
+ 21
+173.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+89.90427803486145
+ 20
+173.77325300000004
+ 30
+0.0
+ 11
+89.90427803486145
+ 21
+174.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+89.90427803486145
+ 20
+174.27325300000004
+ 30
+0.0
+ 11
+80.40427803486146
+ 21
+174.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+80.40427803486146
+ 20
+174.27325300000004
+ 30
+0.0
+ 11
+80.40427803486146
+ 21
+173.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+2.5000000000000004
+ 20
+131.61416209090913
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+131.61416209090913
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+7.500000000000001
+ 20
+131.61416209090913
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+142.7050711818182
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+7.500000000000001
+ 20
+142.7050711818182
+ 30
+0.0
+ 11
+2.5000000000000004
+ 21
+142.7050711818182
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+2.5000000000000004
+ 20
+159.34143481818185
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+159.34143481818185
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+7.500000000000001
+ 20
+159.34143481818185
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+170.43234390909095
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+7.500000000000001
+ 20
+170.43234390909095
+ 30
+0.0
+ 11
+2.5000000000000004
+ 21
+170.43234390909095
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+89.65427803486146
+ 20
+18.023253000000015
+ 30
+0.0
+ 11
+89.65427803486146
+ 21
+23.02325300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+89.65427803486146
+ 20
+23.02325300000001
+ 30
+0.0
+ 11
+80.65427803486146
+ 21
+23.02325300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+80.65427803486146
+ 20
+23.02325300000001
+ 30
+0.0
+ 11
+80.65427803486146
+ 21
+18.023253000000015
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+436.5858000680936
+ 20
+86.02325300000003
+ 30
+0.0
+ 11
+436.5858000680936
+ 21
+216.023253
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+346.5858000680936
+ 20
+86.02325300000003
+ 30
+0.0
+ 11
+346.5858000680936
+ 21
+216.023253
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+391.5858000680936
+ 20
+86.02325300000003
+ 30
+0.0
+ 11
+346.5858000680936
+ 21
+86.02325300000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+436.5858000680936
+ 20
+86.02325300000003
+ 30
+0.0
+ 11
+391.5858000680936
+ 21
+86.02325300000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+391.5858000680936
+ 20
+3.2957373719000316e-07
+ 30
+0.0
+ 11
+346.5858000680936
+ 21
+86.02325300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+377.4211156634208
+ 20
+4.127328470363296
+ 30
+0.0
+ 11
+327.0034578657572
+ 21
+18.818105326100866
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+391.5858000680936
+ 20
+3.295737656117126e-07
+ 30
+0.0
+ 11
+377.4211156634208
+ 21
+4.127328470363296
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+346.5858000680936
+ 20
+86.02325300000005
+ 30
+0.0
+ 11
+327.0034578657572
+ 21
+18.818105326100866
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+346.5858000680936
+ 20
+86.02325300000003
+ 30
+0.0
+ 11
+276.5858000680936
+ 21
+33.50888218183837
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+327.0034578657572
+ 20
+18.818105326100834
+ 30
+0.0
+ 11
+276.5858000680936
+ 21
+33.50888218183837
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+276.58580006809353
+ 20
+86.02325299999998
+ 30
+0.0
+ 11
+276.5858000680936
+ 21
+33.508882181838395
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+346.5858000680936
+ 20
+86.02325300000003
+ 30
+0.0
+ 11
+276.58580006809353
+ 21
+86.02325299999998
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+259.08100979537306
+ 20
+86.02325299999997
+ 30
+0.0
+ 11
+276.58580006809353
+ 21
+86.02325299999997
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+259.08100979537306
+ 20
+33.508882181838366
+ 30
+0.0
+ 11
+259.08100979537306
+ 21
+86.02325299999997
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+276.5858000680936
+ 20
+33.50888218183837
+ 30
+0.0
+ 11
+259.08100979537306
+ 21
+33.508882181838366
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+276.5858000680935
+ 20
+216.023253
+ 30
+0.0
+ 11
+346.58580006809353
+ 21
+216.02325300000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+276.5858000680934
+ 20
+268.53762381816165
+ 30
+0.0
+ 11
+346.58580006809353
+ 21
+216.02325300000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+276.5858000680934
+ 20
+268.53762381816165
+ 30
+0.0
+ 11
+276.5858000680935
+ 21
+216.023253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+276.58580006809336
+ 20
+268.53762381816165
+ 30
+0.0
+ 11
+327.003457865757
+ 21
+283.2284006738992
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+327.003457865757
+ 20
+283.2284006738992
+ 30
+0.0
+ 11
+346.58580006809353
+ 21
+216.02325300000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+391.5858000680934
+ 20
+302.04650567042637
+ 30
+0.0
+ 11
+346.58580006809353
+ 21
+216.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+377.42111566342055
+ 20
+297.9191775296369
+ 30
+0.0
+ 11
+391.5858000680934
+ 21
+302.04650567042637
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+327.003457865757
+ 20
+283.22840067389916
+ 30
+0.0
+ 11
+377.42111566342055
+ 21
+297.9191775296369
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+346.58580006809353
+ 20
+216.023253
+ 30
+0.0
+ 11
+391.58580006809353
+ 21
+216.02325300000007
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+391.58580006809353
+ 20
+216.02325300000012
+ 30
+0.0
+ 11
+436.58580006809353
+ 21
+216.02325300000018
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+391.5858000680934
+ 20
+302.04650567042637
+ 30
+0.0
+ 11
+436.58580006809353
+ 21
+216.02325300000018
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+405.7504844727662
+ 20
+297.9191775296369
+ 30
+0.0
+ 11
+456.1681422704299
+ 21
+283.2284006738994
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+391.5858000680934
+ 20
+302.04650567042637
+ 30
+0.0
+ 11
+405.7504844727662
+ 21
+297.9191775296369
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+436.58580006809353
+ 20
+216.02325300000018
+ 30
+0.0
+ 11
+456.1681422704299
+ 21
+283.2284006738994
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+436.58580006809353
+ 20
+216.02325300000018
+ 30
+0.0
+ 11
+506.5858000680934
+ 21
+268.5376238181619
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+456.1681422704298
+ 20
+283.2284006738994
+ 30
+0.0
+ 11
+506.5858000680934
+ 21
+268.5376238181619
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+506.58580006809353
+ 20
+216.02325300000032
+ 30
+0.0
+ 11
+506.5858000680934
+ 21
+268.5376238181619
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+436.58580006809353
+ 20
+216.02325300000018
+ 30
+0.0
+ 11
+506.58580006809353
+ 21
+216.02325300000032
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+524.0905903408142
+ 20
+216.02325300000035
+ 30
+0.0
+ 11
+506.58580006809353
+ 21
+216.02325300000032
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+524.090590340814
+ 20
+268.53762381816193
+ 30
+0.0
+ 11
+524.0905903408142
+ 21
+216.02325300000035
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+506.5858000680934
+ 20
+268.5376238181619
+ 30
+0.0
+ 11
+524.090590340814
+ 21
+268.53762381816193
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+506.58580006809376
+ 20
+86.02325300000027
+ 30
+0.0
+ 11
+436.58580006809376
+ 21
+86.02325300000012
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+506.5858000680939
+ 20
+33.50888218183868
+ 30
+0.0
+ 11
+436.58580006809376
+ 21
+86.02325300000012
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+506.5858000680939
+ 20
+33.50888218183868
+ 30
+0.0
+ 11
+506.58580006809376
+ 21
+86.02325300000027
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+506.5858000680939
+ 20
+33.50888218183864
+ 30
+0.0
+ 11
+456.16814227043034
+ 21
+18.818105326100948
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+456.16814227043034
+ 20
+18.818105326100948
+ 30
+0.0
+ 11
+436.58580006809376
+ 21
+86.02325300000011
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+391.585800068094
+ 20
+3.295737087682938e-07
+ 30
+0.0
+ 11
+436.58580006809376
+ 21
+86.02325300000012
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+405.7504844727668
+ 20
+4.127328470363296
+ 30
+0.0
+ 11
+391.585800068094
+ 21
+3.295737087682938e-07
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+456.16814227043034
+ 20
+18.81810532610098
+ 30
+0.0
+ 11
+405.7504844727668
+ 21
+4.127328470363296
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+524.0905903408144
+ 20
+33.50888218183872
+ 30
+0.0
+ 11
+506.5858000680939
+ 21
+33.508882181838686
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+524.0905903408144
+ 20
+86.02325300000031
+ 30
+0.0
+ 11
+524.0905903408144
+ 21
+33.50888218183872
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+506.58580006809376
+ 20
+86.02325300000028
+ 30
+0.0
+ 11
+524.0905903408144
+ 21
+86.02325300000031
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+506.58580006809376
+ 20
+90.02325300000027
+ 30
+0.0
+ 11
+506.58580006809376
+ 21
+86.02325300000028
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+506.58580006809353
+ 20
+212.02325300000032
+ 30
+0.0
+ 11
+506.58580006809365
+ 21
+151.0232530000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+506.58580006809353
+ 20
+216.02325300000032
+ 30
+0.0
+ 11
+506.58580006809353
+ 21
+212.02325300000032
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+506.58580006809353
+ 20
+216.02325300000032
+ 30
+0.0
+ 11
+506.58580006809353
+ 21
+216.02325300000032
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+506.58580006809376
+ 20
+86.02325300000028
+ 30
+0.0
+ 11
+506.58580006809376
+ 21
+86.02325300000028
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+516.5858000680937
+ 20
+90.02325300000031
+ 30
+0.0
+ 11
+506.58580006809376
+ 21
+90.02325300000027
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+516.5858000680937
+ 20
+151.0232530000003
+ 30
+0.0
+ 11
+516.5858000680937
+ 21
+90.02325300000031
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+506.58580006809365
+ 20
+151.0232530000003
+ 30
+0.0
+ 11
+516.5858000680937
+ 21
+151.0232530000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+259.0810097953729
+ 20
+268.53762381816165
+ 30
+0.0
+ 11
+276.5858000680934
+ 21
+268.53762381816165
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+259.0810097953729
+ 20
+216.02325299999998
+ 30
+0.0
+ 11
+259.0810097953729
+ 21
+268.53762381816165
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+276.5858000680935
+ 20
+216.023253
+ 30
+0.0
+ 11
+259.0810097953729
+ 21
+216.02325299999998
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+276.5858000680935
+ 20
+212.023253
+ 30
+0.0
+ 11
+276.5858000680935
+ 21
+216.023253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+276.5858000680935
+ 20
+151.02325299999998
+ 30
+0.0
+ 11
+276.5858000680935
+ 21
+212.023253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+276.58580006809353
+ 20
+86.02325299999997
+ 30
+0.0
+ 11
+276.58580006809353
+ 21
+90.02325299999995
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+276.58580006809353
+ 20
+86.02325299999997
+ 30
+0.0
+ 11
+276.58580006809353
+ 21
+86.02325299999997
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+276.5858000680935
+ 20
+216.023253
+ 30
+0.0
+ 11
+276.5858000680935
+ 21
+216.023253
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+240.44717806890822
+ 20
+151.02325299999998
+ 30
+0.0
+ 11
+240.44717806890824
+ 21
+90.02325299999994
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+276.58580006809353
+ 20
+90.02325299999995
+ 30
+0.0
+ 11
+240.44717806890824
+ 21
+90.02325299999994
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+240.44717806890822
+ 20
+151.02325299999998
+ 30
+0.0
+ 11
+276.5858000680935
+ 21
+151.02325299999998
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+216.44717806890824
+ 20
+90.02325299999993
+ 30
+0.0
+ 11
+216.44717806890822
+ 21
+151.02325299999995
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+216.44717806890824
+ 20
+90.02325299999993
+ 30
+0.0
+ 11
+240.44717806890827
+ 21
+90.02325299999994
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+180.3085560697229
+ 20
+151.0232529999999
+ 30
+0.0
+ 11
+216.44717806890822
+ 21
+151.02325299999995
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+180.30855606972295
+ 20
+90.02325299999991
+ 30
+0.0
+ 11
+180.3085560697229
+ 21
+151.0232529999999
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+216.44717806890824
+ 20
+90.02325299999993
+ 30
+0.0
+ 11
+180.30855606972295
+ 21
+90.02325299999991
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+216.44717806890824
+ 20
+80.02325299999991
+ 30
+0.0
+ 11
+216.44717806890824
+ 21
+90.02325299999994
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+240.44717806890824
+ 20
+80.02325299999993
+ 30
+0.0
+ 11
+216.44717806890824
+ 21
+80.02325299999991
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+240.44717806890824
+ 20
+90.02325299999994
+ 30
+0.0
+ 11
+240.44717806890824
+ 21
+80.02325299999993
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+240.44717806890822
+ 20
+161.02325299999998
+ 30
+0.0
+ 11
+240.44717806890822
+ 21
+151.02325299999998
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+216.44717806890822
+ 20
+161.02325299999995
+ 30
+0.0
+ 11
+240.44717806890822
+ 21
+161.02325299999998
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+216.44717806890822
+ 20
+151.02325299999995
+ 30
+0.0
+ 11
+216.44717806890822
+ 21
+161.02325299999995
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+364.5978792657871
+ 20
+21.798749986471112
+ 30
+0.0
+ 11
+347.31195656413337
+ 21
+26.83554947792412
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+347.31195656413337
+ 20
+26.83554947792412
+ 30
+0.0
+ 11
+347.17208269125956
+ 21
+26.355512708824836
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+347.17208269125956
+ 20
+26.355512708824836
+ 30
+0.0
+ 11
+364.4580053929133
+ 21
+21.318713217371826
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+364.4580053929133
+ 20
+21.318713217371826
+ 30
+0.0
+ 11
+364.5978792657871
+ 21
+21.798749986471112
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+263.45720736355315
+ 20
+51.01367245455889
+ 30
+0.0
+ 11
+272.2096024999135
+ 21
+51.0136724545589
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+272.2096024999135
+ 20
+51.0136724545589
+ 30
+0.0
+ 11
+272.20960249991344
+ 21
+68.51846272727943
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+272.20960249991344
+ 20
+68.51846272727943
+ 30
+0.0
+ 11
+263.45720736355315
+ 21
+68.51846272727941
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+347.3119565641332
+ 20
+275.210956522076
+ 30
+0.0
+ 11
+364.597879265787
+ 21
+280.247756013529
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+364.597879265787
+ 20
+280.247756013529
+ 30
+0.0
+ 11
+364.45800539291315
+ 21
+280.7277927826283
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+364.45800539291315
+ 20
+280.7277927826283
+ 30
+0.0
+ 11
+347.1720826912594
+ 21
+275.69099329117523
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+347.1720826912594
+ 20
+275.69099329117523
+ 30
+0.0
+ 11
+347.3119565641332
+ 21
+275.210956522076
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+418.5737208703999
+ 20
+280.2477560135291
+ 30
+0.0
+ 11
+435.8596435720537
+ 21
+275.2109565220761
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+435.8596435720537
+ 20
+275.2109565220761
+ 30
+0.0
+ 11
+435.9995174449275
+ 21
+275.69099329117535
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+435.9995174449275
+ 20
+275.69099329117535
+ 30
+0.0
+ 11
+418.7135947432737
+ 21
+280.72779278262834
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+418.7135947432737
+ 20
+280.72779278262834
+ 30
+0.0
+ 11
+418.5737208703999
+ 21
+280.2477560135291
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+519.7143927726339
+ 20
+251.0328335454414
+ 30
+0.0
+ 11
+510.9619976362736
+ 21
+251.03283354544138
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+510.9619976362736
+ 20
+251.03283354544138
+ 30
+0.0
+ 11
+510.9619976362736
+ 21
+233.52804327272085
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+510.9619976362736
+ 20
+233.52804327272085
+ 30
+0.0
+ 11
+519.7143927726339
+ 21
+233.52804327272088
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+435.85964357205415
+ 20
+26.835549477924193
+ 30
+0.0
+ 11
+418.57372087040034
+ 21
+21.79874998647114
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+418.57372087040034
+ 20
+21.79874998647114
+ 30
+0.0
+ 11
+418.7135947432742
+ 21
+21.318713217371855
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+418.7135947432742
+ 20
+21.318713217371855
+ 30
+0.0
+ 11
+435.99951744492796
+ 21
+26.35551270882492
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+435.99951744492796
+ 20
+26.35551270882492
+ 30
+0.0
+ 11
+435.85964357205415
+ 21
+26.835549477924193
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+519.7143927726343
+ 20
+68.51846272727978
+ 30
+0.0
+ 11
+510.9619976362739
+ 21
+68.51846272727977
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+510.9619976362739
+ 20
+68.51846272727977
+ 30
+0.0
+ 11
+510.96199763627396
+ 21
+51.013672454559234
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+510.96199763627396
+ 20
+51.013672454559234
+ 30
+0.0
+ 11
+519.7143927726343
+ 21
+51.01367245455925
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+498.83580006809365
+ 20
+173.45507118181848
+ 30
+0.0
+ 11
+498.83580006809365
+ 21
+161.8641620909094
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+498.83580006809365
+ 20
+161.8641620909094
+ 30
+0.0
+ 11
+499.33580006809365
+ 21
+161.8641620909094
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+499.33580006809365
+ 20
+161.8641620909094
+ 30
+0.0
+ 11
+499.33580006809365
+ 21
+173.45507118181848
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+499.33580006809365
+ 20
+173.45507118181848
+ 30
+0.0
+ 11
+498.83580006809365
+ 21
+173.45507118181848
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+498.83580006809353
+ 20
+201.1823439090912
+ 30
+0.0
+ 11
+498.83580006809365
+ 21
+189.59143481818214
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+498.83580006809365
+ 20
+189.59143481818214
+ 30
+0.0
+ 11
+499.3358000680936
+ 21
+189.59143481818214
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+499.3358000680936
+ 20
+189.59143481818214
+ 30
+0.0
+ 11
+499.33580006809353
+ 21
+201.1823439090912
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+499.33580006809353
+ 20
+201.1823439090912
+ 30
+0.0
+ 11
+498.83580006809353
+ 21
+201.1823439090912
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+514.0858000680936
+ 20
+139.93234390909123
+ 30
+0.0
+ 11
+509.08580006809365
+ 21
+139.93234390909123
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+509.08580006809365
+ 20
+139.93234390909123
+ 30
+0.0
+ 11
+509.0858000680937
+ 21
+128.8414348181821
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+509.0858000680937
+ 20
+128.8414348181821
+ 30
+0.0
+ 11
+514.0858000680936
+ 21
+128.8414348181821
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+514.0858000680938
+ 20
+112.20507118181847
+ 30
+0.0
+ 11
+509.0858000680937
+ 21
+112.20507118181847
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+509.0858000680937
+ 20
+112.20507118181847
+ 30
+0.0
+ 11
+509.08580006809376
+ 21
+101.11416209090936
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+509.08580006809376
+ 20
+101.11416209090936
+ 30
+0.0
+ 11
+514.0858000680938
+ 21
+101.11416209090936
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+263.4572073635531
+ 20
+233.5280432727205
+ 30
+0.0
+ 11
+272.2096024999134
+ 21
+233.52804327272054
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+272.2096024999134
+ 20
+233.52804327272054
+ 30
+0.0
+ 11
+272.20960249991333
+ 21
+251.03283354544106
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+272.20960249991333
+ 20
+251.03283354544106
+ 30
+0.0
+ 11
+263.4572073635531
+ 21
+251.03283354544104
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+284.33580006809353
+ 20
+189.59143481818182
+ 30
+0.0
+ 11
+284.33580006809353
+ 21
+201.18234390909092
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+284.33580006809353
+ 20
+201.18234390909092
+ 30
+0.0
+ 11
+283.83580006809353
+ 21
+201.18234390909092
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+283.83580006809353
+ 20
+201.18234390909092
+ 30
+0.0
+ 11
+283.83580006809353
+ 21
+189.59143481818182
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+283.83580006809353
+ 20
+189.59143481818182
+ 30
+0.0
+ 11
+284.33580006809353
+ 21
+189.59143481818182
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+284.33580006809353
+ 20
+161.86416209090908
+ 30
+0.0
+ 11
+284.33580006809353
+ 21
+173.45507118181817
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+284.33580006809353
+ 20
+173.45507118181817
+ 30
+0.0
+ 11
+283.83580006809353
+ 21
+173.45507118181817
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+283.83580006809353
+ 20
+173.45507118181817
+ 30
+0.0
+ 11
+283.83580006809353
+ 21
+161.86416209090908
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+283.83580006809353
+ 20
+161.86416209090908
+ 30
+0.0
+ 11
+284.33580006809353
+ 21
+161.86416209090908
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+221.94717806890824
+ 20
+133.02325299999995
+ 30
+0.0
+ 11
+221.94717806890824
+ 21
+122.02325299999994
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+221.94717806890824
+ 20
+122.02325299999994
+ 30
+0.0
+ 11
+234.94717806890824
+ 21
+122.02325299999994
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+234.94717806890824
+ 20
+122.02325299999994
+ 30
+0.0
+ 11
+234.94717806890824
+ 21
+133.02325299999995
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+234.94717806890824
+ 20
+133.02325299999995
+ 30
+0.0
+ 11
+221.94717806890824
+ 21
+133.02325299999995
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.44717806890822
+ 20
+101.52325299999994
+ 30
+0.0
+ 11
+223.44717806890824
+ 21
+95.52325299999994
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.44717806890824
+ 20
+95.52325299999994
+ 30
+0.0
+ 11
+233.44717806890827
+ 21
+95.52325299999994
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+233.44717806890827
+ 20
+95.52325299999994
+ 30
+0.0
+ 11
+233.44717806890824
+ 21
+101.52325299999994
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+233.44717806890824
+ 20
+101.52325299999994
+ 30
+0.0
+ 11
+223.44717806890822
+ 21
+101.52325299999994
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+188.05855606972293
+ 20
+128.5914348181817
+ 30
+0.0
+ 11
+188.05855606972293
+ 21
+140.1823439090908
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+188.05855606972293
+ 20
+140.1823439090908
+ 30
+0.0
+ 11
+187.55855606972293
+ 21
+140.1823439090908
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+187.55855606972293
+ 20
+140.1823439090908
+ 30
+0.0
+ 11
+187.55855606972293
+ 21
+128.5914348181817
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+187.55855606972293
+ 20
+128.5914348181817
+ 30
+0.0
+ 11
+188.05855606972293
+ 21
+128.5914348181817
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+188.05855606972293
+ 20
+100.864162090909
+ 30
+0.0
+ 11
+188.05855606972293
+ 21
+112.45507118181808
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+188.05855606972293
+ 20
+112.45507118181808
+ 30
+0.0
+ 11
+187.55855606972293
+ 21
+112.45507118181808
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+187.55855606972293
+ 20
+112.45507118181808
+ 30
+0.0
+ 11
+187.55855606972293
+ 21
+100.864162090909
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+187.55855606972293
+ 20
+100.864162090909
+ 30
+0.0
+ 11
+188.05855606972293
+ 21
+100.864162090909
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+232.44717806890824
+ 20
+82.52325299999994
+ 30
+0.0
+ 11
+232.44717806890824
+ 21
+87.52325299999994
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+232.44717806890824
+ 20
+87.52325299999994
+ 30
+0.0
+ 11
+224.44717806890824
+ 21
+87.52325299999994
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+224.44717806890824
+ 20
+87.52325299999994
+ 30
+0.0
+ 11
+224.44717806890824
+ 21
+82.52325299999991
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+224.44717806890822
+ 20
+158.52325299999995
+ 30
+0.0
+ 11
+224.44717806890822
+ 21
+153.52325299999995
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+224.44717806890822
+ 20
+153.52325299999995
+ 30
+0.0
+ 11
+232.44717806890822
+ 21
+153.52325299999995
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+232.44717806890822
+ 20
+153.52325299999995
+ 30
+0.0
+ 11
+232.44717806890822
+ 21
+158.52325299999998
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+543.0905903408144
+ 20
+139.023253
+ 30
+0.0
+ 11
+604.0905903408143
+ 21
+139.023253
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+604.0905903408143
+ 20
+139.023253
+ 30
+0.0
+ 11
+604.0905903408143
+ 21
+163.02325300000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+604.0905903408143
+ 20
+163.02325300000004
+ 30
+0.0
+ 11
+543.0905903408144
+ 21
+163.02325300000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+543.0905903408144
+ 20
+163.02325300000004
+ 30
+0.0
+ 11
+543.0905903408144
+ 21
+139.023253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+543.0905903408144
+ 20
+132.023253
+ 30
+0.0
+ 11
+543.0905903408144
+ 21
+139.023253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+579.0905903408144
+ 20
+132.023253
+ 30
+0.0
+ 11
+543.0905903408144
+ 21
+132.023253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+579.0905903408144
+ 20
+139.023253
+ 30
+0.0
+ 11
+579.0905903408144
+ 21
+132.023253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+611.0905903408143
+ 20
+139.023253
+ 30
+0.0
+ 11
+604.0905903408143
+ 21
+139.023253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+611.0905903408143
+ 20
+163.02325300000004
+ 30
+0.0
+ 11
+611.0905903408143
+ 21
+139.023253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+604.0905903408143
+ 20
+163.02325300000004
+ 30
+0.0
+ 11
+611.0905903408143
+ 21
+163.02325300000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+604.0905903408143
+ 20
+163.02325300000004
+ 30
+0.0
+ 11
+604.0905903408143
+ 21
+224.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+568.0905903408143
+ 20
+224.02325300000004
+ 30
+0.0
+ 11
+604.0905903408143
+ 21
+224.02325300000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+568.0905903408143
+ 20
+163.02325300000004
+ 30
+0.0
+ 11
+568.0905903408143
+ 21
+224.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+628.0905903408144
+ 20
+163.02325300000004
+ 30
+0.0
+ 11
+604.0905903408143
+ 21
+163.02325300000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+628.0905903408144
+ 20
+163.02325300000004
+ 30
+0.0
+ 11
+628.0905903408144
+ 21
+224.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+604.0905903408143
+ 20
+224.02325300000004
+ 30
+0.0
+ 11
+628.0905903408144
+ 21
+224.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+664.0905903408144
+ 20
+163.02325300000004
+ 30
+0.0
+ 11
+628.0905903408144
+ 21
+163.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+664.0905903408144
+ 20
+224.02325300000004
+ 30
+0.0
+ 11
+664.0905903408144
+ 21
+163.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+628.0905903408144
+ 20
+224.02325300000004
+ 30
+0.0
+ 11
+664.0905903408144
+ 21
+224.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+568.0905903408143
+ 20
+163.02325300000004
+ 30
+0.0
+ 11
+544.0905903408144
+ 21
+163.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+544.0905903408144
+ 20
+224.02325300000004
+ 30
+0.0
+ 11
+568.0905903408143
+ 21
+224.02325300000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+544.0905903408144
+ 20
+224.02325300000004
+ 30
+0.0
+ 11
+544.0905903408144
+ 21
+163.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+534.0905903408144
+ 20
+224.02325300000004
+ 30
+0.0
+ 11
+544.0905903408144
+ 21
+224.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+534.0905903408144
+ 20
+163.02325300000004
+ 30
+0.0
+ 11
+534.0905903408144
+ 21
+224.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+544.0905903408144
+ 20
+163.02325300000004
+ 30
+0.0
+ 11
+534.0905903408144
+ 21
+163.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+536.0905903408143
+ 20
+163.02325300000004
+ 30
+0.0
+ 11
+543.0905903408144
+ 21
+163.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+536.0905903408143
+ 20
+139.023253
+ 30
+0.0
+ 11
+536.0905903408143
+ 21
+163.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+543.0905903408144
+ 20
+139.023253
+ 30
+0.0
+ 11
+536.0905903408143
+ 21
+139.023253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+567.0905903408143
+ 20
+133.77325300000004
+ 30
+0.0
+ 11
+570.5905903408144
+ 21
+133.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+570.5905903408144
+ 20
+133.77325300000004
+ 30
+0.0
+ 11
+567.0905903408143
+ 21
+137.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+567.0905903408143
+ 20
+137.27325300000004
+ 30
+0.0
+ 11
+555.0905903408144
+ 21
+137.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+555.0905903408144
+ 20
+137.27325300000004
+ 30
+0.0
+ 11
+551.5905903408144
+ 21
+133.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+551.5905903408144
+ 20
+133.77325300000004
+ 30
+0.0
+ 11
+555.0905903408144
+ 21
+133.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+609.3405903408144
+ 20
+155.023253
+ 30
+0.0
+ 11
+605.8405903408143
+ 21
+155.023253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+605.8405903408143
+ 20
+155.023253
+ 30
+0.0
+ 11
+605.8405903408143
+ 21
+147.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+605.8405903408143
+ 20
+147.02325300000004
+ 30
+0.0
+ 11
+609.3405903408144
+ 21
+147.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+581.2048760551
+ 20
+217.77325300000004
+ 30
+0.0
+ 11
+581.2048760551
+ 21
+199.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+581.2048760551
+ 20
+199.77325300000004
+ 30
+0.0
+ 11
+601.7763046265287
+ 21
+199.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+601.7763046265287
+ 20
+199.77325300000004
+ 30
+0.0
+ 11
+601.7763046265287
+ 21
+217.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+601.7763046265287
+ 20
+217.77325300000004
+ 30
+0.0
+ 11
+581.2048760551
+ 21
+217.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+604.5905903408143
+ 20
+176.27325300000004
+ 30
+0.0
+ 11
+604.5905903408143
+ 21
+173.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+604.5905903408143
+ 20
+173.27325300000004
+ 30
+0.0
+ 11
+607.5905903408144
+ 21
+173.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+607.5905903408144
+ 20
+173.27325300000004
+ 30
+0.0
+ 11
+607.5905903408144
+ 21
+176.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+607.5905903408144
+ 20
+176.27325300000004
+ 30
+0.0
+ 11
+604.5905903408143
+ 21
+176.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+625.5905903408144
+ 20
+175.273253
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+174.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+625.5905903408144
+ 20
+174.27325300000004
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+174.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+626.5905903408144
+ 20
+174.27325300000004
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+175.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+626.5905903408144
+ 20
+175.273253
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+175.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+605.5905903408144
+ 20
+177.773253
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+176.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+605.5905903408144
+ 20
+176.77325300000004
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+176.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+606.5905903408144
+ 20
+176.77325300000004
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+177.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+606.5905903408144
+ 20
+177.773253
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+177.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+625.5905903408144
+ 20
+177.773253
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+176.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+625.5905903408144
+ 20
+176.77325300000004
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+176.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+626.5905903408144
+ 20
+176.77325300000004
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+177.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+626.5905903408144
+ 20
+177.773253
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+177.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+605.5905903408144
+ 20
+180.27325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+179.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+605.5905903408144
+ 20
+179.27325300000004
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+179.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+606.5905903408144
+ 20
+179.27325300000004
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+180.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+606.5905903408144
+ 20
+180.27325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+180.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+625.5905903408144
+ 20
+180.27325300000004
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+179.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+625.5905903408144
+ 20
+179.27325300000004
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+179.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+626.5905903408144
+ 20
+179.27325300000004
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+180.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+626.5905903408144
+ 20
+180.27325300000004
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+180.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+605.5905903408144
+ 20
+182.77325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+181.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+605.5905903408144
+ 20
+181.773253
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+181.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+606.5905903408144
+ 20
+181.773253
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+182.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+606.5905903408144
+ 20
+182.77325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+182.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+625.5905903408144
+ 20
+182.77325300000004
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+181.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+625.5905903408144
+ 20
+181.773253
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+181.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+626.5905903408144
+ 20
+181.773253
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+182.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+626.5905903408144
+ 20
+182.77325300000004
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+182.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+605.5905903408144
+ 20
+185.27325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+184.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+605.5905903408144
+ 20
+184.273253
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+184.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+606.5905903408144
+ 20
+184.273253
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+185.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+606.5905903408144
+ 20
+185.27325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+185.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+625.5905903408144
+ 20
+185.27325300000004
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+184.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+625.5905903408144
+ 20
+184.273253
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+184.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+626.5905903408144
+ 20
+184.273253
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+185.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+626.5905903408144
+ 20
+185.27325300000004
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+185.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+605.5905903408144
+ 20
+187.77325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+186.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+605.5905903408144
+ 20
+186.773253
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+186.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+606.5905903408144
+ 20
+186.773253
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+187.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+606.5905903408144
+ 20
+187.77325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+187.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+625.5905903408144
+ 20
+187.77325300000004
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+186.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+625.5905903408144
+ 20
+186.773253
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+186.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+626.5905903408144
+ 20
+186.773253
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+187.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+626.5905903408144
+ 20
+187.77325300000004
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+187.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+605.5905903408144
+ 20
+190.27325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+189.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+605.5905903408144
+ 20
+189.27325300000004
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+189.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+606.5905903408144
+ 20
+189.27325300000004
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+190.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+606.5905903408144
+ 20
+190.27325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+190.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+625.5905903408144
+ 20
+190.27325300000004
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+189.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+625.5905903408144
+ 20
+189.27325300000004
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+189.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+626.5905903408144
+ 20
+189.27325300000004
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+190.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+626.5905903408144
+ 20
+190.27325300000004
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+190.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+605.5905903408144
+ 20
+192.77325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+191.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+605.5905903408144
+ 20
+191.77325300000004
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+191.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+606.5905903408144
+ 20
+191.77325300000004
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+192.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+606.5905903408144
+ 20
+192.77325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+192.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+625.5905903408144
+ 20
+192.77325300000004
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+191.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+625.5905903408144
+ 20
+191.77325300000004
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+191.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+626.5905903408144
+ 20
+191.77325300000004
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+192.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+626.5905903408144
+ 20
+192.77325300000004
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+192.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+605.5905903408144
+ 20
+195.27325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+194.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+605.5905903408144
+ 20
+194.27325300000004
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+194.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+606.5905903408144
+ 20
+194.27325300000004
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+195.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+606.5905903408144
+ 20
+195.27325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+195.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+625.5905903408144
+ 20
+195.27325300000004
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+194.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+625.5905903408144
+ 20
+194.27325300000004
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+194.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+626.5905903408144
+ 20
+194.27325300000004
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+195.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+626.5905903408144
+ 20
+195.27325300000004
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+195.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+605.5905903408144
+ 20
+197.773253
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+196.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+605.5905903408144
+ 20
+196.77325300000004
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+196.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+606.5905903408144
+ 20
+196.77325300000004
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+197.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+606.5905903408144
+ 20
+197.773253
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+197.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+625.5905903408144
+ 20
+197.773253
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+196.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+625.5905903408144
+ 20
+196.77325300000004
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+196.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+626.5905903408144
+ 20
+196.77325300000004
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+197.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+626.5905903408144
+ 20
+197.773253
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+197.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+605.5905903408144
+ 20
+200.273253
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+199.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+605.5905903408144
+ 20
+199.27325300000004
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+199.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+606.5905903408144
+ 20
+199.27325300000004
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+200.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+606.5905903408144
+ 20
+200.273253
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+200.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+625.5905903408144
+ 20
+200.273253
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+199.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+625.5905903408144
+ 20
+199.27325300000004
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+199.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+626.5905903408144
+ 20
+199.27325300000004
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+200.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+626.5905903408144
+ 20
+200.273253
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+200.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+605.5905903408144
+ 20
+202.77325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+201.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+605.5905903408144
+ 20
+201.77325300000004
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+201.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+606.5905903408144
+ 20
+201.77325300000004
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+202.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+606.5905903408144
+ 20
+202.77325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+202.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+625.5905903408144
+ 20
+202.77325300000004
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+201.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+625.5905903408144
+ 20
+201.77325300000004
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+201.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+626.5905903408144
+ 20
+201.77325300000004
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+202.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+626.5905903408144
+ 20
+202.77325300000004
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+202.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+605.5905903408144
+ 20
+205.27325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+204.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+605.5905903408144
+ 20
+204.27325300000004
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+204.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+606.5905903408144
+ 20
+204.27325300000004
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+205.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+606.5905903408144
+ 20
+205.27325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+205.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+625.5905903408144
+ 20
+205.27325300000004
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+204.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+625.5905903408144
+ 20
+204.27325300000004
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+204.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+626.5905903408144
+ 20
+204.27325300000004
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+205.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+626.5905903408144
+ 20
+205.27325300000004
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+205.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+605.5905903408144
+ 20
+207.77325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+206.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+605.5905903408144
+ 20
+206.77325300000004
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+206.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+606.5905903408144
+ 20
+206.77325300000004
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+207.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+606.5905903408144
+ 20
+207.77325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+207.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+625.5905903408144
+ 20
+207.77325300000004
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+206.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+625.5905903408144
+ 20
+206.77325300000004
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+206.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+626.5905903408144
+ 20
+206.77325300000004
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+207.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+626.5905903408144
+ 20
+207.77325300000004
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+207.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+605.5905903408144
+ 20
+210.27325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+209.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+605.5905903408144
+ 20
+209.273253
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+209.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+606.5905903408144
+ 20
+209.273253
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+210.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+606.5905903408144
+ 20
+210.27325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+210.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+625.5905903408144
+ 20
+210.27325300000004
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+209.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+625.5905903408144
+ 20
+209.273253
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+209.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+626.5905903408144
+ 20
+209.273253
+ 30
+0.0
+ 11
+626.5905903408144
+ 21
+210.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+626.5905903408144
+ 20
+210.27325300000004
+ 30
+0.0
+ 11
+625.5905903408144
+ 21
+210.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+605.5905903408144
+ 20
+212.77325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+211.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+605.5905903408144
+ 20
+211.77325300000004
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+211.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+606.5905903408144
+ 20
+211.77325300000004
+ 30
+0.0
+ 11
+606.5905903408144
+ 21
+212.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+606.5905903408144
+ 20
+212.77325300000004
+ 30
+0.0
+ 11
+605.5905903408144
+ 21
+212.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+624.5905903408144
+ 20
+213.773253
+ 30
+0.0
+ 11
+624.5905903408144
+ 21
+210.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+624.5905903408144
+ 20
+210.77325300000004
+ 30
+0.0
+ 11
+627.5905903408144
+ 21
+210.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+627.5905903408144
+ 20
+210.77325300000004
+ 30
+0.0
+ 11
+627.5905903408144
+ 21
+213.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+627.5905903408144
+ 20
+213.773253
+ 30
+0.0
+ 11
+624.5905903408144
+ 21
+213.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+620.3405903408144
+ 20
+170.773253
+ 30
+0.0
+ 11
+611.8405903408144
+ 21
+170.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+611.8405903408144
+ 20
+170.773253
+ 30
+0.0
+ 11
+611.8405903408144
+ 21
+170.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+611.8405903408144
+ 20
+170.27325300000004
+ 30
+0.0
+ 11
+620.3405903408144
+ 21
+170.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+620.3405903408144
+ 20
+170.27325300000004
+ 30
+0.0
+ 11
+620.3405903408144
+ 21
+170.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+611.8405903408144
+ 20
+218.523253
+ 30
+0.0
+ 11
+620.3405903408144
+ 21
+218.523253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+620.3405903408144
+ 20
+218.523253
+ 30
+0.0
+ 11
+620.3405903408144
+ 21
+219.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+620.3405903408144
+ 20
+219.02325300000004
+ 30
+0.0
+ 11
+611.8405903408144
+ 21
+219.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+611.8405903408144
+ 20
+219.02325300000004
+ 30
+0.0
+ 11
+611.8405903408144
+ 21
+218.523253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+633.6448760551
+ 20
+219.54325300000002
+ 30
+0.0
+ 11
+633.6448760551
+ 21
+206.54325300000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+633.6448760551
+ 20
+206.54325300000002
+ 30
+0.0
+ 11
+654.2163046265287
+ 21
+206.54325300000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+654.2163046265287
+ 20
+206.54325300000002
+ 30
+0.0
+ 11
+654.2163046265287
+ 21
+219.54325300000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+654.2163046265287
+ 20
+219.54325300000002
+ 30
+0.0
+ 11
+633.6448760551
+ 21
+219.54325300000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+652.3405903408143
+ 20
+168.523253
+ 30
+0.0
+ 11
+639.8405903408144
+ 21
+168.523253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+639.8405903408144
+ 20
+168.523253
+ 30
+0.0
+ 11
+639.8405903408144
+ 21
+168.023253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+639.8405903408144
+ 20
+168.023253
+ 30
+0.0
+ 11
+652.3405903408143
+ 21
+168.023253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+652.3405903408143
+ 20
+168.023253
+ 30
+0.0
+ 11
+652.3405903408143
+ 21
+168.523253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+656.3405903408144
+ 20
+185.45507118181823
+ 30
+0.0
+ 11
+656.3405903408144
+ 21
+173.8641620909091
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+656.3405903408144
+ 20
+173.8641620909091
+ 30
+0.0
+ 11
+656.8405903408144
+ 21
+173.8641620909091
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+656.8405903408144
+ 20
+173.8641620909091
+ 30
+0.0
+ 11
+656.8405903408144
+ 21
+185.45507118181823
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+656.8405903408144
+ 20
+185.45507118181823
+ 30
+0.0
+ 11
+656.3405903408144
+ 21
+185.45507118181823
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+656.3405903408144
+ 20
+213.18234390909095
+ 30
+0.0
+ 11
+656.3405903408144
+ 21
+201.59143481818185
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+656.3405903408144
+ 20
+201.59143481818185
+ 30
+0.0
+ 11
+656.8405903408144
+ 21
+201.59143481818185
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+656.8405903408144
+ 20
+201.59143481818185
+ 30
+0.0
+ 11
+656.8405903408144
+ 21
+213.18234390909095
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+656.8405903408144
+ 20
+213.18234390909095
+ 30
+0.0
+ 11
+656.3405903408144
+ 21
+213.18234390909095
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+544.5905903408144
+ 20
+176.27325300000004
+ 30
+0.0
+ 11
+544.5905903408144
+ 21
+173.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+544.5905903408144
+ 20
+173.27325300000004
+ 30
+0.0
+ 11
+547.5905903408143
+ 21
+173.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+547.5905903408143
+ 20
+173.27325300000004
+ 30
+0.0
+ 11
+547.5905903408143
+ 21
+176.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+547.5905903408143
+ 20
+176.27325300000004
+ 30
+0.0
+ 11
+544.5905903408144
+ 21
+176.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.5905903408143
+ 20
+175.273253
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+174.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.5905903408143
+ 20
+174.27325300000004
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+174.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+566.5905903408143
+ 20
+174.27325300000004
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+175.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+566.5905903408143
+ 20
+175.273253
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+175.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+545.5905903408144
+ 20
+177.773253
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+176.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+545.5905903408144
+ 20
+176.77325300000004
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+176.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+546.5905903408143
+ 20
+176.77325300000004
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+177.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+546.5905903408143
+ 20
+177.773253
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+177.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.5905903408143
+ 20
+177.773253
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+176.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.5905903408143
+ 20
+176.77325300000004
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+176.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+566.5905903408143
+ 20
+176.77325300000004
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+177.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+566.5905903408143
+ 20
+177.773253
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+177.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+545.5905903408144
+ 20
+180.27325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+179.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+545.5905903408144
+ 20
+179.27325300000004
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+179.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+546.5905903408143
+ 20
+179.27325300000004
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+180.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+546.5905903408143
+ 20
+180.27325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+180.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.5905903408143
+ 20
+180.27325300000004
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+179.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.5905903408143
+ 20
+179.27325300000004
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+179.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+566.5905903408143
+ 20
+179.27325300000004
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+180.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+566.5905903408143
+ 20
+180.27325300000004
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+180.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+545.5905903408144
+ 20
+182.77325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+181.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+545.5905903408144
+ 20
+181.773253
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+181.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+546.5905903408143
+ 20
+181.773253
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+182.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+546.5905903408143
+ 20
+182.77325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+182.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.5905903408143
+ 20
+182.77325300000004
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+181.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.5905903408143
+ 20
+181.773253
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+181.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+566.5905903408143
+ 20
+181.773253
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+182.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+566.5905903408143
+ 20
+182.77325300000004
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+182.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+545.5905903408144
+ 20
+185.27325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+184.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+545.5905903408144
+ 20
+184.273253
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+184.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+546.5905903408143
+ 20
+184.273253
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+185.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+546.5905903408143
+ 20
+185.27325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+185.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.5905903408143
+ 20
+185.27325300000004
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+184.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.5905903408143
+ 20
+184.273253
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+184.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+566.5905903408143
+ 20
+184.273253
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+185.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+566.5905903408143
+ 20
+185.27325300000004
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+185.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+545.5905903408144
+ 20
+187.77325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+186.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+545.5905903408144
+ 20
+186.773253
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+186.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+546.5905903408143
+ 20
+186.773253
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+187.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+546.5905903408143
+ 20
+187.77325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+187.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.5905903408143
+ 20
+187.77325300000004
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+186.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.5905903408143
+ 20
+186.773253
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+186.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+566.5905903408143
+ 20
+186.773253
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+187.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+566.5905903408143
+ 20
+187.77325300000004
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+187.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+545.5905903408144
+ 20
+190.27325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+189.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+545.5905903408144
+ 20
+189.27325300000004
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+189.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+546.5905903408143
+ 20
+189.27325300000004
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+190.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+546.5905903408143
+ 20
+190.27325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+190.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.5905903408143
+ 20
+190.27325300000004
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+189.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.5905903408143
+ 20
+189.27325300000004
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+189.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+566.5905903408143
+ 20
+189.27325300000004
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+190.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+566.5905903408143
+ 20
+190.27325300000004
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+190.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+545.5905903408144
+ 20
+192.77325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+191.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+545.5905903408144
+ 20
+191.77325300000004
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+191.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+546.5905903408143
+ 20
+191.77325300000004
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+192.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+546.5905903408143
+ 20
+192.77325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+192.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.5905903408143
+ 20
+192.77325300000004
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+191.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.5905903408143
+ 20
+191.77325300000004
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+191.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+566.5905903408143
+ 20
+191.77325300000004
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+192.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+566.5905903408143
+ 20
+192.77325300000004
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+192.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+545.5905903408144
+ 20
+195.27325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+194.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+545.5905903408144
+ 20
+194.27325300000004
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+194.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+546.5905903408143
+ 20
+194.27325300000004
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+195.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+546.5905903408143
+ 20
+195.27325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+195.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.5905903408143
+ 20
+195.27325300000004
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+194.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.5905903408143
+ 20
+194.27325300000004
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+194.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+566.5905903408143
+ 20
+194.27325300000004
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+195.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+566.5905903408143
+ 20
+195.27325300000004
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+195.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+545.5905903408144
+ 20
+197.773253
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+196.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+545.5905903408144
+ 20
+196.77325300000004
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+196.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+546.5905903408143
+ 20
+196.77325300000004
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+197.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+546.5905903408143
+ 20
+197.773253
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+197.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.5905903408143
+ 20
+197.773253
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+196.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.5905903408143
+ 20
+196.77325300000004
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+196.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+566.5905903408143
+ 20
+196.77325300000004
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+197.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+566.5905903408143
+ 20
+197.773253
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+197.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+545.5905903408144
+ 20
+200.273253
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+199.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+545.5905903408144
+ 20
+199.27325300000004
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+199.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+546.5905903408143
+ 20
+199.27325300000004
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+200.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+546.5905903408143
+ 20
+200.273253
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+200.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.5905903408143
+ 20
+200.273253
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+199.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.5905903408143
+ 20
+199.27325300000004
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+199.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+566.5905903408143
+ 20
+199.27325300000004
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+200.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+566.5905903408143
+ 20
+200.273253
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+200.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+545.5905903408144
+ 20
+202.77325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+201.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+545.5905903408144
+ 20
+201.77325300000004
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+201.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+546.5905903408143
+ 20
+201.77325300000004
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+202.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+546.5905903408143
+ 20
+202.77325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+202.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.5905903408143
+ 20
+202.77325300000004
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+201.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.5905903408143
+ 20
+201.77325300000004
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+201.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+566.5905903408143
+ 20
+201.77325300000004
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+202.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+566.5905903408143
+ 20
+202.77325300000004
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+202.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+545.5905903408144
+ 20
+205.27325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+204.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+545.5905903408144
+ 20
+204.27325300000004
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+204.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+546.5905903408143
+ 20
+204.27325300000004
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+205.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+546.5905903408143
+ 20
+205.27325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+205.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.5905903408143
+ 20
+205.27325300000004
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+204.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.5905903408143
+ 20
+204.27325300000004
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+204.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+566.5905903408143
+ 20
+204.27325300000004
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+205.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+566.5905903408143
+ 20
+205.27325300000004
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+205.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+545.5905903408144
+ 20
+207.77325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+206.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+545.5905903408144
+ 20
+206.77325300000004
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+206.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+546.5905903408143
+ 20
+206.77325300000004
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+207.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+546.5905903408143
+ 20
+207.77325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+207.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.5905903408143
+ 20
+207.77325300000004
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+206.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.5905903408143
+ 20
+206.77325300000004
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+206.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+566.5905903408143
+ 20
+206.77325300000004
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+207.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+566.5905903408143
+ 20
+207.77325300000004
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+207.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+545.5905903408144
+ 20
+210.27325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+209.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+545.5905903408144
+ 20
+209.273253
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+209.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+546.5905903408143
+ 20
+209.273253
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+210.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+546.5905903408143
+ 20
+210.27325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+210.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.5905903408143
+ 20
+210.27325300000004
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+209.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+565.5905903408143
+ 20
+209.273253
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+209.273253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+566.5905903408143
+ 20
+209.273253
+ 30
+0.0
+ 11
+566.5905903408143
+ 21
+210.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+566.5905903408143
+ 20
+210.27325300000004
+ 30
+0.0
+ 11
+565.5905903408143
+ 21
+210.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+545.5905903408144
+ 20
+212.77325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+211.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+545.5905903408144
+ 20
+211.77325300000004
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+211.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+546.5905903408143
+ 20
+211.77325300000004
+ 30
+0.0
+ 11
+546.5905903408143
+ 21
+212.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+546.5905903408143
+ 20
+212.77325300000004
+ 30
+0.0
+ 11
+545.5905903408144
+ 21
+212.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+564.5905903408143
+ 20
+213.773253
+ 30
+0.0
+ 11
+564.5905903408143
+ 21
+210.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+564.5905903408143
+ 20
+210.77325300000004
+ 30
+0.0
+ 11
+567.5905903408143
+ 21
+210.77325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+567.5905903408143
+ 20
+210.77325300000004
+ 30
+0.0
+ 11
+567.5905903408143
+ 21
+213.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+567.5905903408143
+ 20
+213.773253
+ 30
+0.0
+ 11
+564.5905903408143
+ 21
+213.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+560.3405903408143
+ 20
+170.773253
+ 30
+0.0
+ 11
+551.8405903408143
+ 21
+170.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+551.8405903408143
+ 20
+170.773253
+ 30
+0.0
+ 11
+551.8405903408143
+ 21
+170.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+551.8405903408143
+ 20
+170.27325300000004
+ 30
+0.0
+ 11
+560.3405903408143
+ 21
+170.27325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+560.3405903408143
+ 20
+170.27325300000004
+ 30
+0.0
+ 11
+560.3405903408143
+ 21
+170.773253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+551.8405903408143
+ 20
+218.523253
+ 30
+0.0
+ 11
+560.3405903408143
+ 21
+218.523253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+560.3405903408143
+ 20
+218.523253
+ 30
+0.0
+ 11
+560.3405903408143
+ 21
+219.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+560.3405903408143
+ 20
+219.02325300000004
+ 30
+0.0
+ 11
+551.8405903408143
+ 21
+219.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+551.8405903408143
+ 20
+219.02325300000004
+ 30
+0.0
+ 11
+551.8405903408143
+ 21
+218.523253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+536.5905903408143
+ 20
+174.1141620909091
+ 30
+0.0
+ 11
+541.5905903408144
+ 21
+174.1141620909091
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+541.5905903408144
+ 20
+174.1141620909091
+ 30
+0.0
+ 11
+541.5905903408144
+ 21
+185.20507118181823
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+541.5905903408144
+ 20
+185.20507118181823
+ 30
+0.0
+ 11
+536.5905903408143
+ 21
+185.20507118181823
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+536.5905903408143
+ 20
+201.84143481818185
+ 30
+0.0
+ 11
+541.5905903408144
+ 21
+201.84143481818185
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+541.5905903408144
+ 20
+201.84143481818185
+ 30
+0.0
+ 11
+541.5905903408144
+ 21
+212.93234390909092
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+541.5905903408144
+ 20
+212.93234390909092
+ 30
+0.0
+ 11
+536.5905903408143
+ 21
+212.93234390909092
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+537.8405903408144
+ 20
+147.02325300000004
+ 30
+0.0
+ 11
+541.3405903408144
+ 21
+147.02325300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+541.3405903408144
+ 20
+147.02325300000004
+ 30
+0.0
+ 11
+541.3405903408144
+ 21
+155.023253
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+541.3405903408144
+ 20
+155.023253
+ 30
+0.0
+ 11
+537.8405903408144
+ 21
+155.023253
+ 31
+0.0
+  0
+ENDSEC
+  0
+EOF
diff --git a/rocolib/builders/output/BoatWithStackBattery/tree.png b/rocolib/builders/output/BoatWithStackBattery/tree.png
new file mode 100644
index 0000000000000000000000000000000000000000..e6d81aba02f2ff49efe39f98048bd22be2f21828
Binary files /dev/null and b/rocolib/builders/output/BoatWithStackBattery/tree.png differ
diff --git a/rocolib/library/BoatWithStackBattery.yaml b/rocolib/library/BoatWithStackBattery.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..564ebccc23ebb5515400df252b35537ff495a7a0
--- /dev/null
+++ b/rocolib/library/BoatWithStackBattery.yaml
@@ -0,0 +1,274 @@
+connections:
+  connection0:
+  - - portsplit
+    - botedge1
+  - - stack
+    - leftArmInterface
+  - {}
+  connection1:
+  - - batterymount
+    - leftArmInterface
+  - - portsplit
+    - botedge2
+  - tabWidth: 10
+  connection2:
+  - - boat
+    - portedge
+  - - portsplit
+    - topedge0
+  - {}
+  connection3:
+  - - starsplit
+    - botedge2
+  - - stack
+    - rightArmInterface
+  - tabWidth: 10
+  connection4:
+  - - batterymount
+    - rightArmInterface
+  - - starsplit
+    - botedge1
+  - tabWidth: 10
+  connection5:
+  - - boat
+    - staredge
+  - - starsplit
+    - topedge0
+  - {}
+interfaces:
+  batterymount.leftArmInterface:
+    interface: leftArmInterface
+    subcomponent: batterymount
+  batterymount.rightArmInterface:
+    interface: rightArmInterface
+    subcomponent: batterymount
+  boat.portedge:
+    interface: portedge
+    subcomponent: boat
+  boat.staredge:
+    interface: staredge
+    subcomponent: boat
+  stack.leftArmInterface:
+    interface: leftArmInterface
+    subcomponent: stack
+  stack.rightArmInterface:
+    interface: rightArmInterface
+    subcomponent: stack
+parameters:
+  batterylength:
+    defaultValue: 61
+    spec:
+      minValue: 0
+      units: mm
+      valueType: (float, int)
+  boat.bow.point:
+    defaultValue: 50
+    spec:
+      minValue: 0
+      units: mm
+      valueType: (float, int)
+  boat.stern.point:
+    defaultValue: 50
+    spec:
+      minValue: 0
+      units: mm
+      valueType: (float, int)
+  depth:
+    defaultValue: 70
+    spec:
+      minValue: 0
+      units: mm
+      valueType: (float, int)
+  length:
+    defaultValue: 130
+    spec:
+      minValue: 0
+      units: mm
+      valueType: (float, int)
+  portsplit._dx:
+    defaultValue: 0
+    spec:
+      minValue: null
+      units: mm
+      valueType: (float, int)
+  portsplit._dy:
+    defaultValue: 0
+    spec:
+      minValue: null
+      units: mm
+      valueType: (float, int)
+  portsplit._dz:
+    defaultValue: 0
+    spec:
+      minValue: null
+      units: mm
+      valueType: (float, int)
+  portsplit._q_a:
+    defaultValue: 1
+    spec:
+      maxValue: 1
+      minValue: -1
+      valueType: (int, float)
+  portsplit._q_i:
+    defaultValue: 0
+    spec:
+      maxValue: 1
+      minValue: -1
+      valueType: (int, float)
+  portsplit._q_j:
+    defaultValue: 0
+    spec:
+      maxValue: 1
+      minValue: -1
+      valueType: (int, float)
+  portsplit._q_k:
+    defaultValue: 0
+    spec:
+      maxValue: 1
+      minValue: -1
+      valueType: (int, float)
+  portsplit.width:
+    defaultValue: 0
+    spec: {}
+  stack.length:
+    defaultValue: 61
+    spec:
+      minValue: 0
+      units: mm
+      valueType: (float, int)
+  starsplit._dx:
+    defaultValue: 0
+    spec:
+      minValue: null
+      units: mm
+      valueType: (float, int)
+  starsplit._dy:
+    defaultValue: 0
+    spec:
+      minValue: null
+      units: mm
+      valueType: (float, int)
+  starsplit._dz:
+    defaultValue: 0
+    spec:
+      minValue: null
+      units: mm
+      valueType: (float, int)
+  starsplit._q_a:
+    defaultValue: 1
+    spec:
+      maxValue: 1
+      minValue: -1
+      valueType: (int, float)
+  starsplit._q_i:
+    defaultValue: 0
+    spec:
+      maxValue: 1
+      minValue: -1
+      valueType: (int, float)
+  starsplit._q_j:
+    defaultValue: 0
+    spec:
+      maxValue: 1
+      minValue: -1
+      valueType: (int, float)
+  starsplit._q_k:
+    defaultValue: 0
+    spec:
+      maxValue: 1
+      minValue: -1
+      valueType: (int, float)
+  starsplit.width:
+    defaultValue: 0
+    spec: {}
+  width:
+    defaultValue: 90
+    spec:
+      minValue: 0
+      units: mm
+      valueType: (float, int)
+source: ../builders/boat/BoatWithStackBatteryBuilder.py
+subcomponents:
+  batterymount:
+    classname: BatteryMount
+    kwargs: {}
+    parameters:
+      batterylength:
+        parameter: batterylength
+      length:
+        parameter: length
+  boat:
+    classname: BoatBase
+    kwargs: {}
+    parameters:
+      boat.depth:
+        parameter: depth
+      boat.length:
+        parameter: length
+      boat.width:
+        parameter: width
+      bow.point:
+        parameter: boat.bow.point
+      stern.point:
+        parameter: boat.stern.point
+  portsplit:
+    classname: SplitEdge
+    kwargs: {}
+    parameters:
+      _dx:
+        parameter: portsplit._dx
+      _dy:
+        parameter: portsplit._dy
+      _dz:
+        parameter: portsplit._dz
+      _q_a:
+        parameter: portsplit._q_a
+      _q_i:
+        parameter: portsplit._q_i
+      _q_j:
+        parameter: portsplit._q_j
+      _q_k:
+        parameter: portsplit._q_k
+      botlength:
+        function: (x[0]/2 - (x[1]+x[2])/2, x[1], x[2], x[0]/2 - (x[1]+x[2])/2)
+        parameter: &id001
+        - length
+        - stack.length
+        - batterylength
+      toplength:
+        function: (x,)
+        parameter: length
+      width:
+        parameter: portsplit.width
+  stack:
+    classname: StackMount
+    kwargs: {}
+    parameters:
+      stack.length:
+        parameter: stack.length
+  starsplit:
+    classname: SplitEdge
+    kwargs: {}
+    parameters:
+      _dx:
+        parameter: starsplit._dx
+      _dy:
+        parameter: starsplit._dy
+      _dz:
+        parameter: starsplit._dz
+      _q_a:
+        parameter: starsplit._q_a
+      _q_i:
+        parameter: starsplit._q_i
+      _q_j:
+        parameter: starsplit._q_j
+      _q_k:
+        parameter: starsplit._q_k
+      botlength:
+        function: (x[0]/2 - (x[1]+x[2])/2, x[2], x[1], x[0]/2 - (x[1]+x[2])/2)
+        parameter: *id001
+      toplength:
+        function: (x,)
+        parameter: length
+      width:
+        parameter: starsplit.width