diff --git a/rocolib/builders/boat/BoatWithBottomServoBuilder.py b/rocolib/builders/boat/BoatWithBottomServoBuilder.py
new file mode 100644
index 0000000000000000000000000000000000000000..8a1238616faf9e687432f323d381171faf920781
--- /dev/null
+++ b/rocolib/builders/boat/BoatWithBottomServoBuilder.py
@@ -0,0 +1,34 @@
+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("rudder", "BottomServoMount", inherit=True)
+
+c.addConstraint(("rudder", "width"), "boat.width")
+c.addConstraint(("rudder", "depth"), "boat.depth")
+
+c.addParameter("topDistance", 50, paramType="length")
+c.addParameter("botDistance", 50, paramType="length")
+
+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]-12, 24, x[1]-12)")
+c.addConstraint(("split1", "botlength"), ("topDistance", "botDistance"), "(x[1]-12, 24, x[0]-12)")
+
+c.addConnection(("boat", "portedge"), ("split0", "topedge0"))
+c.addConnection(("boat", "staredge"), ("split1", "topedge0"))
+
+c.addConnection(("rudder","rightArmInterface"), ("split0", "botedge1"), angle=-180)
+c.addConnection(("rudder","leftArmInterface"), ("split1", "botedge1"), tabWidth=5)
+
+c.inheritInterface("topPort", ("split0", "botedge0"))
+c.inheritInterface("botPort", ("split0", "botedge2"))
+c.inheritInterface("topStar", ("split1", "botedge2"))
+c.inheritInterface("botStar", ("split1", "botedge0"))
+
+c.toLibrary("BoatWithBottomServo")
diff --git a/rocolib/builders/boat/BoatWithServoStackBatteryBuilder.py b/rocolib/builders/boat/BoatWithServoStackBatteryBuilder.py
index ceb773ebaadfc0003129dfc144744b60c9ea4613..fe74507fc33da050f4cdb748b3e59fe21e28eb76 100644
--- a/rocolib/builders/boat/BoatWithServoStackBatteryBuilder.py
+++ b/rocolib/builders/boat/BoatWithServoStackBatteryBuilder.py
@@ -29,7 +29,7 @@ c.addConnection(("portsplit", "topedge0"), ("boat", "portedge"))
 
 c.addConnection(("portsplit", "botedge0"), ("servostack", "lstacksplit"))
 c.addConnection(("portsplit", "botedge2"), ("servostack", "lservosplit"))
-c.addConnection(("batterymount", "leftArmInterface"), ("portsplit", "botedge3"), tabWidth=10)
+c.addConnection(("batterymount", "leftArmInterface"),("portsplit", "botedge3"), tabWidth=10)
 
 c.addSubcomponent("starsplit", "SplitEdge")
 c.inheritAllInterfaces("starsplit")
@@ -40,7 +40,7 @@ c.addConnection(("starsplit", "topedge0"), ("boat", "staredge"))
 
 c.addConnection(("starsplit", "botedge3"), ("servostack", "rstacksplit"))
 c.addConnection(("starsplit", "botedge1"), ("servostack", "rservosplit"))
-c.addConnection(("batterymount", "rightArmInterface"), ("starsplit", "botedge0"), tabWidth=10)
+c.addConnection(("batterymount", "rightArmInterface"),("starsplit", "botedge0"), tabWidth=10)
 #
 # c.addConnection(("portsplit", "topedge0"), ("boat", "portedge")) #both face the same direction
 # c.addConnection(("portsplit", "botedge1"), ("servostackbattery", "lservostackbatterysplit"))
diff --git a/rocolib/builders/boat/HouseboatWithServoMountAndStackBuilder.py b/rocolib/builders/boat/HouseboatWithServoMountAndStackBuilder.py
index 808a34c94ea72d4bd6129aa8bad68923afdc6979..86867ca3f1aac644cfc1750b93f6c70e89b9c9d2 100644
--- a/rocolib/builders/boat/HouseboatWithServoMountAndStackBuilder.py
+++ b/rocolib/builders/boat/HouseboatWithServoMountAndStackBuilder.py
@@ -6,7 +6,7 @@ c = Component()
 c.addSubcomponent("boat", "Tug", inherit=True, prefix=None)
 c.inheritAllInterfaces("boat")
 
-c.addConstConstraint(("boat", "length"), 228)
+c.addConstConstraint(("boat", "length"), 156)
 c.addConstConstraint(("boat", "width"), 90)
 c.addConstConstraint(("boat", "depth"), 70)
 
diff --git a/rocolib/builders/boat/PaddleWheelBuilder.py b/rocolib/builders/boat/PaddleWheelBuilder.py
index 0bdce6c499c1016e7f9b715e305203a951332996..489c0eff2a8505083a09c1b0b24a169fd5c046a2 100644
--- a/rocolib/builders/boat/PaddleWheelBuilder.py
+++ b/rocolib/builders/boat/PaddleWheelBuilder.py
@@ -26,12 +26,11 @@ for i in range(8):
     c.addConnection(("flapsplitL%d" % i, "botedge2"), ("flapsplitR%d" % i, "botedge2"), angle=0, tabWidth=5)
 
 for i in range(8):
-    if i != 2:
-        c.addSubcomponent("flapsplitRsup%d" % i, "SplitEdge")
-        c.addConstraint(("flapsplitRsup%d" % i, "botlength"), ("Radius", "PanelLength"), "[3.*x[0]/24]")
-        c.addConstraint(("flapsplitRsup%d" % i, "toplength"), ("Radius", "PanelLength"), "[3.*x[0]/24]")
-        c.addConnection(("flapsplitRsup%d" % i, "botedge0"), ("flapsplitR%d" % i, "botedge1"))
-        c.addConnection(("flapsplitRsup%d" % i, "topedge0"), ("flapsplitL%d" % i, "botedge1"), angle=0, tabWidth=5)
+    c.addSubcomponent("flapsplitRsup%d" % i, "SplitEdge")
+    c.addConstraint(("flapsplitRsup%d" % i, "botlength"), ("Radius", "PanelLength"), "[3.*x[0]/24]")
+    c.addConstraint(("flapsplitRsup%d" % i, "toplength"), ("Radius", "PanelLength"), "[3.*x[0]/24]")
+    c.addConnection(("flapsplitRsup%d" % i, "botedge0"), ("flapsplitR%d" % i, "botedge1"))
+    c.addConnection(("flapsplitRsup%d" % i, "topedge0"), ("flapsplitL%d" % i, "botedge1"), angle=0, tabWidth=5)
 
 # c.addConnection(("left", "flap%dL" %i), ("right", "flap%dR" %i), angle=0, tabWidth=4)
 
diff --git a/rocolib/builders/boat/mounts/BatteryMountBuilder.py b/rocolib/builders/boat/mounts/BatteryMountBuilder.py
index 7807ceb831ffbc2201a6d509c73dbbca8a504e51..49b2cbca29a6033dfee13dff508a811d7d5cf450 100644
--- a/rocolib/builders/boat/mounts/BatteryMountBuilder.py
+++ b/rocolib/builders/boat/mounts/BatteryMountBuilder.py
@@ -20,11 +20,11 @@ c.addConstraint(("holder", "length"), ("numBatteries", "batterydepth"), "x[1] *
 c.addConstraint(("holder", "width"), "batterywidth")
 
 c.addSubcomponent("larm", "Rectangle", inherit=True)
-c.addConstraint(("larm", "l"), ("numBatteries", "boatwidth", "boatdepth", "batterywidth", "batterydepth"), "((0.5 * x[1] - 0.5 * (x[4] * x[0])) ** 2 + (x[2] - x[3]) ** 2) ** 0.5")
+c.addConstraint(("larm", "l"), ("numBatteries", "boatwidth", "boatdepth", "batterywidth", "batterydepth"), "(((0.5 * x[1] - 0.5 * (x[4] * x[0])) ** 2 + (x[2] - x[3]) ** 2) ** 0.5)-4") #-4 for tab width
 c.addConstraint(("larm", "w"), "batterylength")
 
 c.addSubcomponent("rarm", "Rectangle", inherit=True)
-c.addConstraint(("rarm", "l"), ("numBatteries","boatwidth", "boatdepth", "batterywidth", "batterydepth"), "((0.5 * x[1] - 0.5 * (x[4] * x[0])) ** 2 + (x[2] - x[3]) ** 2) ** 0.5")
+c.addConstraint(("rarm", "l"), ("numBatteries","boatwidth", "boatdepth", "batterywidth", "batterydepth"), "(((0.5 * x[1] - 0.5 * (x[4] * x[0])) ** 2 + (x[2] - x[3]) ** 2) ** 0.5)-4")
 c.addConstraint(("rarm", "w"), "batterylength")
 #
 c.addConnection(("larm", "l"), ("holder", "topedge3"), angle=-45)
diff --git a/rocolib/builders/boat/mounts/BottomServoMountBuilder.py b/rocolib/builders/boat/mounts/BottomServoMountBuilder.py
index 1ffa889af3486d42c54b218e0c49fe224f98b085..31621811db421e358be884f4352800636f8c6dc2 100644
--- a/rocolib/builders/boat/mounts/BottomServoMountBuilder.py
+++ b/rocolib/builders/boat/mounts/BottomServoMountBuilder.py
@@ -13,17 +13,17 @@ c.addConstraint(("leftArmDown", "w"), "servoMount.depth")
 c.addConstraint(("leftArmDown", "l"), "depth", "x-3") #DEPTH OF BOAT - 3 for the tab
 
 c.addSubcomponent("leftArmAcross", "Rectangle")
-c.addConstConstraint(("leftArmAcross", "w"), "servoMount.depth")
+c.addConstraint(("leftArmAcross", "w"), "servoMount.depth")
 c.addConstraint(("leftArmAcross", "l"), ("width", "servoMount.depth"), "x[0]/2 - x[1]/2") #DEPTH OF BOAT - 3 for the tab
 
 c.addConnection(("leftArmDown", "r"), ("leftArmAcross", "r"), angle=-90)
 
 c.addSubcomponent("rightArmDown", "Rectangle")
-c.addConstConstraint(("rightArmDown", "w"), "servoMount.depth")
+c.addConstraint(("rightArmDown", "w"), "servoMount.depth")
 c.addConstraint(("rightArmDown", "l"), "depth", "x-3") #DEPTH OF BOAT
 
 c.addSubcomponent("rightArmAcross", "Rectangle")
-c.addConstConstraint(("rightArmAcross", "w"), "servoMount.depth")
+c.addConstraint(("rightArmAcross", "w"), "servoMount.depth")
 c.addConstraint(("rightArmAcross", "l"), ("width", "servoMount.depth"), "x[0]/2 - x[1]/2") #DEPTH OF BOAT - 3 for the tab
 
 c.addConnection(("rightArmDown", "r"), ("rightArmAcross", "r"), angle=-90)
diff --git a/rocolib/builders/boat/mounts/DCStackMountBuilder.py b/rocolib/builders/boat/mounts/DCStackMountBuilder.py
new file mode 100644
index 0000000000000000000000000000000000000000..dff651f1a6aade2266129786ad401a0a8cc52ed0
--- /dev/null
+++ b/rocolib/builders/boat/mounts/DCStackMountBuilder.py
@@ -0,0 +1,32 @@
+from rocolib.api.components.Component import Component
+from rocolib.api.Function import Function
+
+c = Component()
+
+c.addSubcomponent("dcMount", "DCMotorMount", prefix=None)
+c.inheritAllInterfaces("dcMount")
+c.addSubcomponent("espStack", "StackMount", inherit="stack.length", prefix=None)
+c.inheritAllInterfaces("espStack")
+#
+# c.addSubcomponent("portsplit", "SplitEdge")
+# c.inheritAllInterfaces("portsplit")
+# c.addConstraint(("portsplit", "toplength"), ("lServoMount.depth", "lServoMount.width", "stack.length"), "(x[2], 10, x[0], x[0]+x[1]*2+10)")
+# c.addConstraint(("portsplit", "botlength"), ("lServoMount.depth", "lServoMount.width", "stack.length"), "(x[2], 10, x[0], x[0]+x[1]*2+10)")
+#
+# c.addConnection(("doubleServoMount", "lServoInterface"), ("portsplit", "botedge2")) #both face the same direction
+# c.addConnection(("espStack", "leftArmInterface"), ("portsplit", "botedge0")) #both face the same direction
+#
+# c.addSubcomponent("starsplit", "SplitEdge")
+# c.inheritAllInterfaces("starsplit")
+# c.addConstraint(("starsplit", "toplength"), ("lServoMount.depth", "lServoMount.width", "stack.length"), "(x[0]+x[1]*2+10, x[0], 10, x[2])")
+# c.addConstraint(("starsplit", "botlength"), ("lServoMount.depth", "lServoMount.width", "stack.length"), "(x[0]+x[1]*2+10, x[0], 10, x[2])")
+#
+# c.addConnection(("doubleServoMount", "rServoInterface"), ("starsplit", "botedge1"))
+# c.addConnection(("espStack", "rightArmInterface"), ("starsplit", "botedge3"), tabWidth=10)
+#
+# c.inheritInterface("lservosplit", ("portsplit","topedge2"))
+# c.inheritInterface("rservosplit", ("starsplit","topedge1"))
+# c.inheritInterface("lstacksplit", ("portsplit","topedge0"))
+# c.inheritInterface("rstacksplit", ("starsplit","topedge3"))
+
+c.toLibrary("DCStackMount")
diff --git a/rocolib/builders/boat/mounts/ServoStackMountBuilder.py b/rocolib/builders/boat/mounts/ServoStackMountBuilder.py
index 5440f6de95ddc1a434f6b8480d97c0e53e918535..cca2e488ebf4063d153823ac18bc5dea5bea316d 100644
--- a/rocolib/builders/boat/mounts/ServoStackMountBuilder.py
+++ b/rocolib/builders/boat/mounts/ServoStackMountBuilder.py
@@ -22,7 +22,7 @@ c.addConstraint(("starsplit", "toplength"), ("lServoMount.depth", "lServoMount.w
 c.addConstraint(("starsplit", "botlength"), ("lServoMount.depth", "lServoMount.width", "stack.length"), "(x[0]+x[1]*2+10, x[0], 10, x[2])")
 
 c.addConnection(("doubleServoMount", "rServoInterface"), ("starsplit", "botedge1"))
-c.addConnection(("espStack", "rightArmInterface"), ("starsplit", "botedge3"), tabWidth=10)
+c.addConnection(("starsplit", "botedge3"),("espStack", "rightArmInterface"), tabWidth=10)
 
 c.inheritInterface("lservosplit", ("portsplit","topedge2"))
 c.inheritInterface("rservosplit", ("starsplit","topedge1"))
diff --git a/rocolib/library/BoatPoint.py b/rocolib/library/BoatPoint.py
index 6c0163c62fdd00bd595bcc18e6398ac486e871fe..2fba1b5566fb778a84c55ba191c5102563e4d56d 100644
--- a/rocolib/library/BoatPoint.py
+++ b/rocolib/library/BoatPoint.py
@@ -63,8 +63,8 @@ class BoatPoint(FoldedComponent):
         self.attachEdge("rt.e0", fra, "e2", prefix="fra", angle=180)
         self.attachEdge("fra.e1", frb, "e1", prefix="frb", angle=-180)
 
-        self.addTab("flb.e0", "lt.e0", angle = -174, width=fx/7)
-        self.addTab("frb.e2", "rt.e3", angle = -174, width=fx/7)
+        self.addTab("flb.e0", "lt.e0", angle = -174, width=fx/3)
+        self.addTab("frb.e2", "rt.e3", angle = -174, width=fx/3)
 
         # To allow 0 degree attachments at base
         se = Face("", ((0,0), (w/2., 0), (-w/2., 0)))
diff --git a/rocolib/library/BoatWithBottomServo.yaml b/rocolib/library/BoatWithBottomServo.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..939b5090d0da8975f695c3e72fcc49098ea5c67a
--- /dev/null
+++ b/rocolib/library/BoatWithBottomServo.yaml
@@ -0,0 +1,141 @@
+connections:
+  connection0:
+  - - boat
+    - portedge
+  - - split0
+    - topedge0
+  - {}
+  connection1:
+  - - boat
+    - staredge
+  - - split1
+    - topedge0
+  - {}
+  connection2:
+  - - rudder
+    - rightArmInterface
+  - - split0
+    - botedge1
+  - angle: -180
+  connection3:
+  - - rudder
+    - leftArmInterface
+  - - split1
+    - botedge1
+  - tabWidth: 5
+interfaces:
+  boat.portedge:
+    interface: portedge
+    subcomponent: boat
+  boat.staredge:
+    interface: staredge
+    subcomponent: boat
+  botPort:
+    interface: botedge2
+    subcomponent: split0
+  botStar:
+    interface: botedge0
+    subcomponent: split1
+  topPort:
+    interface: botedge0
+    subcomponent: split0
+  topStar:
+    interface: botedge2
+    subcomponent: split1
+parameters:
+  boat.depth:
+    defaultValue: 20
+    spec:
+      minValue: 0
+      units: mm
+      valueType: (float, int)
+  boat.length:
+    defaultValue: 100
+    spec:
+      minValue: 0
+      units: mm
+      valueType: (float, int)
+  boat.width:
+    defaultValue: 50
+    spec:
+      minValue: 0
+      units: mm
+      valueType: (float, int)
+  botDistance:
+    defaultValue: 50
+    spec:
+      minValue: 0
+      units: mm
+      valueType: (float, int)
+  bow.point:
+    defaultValue: 50
+    spec:
+      minValue: 0
+      units: mm
+      valueType: (float, int)
+  rudder.servoMount.depth:
+    defaultValue: 24
+    spec:
+      minValue: 0
+      units: mm
+      valueType: (float, int)
+  stern.point:
+    defaultValue: 50
+    spec:
+      minValue: 0
+      units: mm
+      valueType: (float, int)
+  topDistance:
+    defaultValue: 50
+    spec:
+      minValue: 0
+      units: mm
+      valueType: (float, int)
+source: ../builders/boat/BoatWithBottomServoBuilder.py
+subcomponents:
+  boat:
+    classname: BoatBase
+    kwargs: {}
+    parameters:
+      boat.depth:
+        parameter: boat.depth
+      boat.length:
+        parameter: boat.length
+      boat.width:
+        parameter: boat.width
+      bow.point:
+        parameter: bow.point
+      stern.point:
+        parameter: stern.point
+  rudder:
+    classname: BottomServoMount
+    kwargs: {}
+    parameters:
+      depth:
+        parameter: boat.depth
+      servoMount.depth:
+        parameter: rudder.servoMount.depth
+      width:
+        parameter: boat.width
+  split0:
+    classname: SplitEdge
+    kwargs: {}
+    parameters:
+      botlength:
+        function: (x[0]-12, 24, x[1]-12)
+        parameter: &id001
+        - topDistance
+        - botDistance
+      toplength:
+        function: (x,)
+        parameter: boat.length
+  split1:
+    classname: SplitEdge
+    kwargs: {}
+    parameters:
+      botlength:
+        function: (x[1]-12, 24, x[0]-12)
+        parameter: *id001
+      toplength:
+        function: (x,)
+        parameter: boat.length
diff --git a/rocolib/library/BoatWithServoStackBattery.yaml b/rocolib/library/BoatWithServoStackBattery.yaml
index a4de5d09770511f106101b1b590d3b35987ffb0b..495031708e89de4a3ef45a926310c58a50e6bc46 100644
--- a/rocolib/library/BoatWithServoStackBattery.yaml
+++ b/rocolib/library/BoatWithServoStackBattery.yaml
@@ -10,13 +10,13 @@ connections:
     - botedge0
   - - servostack
     - lstacksplit
-  - {}
+  - angle: 10
   connection2:
   - - portsplit
     - botedge2
   - - servostack
     - lservosplit
-  - {}
+  - angle: 10
   connection3:
   - - batterymount
     - leftArmInterface
@@ -34,13 +34,13 @@ connections:
     - botedge3
   - - servostack
     - rstacksplit
-  - {}
+  - angle: 10
   connection6:
   - - starsplit
     - botedge1
   - - servostack
     - rservosplit
-  - {}
+  - angle: 10
   connection7:
   - - batterymount
     - rightArmInterface
diff --git a/rocolib/library/BottomServoMount.yaml b/rocolib/library/BottomServoMount.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..ec219148391c38ea12dbfdd4814238caf32cec64
--- /dev/null
+++ b/rocolib/library/BottomServoMount.yaml
@@ -0,0 +1,93 @@
+connections:
+  connection0:
+  - - leftArmDown
+    - r
+  - - leftArmAcross
+    - r
+  - angle: -90
+  connection1:
+  - - rightArmDown
+    - r
+  - - rightArmAcross
+    - r
+  - angle: -90
+  connection2:
+  - - servoMount
+    - leftInterface
+  - - leftArmAcross
+    - l
+  - {}
+  connection3:
+  - - servoMount
+    - rightInterface
+  - - rightArmAcross
+    - l
+  - {}
+interfaces:
+  leftArmInterface:
+    interface: l
+    subcomponent: leftArmDown
+  rightArmInterface:
+    interface: l
+    subcomponent: rightArmDown
+parameters:
+  depth:
+    defaultValue: 60
+    spec:
+      parameterType: length
+  servoMount.depth:
+    defaultValue: 24
+    spec:
+      minValue: 0
+      units: mm
+      valueType: (float, int)
+  width:
+    defaultValue: 90
+    spec:
+      parameterType: length
+source: ../builders/boat/mounts/BottomServoMountBuilder.py
+subcomponents:
+  leftArmAcross:
+    classname: Rectangle
+    kwargs: {}
+    parameters:
+      l:
+        function: x[0]/2 - x[1]/2
+        parameter: &id001
+        - width
+        - servoMount.depth
+      w:
+        parameter: servoMount.depth
+  leftArmDown:
+    classname: Rectangle
+    kwargs: {}
+    parameters:
+      l:
+        function: x-3
+        parameter: depth
+      w:
+        parameter: servoMount.depth
+  rightArmAcross:
+    classname: Rectangle
+    kwargs: {}
+    parameters:
+      l:
+        function: x[0]/2 - x[1]/2
+        parameter: *id001
+      w:
+        parameter: servoMount.depth
+  rightArmDown:
+    classname: Rectangle
+    kwargs: {}
+    parameters:
+      l:
+        function: x-3
+        parameter: depth
+      w:
+        parameter: servoMount.depth
+  servoMount:
+    classname: SideServoMount
+    kwargs: {}
+    parameters:
+      depth:
+        parameter: servoMount.depth
diff --git a/rocolib/library/DCStackMount.yaml b/rocolib/library/DCStackMount.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..6c83bfea180330ef2a201441cb845be4f5cf77ba
--- /dev/null
+++ b/rocolib/library/DCStackMount.yaml
@@ -0,0 +1,33 @@
+connections: {}
+interfaces:
+  dcMount.leftArmInterface:
+    interface: leftArmInterface
+    subcomponent: dcMount
+  dcMount.rightArmInterface:
+    interface: rightArmInterface
+    subcomponent: dcMount
+  espStack.leftArmInterface:
+    interface: leftArmInterface
+    subcomponent: espStack
+  espStack.rightArmInterface:
+    interface: rightArmInterface
+    subcomponent: espStack
+parameters:
+  stack.length:
+    defaultValue: 61
+    spec:
+      minValue: 0
+      units: mm
+      valueType: (float, int)
+source: ../builders/boat/mounts/DCStackMountBuilder.py
+subcomponents:
+  dcMount:
+    classname: DCMotorMount
+    kwargs: {}
+    parameters: {}
+  espStack:
+    classname: StackMount
+    kwargs: {}
+    parameters:
+      stack.length:
+        parameter: stack.length
diff --git a/rocolib/library/PaddleWheel.yaml b/rocolib/library/PaddleWheel.yaml
index 6926f26ac2a720b7972361b0d4d68c6c87eba4e8..86c67cb338f5d36c9c8810ea3563df97ce6646b9 100644
--- a/rocolib/library/PaddleWheel.yaml
+++ b/rocolib/library/PaddleWheel.yaml
@@ -134,15 +134,15 @@ connections:
   - angle: 0
     tabWidth: 5
   connection28:
-  - - flapsplitRsup3
+  - - flapsplitRsup2
     - botedge0
-  - - flapsplitR3
+  - - flapsplitR2
     - botedge1
   - {}
   connection29:
-  - - flapsplitRsup3
+  - - flapsplitRsup2
     - topedge0
-  - - flapsplitL3
+  - - flapsplitL2
     - botedge1
   - angle: 0
     tabWidth: 5
@@ -153,51 +153,64 @@ connections:
     - flap1R
   - {}
   connection30:
+  - - flapsplitRsup3
+    - botedge0
+  - - flapsplitR3
+    - botedge1
+  - {}
+  connection31:
+  - - flapsplitRsup3
+    - topedge0
+  - - flapsplitL3
+    - botedge1
+  - angle: 0
+    tabWidth: 5
+  connection32:
   - - flapsplitRsup4
     - botedge0
   - - flapsplitR4
     - botedge1
   - {}
-  connection31:
+  connection33:
   - - flapsplitRsup4
     - topedge0
   - - flapsplitL4
     - botedge1
   - angle: 0
     tabWidth: 5
-  connection32:
+  connection34:
   - - flapsplitRsup5
     - botedge0
   - - flapsplitR5
     - botedge1
   - {}
-  connection33:
+  connection35:
   - - flapsplitRsup5
     - topedge0
   - - flapsplitL5
     - botedge1
   - angle: 0
     tabWidth: 5
-  connection34:
+  connection36:
   - - flapsplitRsup6
     - botedge0
   - - flapsplitR6
     - botedge1
   - {}
-  connection35:
+  connection37:
   - - flapsplitRsup6
     - topedge0
   - - flapsplitL6
     - botedge1
   - angle: 0
     tabWidth: 5
-  connection36:
+  connection38:
   - - flapsplitRsup7
     - botedge0
   - - flapsplitR7
     - botedge1
   - {}
-  connection37:
+  connection39:
   - - flapsplitRsup7
     - topedge0
   - - flapsplitL7
@@ -256,7 +269,7 @@ parameters:
     defaultValue: 8
     spec:
       paramtype: count
-source: ..\builders\PaddleWheelBuilder.py
+source: ../builders/boat/PaddleWheelBuilder.py
 subcomponents:
   flapsplitL0:
     classname: SplitEdge
@@ -440,6 +453,16 @@ subcomponents:
       toplength:
         function: '[3.*x[0]/24]'
         parameter: *id001
+  flapsplitRsup2:
+    classname: SplitEdge
+    kwargs: {}
+    parameters:
+      botlength:
+        function: '[3.*x[0]/24]'
+        parameter: *id001
+      toplength:
+        function: '[3.*x[0]/24]'
+        parameter: *id001
   flapsplitRsup3:
     classname: SplitEdge
     kwargs: {}
diff --git a/rocolib/library/ServoStackMount.yaml b/rocolib/library/ServoStackMount.yaml
index e574f5018fde3c490808a79b3afaf9af36e8107d..5ba87b09920d67271bf495be49baa86c874e9eff 100644
--- a/rocolib/library/ServoStackMount.yaml
+++ b/rocolib/library/ServoStackMount.yaml
@@ -18,10 +18,10 @@ connections:
     - botedge1
   - {}
   connection3:
-  - - espStack
-    - rightArmInterface
   - - starsplit
     - botedge3
+  - - espStack
+    - rightArmInterface
   - tabWidth: 10
 interfaces:
   doubleServoMount.lServoInterface:
diff --git a/rocolib/output/.DS_Store b/rocolib/output/.DS_Store
index 1058a71d1404c8f3361730991c9dbdfad3f09186..109f94234dec6f17885fe5cbe8caf18495dd4292 100644
Binary files a/rocolib/output/.DS_Store and b/rocolib/output/.DS_Store differ
diff --git a/rocolib/output/BatteryMount/graph-anim.svg b/rocolib/output/BatteryMount/graph-anim.svg
index d88661732b2b1a767143570c29733fad09bee39d..439708edbc633821ada5a2e745c91d1c4b1ad429 100644
--- a/rocolib/output/BatteryMount/graph-anim.svg
+++ b/rocolib/output/BatteryMount/graph-anim.svg
@@ -1,37 +1,48 @@
 <?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="166.000000mm" version="1.1" viewBox="0.000000 0.000000 150.308556 166.000000" width="150.308556mm">
+<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="410.000000mm" version="1.1" viewBox="0.000000 0.000000 160.827625 410.000000" width="160.827625mm">
   <defs/>
-  <line stroke="#000000" x1="150.3085560697229" x2="88.65427803486146" y1="105.00000000000001" y2="105.00000000000001"/>
-  <line stroke="#000000" x1="150.3085560697229" x2="150.3085560697229" y1="166.0" y2="105.00000000000001"/>
-  <line stroke="#000000" x1="88.65427803486146" x2="150.3085560697229" y1="166.0" y2="166.0"/>
-  <line opacity="0.25" stroke="#ff0000" x1="88.65427803486146" x2="88.65427803486146" y1="166.0" y2="105.00000000000001"/>
-  <line stroke="#000000" x1="61.65427803486146" x2="88.65427803486146" y1="166.0" y2="166.0"/>
-  <line opacity="0.25" stroke="#ff0000" x1="61.65427803486146" x2="61.65427803486146" y1="105.00000000000001" y2="166.0"/>
-  <line opacity="0.5" stroke="#0000ff" x1="88.65427803486146" x2="61.65427803486146" y1="105.00000000000001" y2="105.00000000000001"/>
-  <line stroke="#000000" x1="0.0" x2="61.65427803486146" y1="166.0" y2="166.0"/>
-  <line stroke="#000000" x1="0.0" x2="0.0" y1="105.00000000000001" y2="166.0"/>
-  <line stroke="#000000" x1="61.65427803486146" x2="0.0" y1="105.00000000000001" y2="105.00000000000001"/>
-  <line stroke="#000000" x1="88.65427803486146" x2="88.65427803486146" y1="105.00000000000001" y2="88.00000000000001"/>
-  <line stroke="#000000" x1="61.65427803486146" x2="61.65427803486146" y1="88.00000000000001" y2="105.00000000000001"/>
-  <line opacity="0.5" stroke="#0000ff" x1="88.65427803486146" x2="61.65427803486146" y1="88.00000000000001" y2="88.00000000000001"/>
-  <line stroke="#000000" x1="88.65427803486146" x2="88.65427803486146" y1="88.00000000000001" y2="27.000000000000004"/>
-  <line stroke="#000000" x1="61.65427803486146" x2="61.65427803486146" y1="27.000000000000004" y2="88.00000000000001"/>
-  <line opacity="0.5" stroke="#0000ff" x1="88.65427803486146" x2="61.65427803486146" y1="27.000000000000004" y2="27.000000000000004"/>
-  <line stroke="#000000" x1="88.65427803486146" x2="88.65427803486146" y1="27.000000000000004" y2="10.000000000000002"/>
-  <line stroke="#000000" x1="61.65427803486146" x2="61.65427803486146" y1="10.000000000000002" y2="27.000000000000004"/>
-  <line opacity="0.5" stroke="#0000ff" x1="61.65427803486146" x2="88.65427803486146" y1="10.000000000000002" y2="10.000000000000002"/>
-  <line stroke="#000000" x1="61.65427803486146" x2="61.65427803486146" y1="0.0" y2="10.000000000000002"/>
-  <line stroke="#000000" x1="88.65427803486146" x2="61.65427803486146" y1="0.0" y2="0.0"/>
-  <line stroke="#000000" x1="88.65427803486146" x2="88.65427803486146" y1="10.000000000000002" y2="0.0"/>
-  <line stroke="#888888" x1="84.15427803486145" x2="84.15427803486145" y1="102.50000000000001" y2="108.50000000000001"/>
-  <line stroke="#888888" x1="84.15427803486145" x2="66.15427803486145" y1="108.50000000000001" y2="108.50000000000001"/>
-  <line stroke="#888888" x1="66.15427803486145" x2="66.15427803486145" y1="108.50000000000001" y2="102.50000000000001"/>
-  <line stroke="#888888" x1="66.15427803486145" x2="84.15427803486145" y1="102.50000000000001" y2="102.50000000000001"/>
-  <line stroke="#888888" x1="70.40427803486146" x2="79.90427803486145" y1="158.25000000000003" y2="158.25000000000003"/>
-  <line stroke="#888888" x1="79.90427803486145" x2="79.90427803486145" y1="158.25000000000003" y2="158.75000000000003"/>
-  <line stroke="#888888" x1="79.90427803486145" x2="70.40427803486146" y1="158.75000000000003" y2="158.75000000000003"/>
-  <line stroke="#888888" x1="70.40427803486146" x2="70.40427803486146" y1="158.75000000000003" y2="158.25000000000003"/>
-  <line stroke="#888888" x1="79.65427803486145" x2="79.65427803486145" y1="2.5000000000000004" y2="7.500000000000001"/>
-  <line stroke="#888888" x1="79.65427803486145" x2="70.65427803486145" y1="7.500000000000001" y2="7.500000000000001"/>
-  <line stroke="#888888" x1="70.65427803486145" x2="70.65427803486145" y1="7.500000000000001" y2="2.5000000000000004"/>
+  <line stroke="#000000" x1="160.82762530298223" x2="130.41381265149116" y1="310.0" y2="310.0"/>
+  <line stroke="#000000" x1="160.82762530298223" x2="160.82762530298223" y1="410.00000000000006" y2="310.0"/>
+  <line stroke="#000000" x1="130.41381265149116" x2="160.82762530298223" y1="410.00000000000006" y2="410.00000000000006"/>
+  <line opacity="0.25" stroke="#ff0000" x1="130.41381265149116" x2="130.41381265149116" y1="410.00000000000006" y2="310.0"/>
+  <line stroke="#000000" x1="30.413812651491117" x2="130.41381265149116" y1="410.00000000000006" y2="410.00000000000006"/>
+  <line opacity="0.25" stroke="#ff0000" x1="30.413812651491117" x2="30.413812651491117" y1="310.0" y2="410.00000000000006"/>
+  <line opacity="0.5" stroke="#0000ff" x1="130.41381265149116" x2="30.413812651491117" y1="310.0" y2="310.0"/>
+  <line stroke="#000000" x1="0.0" x2="30.413812651491117" y1="410.00000000000006" y2="410.00000000000006"/>
+  <line stroke="#000000" x1="0.0" x2="0.0" y1="310.0" y2="410.00000000000006"/>
+  <line stroke="#000000" x1="30.413812651491117" x2="0.0" y1="310.0" y2="310.0"/>
+  <line stroke="#000000" x1="130.41381265149116" x2="130.41381265149116" y1="310.0" y2="210.00000000000003"/>
+  <line stroke="#000000" x1="30.413812651491117" x2="30.413812651491117" y1="210.00000000000003" y2="310.0"/>
+  <line opacity="0.5" stroke="#0000ff" x1="130.41381265149116" x2="30.413812651491117" y1="210.00000000000003" y2="210.00000000000003"/>
+  <line stroke="#000000" x1="130.41381265149116" x2="130.41381265149116" y1="210.00000000000003" y2="110.00000000000001"/>
+  <line stroke="#000000" x1="30.413812651491117" x2="30.413812651491117" y1="110.00000000000001" y2="210.00000000000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="130.41381265149116" x2="30.413812651491117" y1="110.00000000000001" y2="110.00000000000001"/>
+  <line stroke="#000000" x1="130.41381265149116" x2="130.41381265149116" y1="110.00000000000001" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="30.413812651491117" x2="30.413812651491117" y1="10.000000000000002" y2="110.00000000000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="30.413812651491117" x2="130.41381265149116" y1="10.000000000000002" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="30.413812651491117" x2="30.413812651491117" y1="0.0" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="130.41381265149116" x2="30.413812651491117" y1="0.0" y2="0.0"/>
+  <line stroke="#000000" x1="130.41381265149116" x2="130.41381265149116" y1="10.000000000000002" y2="0.0"/>
+  <line stroke="#888888" x1="83.41381265149113" x2="83.41381265149113" y1="327.0" y2="333.00000000000006"/>
+  <line stroke="#888888" x1="83.41381265149113" x2="77.41381265149111" y1="333.00000000000006" y2="333.00000000000006"/>
+  <line stroke="#888888" x1="77.41381265149111" x2="77.41381265149111" y1="333.00000000000006" y2="327.0"/>
+  <line stroke="#888888" x1="77.41381265149111" x2="83.41381265149113" y1="327.0" y2="327.0"/>
+  <line stroke="#888888" x1="93.80017628785475" x2="112.48199446967294" y1="402.25000000000006" y2="402.25000000000006"/>
+  <line stroke="#888888" x1="112.48199446967294" x2="112.48199446967294" y1="402.25000000000006" y2="402.75000000000006"/>
+  <line stroke="#888888" x1="112.48199446967294" x2="93.80017628785475" y1="402.75000000000006" y2="402.75000000000006"/>
+  <line stroke="#888888" x1="93.80017628785475" x2="93.80017628785475" y1="402.75000000000006" y2="402.25000000000006"/>
+  <line stroke="#888888" x1="48.34563083330929" x2="67.02744901512747" y1="402.25000000000006" y2="402.25000000000006"/>
+  <line stroke="#888888" x1="67.02744901512747" x2="67.02744901512747" y1="402.25000000000006" y2="402.75000000000006"/>
+  <line stroke="#888888" x1="67.02744901512747" x2="48.34563083330929" y1="402.75000000000006" y2="402.75000000000006"/>
+  <line stroke="#888888" x1="48.34563083330929" x2="48.34563083330929" y1="402.75000000000006" y2="402.25000000000006"/>
+  <line stroke="#888888" x1="112.23199446967294" x2="117.23199446967294" y1="2.5000000000000004" y2="2.5000000000000004"/>
+  <line stroke="#888888" x1="117.23199446967294" x2="112.23199446967294" y1="2.5000000000000004" y2="7.500000000000001"/>
+  <line stroke="#888888" x1="112.23199446967294" x2="94.05017628785477" y1="7.500000000000001" y2="7.500000000000001"/>
+  <line stroke="#888888" x1="94.05017628785477" x2="89.05017628785475" y1="7.500000000000001" y2="2.5000000000000004"/>
+  <line stroke="#888888" x1="89.05017628785475" x2="94.05017628785477" y1="2.5000000000000004" y2="2.5000000000000004"/>
+  <line stroke="#888888" x1="66.77744901512749" x2="71.77744901512749" y1="2.5000000000000004" y2="2.5000000000000004"/>
+  <line stroke="#888888" x1="71.77744901512749" x2="66.77744901512749" y1="2.5000000000000004" y2="7.500000000000001"/>
+  <line stroke="#888888" x1="66.77744901512749" x2="48.59563083330929" y1="7.500000000000001" y2="7.500000000000001"/>
+  <line stroke="#888888" x1="48.59563083330929" x2="43.59563083330929" y1="7.500000000000001" y2="2.5000000000000004"/>
+  <line stroke="#888888" x1="43.59563083330929" x2="48.59563083330929" y1="2.5000000000000004" y2="2.5000000000000004"/>
 </svg>
diff --git a/rocolib/output/BatteryMount/graph-autofold-default.dxf b/rocolib/output/BatteryMount/graph-autofold-default.dxf
index 126d9db2800bf6738820f01790fcb8826f162cca..a25b8456dfc171992789f5fe0143b88a1a225a37 100644
--- a/rocolib/output/BatteryMount/graph-autofold-default.dxf
+++ b/rocolib/output/BatteryMount/graph-autofold-default.dxf
@@ -973,15 +973,15 @@ LINE
   8
 cut
  10
-150.3085560697229
+160.82762530298223
  20
-105.00000000000001
+310.0
  30
 0.0
  11
-88.65427803486146
+130.41381265149116
  21
-105.00000000000001
+310.0
  31
 0.0
   0
@@ -991,15 +991,15 @@ LINE
   8
 cut
  10
-150.3085560697229
+160.82762530298223
  20
-166.0
+410.00000000000006
  30
 0.0
  11
-150.3085560697229
+160.82762530298223
  21
-105.00000000000001
+310.0
  31
 0.0
   0
@@ -1009,15 +1009,15 @@ LINE
   8
 cut
  10
-88.65427803486146
+130.41381265149116
  20
-166.0
+410.00000000000006
  30
 0.0
  11
-150.3085560697229
+160.82762530298223
  21
-166.0
+410.00000000000006
  31
 0.0
   0
@@ -1029,15 +1029,15 @@ DOTTED
   8
 -45
  10
-88.65427803486146
+130.41381265149116
  20
-166.0
+410.00000000000006
  30
 0.0
  11
-88.65427803486146
+130.41381265149116
  21
-105.00000000000001
+310.0
  31
 0.0
   0
@@ -1047,15 +1047,15 @@ LINE
   8
 cut
  10
-61.65427803486146
+30.413812651491117
  20
-166.0
+410.00000000000006
  30
 0.0
  11
-88.65427803486146
+130.41381265149116
  21
-166.0
+410.00000000000006
  31
 0.0
   0
@@ -1067,15 +1067,15 @@ DOTTED
   8
 -45
  10
-61.65427803486146
+30.413812651491117
  20
-105.00000000000001
+310.0
  30
 0.0
  11
-61.65427803486146
+30.413812651491117
  21
-166.0
+410.00000000000006
  31
 0.0
   0
@@ -1087,15 +1087,15 @@ DOTTED
   8
 90
  10
-88.65427803486146
+130.41381265149116
  20
-105.00000000000001
+310.0
  30
 0.0
  11
-61.65427803486146
+30.413812651491117
  21
-105.00000000000001
+310.0
  31
 0.0
   0
@@ -1107,13 +1107,13 @@ cut
  10
 0.0
  20
-166.0
+410.00000000000006
  30
 0.0
  11
-61.65427803486146
+30.413812651491117
  21
-166.0
+410.00000000000006
  31
 0.0
   0
@@ -1125,13 +1125,13 @@ cut
  10
 0.0
  20
-105.00000000000001
+310.0
  30
 0.0
  11
 0.0
  21
-166.0
+410.00000000000006
  31
 0.0
   0
@@ -1141,15 +1141,15 @@ LINE
   8
 cut
  10
-61.65427803486146
+30.413812651491117
  20
-105.00000000000001
+310.0
  30
 0.0
  11
 0.0
  21
-105.00000000000001
+310.0
  31
 0.0
   0
@@ -1159,15 +1159,15 @@ LINE
   8
 cut
  10
-88.65427803486146
+130.41381265149116
  20
-105.00000000000001
+310.0
  30
 0.0
  11
-88.65427803486146
+130.41381265149116
  21
-88.00000000000001
+210.00000000000003
  31
 0.0
   0
@@ -1177,15 +1177,15 @@ LINE
   8
 cut
  10
-61.65427803486146
+30.413812651491117
  20
-88.00000000000001
+210.00000000000003
  30
 0.0
  11
-61.65427803486146
+30.413812651491117
  21
-105.00000000000001
+310.0
  31
 0.0
   0
@@ -1197,15 +1197,15 @@ DOTTED
   8
 90
  10
-88.65427803486146
+130.41381265149116
  20
-88.00000000000001
+210.00000000000003
  30
 0.0
  11
-61.65427803486146
+30.413812651491117
  21
-88.00000000000001
+210.00000000000003
  31
 0.0
   0
@@ -1215,15 +1215,15 @@ LINE
   8
 cut
  10
-88.65427803486146
+130.41381265149116
  20
-88.00000000000001
+210.00000000000003
  30
 0.0
  11
-88.65427803486146
+130.41381265149116
  21
-27.000000000000004
+110.00000000000001
  31
 0.0
   0
@@ -1233,15 +1233,15 @@ LINE
   8
 cut
  10
-61.65427803486146
+30.413812651491117
  20
-27.000000000000004
+110.00000000000001
  30
 0.0
  11
-61.65427803486146
+30.413812651491117
  21
-88.00000000000001
+210.00000000000003
  31
 0.0
   0
@@ -1253,15 +1253,15 @@ DOTTED
   8
 90
  10
-88.65427803486146
+130.41381265149116
  20
-27.000000000000004
+110.00000000000001
  30
 0.0
  11
-61.65427803486146
+30.413812651491117
  21
-27.000000000000004
+110.00000000000001
  31
 0.0
   0
@@ -1271,13 +1271,13 @@ LINE
   8
 cut
  10
-88.65427803486146
+130.41381265149116
  20
-27.000000000000004
+110.00000000000001
  30
 0.0
  11
-88.65427803486146
+130.41381265149116
  21
 10.000000000000002
  31
@@ -1289,15 +1289,15 @@ LINE
   8
 cut
  10
-61.65427803486146
+30.413812651491117
  20
 10.000000000000002
  30
 0.0
  11
-61.65427803486146
+30.413812651491117
  21
-27.000000000000004
+110.00000000000001
  31
 0.0
   0
@@ -1309,13 +1309,13 @@ DOTTED
   8
 90
  10
-61.65427803486146
+30.413812651491117
  20
 10.000000000000002
  30
 0.0
  11
-88.65427803486146
+130.41381265149116
  21
 10.000000000000002
  31
@@ -1327,13 +1327,13 @@ LINE
   8
 cut
  10
-61.65427803486146
+30.413812651491117
  20
 0.0
  30
 0.0
  11
-61.65427803486146
+30.413812651491117
  21
 10.000000000000002
  31
@@ -1345,13 +1345,13 @@ LINE
   8
 cut
  10
-88.65427803486146
+130.41381265149116
  20
 0.0
  30
 0.0
  11
-61.65427803486146
+30.413812651491117
  21
 0.0
  31
@@ -1363,13 +1363,13 @@ LINE
   8
 cut
  10
-88.65427803486146
+130.41381265149116
  20
 10.000000000000002
  30
 0.0
  11
-88.65427803486146
+130.41381265149116
  21
 0.0
  31
@@ -1381,15 +1381,15 @@ LINE
   8
 cut
  10
-84.15427803486145
+83.41381265149113
  20
-102.50000000000001
+327.0
  30
 0.0
  11
-84.15427803486145
+83.41381265149113
  21
-108.50000000000001
+333.00000000000006
  31
 0.0
   0
@@ -1399,15 +1399,15 @@ LINE
   8
 cut
  10
-84.15427803486145
+83.41381265149113
  20
-108.50000000000001
+333.00000000000006
  30
 0.0
  11
-66.15427803486145
+77.41381265149111
  21
-108.50000000000001
+333.00000000000006
  31
 0.0
   0
@@ -1417,15 +1417,15 @@ LINE
   8
 cut
  10
-66.15427803486145
+77.41381265149111
  20
-108.50000000000001
+333.00000000000006
  30
 0.0
  11
-66.15427803486145
+77.41381265149111
  21
-102.50000000000001
+327.0
  31
 0.0
   0
@@ -1435,15 +1435,15 @@ LINE
   8
 cut
  10
-66.15427803486145
+77.41381265149111
  20
-102.50000000000001
+327.0
  30
 0.0
  11
-84.15427803486145
+83.41381265149113
  21
-102.50000000000001
+327.0
  31
 0.0
   0
@@ -1453,15 +1453,15 @@ LINE
   8
 cut
  10
-70.40427803486146
+93.80017628785475
  20
-158.25000000000003
+402.25000000000006
  30
 0.0
  11
-79.90427803486145
+112.48199446967294
  21
-158.25000000000003
+402.25000000000006
  31
 0.0
   0
@@ -1471,15 +1471,15 @@ LINE
   8
 cut
  10
-79.90427803486145
+112.48199446967294
  20
-158.25000000000003
+402.25000000000006
  30
 0.0
  11
-79.90427803486145
+112.48199446967294
  21
-158.75000000000003
+402.75000000000006
  31
 0.0
   0
@@ -1489,15 +1489,15 @@ LINE
   8
 cut
  10
-79.90427803486145
+112.48199446967294
  20
-158.75000000000003
+402.75000000000006
  30
 0.0
  11
-70.40427803486146
+93.80017628785475
  21
-158.75000000000003
+402.75000000000006
  31
 0.0
   0
@@ -1507,15 +1507,15 @@ LINE
   8
 cut
  10
-70.40427803486146
+93.80017628785475
  20
-158.75000000000003
+402.75000000000006
  30
 0.0
  11
-70.40427803486146
+93.80017628785475
  21
-158.25000000000003
+402.25000000000006
  31
 0.0
   0
@@ -1525,13 +1525,193 @@ LINE
   8
 cut
  10
-79.65427803486145
+48.34563083330929
+ 20
+402.25000000000006
+ 30
+0.0
+ 11
+67.02744901512747
+ 21
+402.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+67.02744901512747
+ 20
+402.25000000000006
+ 30
+0.0
+ 11
+67.02744901512747
+ 21
+402.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+67.02744901512747
+ 20
+402.75000000000006
+ 30
+0.0
+ 11
+48.34563083330929
+ 21
+402.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+48.34563083330929
+ 20
+402.75000000000006
+ 30
+0.0
+ 11
+48.34563083330929
+ 21
+402.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+112.23199446967294
+ 20
+2.5000000000000004
+ 30
+0.0
+ 11
+117.23199446967294
+ 21
+2.5000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+117.23199446967294
+ 20
+2.5000000000000004
+ 30
+0.0
+ 11
+112.23199446967294
+ 21
+7.500000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+112.23199446967294
+ 20
+7.500000000000001
+ 30
+0.0
+ 11
+94.05017628785477
+ 21
+7.500000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+94.05017628785477
+ 20
+7.500000000000001
+ 30
+0.0
+ 11
+89.05017628785475
+ 21
+2.5000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+89.05017628785475
+ 20
+2.5000000000000004
+ 30
+0.0
+ 11
+94.05017628785477
+ 21
+2.5000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+66.77744901512749
+ 20
+2.5000000000000004
+ 30
+0.0
+ 11
+71.77744901512749
+ 21
+2.5000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+71.77744901512749
  20
 2.5000000000000004
  30
 0.0
  11
-79.65427803486145
+66.77744901512749
  21
 7.500000000000001
  31
@@ -1543,13 +1723,13 @@ LINE
   8
 cut
  10
-79.65427803486145
+66.77744901512749
  20
 7.500000000000001
  30
 0.0
  11
-70.65427803486145
+48.59563083330929
  21
 7.500000000000001
  31
@@ -1561,13 +1741,31 @@ LINE
   8
 cut
  10
-70.65427803486145
+48.59563083330929
  20
 7.500000000000001
  30
 0.0
  11
-70.65427803486145
+43.59563083330929
+ 21
+2.5000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+43.59563083330929
+ 20
+2.5000000000000004
+ 30
+0.0
+ 11
+48.59563083330929
  21
 2.5000000000000004
  31
diff --git a/rocolib/output/BatteryMount/graph-autofold-graph.dxf b/rocolib/output/BatteryMount/graph-autofold-graph.dxf
index f085ea7890de289f1fd6fb5fc873bd4843f50ef2..5893f34d656feeab70945ff828b88b8a04aa9e7e 100644
--- a/rocolib/output/BatteryMount/graph-autofold-graph.dxf
+++ b/rocolib/output/BatteryMount/graph-autofold-graph.dxf
@@ -943,15 +943,15 @@ LINE
   8
 0
  10
-150.3085560697229
+160.82762530298223
  20
-105.00000000000001
+310.0
  30
 0.0
  11
-88.65427803486146
+130.41381265149116
  21
-105.00000000000001
+310.0
  31
 0.0
   0
@@ -961,15 +961,15 @@ LINE
   8
 0
  10
-150.3085560697229
+160.82762530298223
  20
-166.0
+410.00000000000006
  30
 0.0
  11
-150.3085560697229
+160.82762530298223
  21
-105.00000000000001
+310.0
  31
 0.0
   0
@@ -979,15 +979,15 @@ LINE
   8
 0
  10
-88.65427803486146
+130.41381265149116
  20
-166.0
+410.00000000000006
  30
 0.0
  11
-150.3085560697229
+160.82762530298223
  21
-166.0
+410.00000000000006
  31
 0.0
   0
@@ -999,15 +999,15 @@ DOTTED
   8
 0
  10
-88.65427803486146
+130.41381265149116
  20
-166.0
+410.00000000000006
  30
 0.0
  11
-88.65427803486146
+130.41381265149116
  21
-105.00000000000001
+310.0
  31
 0.0
   0
@@ -1017,15 +1017,15 @@ LINE
   8
 0
  10
-61.65427803486146
+30.413812651491117
  20
-166.0
+410.00000000000006
  30
 0.0
  11
-88.65427803486146
+130.41381265149116
  21
-166.0
+410.00000000000006
  31
 0.0
   0
@@ -1037,15 +1037,15 @@ DOTTED
   8
 0
  10
-61.65427803486146
+30.413812651491117
  20
-105.00000000000001
+310.0
  30
 0.0
  11
-61.65427803486146
+30.413812651491117
  21
-166.0
+410.00000000000006
  31
 0.0
   0
@@ -1057,15 +1057,15 @@ DOTTED
   8
 0
  10
-88.65427803486146
+130.41381265149116
  20
-105.00000000000001
+310.0
  30
 0.0
  11
-61.65427803486146
+30.413812651491117
  21
-105.00000000000001
+310.0
  31
 0.0
   0
@@ -1077,13 +1077,13 @@ LINE
  10
 0.0
  20
-166.0
+410.00000000000006
  30
 0.0
  11
-61.65427803486146
+30.413812651491117
  21
-166.0
+410.00000000000006
  31
 0.0
   0
@@ -1095,13 +1095,13 @@ LINE
  10
 0.0
  20
-105.00000000000001
+310.0
  30
 0.0
  11
 0.0
  21
-166.0
+410.00000000000006
  31
 0.0
   0
@@ -1111,15 +1111,15 @@ LINE
   8
 0
  10
-61.65427803486146
+30.413812651491117
  20
-105.00000000000001
+310.0
  30
 0.0
  11
 0.0
  21
-105.00000000000001
+310.0
  31
 0.0
   0
@@ -1129,15 +1129,15 @@ LINE
   8
 0
  10
-88.65427803486146
+130.41381265149116
  20
-105.00000000000001
+310.0
  30
 0.0
  11
-88.65427803486146
+130.41381265149116
  21
-88.00000000000001
+210.00000000000003
  31
 0.0
   0
@@ -1147,15 +1147,15 @@ LINE
   8
 0
  10
-61.65427803486146
+30.413812651491117
  20
-88.00000000000001
+210.00000000000003
  30
 0.0
  11
-61.65427803486146
+30.413812651491117
  21
-105.00000000000001
+310.0
  31
 0.0
   0
@@ -1167,15 +1167,15 @@ DOTTED
   8
 0
  10
-88.65427803486146
+130.41381265149116
  20
-88.00000000000001
+210.00000000000003
  30
 0.0
  11
-61.65427803486146
+30.413812651491117
  21
-88.00000000000001
+210.00000000000003
  31
 0.0
   0
@@ -1185,15 +1185,15 @@ LINE
   8
 0
  10
-88.65427803486146
+130.41381265149116
  20
-88.00000000000001
+210.00000000000003
  30
 0.0
  11
-88.65427803486146
+130.41381265149116
  21
-27.000000000000004
+110.00000000000001
  31
 0.0
   0
@@ -1203,15 +1203,15 @@ LINE
   8
 0
  10
-61.65427803486146
+30.413812651491117
  20
-27.000000000000004
+110.00000000000001
  30
 0.0
  11
-61.65427803486146
+30.413812651491117
  21
-88.00000000000001
+210.00000000000003
  31
 0.0
   0
@@ -1223,15 +1223,15 @@ DOTTED
   8
 0
  10
-88.65427803486146
+130.41381265149116
  20
-27.000000000000004
+110.00000000000001
  30
 0.0
  11
-61.65427803486146
+30.413812651491117
  21
-27.000000000000004
+110.00000000000001
  31
 0.0
   0
@@ -1241,13 +1241,13 @@ LINE
   8
 0
  10
-88.65427803486146
+130.41381265149116
  20
-27.000000000000004
+110.00000000000001
  30
 0.0
  11
-88.65427803486146
+130.41381265149116
  21
 10.000000000000002
  31
@@ -1259,15 +1259,15 @@ LINE
   8
 0
  10
-61.65427803486146
+30.413812651491117
  20
 10.000000000000002
  30
 0.0
  11
-61.65427803486146
+30.413812651491117
  21
-27.000000000000004
+110.00000000000001
  31
 0.0
   0
@@ -1279,13 +1279,13 @@ DOTTED
   8
 0
  10
-61.65427803486146
+30.413812651491117
  20
 10.000000000000002
  30
 0.0
  11
-88.65427803486146
+130.41381265149116
  21
 10.000000000000002
  31
@@ -1297,13 +1297,13 @@ LINE
   8
 0
  10
-61.65427803486146
+30.413812651491117
  20
 0.0
  30
 0.0
  11
-61.65427803486146
+30.413812651491117
  21
 10.000000000000002
  31
@@ -1315,13 +1315,13 @@ LINE
   8
 0
  10
-88.65427803486146
+130.41381265149116
  20
 0.0
  30
 0.0
  11
-61.65427803486146
+30.413812651491117
  21
 0.0
  31
@@ -1333,13 +1333,13 @@ LINE
   8
 0
  10
-88.65427803486146
+130.41381265149116
  20
 10.000000000000002
  30
 0.0
  11
-88.65427803486146
+130.41381265149116
  21
 0.0
  31
@@ -1351,15 +1351,15 @@ LINE
   8
 0
  10
-84.15427803486145
+83.41381265149113
  20
-102.50000000000001
+327.0
  30
 0.0
  11
-84.15427803486145
+83.41381265149113
  21
-108.50000000000001
+333.00000000000006
  31
 0.0
   0
@@ -1369,15 +1369,15 @@ LINE
   8
 0
  10
-84.15427803486145
+83.41381265149113
  20
-108.50000000000001
+333.00000000000006
  30
 0.0
  11
-66.15427803486145
+77.41381265149111
  21
-108.50000000000001
+333.00000000000006
  31
 0.0
   0
@@ -1387,15 +1387,15 @@ LINE
   8
 0
  10
-66.15427803486145
+77.41381265149111
  20
-108.50000000000001
+333.00000000000006
  30
 0.0
  11
-66.15427803486145
+77.41381265149111
  21
-102.50000000000001
+327.0
  31
 0.0
   0
@@ -1405,15 +1405,15 @@ LINE
   8
 0
  10
-66.15427803486145
+77.41381265149111
  20
-102.50000000000001
+327.0
  30
 0.0
  11
-84.15427803486145
+83.41381265149113
  21
-102.50000000000001
+327.0
  31
 0.0
   0
@@ -1423,15 +1423,15 @@ LINE
   8
 0
  10
-70.40427803486146
+93.80017628785475
  20
-158.25000000000003
+402.25000000000006
  30
 0.0
  11
-79.90427803486145
+112.48199446967294
  21
-158.25000000000003
+402.25000000000006
  31
 0.0
   0
@@ -1441,15 +1441,15 @@ LINE
   8
 0
  10
-79.90427803486145
+112.48199446967294
  20
-158.25000000000003
+402.25000000000006
  30
 0.0
  11
-79.90427803486145
+112.48199446967294
  21
-158.75000000000003
+402.75000000000006
  31
 0.0
   0
@@ -1459,15 +1459,15 @@ LINE
   8
 0
  10
-79.90427803486145
+112.48199446967294
  20
-158.75000000000003
+402.75000000000006
  30
 0.0
  11
-70.40427803486146
+93.80017628785475
  21
-158.75000000000003
+402.75000000000006
  31
 0.0
   0
@@ -1477,15 +1477,15 @@ LINE
   8
 0
  10
-70.40427803486146
+93.80017628785475
  20
-158.75000000000003
+402.75000000000006
  30
 0.0
  11
-70.40427803486146
+93.80017628785475
  21
-158.25000000000003
+402.25000000000006
  31
 0.0
   0
@@ -1495,13 +1495,193 @@ LINE
   8
 0
  10
-79.65427803486145
+48.34563083330929
+ 20
+402.25000000000006
+ 30
+0.0
+ 11
+67.02744901512747
+ 21
+402.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+67.02744901512747
+ 20
+402.25000000000006
+ 30
+0.0
+ 11
+67.02744901512747
+ 21
+402.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+67.02744901512747
+ 20
+402.75000000000006
+ 30
+0.0
+ 11
+48.34563083330929
+ 21
+402.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.34563083330929
+ 20
+402.75000000000006
+ 30
+0.0
+ 11
+48.34563083330929
+ 21
+402.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+112.23199446967294
+ 20
+2.5000000000000004
+ 30
+0.0
+ 11
+117.23199446967294
+ 21
+2.5000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+117.23199446967294
+ 20
+2.5000000000000004
+ 30
+0.0
+ 11
+112.23199446967294
+ 21
+7.500000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+112.23199446967294
+ 20
+7.500000000000001
+ 30
+0.0
+ 11
+94.05017628785477
+ 21
+7.500000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+94.05017628785477
+ 20
+7.500000000000001
+ 30
+0.0
+ 11
+89.05017628785475
+ 21
+2.5000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+89.05017628785475
+ 20
+2.5000000000000004
+ 30
+0.0
+ 11
+94.05017628785477
+ 21
+2.5000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+66.77744901512749
+ 20
+2.5000000000000004
+ 30
+0.0
+ 11
+71.77744901512749
+ 21
+2.5000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+71.77744901512749
  20
 2.5000000000000004
  30
 0.0
  11
-79.65427803486145
+66.77744901512749
  21
 7.500000000000001
  31
@@ -1513,13 +1693,13 @@ LINE
   8
 0
  10
-79.65427803486145
+66.77744901512749
  20
 7.500000000000001
  30
 0.0
  11
-70.65427803486145
+48.59563083330929
  21
 7.500000000000001
  31
@@ -1531,13 +1711,31 @@ LINE
   8
 0
  10
-70.65427803486145
+48.59563083330929
  20
 7.500000000000001
  30
 0.0
  11
-70.65427803486145
+43.59563083330929
+ 21
+2.5000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+43.59563083330929
+ 20
+2.5000000000000004
+ 30
+0.0
+ 11
+48.59563083330929
  21
 2.5000000000000004
  31
diff --git a/rocolib/output/BatteryMount/graph-lasercutter.svg b/rocolib/output/BatteryMount/graph-lasercutter.svg
index c3055257ace5ac19f85a907f0ac4ae6565cdfcf5..2c958fde136e68314128818b7509bf3fcf78a776 100644
--- a/rocolib/output/BatteryMount/graph-lasercutter.svg
+++ b/rocolib/output/BatteryMount/graph-lasercutter.svg
@@ -1,37 +1,48 @@
 <?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="166.000000mm" version="1.1" viewBox="0.000000 0.000000 150.308556 166.000000" width="150.308556mm">
+<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="410.000000mm" version="1.1" viewBox="0.000000 0.000000 160.827625 410.000000" width="160.827625mm">
   <defs/>
-  <line stroke="#000000" x1="150.3085560697229" x2="88.65427803486146" y1="105.00000000000001" y2="105.00000000000001"/>
-  <line stroke="#000000" x1="150.3085560697229" x2="150.3085560697229" y1="166.0" y2="105.00000000000001"/>
-  <line stroke="#000000" x1="88.65427803486146" x2="150.3085560697229" y1="166.0" y2="166.0"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="88.65427803486146" x2="88.65427803486146" y1="166.0" y2="105.00000000000001"/>
-  <line stroke="#000000" x1="61.65427803486146" x2="88.65427803486146" y1="166.0" y2="166.0"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="61.65427803486146" x2="61.65427803486146" y1="105.00000000000001" y2="166.0"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="88.65427803486146" x2="61.65427803486146" y1="105.00000000000001" y2="105.00000000000001"/>
-  <line stroke="#000000" x1="0.0" x2="61.65427803486146" y1="166.0" y2="166.0"/>
-  <line stroke="#000000" x1="0.0" x2="0.0" y1="105.00000000000001" y2="166.0"/>
-  <line stroke="#000000" x1="61.65427803486146" x2="0.0" y1="105.00000000000001" y2="105.00000000000001"/>
-  <line stroke="#000000" x1="88.65427803486146" x2="88.65427803486146" y1="105.00000000000001" y2="88.00000000000001"/>
-  <line stroke="#000000" x1="61.65427803486146" x2="61.65427803486146" y1="88.00000000000001" y2="105.00000000000001"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="88.65427803486146" x2="61.65427803486146" y1="88.00000000000001" y2="88.00000000000001"/>
-  <line stroke="#000000" x1="88.65427803486146" x2="88.65427803486146" y1="88.00000000000001" y2="27.000000000000004"/>
-  <line stroke="#000000" x1="61.65427803486146" x2="61.65427803486146" y1="27.000000000000004" y2="88.00000000000001"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="88.65427803486146" x2="61.65427803486146" y1="27.000000000000004" y2="27.000000000000004"/>
-  <line stroke="#000000" x1="88.65427803486146" x2="88.65427803486146" y1="27.000000000000004" y2="10.000000000000002"/>
-  <line stroke="#000000" x1="61.65427803486146" x2="61.65427803486146" y1="10.000000000000002" y2="27.000000000000004"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="61.65427803486146" x2="88.65427803486146" y1="10.000000000000002" y2="10.000000000000002"/>
-  <line stroke="#000000" x1="61.65427803486146" x2="61.65427803486146" y1="0.0" y2="10.000000000000002"/>
-  <line stroke="#000000" x1="88.65427803486146" x2="61.65427803486146" y1="0.0" y2="0.0"/>
-  <line stroke="#000000" x1="88.65427803486146" x2="88.65427803486146" y1="10.000000000000002" y2="0.0"/>
-  <line stroke="#888888" x1="84.15427803486145" x2="84.15427803486145" y1="102.50000000000001" y2="108.50000000000001"/>
-  <line stroke="#888888" x1="84.15427803486145" x2="66.15427803486145" y1="108.50000000000001" y2="108.50000000000001"/>
-  <line stroke="#888888" x1="66.15427803486145" x2="66.15427803486145" y1="108.50000000000001" y2="102.50000000000001"/>
-  <line stroke="#888888" x1="66.15427803486145" x2="84.15427803486145" y1="102.50000000000001" y2="102.50000000000001"/>
-  <line stroke="#888888" x1="70.40427803486146" x2="79.90427803486145" y1="158.25000000000003" y2="158.25000000000003"/>
-  <line stroke="#888888" x1="79.90427803486145" x2="79.90427803486145" y1="158.25000000000003" y2="158.75000000000003"/>
-  <line stroke="#888888" x1="79.90427803486145" x2="70.40427803486146" y1="158.75000000000003" y2="158.75000000000003"/>
-  <line stroke="#888888" x1="70.40427803486146" x2="70.40427803486146" y1="158.75000000000003" y2="158.25000000000003"/>
-  <line stroke="#888888" x1="79.65427803486145" x2="79.65427803486145" y1="2.5000000000000004" y2="7.500000000000001"/>
-  <line stroke="#888888" x1="79.65427803486145" x2="70.65427803486145" y1="7.500000000000001" y2="7.500000000000001"/>
-  <line stroke="#888888" x1="70.65427803486145" x2="70.65427803486145" y1="7.500000000000001" y2="2.5000000000000004"/>
+  <line stroke="#000000" x1="160.82762530298223" x2="130.41381265149116" y1="310.0" y2="310.0"/>
+  <line stroke="#000000" x1="160.82762530298223" x2="160.82762530298223" y1="410.00000000000006" y2="310.0"/>
+  <line stroke="#000000" x1="130.41381265149116" x2="160.82762530298223" y1="410.00000000000006" y2="410.00000000000006"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="130.41381265149116" x2="130.41381265149116" y1="410.00000000000006" y2="310.0"/>
+  <line stroke="#000000" x1="30.413812651491117" x2="130.41381265149116" y1="410.00000000000006" y2="410.00000000000006"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="30.413812651491117" x2="30.413812651491117" y1="310.0" y2="410.00000000000006"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="130.41381265149116" x2="30.413812651491117" y1="310.0" y2="310.0"/>
+  <line stroke="#000000" x1="0.0" x2="30.413812651491117" y1="410.00000000000006" y2="410.00000000000006"/>
+  <line stroke="#000000" x1="0.0" x2="0.0" y1="310.0" y2="410.00000000000006"/>
+  <line stroke="#000000" x1="30.413812651491117" x2="0.0" y1="310.0" y2="310.0"/>
+  <line stroke="#000000" x1="130.41381265149116" x2="130.41381265149116" y1="310.0" y2="210.00000000000003"/>
+  <line stroke="#000000" x1="30.413812651491117" x2="30.413812651491117" y1="210.00000000000003" y2="310.0"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="130.41381265149116" x2="30.413812651491117" y1="210.00000000000003" y2="210.00000000000003"/>
+  <line stroke="#000000" x1="130.41381265149116" x2="130.41381265149116" y1="210.00000000000003" y2="110.00000000000001"/>
+  <line stroke="#000000" x1="30.413812651491117" x2="30.413812651491117" y1="110.00000000000001" y2="210.00000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="130.41381265149116" x2="30.413812651491117" y1="110.00000000000001" y2="110.00000000000001"/>
+  <line stroke="#000000" x1="130.41381265149116" x2="130.41381265149116" y1="110.00000000000001" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="30.413812651491117" x2="30.413812651491117" y1="10.000000000000002" y2="110.00000000000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="30.413812651491117" x2="130.41381265149116" y1="10.000000000000002" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="30.413812651491117" x2="30.413812651491117" y1="0.0" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="130.41381265149116" x2="30.413812651491117" y1="0.0" y2="0.0"/>
+  <line stroke="#000000" x1="130.41381265149116" x2="130.41381265149116" y1="10.000000000000002" y2="0.0"/>
+  <line stroke="#888888" x1="83.41381265149113" x2="83.41381265149113" y1="327.0" y2="333.00000000000006"/>
+  <line stroke="#888888" x1="83.41381265149113" x2="77.41381265149111" y1="333.00000000000006" y2="333.00000000000006"/>
+  <line stroke="#888888" x1="77.41381265149111" x2="77.41381265149111" y1="333.00000000000006" y2="327.0"/>
+  <line stroke="#888888" x1="77.41381265149111" x2="83.41381265149113" y1="327.0" y2="327.0"/>
+  <line stroke="#888888" x1="93.80017628785475" x2="112.48199446967294" y1="402.25000000000006" y2="402.25000000000006"/>
+  <line stroke="#888888" x1="112.48199446967294" x2="112.48199446967294" y1="402.25000000000006" y2="402.75000000000006"/>
+  <line stroke="#888888" x1="112.48199446967294" x2="93.80017628785475" y1="402.75000000000006" y2="402.75000000000006"/>
+  <line stroke="#888888" x1="93.80017628785475" x2="93.80017628785475" y1="402.75000000000006" y2="402.25000000000006"/>
+  <line stroke="#888888" x1="48.34563083330929" x2="67.02744901512747" y1="402.25000000000006" y2="402.25000000000006"/>
+  <line stroke="#888888" x1="67.02744901512747" x2="67.02744901512747" y1="402.25000000000006" y2="402.75000000000006"/>
+  <line stroke="#888888" x1="67.02744901512747" x2="48.34563083330929" y1="402.75000000000006" y2="402.75000000000006"/>
+  <line stroke="#888888" x1="48.34563083330929" x2="48.34563083330929" y1="402.75000000000006" y2="402.25000000000006"/>
+  <line stroke="#888888" x1="112.23199446967294" x2="117.23199446967294" y1="2.5000000000000004" y2="2.5000000000000004"/>
+  <line stroke="#888888" x1="117.23199446967294" x2="112.23199446967294" y1="2.5000000000000004" y2="7.500000000000001"/>
+  <line stroke="#888888" x1="112.23199446967294" x2="94.05017628785477" y1="7.500000000000001" y2="7.500000000000001"/>
+  <line stroke="#888888" x1="94.05017628785477" x2="89.05017628785475" y1="7.500000000000001" y2="2.5000000000000004"/>
+  <line stroke="#888888" x1="89.05017628785475" x2="94.05017628785477" y1="2.5000000000000004" y2="2.5000000000000004"/>
+  <line stroke="#888888" x1="66.77744901512749" x2="71.77744901512749" y1="2.5000000000000004" y2="2.5000000000000004"/>
+  <line stroke="#888888" x1="71.77744901512749" x2="66.77744901512749" y1="2.5000000000000004" y2="7.500000000000001"/>
+  <line stroke="#888888" x1="66.77744901512749" x2="48.59563083330929" y1="7.500000000000001" y2="7.500000000000001"/>
+  <line stroke="#888888" x1="48.59563083330929" x2="43.59563083330929" y1="7.500000000000001" y2="2.5000000000000004"/>
+  <line stroke="#888888" x1="43.59563083330929" x2="48.59563083330929" y1="2.5000000000000004" y2="2.5000000000000004"/>
 </svg>
diff --git a/rocolib/output/BatteryMount/graph-model.png b/rocolib/output/BatteryMount/graph-model.png
index f4e87f061d9964384595d2980de408f75ebc0278..f7a955c6cdcb3a039808cb8fdb4ef42da5f43adc 100644
Binary files a/rocolib/output/BatteryMount/graph-model.png and b/rocolib/output/BatteryMount/graph-model.png differ
diff --git a/rocolib/output/BatteryMount/graph-model.stl b/rocolib/output/BatteryMount/graph-model.stl
index 1a05baa4df9539a2aaa6ef42b625f50da117d8b9..da2de987aeafa5d307ff810abba084af168d5a3f 100644
--- a/rocolib/output/BatteryMount/graph-model.stl
+++ b/rocolib/output/BatteryMount/graph-model.stl
@@ -1,142 +1,142 @@
 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
+vertex -0.0152 0.0500 0.0000
+vertex -0.0152 -0.0500 0.0000
+vertex 0.0152 -0.0500 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
+vertex 0.0152 -0.0500 0.0000
+vertex 0.0152 0.0500 0.0000
+vertex -0.0152 0.0500 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
+vertex -0.0859 -0.0500 0.0707
+vertex -0.0859 0.0500 0.0707
+vertex -0.0859 0.0500 0.1011
 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
+vertex -0.0859 0.0500 0.1011
+vertex -0.0859 -0.0500 0.1011
+vertex -0.0859 -0.0500 0.0707
 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
+vertex -0.0859 0.0500 0.0707
+vertex -0.0152 0.0500 -0.0000
+vertex -0.0859 0.0500 -0.0707
 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
+vertex -0.0859 0.0500 -0.0707
+vertex -0.1566 0.0500 -0.0000
+vertex -0.0859 0.0500 0.0707
 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
+vertex -0.1566 0.0500 -0.0000
+vertex -0.0859 0.0500 -0.0707
+vertex -0.0859 -0.0500 -0.0707
 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
+vertex -0.0859 -0.0500 -0.0707
+vertex -0.1566 -0.0500 -0.0000
+vertex -0.1566 0.0500 -0.0000
 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
+vertex -0.1566 -0.0500 -0.0000
+vertex -0.0859 -0.0500 -0.0707
+vertex -0.0152 -0.0500 -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
+vertex -0.0152 -0.0500 -0.0000
+vertex -0.0859 -0.0500 0.0707
+vertex -0.1566 -0.0500 -0.0000
 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
+vertex -0.0152 -0.0500 0.0000
+vertex -0.0484 -0.0330 0.0332
+vertex -0.0527 -0.0330 0.0375
 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
+vertex -0.0484 -0.0330 0.0332
+vertex -0.0152 -0.0500 0.0000
+vertex -0.0484 -0.0270 0.0332
 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
+vertex -0.0859 -0.0500 0.0707
+vertex -0.0527 -0.0330 0.0375
+vertex -0.0527 -0.0270 0.0375
 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
+vertex -0.0527 -0.0330 0.0375
+vertex -0.0859 -0.0500 0.0707
+vertex -0.0152 -0.0500 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
+vertex -0.0484 -0.0270 0.0332
+vertex -0.0152 0.0500 0.0000
+vertex -0.0859 0.0500 0.0707
 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
+vertex -0.0152 0.0500 0.0000
+vertex -0.0484 -0.0270 0.0332
+vertex -0.0152 -0.0500 0.0000
 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
+vertex -0.0527 -0.0270 0.0375
+vertex -0.0859 0.0500 0.0707
+vertex -0.0859 -0.0500 0.0707
 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
+vertex -0.0859 0.0500 0.0707
+vertex -0.0527 -0.0270 0.0375
+vertex -0.0484 -0.0270 0.0332
 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
+vertex -0.0152 0.0400 -0.0000
+vertex -0.0152 0.0500 -0.0000
+vertex -0.0859 0.0500 0.0707
 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
+vertex -0.0859 0.0500 0.0707
+vertex -0.0859 0.0400 0.0707
+vertex -0.0152 0.0400 -0.0000
 endloop
 endfacet
 endsolid python
diff --git a/rocolib/output/BatteryMount/graph-silhouette.dxf b/rocolib/output/BatteryMount/graph-silhouette.dxf
index f3f52603114f6ea325e2851ec26614ed1744586b..3b91332ea06536d3eef5d8dfad250665c03b9156 100644
--- a/rocolib/output/BatteryMount/graph-silhouette.dxf
+++ b/rocolib/output/BatteryMount/graph-silhouette.dxf
@@ -943,15 +943,15 @@ LINE
   8
 0
  10
-150.3085560697229
+160.82762530298223
  20
-105.00000000000001
+310.0
  30
 0.0
  11
-88.65427803486146
+130.41381265149116
  21
-105.00000000000001
+310.0
  31
 0.0
   0
@@ -961,15 +961,15 @@ LINE
   8
 0
  10
-150.3085560697229
+160.82762530298223
  20
-166.0
+410.00000000000006
  30
 0.0
  11
-150.3085560697229
+160.82762530298223
  21
-105.00000000000001
+310.0
  31
 0.0
   0
@@ -979,15 +979,15 @@ LINE
   8
 0
  10
-88.65427803486146
+130.41381265149116
  20
-166.0
+410.00000000000006
  30
 0.0
  11
-150.3085560697229
+160.82762530298223
  21
-166.0
+410.00000000000006
  31
 0.0
   0
@@ -999,15 +999,15 @@ DOTTED
   8
 0
  10
-88.65427803486146
+130.41381265149116
  20
-166.0
+410.00000000000006
  30
 0.0
  11
-88.65427803486146
+130.41381265149116
  21
-105.00000000000001
+310.0
  31
 0.0
   0
@@ -1017,15 +1017,15 @@ LINE
   8
 0
  10
-61.65427803486146
+30.413812651491117
  20
-166.0
+410.00000000000006
  30
 0.0
  11
-88.65427803486146
+130.41381265149116
  21
-166.0
+410.00000000000006
  31
 0.0
   0
@@ -1037,15 +1037,15 @@ DOTTED
   8
 0
  10
-61.65427803486146
+30.413812651491117
  20
-105.00000000000001
+310.0
  30
 0.0
  11
-61.65427803486146
+30.413812651491117
  21
-166.0
+410.00000000000006
  31
 0.0
   0
@@ -1057,15 +1057,15 @@ DOTTED
   8
 0
  10
-88.65427803486146
+130.41381265149116
  20
-105.00000000000001
+310.0
  30
 0.0
  11
-61.65427803486146
+30.413812651491117
  21
-105.00000000000001
+310.0
  31
 0.0
   0
@@ -1077,13 +1077,13 @@ LINE
  10
 0.0
  20
-166.0
+410.00000000000006
  30
 0.0
  11
-61.65427803486146
+30.413812651491117
  21
-166.0
+410.00000000000006
  31
 0.0
   0
@@ -1095,13 +1095,13 @@ LINE
  10
 0.0
  20
-105.00000000000001
+310.0
  30
 0.0
  11
 0.0
  21
-166.0
+410.00000000000006
  31
 0.0
   0
@@ -1111,15 +1111,15 @@ LINE
   8
 0
  10
-61.65427803486146
+30.413812651491117
  20
-105.00000000000001
+310.0
  30
 0.0
  11
 0.0
  21
-105.00000000000001
+310.0
  31
 0.0
   0
@@ -1129,15 +1129,15 @@ LINE
   8
 0
  10
-88.65427803486146
+130.41381265149116
  20
-105.00000000000001
+310.0
  30
 0.0
  11
-88.65427803486146
+130.41381265149116
  21
-88.00000000000001
+210.00000000000003
  31
 0.0
   0
@@ -1147,15 +1147,15 @@ LINE
   8
 0
  10
-61.65427803486146
+30.413812651491117
  20
-88.00000000000001
+210.00000000000003
  30
 0.0
  11
-61.65427803486146
+30.413812651491117
  21
-105.00000000000001
+310.0
  31
 0.0
   0
@@ -1167,15 +1167,15 @@ DOTTED
   8
 0
  10
-88.65427803486146
+130.41381265149116
  20
-88.00000000000001
+210.00000000000003
  30
 0.0
  11
-61.65427803486146
+30.413812651491117
  21
-88.00000000000001
+210.00000000000003
  31
 0.0
   0
@@ -1185,15 +1185,15 @@ LINE
   8
 0
  10
-88.65427803486146
+130.41381265149116
  20
-88.00000000000001
+210.00000000000003
  30
 0.0
  11
-88.65427803486146
+130.41381265149116
  21
-27.000000000000004
+110.00000000000001
  31
 0.0
   0
@@ -1203,15 +1203,15 @@ LINE
   8
 0
  10
-61.65427803486146
+30.413812651491117
  20
-27.000000000000004
+110.00000000000001
  30
 0.0
  11
-61.65427803486146
+30.413812651491117
  21
-88.00000000000001
+210.00000000000003
  31
 0.0
   0
@@ -1223,15 +1223,15 @@ DOTTED
   8
 0
  10
-88.65427803486146
+130.41381265149116
  20
-27.000000000000004
+110.00000000000001
  30
 0.0
  11
-61.65427803486146
+30.413812651491117
  21
-27.000000000000004
+110.00000000000001
  31
 0.0
   0
@@ -1241,13 +1241,13 @@ LINE
   8
 0
  10
-88.65427803486146
+130.41381265149116
  20
-27.000000000000004
+110.00000000000001
  30
 0.0
  11
-88.65427803486146
+130.41381265149116
  21
 10.000000000000002
  31
@@ -1259,15 +1259,15 @@ LINE
   8
 0
  10
-61.65427803486146
+30.413812651491117
  20
 10.000000000000002
  30
 0.0
  11
-61.65427803486146
+30.413812651491117
  21
-27.000000000000004
+110.00000000000001
  31
 0.0
   0
@@ -1279,13 +1279,13 @@ DOTTED
   8
 0
  10
-61.65427803486146
+30.413812651491117
  20
 10.000000000000002
  30
 0.0
  11
-88.65427803486146
+130.41381265149116
  21
 10.000000000000002
  31
@@ -1297,13 +1297,13 @@ LINE
   8
 0
  10
-61.65427803486146
+30.413812651491117
  20
 0.0
  30
 0.0
  11
-61.65427803486146
+30.413812651491117
  21
 10.000000000000002
  31
@@ -1315,13 +1315,13 @@ LINE
   8
 0
  10
-88.65427803486146
+130.41381265149116
  20
 0.0
  30
 0.0
  11
-61.65427803486146
+30.413812651491117
  21
 0.0
  31
@@ -1333,13 +1333,13 @@ LINE
   8
 0
  10
-88.65427803486146
+130.41381265149116
  20
 10.000000000000002
  30
 0.0
  11
-88.65427803486146
+130.41381265149116
  21
 0.0
  31
@@ -1351,15 +1351,15 @@ LINE
   8
 0
  10
-84.15427803486145
+83.41381265149113
  20
-102.50000000000001
+327.0
  30
 0.0
  11
-84.15427803486145
+83.41381265149113
  21
-108.50000000000001
+333.00000000000006
  31
 0.0
   0
@@ -1369,15 +1369,15 @@ LINE
   8
 0
  10
-84.15427803486145
+83.41381265149113
  20
-108.50000000000001
+333.00000000000006
  30
 0.0
  11
-66.15427803486145
+77.41381265149111
  21
-108.50000000000001
+333.00000000000006
  31
 0.0
   0
@@ -1387,15 +1387,15 @@ LINE
   8
 0
  10
-66.15427803486145
+77.41381265149111
  20
-108.50000000000001
+333.00000000000006
  30
 0.0
  11
-66.15427803486145
+77.41381265149111
  21
-102.50000000000001
+327.0
  31
 0.0
   0
@@ -1405,15 +1405,15 @@ LINE
   8
 0
  10
-66.15427803486145
+77.41381265149111
  20
-102.50000000000001
+327.0
  30
 0.0
  11
-84.15427803486145
+83.41381265149113
  21
-102.50000000000001
+327.0
  31
 0.0
   0
@@ -1423,15 +1423,15 @@ LINE
   8
 0
  10
-70.40427803486146
+93.80017628785475
  20
-158.25000000000003
+402.25000000000006
  30
 0.0
  11
-79.90427803486145
+112.48199446967294
  21
-158.25000000000003
+402.25000000000006
  31
 0.0
   0
@@ -1441,15 +1441,15 @@ LINE
   8
 0
  10
-79.90427803486145
+112.48199446967294
  20
-158.25000000000003
+402.25000000000006
  30
 0.0
  11
-79.90427803486145
+112.48199446967294
  21
-158.75000000000003
+402.75000000000006
  31
 0.0
   0
@@ -1459,15 +1459,15 @@ LINE
   8
 0
  10
-79.90427803486145
+112.48199446967294
  20
-158.75000000000003
+402.75000000000006
  30
 0.0
  11
-70.40427803486146
+93.80017628785475
  21
-158.75000000000003
+402.75000000000006
  31
 0.0
   0
@@ -1477,15 +1477,15 @@ LINE
   8
 0
  10
-70.40427803486146
+93.80017628785475
  20
-158.75000000000003
+402.75000000000006
  30
 0.0
  11
-70.40427803486146
+93.80017628785475
  21
-158.25000000000003
+402.25000000000006
  31
 0.0
   0
@@ -1495,13 +1495,193 @@ LINE
   8
 0
  10
-79.65427803486145
+48.34563083330929
+ 20
+402.25000000000006
+ 30
+0.0
+ 11
+67.02744901512747
+ 21
+402.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+67.02744901512747
+ 20
+402.25000000000006
+ 30
+0.0
+ 11
+67.02744901512747
+ 21
+402.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+67.02744901512747
+ 20
+402.75000000000006
+ 30
+0.0
+ 11
+48.34563083330929
+ 21
+402.75000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.34563083330929
+ 20
+402.75000000000006
+ 30
+0.0
+ 11
+48.34563083330929
+ 21
+402.25000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+112.23199446967294
+ 20
+2.5000000000000004
+ 30
+0.0
+ 11
+117.23199446967294
+ 21
+2.5000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+117.23199446967294
+ 20
+2.5000000000000004
+ 30
+0.0
+ 11
+112.23199446967294
+ 21
+7.500000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+112.23199446967294
+ 20
+7.500000000000001
+ 30
+0.0
+ 11
+94.05017628785477
+ 21
+7.500000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+94.05017628785477
+ 20
+7.500000000000001
+ 30
+0.0
+ 11
+89.05017628785475
+ 21
+2.5000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+89.05017628785475
+ 20
+2.5000000000000004
+ 30
+0.0
+ 11
+94.05017628785477
+ 21
+2.5000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+66.77744901512749
+ 20
+2.5000000000000004
+ 30
+0.0
+ 11
+71.77744901512749
+ 21
+2.5000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+71.77744901512749
  20
 2.5000000000000004
  30
 0.0
  11
-79.65427803486145
+66.77744901512749
  21
 7.500000000000001
  31
@@ -1513,13 +1693,13 @@ LINE
   8
 0
  10
-79.65427803486145
+66.77744901512749
  20
 7.500000000000001
  30
 0.0
  11
-70.65427803486145
+48.59563083330929
  21
 7.500000000000001
  31
@@ -1531,13 +1711,31 @@ LINE
   8
 0
  10
-70.65427803486145
+48.59563083330929
  20
 7.500000000000001
  30
 0.0
  11
-70.65427803486145
+43.59563083330929
+ 21
+2.5000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+43.59563083330929
+ 20
+2.5000000000000004
+ 30
+0.0
+ 11
+48.59563083330929
  21
 2.5000000000000004
  31
diff --git a/rocolib/output/BoatWithBottomServo/graph-anim.svg b/rocolib/output/BoatWithBottomServo/graph-anim.svg
new file mode 100644
index 0000000000000000000000000000000000000000..b3fd0ed3b937725404e061cf79d7c5d291731347
--- /dev/null
+++ b/rocolib/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/output/BoatWithBottomServo/graph-autofold-default.dxf b/rocolib/output/BoatWithBottomServo/graph-autofold-default.dxf
new file mode 100644
index 0000000000000000000000000000000000000000..bd2dd5978d7869177e67c2e678a3f401e7202efa
--- /dev/null
+++ b/rocolib/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/output/BoatWithBottomServo/graph-autofold-graph.dxf b/rocolib/output/BoatWithBottomServo/graph-autofold-graph.dxf
new file mode 100644
index 0000000000000000000000000000000000000000..e01af2ecad8826c9802841c9ec08d49459ef425a
--- /dev/null
+++ b/rocolib/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/output/BoatWithBottomServo/graph-lasercutter.svg b/rocolib/output/BoatWithBottomServo/graph-lasercutter.svg
new file mode 100644
index 0000000000000000000000000000000000000000..f42f6d395aaf54333845ef7cc5515977090679a2
--- /dev/null
+++ b/rocolib/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/output/BoatWithBottomServo/graph-model.png b/rocolib/output/BoatWithBottomServo/graph-model.png
new file mode 100644
index 0000000000000000000000000000000000000000..783bdff50e073baebc8f1cbfc21cbafc5c7697f7
Binary files /dev/null and b/rocolib/output/BoatWithBottomServo/graph-model.png differ
diff --git a/rocolib/output/BoatWithBottomServo/graph-model.stl b/rocolib/output/BoatWithBottomServo/graph-model.stl
new file mode 100644
index 0000000000000000000000000000000000000000..8acc463481047f63a05a8f1447decf72a3365b57
--- /dev/null
+++ b/rocolib/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/output/BoatWithBottomServo/graph-silhouette.dxf b/rocolib/output/BoatWithBottomServo/graph-silhouette.dxf
new file mode 100644
index 0000000000000000000000000000000000000000..925c12efcdf937a4c9638a58adc31fcac50b4c94
--- /dev/null
+++ b/rocolib/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/output/BoatWithBottomServo/tree.png b/rocolib/output/BoatWithBottomServo/tree.png
new file mode 100644
index 0000000000000000000000000000000000000000..7f3fdbbf44459e643fe170af43dbc3b45584a77a
Binary files /dev/null and b/rocolib/output/BoatWithBottomServo/tree.png differ
diff --git a/rocolib/output/BoatWithServoStackBattery/graph-anim.svg b/rocolib/output/BoatWithServoStackBattery/graph-anim.svg
index 980c703e8122d08604f5195c6022ab7ad26636d2..4128fcd65d89fb1921fe0026d594cafe541db2ad 100644
--- a/rocolib/output/BoatWithServoStackBattery/graph-anim.svg
+++ b/rocolib/output/BoatWithServoStackBattery/graph-anim.svg
@@ -51,7 +51,9 @@
   <line stroke="#888888" x1="89.65427803486146" x2="80.65427803486146" y1="7.500000000000001" y2="7.500000000000001"/>
   <line stroke="#888888" x1="80.65427803486146" x2="80.65427803486146" y1="7.500000000000001" y2="2.5000000000000004"/>
   <line stroke="#000000" x1="327.33180874014937" x2="266.3318087401493" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line opacity="0.05555555555555555" stroke="#0000ff" x1="327.33180874014937" x2="351.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
   <line stroke="#000000" x1="361.3318087401493" x2="351.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line opacity="0.05555555555555555" stroke="#0000ff" x1="361.3318087401493" x2="422.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
   <line stroke="#000000" x1="422.33180874014937" x2="422.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
   <line stroke="#000000" x1="266.3318087401493" x2="266.3318087401493" y1="135.50000000000003" y2="135.50000000000003"/>
   <line stroke="#000000" x1="327.33180874014937" x2="253.33180874014934" y1="135.50000000000003" y2="135.50000000000003"/>
@@ -88,10 +90,8 @@
   <line opacity="0.25" stroke="#0000ff" x1="422.33180874014937" x2="361.3318087401493" y1="75.36137800081471" y2="75.36137800081471"/>
   <line opacity="0.5" stroke="#0000ff" x1="422.33180874014937" x2="422.33180874014937" y1="75.36137800081471" y2="99.36137800081471"/>
   <line stroke="#000000" x1="361.3318087401493" x2="361.3318087401493" y1="39.22275600162939" y2="75.36137800081472"/>
+  <line stroke="#000000" x1="422.33180874014937" x2="361.3318087401493" y1="39.22275600162939" y2="39.22275600162939"/>
   <line stroke="#000000" x1="422.33180874014937" x2="422.33180874014937" y1="75.36137800081472" y2="39.22275600162939"/>
-  <line stroke="#000000" x1="361.3318087401493" x2="361.3318087401493" y1="29.222756001629396" y2="39.22275600162939"/>
-  <line stroke="#000000" x1="422.33180874014937" x2="361.3318087401493" y1="29.222756001629396" y2="29.222756001629396"/>
-  <line stroke="#000000" x1="422.33180874014937" x2="422.33180874014937" y1="39.22275600162939" y2="29.222756001629396"/>
   <line stroke="#000000" x1="432.33180874014937" x2="422.33180874014937" y1="75.36137800081471" y2="75.36137800081471"/>
   <line stroke="#000000" x1="432.33180874014937" x2="432.33180874014937" y1="99.36137800081471" y2="75.36137800081471"/>
   <line stroke="#000000" x1="422.33180874014937" x2="432.33180874014937" y1="99.36137800081471" y2="99.36137800081471"/>
@@ -102,9 +102,9 @@
   <line opacity="0.2332622916434259" stroke="#0000ff" x1="422.33180874014937" x2="422.33180874014937" y1="205.50000000000003" y2="135.50000000000003"/>
   <line opacity="0.9666666666666667" stroke="#ff0000" x1="422.33180874014937" x2="474.84617955831095" y1="135.50000000000003" y2="135.50000000000003"/>
   <line opacity="1.0" stroke="#ff0000" x1="422.33180874014937" x2="474.84617955831095" y1="205.50000000000003" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="422.33180874014937" x2="422.33180874014937" y1="127.99794702597693" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="474.84617955831095" x2="422.33180874014937" y1="127.99794702597693" y2="127.99794702597693"/>
-  <line stroke="#000000" x1="474.84617955831095" x2="474.84617955831095" y1="135.50000000000003" y2="127.99794702597693"/>
+  <line stroke="#000000" x1="422.33180874014937" x2="422.33180874014937" y1="117.99520972727949" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="474.84617955831095" x2="422.33180874014937" y1="117.99520972727949" y2="117.99520972727949"/>
+  <line stroke="#000000" x1="474.84617955831095" x2="474.84617955831095" y1="135.50000000000003" y2="117.99520972727949"/>
   <line opacity="1.0" stroke="#0000ff" x1="422.33180874014937" x2="489.5369564140486" y1="205.50000000000003" y2="185.91765779766357"/>
   <line stroke="#000000" x1="489.5369564140486" x2="474.84617955831095" y1="185.91765779766357" y2="135.50000000000003"/>
   <line stroke="#000000" x1="504.22773326978614" x2="489.5369564140486" y1="236.33531559532716" y2="185.91765779766357"/>
@@ -121,17 +121,21 @@
   <line opacity="0.2332622916434259" stroke="#0000ff" x1="422.3318087401495" x2="422.33180874014937" y1="365.5000000000001" y2="295.5"/>
   <line opacity="0.9666666666666667" stroke="#ff0000" x1="474.84617955831106" x2="422.3318087401495" y1="365.50000000000006" y2="365.5000000000001"/>
   <line opacity="0.5" stroke="#0000ff" x1="422.3318087401494" x2="266.3318087401493" y1="295.50000000000006" y2="295.50000000000017"/>
+  <line opacity="0.05555555555555555" stroke="#0000ff" x1="422.3318087401495" x2="361.3318087401494" y1="365.5000000000001" y2="365.50000000000017"/>
   <line stroke="#000000" x1="351.3318087401494" x2="361.3318087401494" y1="365.50000000000017" y2="365.50000000000017"/>
+  <line opacity="0.05555555555555555" stroke="#0000ff" x1="351.3318087401494" x2="327.3318087401494" y1="365.50000000000017" y2="365.50000000000017"/>
   <line stroke="#000000" x1="266.33180874014937" x2="327.3318087401494" y1="365.5000000000003" y2="365.50000000000017"/>
   <line stroke="#000000" x1="266.33180874014937" x2="266.33180874014937" y1="365.5000000000003" y2="365.5000000000003"/>
   <line stroke="#000000" x1="422.3318087401495" x2="422.3318087401495" y1="365.5000000000001" y2="365.5000000000001"/>
-  <line stroke="#000000" x1="361.3318087401494" x2="422.3318087401495" y1="365.50000000000017" y2="365.5000000000001"/>
   <line stroke="#000000" x1="351.3318087401494" x2="361.3318087401494" y1="365.50000000000017" y2="365.50000000000017"/>
   <line stroke="#000000" x1="253.33180874014937" x2="327.3318087401494" y1="365.5000000000003" y2="365.50000000000017"/>
   <line stroke="#000000" x1="253.33180874014937" x2="253.33180874014937" y1="365.5000000000003" y2="365.5000000000003"/>
   <line stroke="#000000" x1="327.3318087401494" x2="253.33180874014937" y1="365.50000000000017" y2="365.5000000000003"/>
   <line stroke="#000000" x1="361.3318087401494" x2="351.3318087401494" y1="365.50000000000017" y2="365.50000000000017"/>
   <line stroke="#000000" x1="422.3318087401495" x2="422.3318087401495" y1="365.5000000000001" y2="365.5000000000001"/>
+  <line stroke="#000000" x1="422.3318087401495" x2="422.3318087401495" y1="375.5000000000001" y2="365.5000000000001"/>
+  <line stroke="#000000" x1="361.3318087401494" x2="422.3318087401495" y1="375.50000000000017" y2="375.5000000000001"/>
+  <line stroke="#000000" x1="361.3318087401494" x2="361.3318087401494" y1="365.50000000000017" y2="375.50000000000017"/>
   <line stroke="#000000" x1="351.3318087401494" x2="351.3318087401494" y1="399.5000000000001" y2="365.50000000000017"/>
   <line opacity="0.5" stroke="#0000ff" x1="327.3318087401494" x2="327.3318087401495" y1="365.50000000000017" y2="399.5000000000001"/>
   <line stroke="#000000" x1="351.3318087401495" x2="351.3318087401494" y1="435.50000000000017" y2="399.5000000000001"/>
@@ -155,9 +159,9 @@
   <line opacity="0.2332622916434259" stroke="#0000ff" x1="266.3318087401493" x2="266.33180874014937" y1="295.50000000000017" y2="365.5000000000002"/>
   <line opacity="0.9666666666666667" stroke="#ff0000" x1="266.33180874014937" x2="213.81743792198782" y1="365.5000000000003" y2="365.5000000000003"/>
   <line opacity="1.0" stroke="#ff0000" x1="266.3318087401493" x2="213.81743792198782" y1="295.5000000000002" y2="365.5000000000003"/>
-  <line stroke="#000000" x1="266.33180874014937" x2="266.33180874014937" y1="373.00205297402334" y2="365.5000000000003"/>
-  <line stroke="#000000" x1="213.81743792198782" x2="266.33180874014937" y1="373.0020529740234" y2="373.00205297402334"/>
-  <line stroke="#000000" x1="213.81743792198782" x2="213.81743792198782" y1="365.5000000000003" y2="373.0020529740234"/>
+  <line stroke="#000000" x1="266.33180874014937" x2="266.33180874014937" y1="383.00479027272075" y2="365.5000000000003"/>
+  <line stroke="#000000" x1="213.81743792198782" x2="266.33180874014937" y1="383.00479027272087" y2="383.00479027272075"/>
+  <line stroke="#000000" x1="213.81743792198782" x2="213.81743792198782" y1="365.5000000000003" y2="383.00479027272087"/>
   <line opacity="1.0" stroke="#0000ff" x1="266.3318087401493" x2="199.12666106625016" y1="295.50000000000017" y2="315.08234220233675"/>
   <line stroke="#000000" x1="199.12666106625016" x2="213.81743792198782" y1="315.08234220233675" y2="365.5000000000003"/>
   <line stroke="#000000" x1="184.43588421051248" x2="199.12666106625016" y1="264.6646844046731" y2="315.08234220233675"/>
@@ -173,12 +177,12 @@
   <line opacity="1.0" stroke="#ff0000" x1="213.81743792198745" x2="266.3318087401492" y1="135.50000000000023" y2="205.50000000000017"/>
   <line opacity="0.2332622916434259" stroke="#0000ff" x1="266.3318087401491" x2="266.33180874014926" y1="135.5000000000001" y2="205.50000000000017"/>
   <line opacity="0.9666666666666667" stroke="#ff0000" x1="213.81743792198748" x2="266.3318087401491" y1="135.50000000000023" y2="135.5000000000001"/>
-  <line stroke="#000000" x1="213.81743792198745" x2="213.81743792198748" y1="127.99794702597715" y2="135.50000000000023"/>
-  <line stroke="#000000" x1="266.3318087401491" x2="213.81743792198745" y1="127.99794702597704" y2="127.99794702597715"/>
-  <line stroke="#000000" x1="266.3318087401491" x2="266.3318087401491" y1="135.5000000000001" y2="127.99794702597704"/>
-  <line stroke="#000000" x1="474.84617955831106" x2="474.84617955831106" y1="373.0020529740231" y2="365.50000000000006"/>
-  <line stroke="#000000" x1="422.3318087401495" x2="474.84617955831106" y1="373.00205297402323" y2="373.0020529740231"/>
-  <line stroke="#000000" x1="422.3318087401495" x2="422.3318087401495" y1="365.5000000000001" y2="373.00205297402323"/>
+  <line stroke="#000000" x1="213.81743792198742" x2="213.81743792198748" y1="117.9952097272797" y2="135.50000000000023"/>
+  <line stroke="#000000" x1="266.3318087401491" x2="213.81743792198742" y1="117.9952097272796" y2="117.9952097272797"/>
+  <line stroke="#000000" x1="266.3318087401491" x2="266.3318087401491" y1="135.5000000000001" y2="117.9952097272796"/>
+  <line stroke="#000000" x1="474.8461795583111" x2="474.84617955831106" y1="383.0047902727206" y2="365.50000000000006"/>
+  <line stroke="#000000" x1="422.3318087401495" x2="474.8461795583111" y1="383.00479027272064" y2="383.0047902727206"/>
+  <line stroke="#000000" x1="422.3318087401495" x2="422.3318087401495" y1="365.5000000000001" y2="383.00479027272064"/>
   <line stroke="#888888" x1="288.76362692196756" x2="277.1727178310585" y1="143.25" y2="143.25"/>
   <line stroke="#888888" x1="277.1727178310585" x2="277.1727178310585" y1="143.25" y2="142.75000000000003"/>
   <line stroke="#888888" x1="277.1727178310585" x2="288.76362692196756" y1="142.75000000000003" y2="142.75000000000003"/>
@@ -223,44 +227,31 @@
   <line stroke="#888888" x1="416.83180874014937" x2="416.83180874014937" y1="82.36137800081471" y2="92.36137800081471"/>
   <line stroke="#888888" x1="416.83180874014937" x2="410.83180874014937" y1="92.36137800081471" y2="92.36137800081471"/>
   <line stroke="#888888" x1="410.83180874014937" x2="410.83180874014937" y1="92.36137800081471" y2="82.36137800081471"/>
-  <line stroke="#888888" x1="411.24089964924025" x2="411.24089964924025" y1="31.722756001629396" y2="36.7227560016294"/>
-  <line stroke="#888888" x1="411.24089964924025" x2="400.1499905583311" y1="36.7227560016294" y2="36.7227560016294"/>
-  <line stroke="#888888" x1="400.1499905583311" x2="400.1499905583311" y1="36.7227560016294" y2="31.722756001629396"/>
-  <line stroke="#888888" x1="383.51362692196756" x2="383.51362692196756" y1="31.722756001629396" y2="36.7227560016294"/>
-  <line stroke="#888888" x1="383.51362692196756" x2="372.4227178310585" y1="36.7227560016294" y2="36.7227560016294"/>
-  <line stroke="#888888" x1="372.4227178310585" x2="372.4227178310585" y1="36.7227560016294" y2="31.722756001629396"/>
+  <line stroke="#888888" x1="383.76362692196756" x2="372.1727178310585" y1="46.9727560016294" y2="46.9727560016294"/>
+  <line stroke="#888888" x1="372.1727178310585" x2="372.1727178310585" y1="46.9727560016294" y2="46.4727560016294"/>
+  <line stroke="#888888" x1="372.1727178310585" x2="383.76362692196756" y1="46.4727560016294" y2="46.4727560016294"/>
+  <line stroke="#888888" x1="383.76362692196756" x2="383.76362692196756" y1="46.4727560016294" y2="46.9727560016294"/>
+  <line stroke="#888888" x1="411.49089964924025" x2="399.8999905583312" y1="46.9727560016294" y2="46.9727560016294"/>
+  <line stroke="#888888" x1="399.8999905583312" x2="399.8999905583312" y1="46.9727560016294" y2="46.4727560016294"/>
+  <line stroke="#888888" x1="399.8999905583312" x2="411.49089964924025" y1="46.4727560016294" y2="46.4727560016294"/>
+  <line stroke="#888888" x1="411.49089964924025" x2="411.49089964924025" y1="46.4727560016294" y2="46.9727560016294"/>
   <line stroke="#888888" x1="429.8318087401493" x2="424.83180874014937" y1="91.36137800081471" y2="91.36137800081471"/>
   <line stroke="#888888" x1="424.83180874014937" x2="424.83180874014937" y1="91.36137800081471" y2="83.36137800081471"/>
   <line stroke="#888888" x1="424.83180874014937" x2="429.8318087401493" y1="83.36137800081471" y2="83.36137800081471"/>
   <line stroke="#888888" x1="353.83180874014937" x2="358.83180874014937" y1="83.36137800081471" y2="83.36137800081471"/>
   <line stroke="#888888" x1="358.83180874014937" x2="358.83180874014937" y1="83.36137800081471" y2="91.36137800081471"/>
   <line stroke="#888888" x1="358.83180874014937" x2="353.83180874014937" y1="91.36137800081471" y2="91.36137800081471"/>
-  <line stroke="#888888" x1="465.29811213682694" x2="469.0491386238386" y1="129.8734602694827" y2="129.8734602694827"/>
-  <line stroke="#888888" x1="469.0491386238386" x2="465.29811213682694" y1="129.8734602694827" y2="133.62448675649426"/>
-  <line stroke="#888888" x1="465.29811213682694" x2="455.7500447153431" y1="133.62448675649426" y2="133.62448675649426"/>
-  <line stroke="#888888" x1="455.7500447153431" x2="451.9990182283316" y1="133.62448675649426" y2="129.8734602694827"/>
-  <line stroke="#888888" x1="451.9990182283316" x2="455.7500447153431" y1="129.8734602694827" y2="129.8734602694827"/>
-  <line stroke="#888888" x1="441.4279435831172" x2="445.17897007012874" y1="129.8734602694827" y2="129.8734602694827"/>
-  <line stroke="#888888" x1="445.17897007012874" x2="441.4279435831172" y1="129.8734602694827" y2="133.62448675649426"/>
-  <line stroke="#888888" x1="441.4279435831172" x2="431.8798761616332" y1="133.62448675649426" y2="133.62448675649426"/>
-  <line stroke="#888888" x1="431.8798761616332" x2="428.1288496746218" y1="133.62448675649426" y2="129.8734602694827"/>
-  <line stroke="#888888" x1="428.1288496746218" x2="431.8798761616332" y1="129.8734602694827" y2="129.8734602694827"/>
-  <line stroke="#888888" x1="489.307083733857" x2="486.4961595235763" y1="206.13531866922696" y2="196.48843502782523"/>
-  <line stroke="#888888" x1="486.4961595235763" x2="486.9761962926755" y1="196.48843502782523" y2="196.3485611549514"/>
-  <line stroke="#888888" x1="486.9761962926755" x2="489.78712050295627" y1="196.3485611549514" y2="205.99544479635315"/>
-  <line stroke="#888888" x1="489.78712050295627" x2="489.307083733857" y1="205.99544479635315" y2="206.13531866922696"/>
-  <line stroke="#888888" x1="495.9847095773741" x2="493.1737853670934" y1="229.05243584998314" y2="219.40555220858138"/>
-  <line stroke="#888888" x1="493.1737853670934" x2="493.6538221361927" y1="219.40555220858138" y2="219.26567833570755"/>
-  <line stroke="#888888" x1="493.6538221361927" x2="496.4647463464733" y1="219.26567833570755" y2="228.9125619771093"/>
-  <line stroke="#888888" x1="496.4647463464733" x2="495.9847095773741" y1="228.9125619771093" y2="229.05243584998314"/>
-  <line stroke="#888888" x1="493.17378536709344" x2="495.9847095773741" y1="281.5944477914187" y2="271.94756415001694"/>
-  <line stroke="#888888" x1="495.9847095773741" x2="496.4647463464733" y1="271.94756415001694" y2="272.0874380228908"/>
-  <line stroke="#888888" x1="496.4647463464733" x2="493.6538221361927" y1="272.0874380228908" y2="281.7343216642925"/>
-  <line stroke="#888888" x1="493.6538221361927" x2="493.17378536709344" y1="281.7343216642925" y2="281.5944477914187"/>
-  <line stroke="#888888" x1="486.49615952357635" x2="489.30708373385704" y1="304.5115649721748" y2="294.86468133077307"/>
-  <line stroke="#888888" x1="489.30708373385704" x2="489.78712050295627" y1="294.86468133077307" y2="295.0045552036469"/>
-  <line stroke="#888888" x1="489.78712050295627" x2="486.97619629267564" y1="295.0045552036469" y2="304.6514388450487"/>
-  <line stroke="#888888" x1="486.97619629267564" x2="486.49615952357635" y1="304.6514388450487" y2="304.5115649721748"/>
+  <line stroke="#888888" x1="457.3413892855904" x2="457.3413892855904" y1="122.37140729545962" y2="131.12380243181985"/>
+  <line stroke="#888888" x1="457.3413892855904" x2="439.8365990128699" y1="131.12380243181985" y2="131.12380243181988"/>
+  <line stroke="#888888" x1="439.8365990128699" x2="439.8365990128699" y1="131.12380243181988" y2="122.37140729545962"/>
+  <line stroke="#888888" x1="486.5563117536783" x2="481.5195122622253" y1="223.5120791976936" y2="206.22615649603978"/>
+  <line stroke="#888888" x1="481.5195122622253" x2="481.99954903132453" y1="206.22615649603978" y2="206.08628262316594"/>
+  <line stroke="#888888" x1="481.99954903132453" x2="487.0363485227776" y1="206.08628262316594" y2="223.37220532481973"/>
+  <line stroke="#888888" x1="487.0363485227776" x2="486.5563117536783" y1="223.37220532481973" y2="223.5120791976936"/>
+  <line stroke="#888888" x1="481.5195122622253" x2="486.55631175367836" y1="294.77384350396034" y2="277.4879208023065"/>
+  <line stroke="#888888" x1="486.55631175367836" x2="487.0363485227776" y1="277.4879208023065" y2="277.6277946751803"/>
+  <line stroke="#888888" x1="487.0363485227776" x2="481.9995490313246" y1="277.6277946751803" y2="294.91371737683414"/>
+  <line stroke="#888888" x1="481.9995490313246" x2="481.5195122622253" y1="294.91371737683414" y2="294.77384350396034"/>
   <line stroke="#888888" x1="304.8999905583312" x2="316.4908996492403" y1="357.7500000000002" y2="357.75000000000017"/>
   <line stroke="#888888" x1="316.4908996492403" x2="316.4908996492403" y1="357.75000000000017" y2="358.25000000000017"/>
   <line stroke="#888888" x1="316.4908996492403" x2="304.8999905583312" y1="358.25000000000017" y2="358.25000000000017"/>
@@ -269,14 +260,12 @@
   <line stroke="#888888" x1="288.7636269219676" x2="288.7636269219676" y1="357.7500000000002" y2="358.25000000000017"/>
   <line stroke="#888888" x1="288.7636269219676" x2="277.1727178310585" y1="358.25000000000017" y2="358.25000000000017"/>
   <line stroke="#888888" x1="277.1727178310585" x2="277.1727178310585" y1="358.25000000000017" y2="357.7500000000002"/>
-  <line stroke="#888888" x1="399.89999055833124" x2="411.49089964924036" y1="357.75000000000017" y2="357.7500000000001"/>
-  <line stroke="#888888" x1="411.49089964924036" x2="411.49089964924036" y1="357.7500000000001" y2="358.2500000000001"/>
-  <line stroke="#888888" x1="411.49089964924036" x2="399.89999055833124" y1="358.2500000000001" y2="358.25000000000017"/>
-  <line stroke="#888888" x1="399.89999055833124" x2="399.89999055833124" y1="358.25000000000017" y2="357.75000000000017"/>
-  <line stroke="#888888" x1="372.17271783105855" x2="383.7636269219676" y1="357.75000000000017" y2="357.75000000000017"/>
-  <line stroke="#888888" x1="383.7636269219676" x2="383.7636269219676" y1="357.75000000000017" y2="358.25000000000017"/>
-  <line stroke="#888888" x1="383.7636269219676" x2="372.17271783105855" y1="358.25000000000017" y2="358.25000000000017"/>
-  <line stroke="#888888" x1="372.17271783105855" x2="372.17271783105855" y1="358.25000000000017" y2="357.75000000000017"/>
+  <line stroke="#888888" x1="372.42271783105855" x2="372.42271783105855" y1="373.0000000000001" y2="368.0000000000001"/>
+  <line stroke="#888888" x1="372.42271783105855" x2="383.5136269219676" y1="368.0000000000001" y2="368.0000000000001"/>
+  <line stroke="#888888" x1="383.5136269219676" x2="383.51362692196767" y1="368.0000000000001" y2="373.0000000000001"/>
+  <line stroke="#888888" x1="400.14999055833124" x2="400.14999055833124" y1="373.0000000000001" y2="368.0000000000001"/>
+  <line stroke="#888888" x1="400.14999055833124" x2="411.24089964924036" y1="368.0000000000001" y2="368.00000000000006"/>
+  <line stroke="#888888" x1="411.24089964924036" x2="411.2408996492404" y1="368.00000000000006" y2="373.00000000000006"/>
   <line stroke="#888888" x1="343.5818087401495" x2="343.5818087401495" y1="388.4166666666668" y2="376.5833333333335"/>
   <line stroke="#888888" x1="343.5818087401495" x2="344.0818087401495" y1="376.5833333333335" y2="376.5833333333335"/>
   <line stroke="#888888" x1="344.0818087401495" x2="344.0818087401495" y1="376.5833333333335" y2="388.4166666666668"/>
@@ -304,52 +293,23 @@
   <line stroke="#888888" x1="255.8318087401494" x2="260.8318087401494" y1="376.8333333333335" y2="376.8333333333335"/>
   <line stroke="#888888" x1="260.8318087401494" x2="260.8318087401494" y1="376.8333333333335" y2="388.16666666666686"/>
   <line stroke="#888888" x1="260.8318087401494" x2="255.8318087401494" y1="388.16666666666686" y2="388.16666666666686"/>
-  <line stroke="#888888" x1="223.36550534347174" x2="219.61447885646018" y1="371.12653973051766" y2="371.12653973051766"/>
-  <line stroke="#888888" x1="219.61447885646018" x2="223.3655053434717" y1="371.12653973051766" y2="367.3755132435061"/>
-  <line stroke="#888888" x1="223.3655053434717" x2="232.91357276495566" y1="367.3755132435061" y2="367.3755132435061"/>
-  <line stroke="#888888" x1="232.91357276495566" x2="236.66459925196722" y1="367.3755132435061" y2="371.1265397305176"/>
-  <line stroke="#888888" x1="236.66459925196722" x2="232.91357276495566" y1="371.1265397305176" y2="371.1265397305176"/>
-  <line stroke="#888888" x1="247.23567389718156" x2="243.48464741017003" y1="371.1265397305176" y2="371.1265397305176"/>
-  <line stroke="#888888" x1="243.48464741017003" x2="247.23567389718156" y1="371.1265397305176" y2="367.3755132435061"/>
-  <line stroke="#888888" x1="247.23567389718156" x2="256.7837413186655" y1="367.3755132435061" y2="367.3755132435061"/>
-  <line stroke="#888888" x1="256.7837413186655" x2="260.534767805677" y1="367.3755132435061" y2="371.1265397305176"/>
-  <line stroke="#888888" x1="260.534767805677" x2="256.78374131866553" y1="371.1265397305176" y2="371.1265397305176"/>
-  <line stroke="#888888" x1="199.35653374644173" x2="202.16745795672242" y1="294.86468133077335" y2="304.5115649721751"/>
-  <line stroke="#888888" x1="202.16745795672242" x2="201.6874211876231" y1="304.5115649721751" y2="304.651438845049"/>
-  <line stroke="#888888" x1="201.6874211876231" x2="198.87649697734244" y1="304.651438845049" y2="295.0045552036471"/>
-  <line stroke="#888888" x1="198.87649697734244" x2="199.35653374644173" y1="295.0045552036471" y2="294.86468133077335"/>
-  <line stroke="#888888" x1="192.67890790292464" x2="195.48983211320527" y1="271.9475641500171" y2="281.5944477914189"/>
-  <line stroke="#888888" x1="195.48983211320527" x2="195.009795344106" y1="281.5944477914189" y2="281.7343216642927"/>
-  <line stroke="#888888" x1="195.009795344106" x2="192.19887113382532" y1="281.7343216642927" y2="272.087438022891"/>
-  <line stroke="#888888" x1="192.19887113382532" x2="192.67890790292464" y1="272.087438022891" y2="271.9475641500171"/>
-  <line stroke="#888888" x1="195.48983211320518" x2="192.67890790292452" y1="219.40555220858164" y2="229.0524358499834"/>
-  <line stroke="#888888" x1="192.67890790292452" x2="192.19887113382526" y1="229.0524358499834" y2="228.91256197710956"/>
-  <line stroke="#888888" x1="192.19887113382526" x2="195.00979534410592" y1="228.91256197710956" y2="219.2656783357078"/>
-  <line stroke="#888888" x1="195.00979534410592" x2="195.48983211320518" y1="219.2656783357078" y2="219.40555220858164"/>
-  <line stroke="#888888" x1="202.16745795672222" x2="199.35653374644158" y1="196.48843502782546" y2="206.13531866922722"/>
-  <line stroke="#888888" x1="199.35653374644158" x2="198.8764969773423" y1="206.13531866922722" y2="205.99544479635338"/>
-  <line stroke="#888888" x1="198.8764969773423" x2="201.68742118762296" y1="205.99544479635338" y2="196.34856115495162"/>
-  <line stroke="#888888" x1="201.68742118762296" x2="202.16745795672222" y1="196.34856115495162" y2="196.48843502782546"/>
-  <line stroke="#888888" x1="256.7837413186651" x2="260.53476780567667" y1="129.87346026948285" y2="129.87346026948285"/>
-  <line stroke="#888888" x1="260.53476780567667" x2="256.78374131866514" y1="129.87346026948285" y2="133.6244867564944"/>
-  <line stroke="#888888" x1="256.78374131866514" x2="247.23567389718121" y1="133.6244867564944" y2="133.6244867564944"/>
-  <line stroke="#888888" x1="247.23567389718121" x2="243.48464741016966" y1="133.6244867564944" y2="129.87346026948285"/>
-  <line stroke="#888888" x1="243.48464741016966" x2="247.23567389718121" y1="129.87346026948285" y2="129.87346026948285"/>
-  <line stroke="#888888" x1="232.91357276495532" x2="236.66459925196685" y1="129.87346026948288" y2="129.87346026948285"/>
-  <line stroke="#888888" x1="236.66459925196685" x2="232.91357276495532" y1="129.87346026948285" y2="133.62448675649443"/>
-  <line stroke="#888888" x1="232.91357276495532" x2="223.36550534347137" y1="133.62448675649443" y2="133.62448675649446"/>
-  <line stroke="#888888" x1="223.36550534347137" x2="219.6144788564598" y1="133.62448675649446" y2="129.8734602694829"/>
-  <line stroke="#888888" x1="219.6144788564598" x2="223.36550534347137" y1="129.8734602694829" y2="129.87346026948288"/>
-  <line stroke="#888888" x1="431.8798761616334" x2="428.1288496746219" y1="371.12653973051744" y2="371.12653973051744"/>
-  <line stroke="#888888" x1="428.1288496746219" x2="431.8798761616334" y1="371.12653973051744" y2="367.37551324350585"/>
-  <line stroke="#888888" x1="431.8798761616334" x2="441.4279435831173" y1="367.37551324350585" y2="367.37551324350585"/>
-  <line stroke="#888888" x1="441.4279435831173" x2="445.17897007012886" y1="367.37551324350585" y2="371.12653973051744"/>
-  <line stroke="#888888" x1="445.17897007012886" x2="441.4279435831173" y1="371.12653973051744" y2="371.12653973051744"/>
-  <line stroke="#888888" x1="455.7500447153432" x2="451.9990182283317" y1="371.12653973051744" y2="371.12653973051744"/>
-  <line stroke="#888888" x1="451.9990182283317" x2="455.7500447153432" y1="371.12653973051744" y2="367.37551324350585"/>
-  <line stroke="#888888" x1="455.7500447153432" x2="465.2981121368271" y1="367.37551324350585" y2="367.37551324350585"/>
-  <line stroke="#888888" x1="465.2981121368271" x2="469.0491386238387" y1="367.37551324350585" y2="371.1265397305174"/>
-  <line stroke="#888888" x1="469.0491386238387" x2="465.2981121368271" y1="371.1265397305174" y2="371.12653973051744"/>
+  <line stroke="#888888" x1="231.32222819470834" x2="231.32222819470834" y1="378.6285927045407" y2="369.87619756818043"/>
+  <line stroke="#888888" x1="231.32222819470834" x2="248.82701846742887" y1="369.87619756818043" y2="369.87619756818043"/>
+  <line stroke="#888888" x1="248.82701846742887" x2="248.82701846742887" y1="369.87619756818043" y2="378.6285927045407"/>
+  <line stroke="#888888" x1="202.10730572662035" x2="207.1441052180734" y1="277.4879208023067" y2="294.7738435039605"/>
+  <line stroke="#888888" x1="207.1441052180734" x2="206.66406844897412" y1="294.7738435039605" y2="294.9137173768343"/>
+  <line stroke="#888888" x1="206.66406844897412" x2="201.62726895752107" y1="294.9137173768343" y2="277.62779467518055"/>
+  <line stroke="#888888" x1="201.62726895752107" x2="202.10730572662035" y1="277.62779467518055" y2="277.4879208023067"/>
+  <line stroke="#888888" x1="207.14410521807326" x2="202.10730572662024" y1="206.22615649604003" y2="223.51207919769385"/>
+  <line stroke="#888888" x1="202.10730572662024" x2="201.62726895752098" y1="223.51207919769385" y2="223.37220532482002"/>
+  <line stroke="#888888" x1="201.62726895752098" x2="206.66406844897395" y1="223.37220532482002" y2="206.08628262316617"/>
+  <line stroke="#888888" x1="206.66406844897395" x2="207.14410521807326" y1="206.08628262316617" y2="206.22615649604003"/>
+  <line stroke="#888888" x1="248.8270184674285" x2="248.82701846742856" y1="122.37140729545976" y2="131.12380243182005"/>
+  <line stroke="#888888" x1="248.82701846742856" x2="231.322228194708" y1="131.12380243182005" y2="131.12380243182008"/>
+  <line stroke="#888888" x1="231.322228194708" x2="231.32222819470798" y1="131.12380243182008" y2="122.3714072954598"/>
+  <line stroke="#888888" x1="439.83659901287" x2="439.83659901287" y1="378.6285927045405" y2="369.87619756818015"/>
+  <line stroke="#888888" x1="439.83659901287" x2="457.34138928559054" y1="369.87619756818015" y2="369.87619756818015"/>
+  <line stroke="#888888" x1="457.34138928559054" x2="457.34138928559054" y1="369.87619756818015" y2="378.6285927045405"/>
   <line opacity="0.5" stroke="#0000ff" x1="551.3550614105758" x2="612.3550614105757" y1="123.50000000000001" y2="123.50000000000001"/>
   <line opacity="0.5" stroke="#0000ff" x1="612.3550614105757" x2="612.3550614105757" y1="123.50000000000001" y2="147.5"/>
   <line opacity="0.5" stroke="#0000ff" x1="612.3550614105757" x2="551.3550614105758" y1="147.5" y2="147.5"/>
diff --git a/rocolib/output/BoatWithServoStackBattery/graph-autofold-default.dxf b/rocolib/output/BoatWithServoStackBattery/graph-autofold-default.dxf
index 1a4f5755ea9489fc23944ee9b5d24f8414b9159c..4f288b5c5cec2cc33e44045f7c8f9104b38ef1b4 100644
--- a/rocolib/output/BoatWithServoStackBattery/graph-autofold-default.dxf
+++ b/rocolib/output/BoatWithServoStackBattery/graph-autofold-default.dxf
@@ -493,7 +493,7 @@ TABLE
   2
 LAYER
  70
-16
+17
   0
 LAYER
   2
@@ -577,6 +577,16 @@ CONTINUOUS
   0
 LAYER
   2
+10
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
 -90
  70
 0
@@ -1959,6 +1969,26 @@ cut
  31
 0.0
   0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+10
+ 10
+327.33180874014937
+ 20
+135.50000000000003
+ 30
+0.0
+ 11
+351.33180874014937
+ 21
+135.50000000000003
+ 31
+0.0
+  0
 LINE
  62
 5
@@ -1977,6 +2007,26 @@ cut
  31
 0.0
   0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+10
+ 10
+361.3318087401493
+ 20
+135.50000000000003
+ 30
+0.0
+ 11
+422.33180874014937
+ 21
+135.50000000000003
+ 31
+0.0
+  0
 LINE
  62
 5
@@ -2649,25 +2699,7 @@ cut
  10
 422.33180874014937
  20
-75.36137800081472
- 30
-0.0
- 11
-422.33180874014937
- 21
 39.22275600162939
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-361.3318087401493
- 20
-29.222756001629396
  30
 0.0
  11
@@ -2685,31 +2717,13 @@ cut
  10
 422.33180874014937
  20
-29.222756001629396
- 30
-0.0
- 11
-361.3318087401493
- 21
-29.222756001629396
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-422.33180874014937
- 20
-39.22275600162939
+75.36137800081472
  30
 0.0
  11
 422.33180874014937
  21
-29.222756001629396
+39.22275600162939
  31
 0.0
   0
@@ -2909,7 +2923,7 @@ cut
  10
 422.33180874014937
  20
-127.99794702597693
+117.99520972727949
  30
 0.0
  11
@@ -2927,13 +2941,13 @@ cut
  10
 474.84617955831095
  20
-127.99794702597693
+117.99520972727949
  30
 0.0
  11
 422.33180874014937
  21
-127.99794702597693
+117.99520972727949
  31
 0.0
   0
@@ -2951,7 +2965,7 @@ cut
  11
 474.84617955831095
  21
-127.99794702597693
+117.99520972727949
  31
 0.0
   0
@@ -3263,6 +3277,26 @@ DOTTED
  31
 0.0
   0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+10
+ 10
+422.3318087401495
+ 20
+365.5000000000001
+ 30
+0.0
+ 11
+361.3318087401494
+ 21
+365.50000000000017
+ 31
+0.0
+  0
 LINE
  62
 5
@@ -3282,14 +3316,16 @@ cut
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+10
  10
-266.33180874014937
+351.3318087401494
  20
-365.5000000000003
+365.50000000000017
  30
 0.0
  11
@@ -3311,9 +3347,9 @@ cut
  30
 0.0
  11
-266.33180874014937
+327.3318087401494
  21
-365.5000000000003
+365.50000000000017
  31
 0.0
   0
@@ -3323,15 +3359,15 @@ LINE
   8
 cut
  10
-422.3318087401495
+266.33180874014937
  20
-365.5000000000001
+365.5000000000003
  30
 0.0
  11
-422.3318087401495
+266.33180874014937
  21
-365.5000000000001
+365.5000000000003
  31
 0.0
   0
@@ -3341,9 +3377,9 @@ LINE
   8
 cut
  10
-361.3318087401494
+422.3318087401495
  20
-365.50000000000017
+365.5000000000001
  30
 0.0
  11
@@ -3467,6 +3503,60 @@ LINE
   8
 cut
  10
+422.3318087401495
+ 20
+375.5000000000001
+ 30
+0.0
+ 11
+422.3318087401495
+ 21
+365.5000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+361.3318087401494
+ 20
+375.50000000000017
+ 30
+0.0
+ 11
+422.3318087401495
+ 21
+375.5000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+361.3318087401494
+ 20
+365.50000000000017
+ 30
+0.0
+ 11
+361.3318087401494
+ 21
+375.50000000000017
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
 351.3318087401494
  20
 399.5000000000001
@@ -3899,7 +3989,7 @@ cut
  10
 266.33180874014937
  20
-373.00205297402334
+383.00479027272075
  30
 0.0
  11
@@ -3917,13 +4007,13 @@ cut
  10
 213.81743792198782
  20
-373.0020529740234
+383.00479027272087
  30
 0.0
  11
 266.33180874014937
  21
-373.00205297402334
+383.00479027272075
  31
 0.0
   0
@@ -3941,7 +4031,7 @@ cut
  11
 213.81743792198782
  21
-373.0020529740234
+383.00479027272087
  31
 0.0
   0
@@ -4239,9 +4329,9 @@ LINE
   8
 cut
  10
-213.81743792198745
+213.81743792198742
  20
-127.99794702597715
+117.9952097272797
  30
 0.0
  11
@@ -4259,13 +4349,13 @@ cut
  10
 266.3318087401491
  20
-127.99794702597704
+117.9952097272796
  30
 0.0
  11
-213.81743792198745
+213.81743792198742
  21
-127.99794702597715
+117.9952097272797
  31
 0.0
   0
@@ -4283,7 +4373,7 @@ cut
  11
 266.3318087401491
  21
-127.99794702597704
+117.9952097272796
  31
 0.0
   0
@@ -4293,9 +4383,9 @@ LINE
   8
 cut
  10
-474.84617955831106
+474.8461795583111
  20
-373.0020529740231
+383.0047902727206
  30
 0.0
  11
@@ -4313,13 +4403,13 @@ cut
  10
 422.3318087401495
  20
-373.00205297402323
+383.00479027272064
  30
 0.0
  11
-474.84617955831106
+474.8461795583111
  21
-373.0020529740231
+383.0047902727206
  31
 0.0
   0
@@ -4337,7 +4427,7 @@ cut
  11
 422.3318087401495
  21
-373.00205297402323
+383.00479027272064
  31
 0.0
   0
@@ -5139,15 +5229,51 @@ LINE
   8
 cut
  10
-411.24089964924025
+383.76362692196756
+ 20
+46.9727560016294
+ 30
+0.0
+ 11
+372.1727178310585
+ 21
+46.9727560016294
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+372.1727178310585
+ 20
+46.9727560016294
+ 30
+0.0
+ 11
+372.1727178310585
+ 21
+46.4727560016294
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+372.1727178310585
  20
-31.722756001629396
+46.4727560016294
  30
 0.0
  11
-411.24089964924025
+383.76362692196756
  21
-36.7227560016294
+46.4727560016294
  31
 0.0
   0
@@ -5157,15 +5283,15 @@ LINE
   8
 cut
  10
-411.24089964924025
+383.76362692196756
  20
-36.7227560016294
+46.4727560016294
  30
 0.0
  11
-400.1499905583311
+383.76362692196756
  21
-36.7227560016294
+46.9727560016294
  31
 0.0
   0
@@ -5175,15 +5301,15 @@ LINE
   8
 cut
  10
-400.1499905583311
+411.49089964924025
  20
-36.7227560016294
+46.9727560016294
  30
 0.0
  11
-400.1499905583311
+399.8999905583312
  21
-31.722756001629396
+46.9727560016294
  31
 0.0
   0
@@ -5193,15 +5319,15 @@ LINE
   8
 cut
  10
-383.51362692196756
+399.8999905583312
  20
-31.722756001629396
+46.9727560016294
  30
 0.0
  11
-383.51362692196756
+399.8999905583312
  21
-36.7227560016294
+46.4727560016294
  31
 0.0
   0
@@ -5211,15 +5337,15 @@ LINE
   8
 cut
  10
-383.51362692196756
+399.8999905583312
  20
-36.7227560016294
+46.4727560016294
  30
 0.0
  11
-372.4227178310585
+411.49089964924025
  21
-36.7227560016294
+46.4727560016294
  31
 0.0
   0
@@ -5229,15 +5355,15 @@ LINE
   8
 cut
  10
-372.4227178310585
+411.49089964924025
  20
-36.7227560016294
+46.4727560016294
  30
 0.0
  11
-372.4227178310585
+411.49089964924025
  21
-31.722756001629396
+46.9727560016294
  31
 0.0
   0
@@ -5355,15 +5481,15 @@ LINE
   8
 cut
  10
-465.29811213682694
+457.3413892855904
  20
-129.8734602694827
+122.37140729545962
  30
 0.0
  11
-469.0491386238386
+457.3413892855904
  21
-129.8734602694827
+131.12380243181985
  31
 0.0
   0
@@ -5373,15 +5499,15 @@ LINE
   8
 cut
  10
-469.0491386238386
+457.3413892855904
  20
-129.8734602694827
+131.12380243181985
  30
 0.0
  11
-465.29811213682694
+439.8365990128699
  21
-133.62448675649426
+131.12380243181988
  31
 0.0
   0
@@ -5391,15 +5517,15 @@ LINE
   8
 cut
  10
-465.29811213682694
+439.8365990128699
  20
-133.62448675649426
+131.12380243181988
  30
 0.0
  11
-455.7500447153431
+439.8365990128699
  21
-133.62448675649426
+122.37140729545962
  31
 0.0
   0
@@ -5409,15 +5535,15 @@ LINE
   8
 cut
  10
-455.7500447153431
+486.5563117536783
  20
-133.62448675649426
+223.5120791976936
  30
 0.0
  11
-451.9990182283316
+481.5195122622253
  21
-129.8734602694827
+206.22615649603978
  31
 0.0
   0
@@ -5427,15 +5553,15 @@ LINE
   8
 cut
  10
-451.9990182283316
+481.5195122622253
  20
-129.8734602694827
+206.22615649603978
  30
 0.0
  11
-455.7500447153431
+481.99954903132453
  21
-129.8734602694827
+206.08628262316594
  31
 0.0
   0
@@ -5445,15 +5571,15 @@ LINE
   8
 cut
  10
-441.4279435831172
+481.99954903132453
  20
-129.8734602694827
+206.08628262316594
  30
 0.0
  11
-445.17897007012874
+487.0363485227776
  21
-129.8734602694827
+223.37220532481973
  31
 0.0
   0
@@ -5463,15 +5589,15 @@ LINE
   8
 cut
  10
-445.17897007012874
+487.0363485227776
  20
-129.8734602694827
+223.37220532481973
  30
 0.0
  11
-441.4279435831172
+486.5563117536783
  21
-133.62448675649426
+223.5120791976936
  31
 0.0
   0
@@ -5481,15 +5607,15 @@ LINE
   8
 cut
  10
-441.4279435831172
+481.5195122622253
  20
-133.62448675649426
+294.77384350396034
  30
 0.0
  11
-431.8798761616332
+486.55631175367836
  21
-133.62448675649426
+277.4879208023065
  31
 0.0
   0
@@ -5499,15 +5625,15 @@ LINE
   8
 cut
  10
-431.8798761616332
+486.55631175367836
  20
-133.62448675649426
+277.4879208023065
  30
 0.0
  11
-428.1288496746218
+487.0363485227776
  21
-129.8734602694827
+277.6277946751803
  31
 0.0
   0
@@ -5517,15 +5643,15 @@ LINE
   8
 cut
  10
-428.1288496746218
+487.0363485227776
  20
-129.8734602694827
+277.6277946751803
  30
 0.0
  11
-431.8798761616332
+481.9995490313246
  21
-129.8734602694827
+294.91371737683414
  31
 0.0
   0
@@ -5535,15 +5661,15 @@ LINE
   8
 cut
  10
-489.307083733857
+481.9995490313246
  20
-206.13531866922696
+294.91371737683414
  30
 0.0
  11
-486.4961595235763
+481.5195122622253
  21
-196.48843502782523
+294.77384350396034
  31
 0.0
   0
@@ -5553,15 +5679,15 @@ LINE
   8
 cut
  10
-486.4961595235763
+304.8999905583312
  20
-196.48843502782523
+357.7500000000002
  30
 0.0
  11
-486.9761962926755
+316.4908996492403
  21
-196.3485611549514
+357.75000000000017
  31
 0.0
   0
@@ -5571,15 +5697,15 @@ LINE
   8
 cut
  10
-486.9761962926755
+316.4908996492403
  20
-196.3485611549514
+357.75000000000017
  30
 0.0
  11
-489.78712050295627
+316.4908996492403
  21
-205.99544479635315
+358.25000000000017
  31
 0.0
   0
@@ -5589,15 +5715,15 @@ LINE
   8
 cut
  10
-489.78712050295627
+316.4908996492403
  20
-205.99544479635315
+358.25000000000017
  30
 0.0
  11
-489.307083733857
+304.8999905583312
  21
-206.13531866922696
+358.25000000000017
  31
 0.0
   0
@@ -5607,15 +5733,15 @@ LINE
   8
 cut
  10
-495.9847095773741
+304.8999905583312
  20
-229.05243584998314
+358.25000000000017
  30
 0.0
  11
-493.1737853670934
+304.8999905583312
  21
-219.40555220858138
+357.7500000000002
  31
 0.0
   0
@@ -5625,15 +5751,15 @@ LINE
   8
 cut
  10
-493.1737853670934
+277.1727178310585
  20
-219.40555220858138
+357.7500000000002
  30
 0.0
  11
-493.6538221361927
+288.7636269219676
  21
-219.26567833570755
+357.7500000000002
  31
 0.0
   0
@@ -5643,15 +5769,15 @@ LINE
   8
 cut
  10
-493.6538221361927
+288.7636269219676
  20
-219.26567833570755
+357.7500000000002
  30
 0.0
  11
-496.4647463464733
+288.7636269219676
  21
-228.9125619771093
+358.25000000000017
  31
 0.0
   0
@@ -5661,15 +5787,15 @@ LINE
   8
 cut
  10
-496.4647463464733
+288.7636269219676
  20
-228.9125619771093
+358.25000000000017
  30
 0.0
  11
-495.9847095773741
+277.1727178310585
  21
-229.05243584998314
+358.25000000000017
  31
 0.0
   0
@@ -5679,15 +5805,15 @@ LINE
   8
 cut
  10
-493.17378536709344
+277.1727178310585
  20
-281.5944477914187
+358.25000000000017
  30
 0.0
  11
-495.9847095773741
+277.1727178310585
  21
-271.94756415001694
+357.7500000000002
  31
 0.0
   0
@@ -5697,15 +5823,15 @@ LINE
   8
 cut
  10
-495.9847095773741
+372.42271783105855
  20
-271.94756415001694
+373.0000000000001
  30
 0.0
  11
-496.4647463464733
+372.42271783105855
  21
-272.0874380228908
+368.0000000000001
  31
 0.0
   0
@@ -5715,15 +5841,15 @@ LINE
   8
 cut
  10
-496.4647463464733
+372.42271783105855
  20
-272.0874380228908
+368.0000000000001
  30
 0.0
  11
-493.6538221361927
+383.5136269219676
  21
-281.7343216642925
+368.0000000000001
  31
 0.0
   0
@@ -5733,15 +5859,15 @@ LINE
   8
 cut
  10
-493.6538221361927
+383.5136269219676
  20
-281.7343216642925
+368.0000000000001
  30
 0.0
  11
-493.17378536709344
+383.51362692196767
  21
-281.5944477914187
+373.0000000000001
  31
 0.0
   0
@@ -5751,15 +5877,15 @@ LINE
   8
 cut
  10
-486.49615952357635
+400.14999055833124
  20
-304.5115649721748
+373.0000000000001
  30
 0.0
  11
-489.30708373385704
+400.14999055833124
  21
-294.86468133077307
+368.0000000000001
  31
 0.0
   0
@@ -5769,15 +5895,15 @@ LINE
   8
 cut
  10
-489.30708373385704
+400.14999055833124
  20
-294.86468133077307
+368.0000000000001
  30
 0.0
  11
-489.78712050295627
+411.24089964924036
  21
-295.0045552036469
+368.00000000000006
  31
 0.0
   0
@@ -5787,15 +5913,15 @@ LINE
   8
 cut
  10
-489.78712050295627
+411.24089964924036
  20
-295.0045552036469
+368.00000000000006
  30
 0.0
  11
-486.97619629267564
+411.2408996492404
  21
-304.6514388450487
+373.00000000000006
  31
 0.0
   0
@@ -5805,15 +5931,15 @@ LINE
   8
 cut
  10
-486.97619629267564
+343.5818087401495
  20
-304.6514388450487
+388.4166666666668
  30
 0.0
  11
-486.49615952357635
+343.5818087401495
  21
-304.5115649721748
+376.5833333333335
  31
 0.0
   0
@@ -5823,15 +5949,15 @@ LINE
   8
 cut
  10
-304.8999905583312
+343.5818087401495
  20
-357.7500000000002
+376.5833333333335
  30
 0.0
  11
-316.4908996492403
+344.0818087401495
  21
-357.75000000000017
+376.5833333333335
  31
 0.0
   0
@@ -5841,105 +5967,15 @@ LINE
   8
 cut
  10
-316.4908996492403
+344.0818087401495
  20
-357.75000000000017
- 30
-0.0
- 11
-316.4908996492403
- 21
-358.25000000000017
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-316.4908996492403
- 20
-358.25000000000017
- 30
-0.0
- 11
-304.8999905583312
- 21
-358.25000000000017
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-304.8999905583312
- 20
-358.25000000000017
- 30
-0.0
- 11
-304.8999905583312
- 21
-357.7500000000002
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-277.1727178310585
- 20
-357.7500000000002
- 30
-0.0
- 11
-288.7636269219676
- 21
-357.7500000000002
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-288.7636269219676
- 20
-357.7500000000002
- 30
-0.0
- 11
-288.7636269219676
- 21
-358.25000000000017
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-288.7636269219676
- 20
-358.25000000000017
+376.5833333333335
  30
 0.0
  11
-277.1727178310585
+344.0818087401495
  21
-358.25000000000017
+388.4166666666668
  31
 0.0
   0
@@ -5949,15 +5985,15 @@ LINE
   8
 cut
  10
-277.1727178310585
+344.0818087401495
  20
-358.25000000000017
+388.4166666666668
  30
 0.0
  11
-277.1727178310585
+343.5818087401495
  21
-357.7500000000002
+388.4166666666668
  31
 0.0
   0
@@ -5967,15 +6003,15 @@ LINE
   8
 cut
  10
-399.89999055833124
+335.08180874014954
  20
-357.75000000000017
+476.50000000000017
  30
 0.0
  11
-411.49089964924036
+343.58180874014954
  21
-357.7500000000001
+476.50000000000017
  31
 0.0
   0
@@ -5985,15 +6021,15 @@ LINE
   8
 cut
  10
-411.49089964924036
+343.58180874014954
  20
-357.7500000000001
+476.50000000000017
  30
 0.0
  11
-411.49089964924036
+343.58180874014954
  21
-358.2500000000001
+477.00000000000017
  31
 0.0
   0
@@ -6003,15 +6039,15 @@ LINE
   8
 cut
  10
-411.49089964924036
+343.58180874014954
  20
-358.2500000000001
+477.00000000000017
  30
 0.0
  11
-399.89999055833124
+335.08180874014954
  21
-358.25000000000017
+477.00000000000017
  31
 0.0
   0
@@ -6021,15 +6057,15 @@ LINE
   8
 cut
  10
-399.89999055833124
+335.08180874014954
  20
-358.25000000000017
+477.00000000000017
  30
 0.0
  11
-399.89999055833124
+335.08180874014954
  21
-357.75000000000017
+476.50000000000017
  31
 0.0
   0
@@ -6039,15 +6075,15 @@ LINE
   8
 cut
  10
-372.17271783105855
+308.3318087401494
  20
-357.75000000000017
+376.50000000000017
  30
 0.0
  11
-383.7636269219676
+312.3318087401494
  21
-357.75000000000017
+376.50000000000017
  31
 0.0
   0
@@ -6057,15 +6093,15 @@ LINE
   8
 cut
  10
-383.7636269219676
+312.3318087401494
  20
-357.75000000000017
+376.50000000000017
  30
 0.0
  11
-383.7636269219676
+312.3318087401495
  21
-358.25000000000017
+388.50000000000017
  31
 0.0
   0
@@ -6075,15 +6111,15 @@ LINE
   8
 cut
  10
-383.7636269219676
+312.3318087401495
  20
-358.25000000000017
+388.50000000000017
  30
 0.0
  11
-372.17271783105855
+308.3318087401495
  21
-358.25000000000017
+388.50000000000017
  31
 0.0
   0
@@ -6093,15 +6129,15 @@ LINE
   8
 cut
  10
-372.17271783105855
+308.3318087401495
  20
-358.25000000000017
+388.50000000000017
  30
 0.0
  11
-372.17271783105855
+308.3318087401494
  21
-357.75000000000017
+376.50000000000017
  31
 0.0
   0
@@ -6111,15 +6147,15 @@ LINE
   8
 cut
  10
-343.5818087401495
+320.33180874014937
  20
-388.4166666666668
+378.00000000000017
  30
 0.0
  11
-343.5818087401495
+324.3318087401494
  21
-376.5833333333335
+378.00000000000017
  31
 0.0
   0
@@ -6129,15 +6165,15 @@ LINE
   8
 cut
  10
-343.5818087401495
+324.3318087401494
  20
-376.5833333333335
+378.00000000000017
  30
 0.0
  11
-344.0818087401495
+324.3318087401494
  21
-376.5833333333335
+387.00000000000017
  31
 0.0
   0
@@ -6147,15 +6183,15 @@ LINE
   8
 cut
  10
-344.0818087401495
+324.3318087401494
  20
-376.5833333333335
+387.00000000000017
  30
 0.0
  11
-344.0818087401495
+320.3318087401494
  21
-388.4166666666668
+387.00000000000017
  31
 0.0
   0
@@ -6165,15 +6201,15 @@ LINE
   8
 cut
  10
-344.0818087401495
+320.3318087401494
  20
-388.4166666666668
+387.00000000000017
  30
 0.0
  11
-343.5818087401495
+320.33180874014937
  21
-388.4166666666668
+378.00000000000017
  31
 0.0
   0
@@ -6183,15 +6219,15 @@ LINE
   8
 cut
  10
-335.08180874014954
+283.83180874014937
  20
-476.50000000000017
+376.50000000000017
  30
 0.0
  11
-343.58180874014954
+306.83180874014937
  21
-476.50000000000017
+376.50000000000017
  31
 0.0
   0
@@ -6201,15 +6237,15 @@ LINE
   8
 cut
  10
-343.58180874014954
+306.83180874014937
  20
-476.50000000000017
+376.50000000000017
  30
 0.0
  11
-343.58180874014954
+306.8318087401494
  21
-477.00000000000017
+388.50000000000017
  31
 0.0
   0
@@ -6219,15 +6255,15 @@ LINE
   8
 cut
  10
-343.58180874014954
+306.8318087401494
  20
-477.00000000000017
+388.50000000000017
  30
 0.0
  11
-335.08180874014954
+283.83180874014937
  21
-477.00000000000017
+388.50000000000017
  31
 0.0
   0
@@ -6237,15 +6273,15 @@ LINE
   8
 cut
  10
-335.08180874014954
+283.83180874014937
  20
-477.00000000000017
+388.50000000000017
  30
 0.0
  11
-335.08180874014954
+283.83180874014937
  21
-476.50000000000017
+376.50000000000017
  31
 0.0
   0
@@ -6255,13 +6291,13 @@ LINE
   8
 cut
  10
-308.3318087401494
+278.3318087401494
  20
 376.50000000000017
  30
 0.0
  11
-312.3318087401494
+282.3318087401494
  21
 376.50000000000017
  31
@@ -6273,13 +6309,13 @@ LINE
   8
 cut
  10
-312.3318087401494
+282.3318087401494
  20
 376.50000000000017
  30
 0.0
  11
-312.3318087401495
+282.3318087401494
  21
 388.50000000000017
  31
@@ -6291,13 +6327,13 @@ LINE
   8
 cut
  10
-312.3318087401495
+282.3318087401494
  20
 388.50000000000017
  30
 0.0
  11
-308.3318087401495
+278.3318087401494
  21
 388.50000000000017
  31
@@ -6309,13 +6345,13 @@ LINE
   8
 cut
  10
-308.3318087401495
+278.3318087401494
  20
 388.50000000000017
  30
 0.0
  11
-308.3318087401494
+278.3318087401494
  21
 376.50000000000017
  31
@@ -6327,15 +6363,15 @@ LINE
   8
 cut
  10
-320.33180874014937
+255.8318087401494
  20
-378.00000000000017
+376.8333333333335
  30
 0.0
  11
-324.3318087401494
+260.8318087401494
  21
-378.00000000000017
+376.8333333333335
  31
 0.0
   0
@@ -6345,15 +6381,15 @@ LINE
   8
 cut
  10
-324.3318087401494
+260.8318087401494
  20
-378.00000000000017
+376.8333333333335
  30
 0.0
  11
-324.3318087401494
+260.8318087401494
  21
-387.00000000000017
+388.16666666666686
  31
 0.0
   0
@@ -6363,211 +6399,13 @@ LINE
   8
 cut
  10
-324.3318087401494
+260.8318087401494
  20
-387.00000000000017
+388.16666666666686
  30
 0.0
  11
-320.3318087401494
- 21
-387.00000000000017
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-320.3318087401494
- 20
-387.00000000000017
- 30
-0.0
- 11
-320.33180874014937
- 21
-378.00000000000017
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-283.83180874014937
- 20
-376.50000000000017
- 30
-0.0
- 11
-306.83180874014937
- 21
-376.50000000000017
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-306.83180874014937
- 20
-376.50000000000017
- 30
-0.0
- 11
-306.8318087401494
- 21
-388.50000000000017
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-306.8318087401494
- 20
-388.50000000000017
- 30
-0.0
- 11
-283.83180874014937
- 21
-388.50000000000017
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-283.83180874014937
- 20
-388.50000000000017
- 30
-0.0
- 11
-283.83180874014937
- 21
-376.50000000000017
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-278.3318087401494
- 20
-376.50000000000017
- 30
-0.0
- 11
-282.3318087401494
- 21
-376.50000000000017
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-282.3318087401494
- 20
-376.50000000000017
- 30
-0.0
- 11
-282.3318087401494
- 21
-388.50000000000017
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-282.3318087401494
- 20
-388.50000000000017
- 30
-0.0
- 11
-278.3318087401494
- 21
-388.50000000000017
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-278.3318087401494
- 20
-388.50000000000017
- 30
-0.0
- 11
-278.3318087401494
- 21
-376.50000000000017
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-255.8318087401494
- 20
-376.8333333333335
- 30
-0.0
- 11
-260.8318087401494
- 21
-376.8333333333335
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-260.8318087401494
- 20
-376.8333333333335
- 30
-0.0
- 11
-260.8318087401494
+255.8318087401494
  21
 388.16666666666686
  31
@@ -6579,555 +6417,15 @@ LINE
   8
 cut
  10
-260.8318087401494
- 20
-388.16666666666686
- 30
-0.0
- 11
-255.8318087401494
- 21
-388.16666666666686
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-223.36550534347174
- 20
-371.12653973051766
- 30
-0.0
- 11
-219.61447885646018
- 21
-371.12653973051766
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-219.61447885646018
- 20
-371.12653973051766
- 30
-0.0
- 11
-223.3655053434717
- 21
-367.3755132435061
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-223.3655053434717
- 20
-367.3755132435061
- 30
-0.0
- 11
-232.91357276495566
- 21
-367.3755132435061
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-232.91357276495566
- 20
-367.3755132435061
- 30
-0.0
- 11
-236.66459925196722
- 21
-371.1265397305176
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-236.66459925196722
- 20
-371.1265397305176
- 30
-0.0
- 11
-232.91357276495566
- 21
-371.1265397305176
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-247.23567389718156
- 20
-371.1265397305176
- 30
-0.0
- 11
-243.48464741017003
- 21
-371.1265397305176
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-243.48464741017003
- 20
-371.1265397305176
- 30
-0.0
- 11
-247.23567389718156
- 21
-367.3755132435061
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-247.23567389718156
- 20
-367.3755132435061
- 30
-0.0
- 11
-256.7837413186655
- 21
-367.3755132435061
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-256.7837413186655
- 20
-367.3755132435061
- 30
-0.0
- 11
-260.534767805677
- 21
-371.1265397305176
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-260.534767805677
- 20
-371.1265397305176
- 30
-0.0
- 11
-256.78374131866553
- 21
-371.1265397305176
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-199.35653374644173
- 20
-294.86468133077335
- 30
-0.0
- 11
-202.16745795672242
- 21
-304.5115649721751
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-202.16745795672242
- 20
-304.5115649721751
- 30
-0.0
- 11
-201.6874211876231
- 21
-304.651438845049
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-201.6874211876231
- 20
-304.651438845049
- 30
-0.0
- 11
-198.87649697734244
- 21
-295.0045552036471
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-198.87649697734244
- 20
-295.0045552036471
- 30
-0.0
- 11
-199.35653374644173
- 21
-294.86468133077335
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-192.67890790292464
- 20
-271.9475641500171
- 30
-0.0
- 11
-195.48983211320527
- 21
-281.5944477914189
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-195.48983211320527
- 20
-281.5944477914189
- 30
-0.0
- 11
-195.009795344106
- 21
-281.7343216642927
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-195.009795344106
- 20
-281.7343216642927
- 30
-0.0
- 11
-192.19887113382532
- 21
-272.087438022891
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-192.19887113382532
- 20
-272.087438022891
- 30
-0.0
- 11
-192.67890790292464
- 21
-271.9475641500171
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-195.48983211320518
- 20
-219.40555220858164
- 30
-0.0
- 11
-192.67890790292452
- 21
-229.0524358499834
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-192.67890790292452
- 20
-229.0524358499834
- 30
-0.0
- 11
-192.19887113382526
- 21
-228.91256197710956
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-192.19887113382526
- 20
-228.91256197710956
- 30
-0.0
- 11
-195.00979534410592
- 21
-219.2656783357078
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-195.00979534410592
- 20
-219.2656783357078
- 30
-0.0
- 11
-195.48983211320518
- 21
-219.40555220858164
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-202.16745795672222
- 20
-196.48843502782546
- 30
-0.0
- 11
-199.35653374644158
- 21
-206.13531866922722
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-199.35653374644158
- 20
-206.13531866922722
- 30
-0.0
- 11
-198.8764969773423
- 21
-205.99544479635338
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-198.8764969773423
- 20
-205.99544479635338
- 30
-0.0
- 11
-201.68742118762296
- 21
-196.34856115495162
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-201.68742118762296
- 20
-196.34856115495162
- 30
-0.0
- 11
-202.16745795672222
- 21
-196.48843502782546
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-256.7837413186651
- 20
-129.87346026948285
- 30
-0.0
- 11
-260.53476780567667
- 21
-129.87346026948285
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-260.53476780567667
- 20
-129.87346026948285
- 30
-0.0
- 11
-256.78374131866514
- 21
-133.6244867564944
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-256.78374131866514
- 20
-133.6244867564944
- 30
-0.0
- 11
-247.23567389718121
- 21
-133.6244867564944
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-247.23567389718121
+231.32222819470834
  20
-133.6244867564944
+378.6285927045407
  30
 0.0
  11
-243.48464741016966
+231.32222819470834
  21
-129.87346026948285
+369.87619756818043
  31
 0.0
   0
@@ -7137,15 +6435,15 @@ LINE
   8
 cut
  10
-243.48464741016966
+231.32222819470834
  20
-129.87346026948285
+369.87619756818043
  30
 0.0
  11
-247.23567389718121
+248.82701846742887
  21
-129.87346026948285
+369.87619756818043
  31
 0.0
   0
@@ -7155,15 +6453,15 @@ LINE
   8
 cut
  10
-232.91357276495532
+248.82701846742887
  20
-129.87346026948288
+369.87619756818043
  30
 0.0
  11
-236.66459925196685
+248.82701846742887
  21
-129.87346026948285
+378.6285927045407
  31
 0.0
   0
@@ -7173,15 +6471,15 @@ LINE
   8
 cut
  10
-236.66459925196685
+202.10730572662035
  20
-129.87346026948285
+277.4879208023067
  30
 0.0
  11
-232.91357276495532
+207.1441052180734
  21
-133.62448675649443
+294.7738435039605
  31
 0.0
   0
@@ -7191,15 +6489,15 @@ LINE
   8
 cut
  10
-232.91357276495532
+207.1441052180734
  20
-133.62448675649443
+294.7738435039605
  30
 0.0
  11
-223.36550534347137
+206.66406844897412
  21
-133.62448675649446
+294.9137173768343
  31
 0.0
   0
@@ -7209,15 +6507,15 @@ LINE
   8
 cut
  10
-223.36550534347137
+206.66406844897412
  20
-133.62448675649446
+294.9137173768343
  30
 0.0
  11
-219.6144788564598
+201.62726895752107
  21
-129.8734602694829
+277.62779467518055
  31
 0.0
   0
@@ -7227,15 +6525,15 @@ LINE
   8
 cut
  10
-219.6144788564598
+201.62726895752107
  20
-129.8734602694829
+277.62779467518055
  30
 0.0
  11
-223.36550534347137
+202.10730572662035
  21
-129.87346026948288
+277.4879208023067
  31
 0.0
   0
@@ -7245,15 +6543,15 @@ LINE
   8
 cut
  10
-431.8798761616334
+207.14410521807326
  20
-371.12653973051744
+206.22615649604003
  30
 0.0
  11
-428.1288496746219
+202.10730572662024
  21
-371.12653973051744
+223.51207919769385
  31
 0.0
   0
@@ -7263,15 +6561,15 @@ LINE
   8
 cut
  10
-428.1288496746219
+202.10730572662024
  20
-371.12653973051744
+223.51207919769385
  30
 0.0
  11
-431.8798761616334
+201.62726895752098
  21
-367.37551324350585
+223.37220532482002
  31
 0.0
   0
@@ -7281,15 +6579,15 @@ LINE
   8
 cut
  10
-431.8798761616334
+201.62726895752098
  20
-367.37551324350585
+223.37220532482002
  30
 0.0
  11
-441.4279435831173
+206.66406844897395
  21
-367.37551324350585
+206.08628262316617
  31
 0.0
   0
@@ -7299,15 +6597,15 @@ LINE
   8
 cut
  10
-441.4279435831173
+206.66406844897395
  20
-367.37551324350585
+206.08628262316617
  30
 0.0
  11
-445.17897007012886
+207.14410521807326
  21
-371.12653973051744
+206.22615649604003
  31
 0.0
   0
@@ -7317,15 +6615,15 @@ LINE
   8
 cut
  10
-445.17897007012886
+248.8270184674285
  20
-371.12653973051744
+122.37140729545976
  30
 0.0
  11
-441.4279435831173
+248.82701846742856
  21
-371.12653973051744
+131.12380243182005
  31
 0.0
   0
@@ -7335,15 +6633,15 @@ LINE
   8
 cut
  10
-455.7500447153432
+248.82701846742856
  20
-371.12653973051744
+131.12380243182005
  30
 0.0
  11
-451.9990182283317
+231.322228194708
  21
-371.12653973051744
+131.12380243182008
  31
 0.0
   0
@@ -7353,15 +6651,15 @@ LINE
   8
 cut
  10
-451.9990182283317
+231.322228194708
  20
-371.12653973051744
+131.12380243182008
  30
 0.0
  11
-455.7500447153432
+231.32222819470798
  21
-367.37551324350585
+122.3714072954598
  31
 0.0
   0
@@ -7371,15 +6669,15 @@ LINE
   8
 cut
  10
-455.7500447153432
+439.83659901287
  20
-367.37551324350585
+378.6285927045405
  30
 0.0
  11
-465.2981121368271
+439.83659901287
  21
-367.37551324350585
+369.87619756818015
  31
 0.0
   0
@@ -7389,15 +6687,15 @@ LINE
   8
 cut
  10
-465.2981121368271
+439.83659901287
  20
-367.37551324350585
+369.87619756818015
  30
 0.0
  11
-469.0491386238387
+457.34138928559054
  21
-371.1265397305174
+369.87619756818015
  31
 0.0
   0
@@ -7407,15 +6705,15 @@ LINE
   8
 cut
  10
-469.0491386238387
+457.34138928559054
  20
-371.1265397305174
+369.87619756818015
  30
 0.0
  11
-465.2981121368271
+457.34138928559054
  21
-371.12653973051744
+378.6285927045405
  31
 0.0
   0
diff --git a/rocolib/output/BoatWithServoStackBattery/graph-autofold-graph.dxf b/rocolib/output/BoatWithServoStackBattery/graph-autofold-graph.dxf
index f42435c959bde11527b47099ab70365994e8e23d..79b1edf69566da304a920bbaa7658c28bf9dd041 100644
--- a/rocolib/output/BoatWithServoStackBattery/graph-autofold-graph.dxf
+++ b/rocolib/output/BoatWithServoStackBattery/graph-autofold-graph.dxf
@@ -1849,6 +1849,26 @@ LINE
  31
 0.0
   0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+327.33180874014937
+ 20
+135.50000000000003
+ 30
+0.0
+ 11
+351.33180874014937
+ 21
+135.50000000000003
+ 31
+0.0
+  0
 LINE
  62
 5
@@ -1867,6 +1887,26 @@ LINE
  31
 0.0
   0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+361.3318087401493
+ 20
+135.50000000000003
+ 30
+0.0
+ 11
+422.33180874014937
+ 21
+135.50000000000003
+ 31
+0.0
+  0
 LINE
  62
 5
@@ -2539,25 +2579,7 @@ LINE
  10
 422.33180874014937
  20
-75.36137800081472
- 30
-0.0
- 11
-422.33180874014937
- 21
 39.22275600162939
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-361.3318087401493
- 20
-29.222756001629396
  30
 0.0
  11
@@ -2575,31 +2597,13 @@ LINE
  10
 422.33180874014937
  20
-29.222756001629396
- 30
-0.0
- 11
-361.3318087401493
- 21
-29.222756001629396
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-422.33180874014937
- 20
-39.22275600162939
+75.36137800081472
  30
 0.0
  11
 422.33180874014937
  21
-29.222756001629396
+39.22275600162939
  31
 0.0
   0
@@ -2799,7 +2803,7 @@ LINE
  10
 422.33180874014937
  20
-127.99794702597693
+117.99520972727949
  30
 0.0
  11
@@ -2817,13 +2821,13 @@ LINE
  10
 474.84617955831095
  20
-127.99794702597693
+117.99520972727949
  30
 0.0
  11
 422.33180874014937
  21
-127.99794702597693
+117.99520972727949
  31
 0.0
   0
@@ -2841,7 +2845,7 @@ LINE
  11
 474.84617955831095
  21
-127.99794702597693
+117.99520972727949
  31
 0.0
   0
@@ -3153,6 +3157,26 @@ DOTTED
  31
 0.0
   0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+422.3318087401495
+ 20
+365.5000000000001
+ 30
+0.0
+ 11
+361.3318087401494
+ 21
+365.50000000000017
+ 31
+0.0
+  0
 LINE
  62
 5
@@ -3172,14 +3196,16 @@ LINE
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-266.33180874014937
+351.3318087401494
  20
-365.5000000000003
+365.50000000000017
  30
 0.0
  11
@@ -3201,9 +3227,9 @@ LINE
  30
 0.0
  11
-266.33180874014937
+327.3318087401494
  21
-365.5000000000003
+365.50000000000017
  31
 0.0
   0
@@ -3213,15 +3239,15 @@ LINE
   8
 0
  10
-422.3318087401495
+266.33180874014937
  20
-365.5000000000001
+365.5000000000003
  30
 0.0
  11
-422.3318087401495
+266.33180874014937
  21
-365.5000000000001
+365.5000000000003
  31
 0.0
   0
@@ -3231,9 +3257,9 @@ LINE
   8
 0
  10
-361.3318087401494
+422.3318087401495
  20
-365.50000000000017
+365.5000000000001
  30
 0.0
  11
@@ -3357,6 +3383,60 @@ LINE
   8
 0
  10
+422.3318087401495
+ 20
+375.5000000000001
+ 30
+0.0
+ 11
+422.3318087401495
+ 21
+365.5000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+361.3318087401494
+ 20
+375.50000000000017
+ 30
+0.0
+ 11
+422.3318087401495
+ 21
+375.5000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+361.3318087401494
+ 20
+365.50000000000017
+ 30
+0.0
+ 11
+361.3318087401494
+ 21
+375.50000000000017
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
 351.3318087401494
  20
 399.5000000000001
@@ -3789,7 +3869,7 @@ LINE
  10
 266.33180874014937
  20
-373.00205297402334
+383.00479027272075
  30
 0.0
  11
@@ -3807,13 +3887,13 @@ LINE
  10
 213.81743792198782
  20
-373.0020529740234
+383.00479027272087
  30
 0.0
  11
 266.33180874014937
  21
-373.00205297402334
+383.00479027272075
  31
 0.0
   0
@@ -3831,7 +3911,7 @@ LINE
  11
 213.81743792198782
  21
-373.0020529740234
+383.00479027272087
  31
 0.0
   0
@@ -4129,9 +4209,9 @@ LINE
   8
 0
  10
-213.81743792198745
+213.81743792198742
  20
-127.99794702597715
+117.9952097272797
  30
 0.0
  11
@@ -4149,13 +4229,13 @@ LINE
  10
 266.3318087401491
  20
-127.99794702597704
+117.9952097272796
  30
 0.0
  11
-213.81743792198745
+213.81743792198742
  21
-127.99794702597715
+117.9952097272797
  31
 0.0
   0
@@ -4173,7 +4253,7 @@ LINE
  11
 266.3318087401491
  21
-127.99794702597704
+117.9952097272796
  31
 0.0
   0
@@ -4183,9 +4263,9 @@ LINE
   8
 0
  10
-474.84617955831106
+474.8461795583111
  20
-373.0020529740231
+383.0047902727206
  30
 0.0
  11
@@ -4203,13 +4283,13 @@ LINE
  10
 422.3318087401495
  20
-373.00205297402323
+383.00479027272064
  30
 0.0
  11
-474.84617955831106
+474.8461795583111
  21
-373.0020529740231
+383.0047902727206
  31
 0.0
   0
@@ -4227,7 +4307,7 @@ LINE
  11
 422.3318087401495
  21
-373.00205297402323
+383.00479027272064
  31
 0.0
   0
@@ -5029,15 +5109,51 @@ LINE
   8
 0
  10
-411.24089964924025
+383.76362692196756
+ 20
+46.9727560016294
+ 30
+0.0
+ 11
+372.1727178310585
+ 21
+46.9727560016294
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+372.1727178310585
+ 20
+46.9727560016294
+ 30
+0.0
+ 11
+372.1727178310585
+ 21
+46.4727560016294
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+372.1727178310585
  20
-31.722756001629396
+46.4727560016294
  30
 0.0
  11
-411.24089964924025
+383.76362692196756
  21
-36.7227560016294
+46.4727560016294
  31
 0.0
   0
@@ -5047,15 +5163,15 @@ LINE
   8
 0
  10
-411.24089964924025
+383.76362692196756
  20
-36.7227560016294
+46.4727560016294
  30
 0.0
  11
-400.1499905583311
+383.76362692196756
  21
-36.7227560016294
+46.9727560016294
  31
 0.0
   0
@@ -5065,15 +5181,15 @@ LINE
   8
 0
  10
-400.1499905583311
+411.49089964924025
  20
-36.7227560016294
+46.9727560016294
  30
 0.0
  11
-400.1499905583311
+399.8999905583312
  21
-31.722756001629396
+46.9727560016294
  31
 0.0
   0
@@ -5083,15 +5199,15 @@ LINE
   8
 0
  10
-383.51362692196756
+399.8999905583312
  20
-31.722756001629396
+46.9727560016294
  30
 0.0
  11
-383.51362692196756
+399.8999905583312
  21
-36.7227560016294
+46.4727560016294
  31
 0.0
   0
@@ -5101,15 +5217,15 @@ LINE
   8
 0
  10
-383.51362692196756
+399.8999905583312
  20
-36.7227560016294
+46.4727560016294
  30
 0.0
  11
-372.4227178310585
+411.49089964924025
  21
-36.7227560016294
+46.4727560016294
  31
 0.0
   0
@@ -5119,15 +5235,15 @@ LINE
   8
 0
  10
-372.4227178310585
+411.49089964924025
  20
-36.7227560016294
+46.4727560016294
  30
 0.0
  11
-372.4227178310585
+411.49089964924025
  21
-31.722756001629396
+46.9727560016294
  31
 0.0
   0
@@ -5245,15 +5361,15 @@ LINE
   8
 0
  10
-465.29811213682694
+457.3413892855904
  20
-129.8734602694827
+122.37140729545962
  30
 0.0
  11
-469.0491386238386
+457.3413892855904
  21
-129.8734602694827
+131.12380243181985
  31
 0.0
   0
@@ -5263,15 +5379,15 @@ LINE
   8
 0
  10
-469.0491386238386
+457.3413892855904
  20
-129.8734602694827
+131.12380243181985
  30
 0.0
  11
-465.29811213682694
+439.8365990128699
  21
-133.62448675649426
+131.12380243181988
  31
 0.0
   0
@@ -5281,15 +5397,15 @@ LINE
   8
 0
  10
-465.29811213682694
+439.8365990128699
  20
-133.62448675649426
+131.12380243181988
  30
 0.0
  11
-455.7500447153431
+439.8365990128699
  21
-133.62448675649426
+122.37140729545962
  31
 0.0
   0
@@ -5299,15 +5415,15 @@ LINE
   8
 0
  10
-455.7500447153431
+486.5563117536783
  20
-133.62448675649426
+223.5120791976936
  30
 0.0
  11
-451.9990182283316
+481.5195122622253
  21
-129.8734602694827
+206.22615649603978
  31
 0.0
   0
@@ -5317,15 +5433,15 @@ LINE
   8
 0
  10
-451.9990182283316
+481.5195122622253
  20
-129.8734602694827
+206.22615649603978
  30
 0.0
  11
-455.7500447153431
+481.99954903132453
  21
-129.8734602694827
+206.08628262316594
  31
 0.0
   0
@@ -5335,15 +5451,15 @@ LINE
   8
 0
  10
-441.4279435831172
+481.99954903132453
  20
-129.8734602694827
+206.08628262316594
  30
 0.0
  11
-445.17897007012874
+487.0363485227776
  21
-129.8734602694827
+223.37220532481973
  31
 0.0
   0
@@ -5353,15 +5469,15 @@ LINE
   8
 0
  10
-445.17897007012874
+487.0363485227776
  20
-129.8734602694827
+223.37220532481973
  30
 0.0
  11
-441.4279435831172
+486.5563117536783
  21
-133.62448675649426
+223.5120791976936
  31
 0.0
   0
@@ -5371,15 +5487,15 @@ LINE
   8
 0
  10
-441.4279435831172
+481.5195122622253
  20
-133.62448675649426
+294.77384350396034
  30
 0.0
  11
-431.8798761616332
+486.55631175367836
  21
-133.62448675649426
+277.4879208023065
  31
 0.0
   0
@@ -5389,15 +5505,15 @@ LINE
   8
 0
  10
-431.8798761616332
+486.55631175367836
  20
-133.62448675649426
+277.4879208023065
  30
 0.0
  11
-428.1288496746218
+487.0363485227776
  21
-129.8734602694827
+277.6277946751803
  31
 0.0
   0
@@ -5407,15 +5523,15 @@ LINE
   8
 0
  10
-428.1288496746218
+487.0363485227776
  20
-129.8734602694827
+277.6277946751803
  30
 0.0
  11
-431.8798761616332
+481.9995490313246
  21
-129.8734602694827
+294.91371737683414
  31
 0.0
   0
@@ -5425,15 +5541,15 @@ LINE
   8
 0
  10
-489.307083733857
+481.9995490313246
  20
-206.13531866922696
+294.91371737683414
  30
 0.0
  11
-486.4961595235763
+481.5195122622253
  21
-196.48843502782523
+294.77384350396034
  31
 0.0
   0
@@ -5443,15 +5559,15 @@ LINE
   8
 0
  10
-486.4961595235763
+304.8999905583312
  20
-196.48843502782523
+357.7500000000002
  30
 0.0
  11
-486.9761962926755
+316.4908996492403
  21
-196.3485611549514
+357.75000000000017
  31
 0.0
   0
@@ -5461,15 +5577,15 @@ LINE
   8
 0
  10
-486.9761962926755
+316.4908996492403
  20
-196.3485611549514
+357.75000000000017
  30
 0.0
  11
-489.78712050295627
+316.4908996492403
  21
-205.99544479635315
+358.25000000000017
  31
 0.0
   0
@@ -5479,15 +5595,15 @@ LINE
   8
 0
  10
-489.78712050295627
+316.4908996492403
  20
-205.99544479635315
+358.25000000000017
  30
 0.0
  11
-489.307083733857
+304.8999905583312
  21
-206.13531866922696
+358.25000000000017
  31
 0.0
   0
@@ -5497,15 +5613,15 @@ LINE
   8
 0
  10
-495.9847095773741
+304.8999905583312
  20
-229.05243584998314
+358.25000000000017
  30
 0.0
  11
-493.1737853670934
+304.8999905583312
  21
-219.40555220858138
+357.7500000000002
  31
 0.0
   0
@@ -5515,15 +5631,15 @@ LINE
   8
 0
  10
-493.1737853670934
+277.1727178310585
  20
-219.40555220858138
+357.7500000000002
  30
 0.0
  11
-493.6538221361927
+288.7636269219676
  21
-219.26567833570755
+357.7500000000002
  31
 0.0
   0
@@ -5533,15 +5649,15 @@ LINE
   8
 0
  10
-493.6538221361927
+288.7636269219676
  20
-219.26567833570755
+357.7500000000002
  30
 0.0
  11
-496.4647463464733
+288.7636269219676
  21
-228.9125619771093
+358.25000000000017
  31
 0.0
   0
@@ -5551,15 +5667,15 @@ LINE
   8
 0
  10
-496.4647463464733
+288.7636269219676
  20
-228.9125619771093
+358.25000000000017
  30
 0.0
  11
-495.9847095773741
+277.1727178310585
  21
-229.05243584998314
+358.25000000000017
  31
 0.0
   0
@@ -5569,15 +5685,15 @@ LINE
   8
 0
  10
-493.17378536709344
+277.1727178310585
  20
-281.5944477914187
+358.25000000000017
  30
 0.0
  11
-495.9847095773741
+277.1727178310585
  21
-271.94756415001694
+357.7500000000002
  31
 0.0
   0
@@ -5587,15 +5703,15 @@ LINE
   8
 0
  10
-495.9847095773741
+372.42271783105855
  20
-271.94756415001694
+373.0000000000001
  30
 0.0
  11
-496.4647463464733
+372.42271783105855
  21
-272.0874380228908
+368.0000000000001
  31
 0.0
   0
@@ -5605,15 +5721,15 @@ LINE
   8
 0
  10
-496.4647463464733
+372.42271783105855
  20
-272.0874380228908
+368.0000000000001
  30
 0.0
  11
-493.6538221361927
+383.5136269219676
  21
-281.7343216642925
+368.0000000000001
  31
 0.0
   0
@@ -5623,15 +5739,15 @@ LINE
   8
 0
  10
-493.6538221361927
+383.5136269219676
  20
-281.7343216642925
+368.0000000000001
  30
 0.0
  11
-493.17378536709344
+383.51362692196767
  21
-281.5944477914187
+373.0000000000001
  31
 0.0
   0
@@ -5641,15 +5757,15 @@ LINE
   8
 0
  10
-486.49615952357635
+400.14999055833124
  20
-304.5115649721748
+373.0000000000001
  30
 0.0
  11
-489.30708373385704
+400.14999055833124
  21
-294.86468133077307
+368.0000000000001
  31
 0.0
   0
@@ -5659,15 +5775,15 @@ LINE
   8
 0
  10
-489.30708373385704
+400.14999055833124
  20
-294.86468133077307
+368.0000000000001
  30
 0.0
  11
-489.78712050295627
+411.24089964924036
  21
-295.0045552036469
+368.00000000000006
  31
 0.0
   0
@@ -5677,15 +5793,15 @@ LINE
   8
 0
  10
-489.78712050295627
+411.24089964924036
  20
-295.0045552036469
+368.00000000000006
  30
 0.0
  11
-486.97619629267564
+411.2408996492404
  21
-304.6514388450487
+373.00000000000006
  31
 0.0
   0
@@ -5695,15 +5811,15 @@ LINE
   8
 0
  10
-486.97619629267564
+343.5818087401495
  20
-304.6514388450487
+388.4166666666668
  30
 0.0
  11
-486.49615952357635
+343.5818087401495
  21
-304.5115649721748
+376.5833333333335
  31
 0.0
   0
@@ -5713,15 +5829,15 @@ LINE
   8
 0
  10
-304.8999905583312
+343.5818087401495
  20
-357.7500000000002
+376.5833333333335
  30
 0.0
  11
-316.4908996492403
+344.0818087401495
  21
-357.75000000000017
+376.5833333333335
  31
 0.0
   0
@@ -5731,15 +5847,15 @@ LINE
   8
 0
  10
-316.4908996492403
+344.0818087401495
  20
-357.75000000000017
+376.5833333333335
  30
 0.0
  11
-316.4908996492403
+344.0818087401495
  21
-358.25000000000017
+388.4166666666668
  31
 0.0
   0
@@ -5749,105 +5865,15 @@ LINE
   8
 0
  10
-316.4908996492403
+344.0818087401495
  20
-358.25000000000017
- 30
-0.0
- 11
-304.8999905583312
- 21
-358.25000000000017
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-304.8999905583312
- 20
-358.25000000000017
- 30
-0.0
- 11
-304.8999905583312
- 21
-357.7500000000002
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-277.1727178310585
- 20
-357.7500000000002
- 30
-0.0
- 11
-288.7636269219676
- 21
-357.7500000000002
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-288.7636269219676
- 20
-357.7500000000002
- 30
-0.0
- 11
-288.7636269219676
- 21
-358.25000000000017
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-288.7636269219676
- 20
-358.25000000000017
- 30
-0.0
- 11
-277.1727178310585
- 21
-358.25000000000017
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-277.1727178310585
- 20
-358.25000000000017
+388.4166666666668
  30
 0.0
  11
-277.1727178310585
+343.5818087401495
  21
-357.7500000000002
+388.4166666666668
  31
 0.0
   0
@@ -5857,15 +5883,15 @@ LINE
   8
 0
  10
-399.89999055833124
+335.08180874014954
  20
-357.75000000000017
+476.50000000000017
  30
 0.0
  11
-411.49089964924036
+343.58180874014954
  21
-357.7500000000001
+476.50000000000017
  31
 0.0
   0
@@ -5875,15 +5901,15 @@ LINE
   8
 0
  10
-411.49089964924036
+343.58180874014954
  20
-357.7500000000001
+476.50000000000017
  30
 0.0
  11
-411.49089964924036
+343.58180874014954
  21
-358.2500000000001
+477.00000000000017
  31
 0.0
   0
@@ -5893,15 +5919,15 @@ LINE
   8
 0
  10
-411.49089964924036
+343.58180874014954
  20
-358.2500000000001
+477.00000000000017
  30
 0.0
  11
-399.89999055833124
+335.08180874014954
  21
-358.25000000000017
+477.00000000000017
  31
 0.0
   0
@@ -5911,15 +5937,15 @@ LINE
   8
 0
  10
-399.89999055833124
+335.08180874014954
  20
-358.25000000000017
+477.00000000000017
  30
 0.0
  11
-399.89999055833124
+335.08180874014954
  21
-357.75000000000017
+476.50000000000017
  31
 0.0
   0
@@ -5929,15 +5955,15 @@ LINE
   8
 0
  10
-372.17271783105855
+308.3318087401494
  20
-357.75000000000017
+376.50000000000017
  30
 0.0
  11
-383.7636269219676
+312.3318087401494
  21
-357.75000000000017
+376.50000000000017
  31
 0.0
   0
@@ -5947,15 +5973,15 @@ LINE
   8
 0
  10
-383.7636269219676
+312.3318087401494
  20
-357.75000000000017
+376.50000000000017
  30
 0.0
  11
-383.7636269219676
+312.3318087401495
  21
-358.25000000000017
+388.50000000000017
  31
 0.0
   0
@@ -5965,15 +5991,15 @@ LINE
   8
 0
  10
-383.7636269219676
+312.3318087401495
  20
-358.25000000000017
+388.50000000000017
  30
 0.0
  11
-372.17271783105855
+308.3318087401495
  21
-358.25000000000017
+388.50000000000017
  31
 0.0
   0
@@ -5983,15 +6009,15 @@ LINE
   8
 0
  10
-372.17271783105855
+308.3318087401495
  20
-358.25000000000017
+388.50000000000017
  30
 0.0
  11
-372.17271783105855
+308.3318087401494
  21
-357.75000000000017
+376.50000000000017
  31
 0.0
   0
@@ -6001,15 +6027,15 @@ LINE
   8
 0
  10
-343.5818087401495
+320.33180874014937
  20
-388.4166666666668
+378.00000000000017
  30
 0.0
  11
-343.5818087401495
+324.3318087401494
  21
-376.5833333333335
+378.00000000000017
  31
 0.0
   0
@@ -6019,15 +6045,15 @@ LINE
   8
 0
  10
-343.5818087401495
+324.3318087401494
  20
-376.5833333333335
+378.00000000000017
  30
 0.0
  11
-344.0818087401495
+324.3318087401494
  21
-376.5833333333335
+387.00000000000017
  31
 0.0
   0
@@ -6037,15 +6063,15 @@ LINE
   8
 0
  10
-344.0818087401495
+324.3318087401494
  20
-376.5833333333335
+387.00000000000017
  30
 0.0
  11
-344.0818087401495
+320.3318087401494
  21
-388.4166666666668
+387.00000000000017
  31
 0.0
   0
@@ -6055,15 +6081,15 @@ LINE
   8
 0
  10
-344.0818087401495
+320.3318087401494
  20
-388.4166666666668
+387.00000000000017
  30
 0.0
  11
-343.5818087401495
+320.33180874014937
  21
-388.4166666666668
+378.00000000000017
  31
 0.0
   0
@@ -6073,15 +6099,15 @@ LINE
   8
 0
  10
-335.08180874014954
+283.83180874014937
  20
-476.50000000000017
+376.50000000000017
  30
 0.0
  11
-343.58180874014954
+306.83180874014937
  21
-476.50000000000017
+376.50000000000017
  31
 0.0
   0
@@ -6091,15 +6117,15 @@ LINE
   8
 0
  10
-343.58180874014954
+306.83180874014937
  20
-476.50000000000017
+376.50000000000017
  30
 0.0
  11
-343.58180874014954
+306.8318087401494
  21
-477.00000000000017
+388.50000000000017
  31
 0.0
   0
@@ -6109,15 +6135,15 @@ LINE
   8
 0
  10
-343.58180874014954
+306.8318087401494
  20
-477.00000000000017
+388.50000000000017
  30
 0.0
  11
-335.08180874014954
+283.83180874014937
  21
-477.00000000000017
+388.50000000000017
  31
 0.0
   0
@@ -6127,15 +6153,15 @@ LINE
   8
 0
  10
-335.08180874014954
+283.83180874014937
  20
-477.00000000000017
+388.50000000000017
  30
 0.0
  11
-335.08180874014954
+283.83180874014937
  21
-476.50000000000017
+376.50000000000017
  31
 0.0
   0
@@ -6145,13 +6171,13 @@ LINE
   8
 0
  10
-308.3318087401494
+278.3318087401494
  20
 376.50000000000017
  30
 0.0
  11
-312.3318087401494
+282.3318087401494
  21
 376.50000000000017
  31
@@ -6163,13 +6189,13 @@ LINE
   8
 0
  10
-312.3318087401494
+282.3318087401494
  20
 376.50000000000017
  30
 0.0
  11
-312.3318087401495
+282.3318087401494
  21
 388.50000000000017
  31
@@ -6181,13 +6207,13 @@ LINE
   8
 0
  10
-312.3318087401495
+282.3318087401494
  20
 388.50000000000017
  30
 0.0
  11
-308.3318087401495
+278.3318087401494
  21
 388.50000000000017
  31
@@ -6199,13 +6225,13 @@ LINE
   8
 0
  10
-308.3318087401495
+278.3318087401494
  20
 388.50000000000017
  30
 0.0
  11
-308.3318087401494
+278.3318087401494
  21
 376.50000000000017
  31
@@ -6217,15 +6243,15 @@ LINE
   8
 0
  10
-320.33180874014937
+255.8318087401494
  20
-378.00000000000017
+376.8333333333335
  30
 0.0
  11
-324.3318087401494
+260.8318087401494
  21
-378.00000000000017
+376.8333333333335
  31
 0.0
   0
@@ -6235,15 +6261,15 @@ LINE
   8
 0
  10
-324.3318087401494
+260.8318087401494
  20
-378.00000000000017
+376.8333333333335
  30
 0.0
  11
-324.3318087401494
+260.8318087401494
  21
-387.00000000000017
+388.16666666666686
  31
 0.0
   0
@@ -6253,229 +6279,13 @@ LINE
   8
 0
  10
-324.3318087401494
+260.8318087401494
  20
-387.00000000000017
+388.16666666666686
  30
 0.0
  11
-320.3318087401494
- 21
-387.00000000000017
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-320.3318087401494
- 20
-387.00000000000017
- 30
-0.0
- 11
-320.33180874014937
- 21
-378.00000000000017
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-283.83180874014937
- 20
-376.50000000000017
- 30
-0.0
- 11
-306.83180874014937
- 21
-376.50000000000017
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-306.83180874014937
- 20
-376.50000000000017
- 30
-0.0
- 11
-306.8318087401494
- 21
-388.50000000000017
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-306.8318087401494
- 20
-388.50000000000017
- 30
-0.0
- 11
-283.83180874014937
- 21
-388.50000000000017
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-283.83180874014937
- 20
-388.50000000000017
- 30
-0.0
- 11
-283.83180874014937
- 21
-376.50000000000017
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-278.3318087401494
- 20
-376.50000000000017
- 30
-0.0
- 11
-282.3318087401494
- 21
-376.50000000000017
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-282.3318087401494
- 20
-376.50000000000017
- 30
-0.0
- 11
-282.3318087401494
- 21
-388.50000000000017
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-282.3318087401494
- 20
-388.50000000000017
- 30
-0.0
- 11
-278.3318087401494
- 21
-388.50000000000017
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-278.3318087401494
- 20
-388.50000000000017
- 30
-0.0
- 11
-278.3318087401494
- 21
-376.50000000000017
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-255.8318087401494
- 20
-376.8333333333335
- 30
-0.0
- 11
-260.8318087401494
- 21
-376.8333333333335
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-260.8318087401494
- 20
-376.8333333333335
- 30
-0.0
- 11
-260.8318087401494
- 21
-388.16666666666686
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-260.8318087401494
- 20
-388.16666666666686
- 30
-0.0
- 11
-255.8318087401494
+255.8318087401494
  21
 388.16666666666686
  31
@@ -6487,537 +6297,15 @@ LINE
   8
 0
  10
-223.36550534347174
- 20
-371.12653973051766
- 30
-0.0
- 11
-219.61447885646018
- 21
-371.12653973051766
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-219.61447885646018
- 20
-371.12653973051766
- 30
-0.0
- 11
-223.3655053434717
- 21
-367.3755132435061
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-223.3655053434717
- 20
-367.3755132435061
- 30
-0.0
- 11
-232.91357276495566
- 21
-367.3755132435061
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-232.91357276495566
- 20
-367.3755132435061
- 30
-0.0
- 11
-236.66459925196722
- 21
-371.1265397305176
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-236.66459925196722
- 20
-371.1265397305176
- 30
-0.0
- 11
-232.91357276495566
- 21
-371.1265397305176
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-247.23567389718156
- 20
-371.1265397305176
- 30
-0.0
- 11
-243.48464741017003
- 21
-371.1265397305176
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-243.48464741017003
- 20
-371.1265397305176
- 30
-0.0
- 11
-247.23567389718156
- 21
-367.3755132435061
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-247.23567389718156
- 20
-367.3755132435061
- 30
-0.0
- 11
-256.7837413186655
- 21
-367.3755132435061
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-256.7837413186655
- 20
-367.3755132435061
- 30
-0.0
- 11
-260.534767805677
- 21
-371.1265397305176
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-260.534767805677
- 20
-371.1265397305176
- 30
-0.0
- 11
-256.78374131866553
- 21
-371.1265397305176
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-199.35653374644173
- 20
-294.86468133077335
- 30
-0.0
- 11
-202.16745795672242
- 21
-304.5115649721751
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-202.16745795672242
- 20
-304.5115649721751
- 30
-0.0
- 11
-201.6874211876231
- 21
-304.651438845049
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-201.6874211876231
- 20
-304.651438845049
- 30
-0.0
- 11
-198.87649697734244
- 21
-295.0045552036471
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-198.87649697734244
- 20
-295.0045552036471
- 30
-0.0
- 11
-199.35653374644173
- 21
-294.86468133077335
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-192.67890790292464
- 20
-271.9475641500171
- 30
-0.0
- 11
-195.48983211320527
- 21
-281.5944477914189
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-195.48983211320527
- 20
-281.5944477914189
- 30
-0.0
- 11
-195.009795344106
- 21
-281.7343216642927
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-195.009795344106
- 20
-281.7343216642927
- 30
-0.0
- 11
-192.19887113382532
- 21
-272.087438022891
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-192.19887113382532
- 20
-272.087438022891
- 30
-0.0
- 11
-192.67890790292464
- 21
-271.9475641500171
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-195.48983211320518
- 20
-219.40555220858164
- 30
-0.0
- 11
-192.67890790292452
- 21
-229.0524358499834
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-192.67890790292452
- 20
-229.0524358499834
- 30
-0.0
- 11
-192.19887113382526
- 21
-228.91256197710956
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-192.19887113382526
- 20
-228.91256197710956
- 30
-0.0
- 11
-195.00979534410592
- 21
-219.2656783357078
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-195.00979534410592
- 20
-219.2656783357078
- 30
-0.0
- 11
-195.48983211320518
- 21
-219.40555220858164
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-202.16745795672222
- 20
-196.48843502782546
- 30
-0.0
- 11
-199.35653374644158
- 21
-206.13531866922722
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-199.35653374644158
- 20
-206.13531866922722
- 30
-0.0
- 11
-198.8764969773423
- 21
-205.99544479635338
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-198.8764969773423
- 20
-205.99544479635338
- 30
-0.0
- 11
-201.68742118762296
- 21
-196.34856115495162
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-201.68742118762296
- 20
-196.34856115495162
- 30
-0.0
- 11
-202.16745795672222
- 21
-196.48843502782546
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-256.7837413186651
- 20
-129.87346026948285
- 30
-0.0
- 11
-260.53476780567667
- 21
-129.87346026948285
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-260.53476780567667
- 20
-129.87346026948285
- 30
-0.0
- 11
-256.78374131866514
- 21
-133.6244867564944
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-256.78374131866514
- 20
-133.6244867564944
- 30
-0.0
- 11
-247.23567389718121
- 21
-133.6244867564944
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-247.23567389718121
+231.32222819470834
  20
-133.6244867564944
+378.6285927045407
  30
 0.0
  11
-243.48464741016966
+231.32222819470834
  21
-129.87346026948285
+369.87619756818043
  31
 0.0
   0
@@ -7027,15 +6315,15 @@ LINE
   8
 0
  10
-243.48464741016966
+231.32222819470834
  20
-129.87346026948285
+369.87619756818043
  30
 0.0
  11
-247.23567389718121
+248.82701846742887
  21
-129.87346026948285
+369.87619756818043
  31
 0.0
   0
@@ -7045,15 +6333,15 @@ LINE
   8
 0
  10
-232.91357276495532
+248.82701846742887
  20
-129.87346026948288
+369.87619756818043
  30
 0.0
  11
-236.66459925196685
+248.82701846742887
  21
-129.87346026948285
+378.6285927045407
  31
 0.0
   0
@@ -7063,15 +6351,15 @@ LINE
   8
 0
  10
-236.66459925196685
+202.10730572662035
  20
-129.87346026948285
+277.4879208023067
  30
 0.0
  11
-232.91357276495532
+207.1441052180734
  21
-133.62448675649443
+294.7738435039605
  31
 0.0
   0
@@ -7081,15 +6369,15 @@ LINE
   8
 0
  10
-232.91357276495532
+207.1441052180734
  20
-133.62448675649443
+294.7738435039605
  30
 0.0
  11
-223.36550534347137
+206.66406844897412
  21
-133.62448675649446
+294.9137173768343
  31
 0.0
   0
@@ -7099,15 +6387,15 @@ LINE
   8
 0
  10
-223.36550534347137
+206.66406844897412
  20
-133.62448675649446
+294.9137173768343
  30
 0.0
  11
-219.6144788564598
+201.62726895752107
  21
-129.8734602694829
+277.62779467518055
  31
 0.0
   0
@@ -7117,15 +6405,15 @@ LINE
   8
 0
  10
-219.6144788564598
+201.62726895752107
  20
-129.8734602694829
+277.62779467518055
  30
 0.0
  11
-223.36550534347137
+202.10730572662035
  21
-129.87346026948288
+277.4879208023067
  31
 0.0
   0
@@ -7135,15 +6423,15 @@ LINE
   8
 0
  10
-431.8798761616334
+207.14410521807326
  20
-371.12653973051744
+206.22615649604003
  30
 0.0
  11
-428.1288496746219
+202.10730572662024
  21
-371.12653973051744
+223.51207919769385
  31
 0.0
   0
@@ -7153,15 +6441,15 @@ LINE
   8
 0
  10
-428.1288496746219
+202.10730572662024
  20
-371.12653973051744
+223.51207919769385
  30
 0.0
  11
-431.8798761616334
+201.62726895752098
  21
-367.37551324350585
+223.37220532482002
  31
 0.0
   0
@@ -7171,15 +6459,15 @@ LINE
   8
 0
  10
-431.8798761616334
+201.62726895752098
  20
-367.37551324350585
+223.37220532482002
  30
 0.0
  11
-441.4279435831173
+206.66406844897395
  21
-367.37551324350585
+206.08628262316617
  31
 0.0
   0
@@ -7189,15 +6477,15 @@ LINE
   8
 0
  10
-441.4279435831173
+206.66406844897395
  20
-367.37551324350585
+206.08628262316617
  30
 0.0
  11
-445.17897007012886
+207.14410521807326
  21
-371.12653973051744
+206.22615649604003
  31
 0.0
   0
@@ -7207,15 +6495,15 @@ LINE
   8
 0
  10
-445.17897007012886
+248.8270184674285
  20
-371.12653973051744
+122.37140729545976
  30
 0.0
  11
-441.4279435831173
+248.82701846742856
  21
-371.12653973051744
+131.12380243182005
  31
 0.0
   0
@@ -7225,15 +6513,15 @@ LINE
   8
 0
  10
-455.7500447153432
+248.82701846742856
  20
-371.12653973051744
+131.12380243182005
  30
 0.0
  11
-451.9990182283317
+231.322228194708
  21
-371.12653973051744
+131.12380243182008
  31
 0.0
   0
@@ -7243,15 +6531,15 @@ LINE
   8
 0
  10
-451.9990182283317
+231.322228194708
  20
-371.12653973051744
+131.12380243182008
  30
 0.0
  11
-455.7500447153432
+231.32222819470798
  21
-367.37551324350585
+122.3714072954598
  31
 0.0
   0
@@ -7261,15 +6549,15 @@ LINE
   8
 0
  10
-455.7500447153432
+439.83659901287
  20
-367.37551324350585
+378.6285927045405
  30
 0.0
  11
-465.2981121368271
+439.83659901287
  21
-367.37551324350585
+369.87619756818015
  31
 0.0
   0
@@ -7279,15 +6567,15 @@ LINE
   8
 0
  10
-465.2981121368271
+439.83659901287
  20
-367.37551324350585
+369.87619756818015
  30
 0.0
  11
-469.0491386238387
+457.34138928559054
  21
-371.1265397305174
+369.87619756818015
  31
 0.0
   0
@@ -7297,15 +6585,15 @@ LINE
   8
 0
  10
-469.0491386238387
+457.34138928559054
  20
-371.1265397305174
+369.87619756818015
  30
 0.0
  11
-465.2981121368271
+457.34138928559054
  21
-371.12653973051744
+378.6285927045405
  31
 0.0
   0
diff --git a/rocolib/output/BoatWithServoStackBattery/graph-lasercutter.svg b/rocolib/output/BoatWithServoStackBattery/graph-lasercutter.svg
index 38207305db2e0b279eb564cc2be66e304c26876e..9a4bfc8d9e8ff096c8c0b351c040b168b52bb98f 100644
--- a/rocolib/output/BoatWithServoStackBattery/graph-lasercutter.svg
+++ b/rocolib/output/BoatWithServoStackBattery/graph-lasercutter.svg
@@ -51,7 +51,9 @@
   <line stroke="#888888" x1="89.65427803486146" x2="80.65427803486146" y1="7.500000000000001" y2="7.500000000000001"/>
   <line stroke="#888888" x1="80.65427803486146" x2="80.65427803486146" y1="7.500000000000001" y2="2.5000000000000004"/>
   <line stroke="#000000" x1="327.33180874014937" x2="266.3318087401493" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="327.33180874014937" x2="351.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
   <line stroke="#000000" x1="361.3318087401493" x2="351.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="361.3318087401493" x2="422.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
   <line stroke="#000000" x1="422.33180874014937" x2="422.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
   <line stroke="#000000" x1="266.3318087401493" x2="266.3318087401493" y1="135.50000000000003" y2="135.50000000000003"/>
   <line stroke="#000000" x1="327.33180874014937" x2="253.33180874014934" y1="135.50000000000003" y2="135.50000000000003"/>
@@ -88,10 +90,8 @@
   <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="422.33180874014937" x2="361.3318087401493" y1="75.36137800081471" y2="75.36137800081471"/>
   <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="422.33180874014937" x2="422.33180874014937" y1="75.36137800081471" y2="99.36137800081471"/>
   <line stroke="#000000" x1="361.3318087401493" x2="361.3318087401493" y1="39.22275600162939" y2="75.36137800081472"/>
+  <line stroke="#000000" x1="422.33180874014937" x2="361.3318087401493" y1="39.22275600162939" y2="39.22275600162939"/>
   <line stroke="#000000" x1="422.33180874014937" x2="422.33180874014937" y1="75.36137800081472" y2="39.22275600162939"/>
-  <line stroke="#000000" x1="361.3318087401493" x2="361.3318087401493" y1="29.222756001629396" y2="39.22275600162939"/>
-  <line stroke="#000000" x1="422.33180874014937" x2="361.3318087401493" y1="29.222756001629396" y2="29.222756001629396"/>
-  <line stroke="#000000" x1="422.33180874014937" x2="422.33180874014937" y1="39.22275600162939" y2="29.222756001629396"/>
   <line stroke="#000000" x1="432.33180874014937" x2="422.33180874014937" y1="75.36137800081471" y2="75.36137800081471"/>
   <line stroke="#000000" x1="432.33180874014937" x2="432.33180874014937" y1="99.36137800081471" y2="75.36137800081471"/>
   <line stroke="#000000" x1="422.33180874014937" x2="432.33180874014937" y1="99.36137800081471" y2="99.36137800081471"/>
@@ -102,9 +102,9 @@
   <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="422.33180874014937" x2="422.33180874014937" y1="205.50000000000003" y2="135.50000000000003"/>
   <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="422.33180874014937" x2="474.84617955831095" y1="135.50000000000003" y2="135.50000000000003"/>
   <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="422.33180874014937" x2="474.84617955831095" y1="205.50000000000003" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="422.33180874014937" x2="422.33180874014937" y1="127.99794702597693" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="474.84617955831095" x2="422.33180874014937" y1="127.99794702597693" y2="127.99794702597693"/>
-  <line stroke="#000000" x1="474.84617955831095" x2="474.84617955831095" y1="135.50000000000003" y2="127.99794702597693"/>
+  <line stroke="#000000" x1="422.33180874014937" x2="422.33180874014937" y1="117.99520972727949" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="474.84617955831095" x2="422.33180874014937" y1="117.99520972727949" y2="117.99520972727949"/>
+  <line stroke="#000000" x1="474.84617955831095" x2="474.84617955831095" y1="135.50000000000003" y2="117.99520972727949"/>
   <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="422.33180874014937" x2="489.5369564140486" y1="205.50000000000003" y2="185.91765779766357"/>
   <line stroke="#000000" x1="489.5369564140486" x2="474.84617955831095" y1="185.91765779766357" y2="135.50000000000003"/>
   <line stroke="#000000" x1="504.22773326978614" x2="489.5369564140486" y1="236.33531559532716" y2="185.91765779766357"/>
@@ -121,17 +121,21 @@
   <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="422.3318087401495" x2="422.33180874014937" y1="365.5000000000001" y2="295.5"/>
   <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="474.84617955831106" x2="422.3318087401495" y1="365.50000000000006" y2="365.5000000000001"/>
   <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="422.3318087401494" x2="266.3318087401493" y1="295.50000000000006" y2="295.50000000000017"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="422.3318087401495" x2="361.3318087401494" y1="365.5000000000001" y2="365.50000000000017"/>
   <line stroke="#000000" x1="351.3318087401494" x2="361.3318087401494" y1="365.50000000000017" y2="365.50000000000017"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="351.3318087401494" x2="327.3318087401494" y1="365.50000000000017" y2="365.50000000000017"/>
   <line stroke="#000000" x1="266.33180874014937" x2="327.3318087401494" y1="365.5000000000003" y2="365.50000000000017"/>
   <line stroke="#000000" x1="266.33180874014937" x2="266.33180874014937" y1="365.5000000000003" y2="365.5000000000003"/>
   <line stroke="#000000" x1="422.3318087401495" x2="422.3318087401495" y1="365.5000000000001" y2="365.5000000000001"/>
-  <line stroke="#000000" x1="361.3318087401494" x2="422.3318087401495" y1="365.50000000000017" y2="365.5000000000001"/>
   <line stroke="#000000" x1="351.3318087401494" x2="361.3318087401494" y1="365.50000000000017" y2="365.50000000000017"/>
   <line stroke="#000000" x1="253.33180874014937" x2="327.3318087401494" y1="365.5000000000003" y2="365.50000000000017"/>
   <line stroke="#000000" x1="253.33180874014937" x2="253.33180874014937" y1="365.5000000000003" y2="365.5000000000003"/>
   <line stroke="#000000" x1="327.3318087401494" x2="253.33180874014937" y1="365.50000000000017" y2="365.5000000000003"/>
   <line stroke="#000000" x1="361.3318087401494" x2="351.3318087401494" y1="365.50000000000017" y2="365.50000000000017"/>
   <line stroke="#000000" x1="422.3318087401495" x2="422.3318087401495" y1="365.5000000000001" y2="365.5000000000001"/>
+  <line stroke="#000000" x1="422.3318087401495" x2="422.3318087401495" y1="375.5000000000001" y2="365.5000000000001"/>
+  <line stroke="#000000" x1="361.3318087401494" x2="422.3318087401495" y1="375.50000000000017" y2="375.5000000000001"/>
+  <line stroke="#000000" x1="361.3318087401494" x2="361.3318087401494" y1="365.50000000000017" y2="375.50000000000017"/>
   <line stroke="#000000" x1="351.3318087401494" x2="351.3318087401494" y1="399.5000000000001" y2="365.50000000000017"/>
   <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="327.3318087401494" x2="327.3318087401495" y1="365.50000000000017" y2="399.5000000000001"/>
   <line stroke="#000000" x1="351.3318087401495" x2="351.3318087401494" y1="435.50000000000017" y2="399.5000000000001"/>
@@ -155,9 +159,9 @@
   <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="266.3318087401493" x2="266.33180874014937" y1="295.50000000000017" y2="365.5000000000002"/>
   <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="266.33180874014937" x2="213.81743792198782" y1="365.5000000000003" y2="365.5000000000003"/>
   <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="266.3318087401493" x2="213.81743792198782" y1="295.5000000000002" y2="365.5000000000003"/>
-  <line stroke="#000000" x1="266.33180874014937" x2="266.33180874014937" y1="373.00205297402334" y2="365.5000000000003"/>
-  <line stroke="#000000" x1="213.81743792198782" x2="266.33180874014937" y1="373.0020529740234" y2="373.00205297402334"/>
-  <line stroke="#000000" x1="213.81743792198782" x2="213.81743792198782" y1="365.5000000000003" y2="373.0020529740234"/>
+  <line stroke="#000000" x1="266.33180874014937" x2="266.33180874014937" y1="383.00479027272075" y2="365.5000000000003"/>
+  <line stroke="#000000" x1="213.81743792198782" x2="266.33180874014937" y1="383.00479027272087" y2="383.00479027272075"/>
+  <line stroke="#000000" x1="213.81743792198782" x2="213.81743792198782" y1="365.5000000000003" y2="383.00479027272087"/>
   <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="266.3318087401493" x2="199.12666106625016" y1="295.50000000000017" y2="315.08234220233675"/>
   <line stroke="#000000" x1="199.12666106625016" x2="213.81743792198782" y1="315.08234220233675" y2="365.5000000000003"/>
   <line stroke="#000000" x1="184.43588421051248" x2="199.12666106625016" y1="264.6646844046731" y2="315.08234220233675"/>
@@ -173,12 +177,12 @@
   <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="213.81743792198745" x2="266.3318087401492" y1="135.50000000000023" y2="205.50000000000017"/>
   <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="266.3318087401491" x2="266.33180874014926" y1="135.5000000000001" y2="205.50000000000017"/>
   <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="213.81743792198748" x2="266.3318087401491" y1="135.50000000000023" y2="135.5000000000001"/>
-  <line stroke="#000000" x1="213.81743792198745" x2="213.81743792198748" y1="127.99794702597715" y2="135.50000000000023"/>
-  <line stroke="#000000" x1="266.3318087401491" x2="213.81743792198745" y1="127.99794702597704" y2="127.99794702597715"/>
-  <line stroke="#000000" x1="266.3318087401491" x2="266.3318087401491" y1="135.5000000000001" y2="127.99794702597704"/>
-  <line stroke="#000000" x1="474.84617955831106" x2="474.84617955831106" y1="373.0020529740231" y2="365.50000000000006"/>
-  <line stroke="#000000" x1="422.3318087401495" x2="474.84617955831106" y1="373.00205297402323" y2="373.0020529740231"/>
-  <line stroke="#000000" x1="422.3318087401495" x2="422.3318087401495" y1="365.5000000000001" y2="373.00205297402323"/>
+  <line stroke="#000000" x1="213.81743792198742" x2="213.81743792198748" y1="117.9952097272797" y2="135.50000000000023"/>
+  <line stroke="#000000" x1="266.3318087401491" x2="213.81743792198742" y1="117.9952097272796" y2="117.9952097272797"/>
+  <line stroke="#000000" x1="266.3318087401491" x2="266.3318087401491" y1="135.5000000000001" y2="117.9952097272796"/>
+  <line stroke="#000000" x1="474.8461795583111" x2="474.84617955831106" y1="383.0047902727206" y2="365.50000000000006"/>
+  <line stroke="#000000" x1="422.3318087401495" x2="474.8461795583111" y1="383.00479027272064" y2="383.0047902727206"/>
+  <line stroke="#000000" x1="422.3318087401495" x2="422.3318087401495" y1="365.5000000000001" y2="383.00479027272064"/>
   <line stroke="#888888" x1="288.76362692196756" x2="277.1727178310585" y1="143.25" y2="143.25"/>
   <line stroke="#888888" x1="277.1727178310585" x2="277.1727178310585" y1="143.25" y2="142.75000000000003"/>
   <line stroke="#888888" x1="277.1727178310585" x2="288.76362692196756" y1="142.75000000000003" y2="142.75000000000003"/>
@@ -223,44 +227,31 @@
   <line stroke="#888888" x1="416.83180874014937" x2="416.83180874014937" y1="82.36137800081471" y2="92.36137800081471"/>
   <line stroke="#888888" x1="416.83180874014937" x2="410.83180874014937" y1="92.36137800081471" y2="92.36137800081471"/>
   <line stroke="#888888" x1="410.83180874014937" x2="410.83180874014937" y1="92.36137800081471" y2="82.36137800081471"/>
-  <line stroke="#888888" x1="411.24089964924025" x2="411.24089964924025" y1="31.722756001629396" y2="36.7227560016294"/>
-  <line stroke="#888888" x1="411.24089964924025" x2="400.1499905583311" y1="36.7227560016294" y2="36.7227560016294"/>
-  <line stroke="#888888" x1="400.1499905583311" x2="400.1499905583311" y1="36.7227560016294" y2="31.722756001629396"/>
-  <line stroke="#888888" x1="383.51362692196756" x2="383.51362692196756" y1="31.722756001629396" y2="36.7227560016294"/>
-  <line stroke="#888888" x1="383.51362692196756" x2="372.4227178310585" y1="36.7227560016294" y2="36.7227560016294"/>
-  <line stroke="#888888" x1="372.4227178310585" x2="372.4227178310585" y1="36.7227560016294" y2="31.722756001629396"/>
+  <line stroke="#888888" x1="383.76362692196756" x2="372.1727178310585" y1="46.9727560016294" y2="46.9727560016294"/>
+  <line stroke="#888888" x1="372.1727178310585" x2="372.1727178310585" y1="46.9727560016294" y2="46.4727560016294"/>
+  <line stroke="#888888" x1="372.1727178310585" x2="383.76362692196756" y1="46.4727560016294" y2="46.4727560016294"/>
+  <line stroke="#888888" x1="383.76362692196756" x2="383.76362692196756" y1="46.4727560016294" y2="46.9727560016294"/>
+  <line stroke="#888888" x1="411.49089964924025" x2="399.8999905583312" y1="46.9727560016294" y2="46.9727560016294"/>
+  <line stroke="#888888" x1="399.8999905583312" x2="399.8999905583312" y1="46.9727560016294" y2="46.4727560016294"/>
+  <line stroke="#888888" x1="399.8999905583312" x2="411.49089964924025" y1="46.4727560016294" y2="46.4727560016294"/>
+  <line stroke="#888888" x1="411.49089964924025" x2="411.49089964924025" y1="46.4727560016294" y2="46.9727560016294"/>
   <line stroke="#888888" x1="429.8318087401493" x2="424.83180874014937" y1="91.36137800081471" y2="91.36137800081471"/>
   <line stroke="#888888" x1="424.83180874014937" x2="424.83180874014937" y1="91.36137800081471" y2="83.36137800081471"/>
   <line stroke="#888888" x1="424.83180874014937" x2="429.8318087401493" y1="83.36137800081471" y2="83.36137800081471"/>
   <line stroke="#888888" x1="353.83180874014937" x2="358.83180874014937" y1="83.36137800081471" y2="83.36137800081471"/>
   <line stroke="#888888" x1="358.83180874014937" x2="358.83180874014937" y1="83.36137800081471" y2="91.36137800081471"/>
   <line stroke="#888888" x1="358.83180874014937" x2="353.83180874014937" y1="91.36137800081471" y2="91.36137800081471"/>
-  <line stroke="#888888" x1="465.29811213682694" x2="469.0491386238386" y1="129.8734602694827" y2="129.8734602694827"/>
-  <line stroke="#888888" x1="469.0491386238386" x2="465.29811213682694" y1="129.8734602694827" y2="133.62448675649426"/>
-  <line stroke="#888888" x1="465.29811213682694" x2="455.7500447153431" y1="133.62448675649426" y2="133.62448675649426"/>
-  <line stroke="#888888" x1="455.7500447153431" x2="451.9990182283316" y1="133.62448675649426" y2="129.8734602694827"/>
-  <line stroke="#888888" x1="451.9990182283316" x2="455.7500447153431" y1="129.8734602694827" y2="129.8734602694827"/>
-  <line stroke="#888888" x1="441.4279435831172" x2="445.17897007012874" y1="129.8734602694827" y2="129.8734602694827"/>
-  <line stroke="#888888" x1="445.17897007012874" x2="441.4279435831172" y1="129.8734602694827" y2="133.62448675649426"/>
-  <line stroke="#888888" x1="441.4279435831172" x2="431.8798761616332" y1="133.62448675649426" y2="133.62448675649426"/>
-  <line stroke="#888888" x1="431.8798761616332" x2="428.1288496746218" y1="133.62448675649426" y2="129.8734602694827"/>
-  <line stroke="#888888" x1="428.1288496746218" x2="431.8798761616332" y1="129.8734602694827" y2="129.8734602694827"/>
-  <line stroke="#888888" x1="489.307083733857" x2="486.4961595235763" y1="206.13531866922696" y2="196.48843502782523"/>
-  <line stroke="#888888" x1="486.4961595235763" x2="486.9761962926755" y1="196.48843502782523" y2="196.3485611549514"/>
-  <line stroke="#888888" x1="486.9761962926755" x2="489.78712050295627" y1="196.3485611549514" y2="205.99544479635315"/>
-  <line stroke="#888888" x1="489.78712050295627" x2="489.307083733857" y1="205.99544479635315" y2="206.13531866922696"/>
-  <line stroke="#888888" x1="495.9847095773741" x2="493.1737853670934" y1="229.05243584998314" y2="219.40555220858138"/>
-  <line stroke="#888888" x1="493.1737853670934" x2="493.6538221361927" y1="219.40555220858138" y2="219.26567833570755"/>
-  <line stroke="#888888" x1="493.6538221361927" x2="496.4647463464733" y1="219.26567833570755" y2="228.9125619771093"/>
-  <line stroke="#888888" x1="496.4647463464733" x2="495.9847095773741" y1="228.9125619771093" y2="229.05243584998314"/>
-  <line stroke="#888888" x1="493.17378536709344" x2="495.9847095773741" y1="281.5944477914187" y2="271.94756415001694"/>
-  <line stroke="#888888" x1="495.9847095773741" x2="496.4647463464733" y1="271.94756415001694" y2="272.0874380228908"/>
-  <line stroke="#888888" x1="496.4647463464733" x2="493.6538221361927" y1="272.0874380228908" y2="281.7343216642925"/>
-  <line stroke="#888888" x1="493.6538221361927" x2="493.17378536709344" y1="281.7343216642925" y2="281.5944477914187"/>
-  <line stroke="#888888" x1="486.49615952357635" x2="489.30708373385704" y1="304.5115649721748" y2="294.86468133077307"/>
-  <line stroke="#888888" x1="489.30708373385704" x2="489.78712050295627" y1="294.86468133077307" y2="295.0045552036469"/>
-  <line stroke="#888888" x1="489.78712050295627" x2="486.97619629267564" y1="295.0045552036469" y2="304.6514388450487"/>
-  <line stroke="#888888" x1="486.97619629267564" x2="486.49615952357635" y1="304.6514388450487" y2="304.5115649721748"/>
+  <line stroke="#888888" x1="457.3413892855904" x2="457.3413892855904" y1="122.37140729545962" y2="131.12380243181985"/>
+  <line stroke="#888888" x1="457.3413892855904" x2="439.8365990128699" y1="131.12380243181985" y2="131.12380243181988"/>
+  <line stroke="#888888" x1="439.8365990128699" x2="439.8365990128699" y1="131.12380243181988" y2="122.37140729545962"/>
+  <line stroke="#888888" x1="486.5563117536783" x2="481.5195122622253" y1="223.5120791976936" y2="206.22615649603978"/>
+  <line stroke="#888888" x1="481.5195122622253" x2="481.99954903132453" y1="206.22615649603978" y2="206.08628262316594"/>
+  <line stroke="#888888" x1="481.99954903132453" x2="487.0363485227776" y1="206.08628262316594" y2="223.37220532481973"/>
+  <line stroke="#888888" x1="487.0363485227776" x2="486.5563117536783" y1="223.37220532481973" y2="223.5120791976936"/>
+  <line stroke="#888888" x1="481.5195122622253" x2="486.55631175367836" y1="294.77384350396034" y2="277.4879208023065"/>
+  <line stroke="#888888" x1="486.55631175367836" x2="487.0363485227776" y1="277.4879208023065" y2="277.6277946751803"/>
+  <line stroke="#888888" x1="487.0363485227776" x2="481.9995490313246" y1="277.6277946751803" y2="294.91371737683414"/>
+  <line stroke="#888888" x1="481.9995490313246" x2="481.5195122622253" y1="294.91371737683414" y2="294.77384350396034"/>
   <line stroke="#888888" x1="304.8999905583312" x2="316.4908996492403" y1="357.7500000000002" y2="357.75000000000017"/>
   <line stroke="#888888" x1="316.4908996492403" x2="316.4908996492403" y1="357.75000000000017" y2="358.25000000000017"/>
   <line stroke="#888888" x1="316.4908996492403" x2="304.8999905583312" y1="358.25000000000017" y2="358.25000000000017"/>
@@ -269,14 +260,12 @@
   <line stroke="#888888" x1="288.7636269219676" x2="288.7636269219676" y1="357.7500000000002" y2="358.25000000000017"/>
   <line stroke="#888888" x1="288.7636269219676" x2="277.1727178310585" y1="358.25000000000017" y2="358.25000000000017"/>
   <line stroke="#888888" x1="277.1727178310585" x2="277.1727178310585" y1="358.25000000000017" y2="357.7500000000002"/>
-  <line stroke="#888888" x1="399.89999055833124" x2="411.49089964924036" y1="357.75000000000017" y2="357.7500000000001"/>
-  <line stroke="#888888" x1="411.49089964924036" x2="411.49089964924036" y1="357.7500000000001" y2="358.2500000000001"/>
-  <line stroke="#888888" x1="411.49089964924036" x2="399.89999055833124" y1="358.2500000000001" y2="358.25000000000017"/>
-  <line stroke="#888888" x1="399.89999055833124" x2="399.89999055833124" y1="358.25000000000017" y2="357.75000000000017"/>
-  <line stroke="#888888" x1="372.17271783105855" x2="383.7636269219676" y1="357.75000000000017" y2="357.75000000000017"/>
-  <line stroke="#888888" x1="383.7636269219676" x2="383.7636269219676" y1="357.75000000000017" y2="358.25000000000017"/>
-  <line stroke="#888888" x1="383.7636269219676" x2="372.17271783105855" y1="358.25000000000017" y2="358.25000000000017"/>
-  <line stroke="#888888" x1="372.17271783105855" x2="372.17271783105855" y1="358.25000000000017" y2="357.75000000000017"/>
+  <line stroke="#888888" x1="372.42271783105855" x2="372.42271783105855" y1="373.0000000000001" y2="368.0000000000001"/>
+  <line stroke="#888888" x1="372.42271783105855" x2="383.5136269219676" y1="368.0000000000001" y2="368.0000000000001"/>
+  <line stroke="#888888" x1="383.5136269219676" x2="383.51362692196767" y1="368.0000000000001" y2="373.0000000000001"/>
+  <line stroke="#888888" x1="400.14999055833124" x2="400.14999055833124" y1="373.0000000000001" y2="368.0000000000001"/>
+  <line stroke="#888888" x1="400.14999055833124" x2="411.24089964924036" y1="368.0000000000001" y2="368.00000000000006"/>
+  <line stroke="#888888" x1="411.24089964924036" x2="411.2408996492404" y1="368.00000000000006" y2="373.00000000000006"/>
   <line stroke="#888888" x1="343.5818087401495" x2="343.5818087401495" y1="388.4166666666668" y2="376.5833333333335"/>
   <line stroke="#888888" x1="343.5818087401495" x2="344.0818087401495" y1="376.5833333333335" y2="376.5833333333335"/>
   <line stroke="#888888" x1="344.0818087401495" x2="344.0818087401495" y1="376.5833333333335" y2="388.4166666666668"/>
@@ -304,52 +293,23 @@
   <line stroke="#888888" x1="255.8318087401494" x2="260.8318087401494" y1="376.8333333333335" y2="376.8333333333335"/>
   <line stroke="#888888" x1="260.8318087401494" x2="260.8318087401494" y1="376.8333333333335" y2="388.16666666666686"/>
   <line stroke="#888888" x1="260.8318087401494" x2="255.8318087401494" y1="388.16666666666686" y2="388.16666666666686"/>
-  <line stroke="#888888" x1="223.36550534347174" x2="219.61447885646018" y1="371.12653973051766" y2="371.12653973051766"/>
-  <line stroke="#888888" x1="219.61447885646018" x2="223.3655053434717" y1="371.12653973051766" y2="367.3755132435061"/>
-  <line stroke="#888888" x1="223.3655053434717" x2="232.91357276495566" y1="367.3755132435061" y2="367.3755132435061"/>
-  <line stroke="#888888" x1="232.91357276495566" x2="236.66459925196722" y1="367.3755132435061" y2="371.1265397305176"/>
-  <line stroke="#888888" x1="236.66459925196722" x2="232.91357276495566" y1="371.1265397305176" y2="371.1265397305176"/>
-  <line stroke="#888888" x1="247.23567389718156" x2="243.48464741017003" y1="371.1265397305176" y2="371.1265397305176"/>
-  <line stroke="#888888" x1="243.48464741017003" x2="247.23567389718156" y1="371.1265397305176" y2="367.3755132435061"/>
-  <line stroke="#888888" x1="247.23567389718156" x2="256.7837413186655" y1="367.3755132435061" y2="367.3755132435061"/>
-  <line stroke="#888888" x1="256.7837413186655" x2="260.534767805677" y1="367.3755132435061" y2="371.1265397305176"/>
-  <line stroke="#888888" x1="260.534767805677" x2="256.78374131866553" y1="371.1265397305176" y2="371.1265397305176"/>
-  <line stroke="#888888" x1="199.35653374644173" x2="202.16745795672242" y1="294.86468133077335" y2="304.5115649721751"/>
-  <line stroke="#888888" x1="202.16745795672242" x2="201.6874211876231" y1="304.5115649721751" y2="304.651438845049"/>
-  <line stroke="#888888" x1="201.6874211876231" x2="198.87649697734244" y1="304.651438845049" y2="295.0045552036471"/>
-  <line stroke="#888888" x1="198.87649697734244" x2="199.35653374644173" y1="295.0045552036471" y2="294.86468133077335"/>
-  <line stroke="#888888" x1="192.67890790292464" x2="195.48983211320527" y1="271.9475641500171" y2="281.5944477914189"/>
-  <line stroke="#888888" x1="195.48983211320527" x2="195.009795344106" y1="281.5944477914189" y2="281.7343216642927"/>
-  <line stroke="#888888" x1="195.009795344106" x2="192.19887113382532" y1="281.7343216642927" y2="272.087438022891"/>
-  <line stroke="#888888" x1="192.19887113382532" x2="192.67890790292464" y1="272.087438022891" y2="271.9475641500171"/>
-  <line stroke="#888888" x1="195.48983211320518" x2="192.67890790292452" y1="219.40555220858164" y2="229.0524358499834"/>
-  <line stroke="#888888" x1="192.67890790292452" x2="192.19887113382526" y1="229.0524358499834" y2="228.91256197710956"/>
-  <line stroke="#888888" x1="192.19887113382526" x2="195.00979534410592" y1="228.91256197710956" y2="219.2656783357078"/>
-  <line stroke="#888888" x1="195.00979534410592" x2="195.48983211320518" y1="219.2656783357078" y2="219.40555220858164"/>
-  <line stroke="#888888" x1="202.16745795672222" x2="199.35653374644158" y1="196.48843502782546" y2="206.13531866922722"/>
-  <line stroke="#888888" x1="199.35653374644158" x2="198.8764969773423" y1="206.13531866922722" y2="205.99544479635338"/>
-  <line stroke="#888888" x1="198.8764969773423" x2="201.68742118762296" y1="205.99544479635338" y2="196.34856115495162"/>
-  <line stroke="#888888" x1="201.68742118762296" x2="202.16745795672222" y1="196.34856115495162" y2="196.48843502782546"/>
-  <line stroke="#888888" x1="256.7837413186651" x2="260.53476780567667" y1="129.87346026948285" y2="129.87346026948285"/>
-  <line stroke="#888888" x1="260.53476780567667" x2="256.78374131866514" y1="129.87346026948285" y2="133.6244867564944"/>
-  <line stroke="#888888" x1="256.78374131866514" x2="247.23567389718121" y1="133.6244867564944" y2="133.6244867564944"/>
-  <line stroke="#888888" x1="247.23567389718121" x2="243.48464741016966" y1="133.6244867564944" y2="129.87346026948285"/>
-  <line stroke="#888888" x1="243.48464741016966" x2="247.23567389718121" y1="129.87346026948285" y2="129.87346026948285"/>
-  <line stroke="#888888" x1="232.91357276495532" x2="236.66459925196685" y1="129.87346026948288" y2="129.87346026948285"/>
-  <line stroke="#888888" x1="236.66459925196685" x2="232.91357276495532" y1="129.87346026948285" y2="133.62448675649443"/>
-  <line stroke="#888888" x1="232.91357276495532" x2="223.36550534347137" y1="133.62448675649443" y2="133.62448675649446"/>
-  <line stroke="#888888" x1="223.36550534347137" x2="219.6144788564598" y1="133.62448675649446" y2="129.8734602694829"/>
-  <line stroke="#888888" x1="219.6144788564598" x2="223.36550534347137" y1="129.8734602694829" y2="129.87346026948288"/>
-  <line stroke="#888888" x1="431.8798761616334" x2="428.1288496746219" y1="371.12653973051744" y2="371.12653973051744"/>
-  <line stroke="#888888" x1="428.1288496746219" x2="431.8798761616334" y1="371.12653973051744" y2="367.37551324350585"/>
-  <line stroke="#888888" x1="431.8798761616334" x2="441.4279435831173" y1="367.37551324350585" y2="367.37551324350585"/>
-  <line stroke="#888888" x1="441.4279435831173" x2="445.17897007012886" y1="367.37551324350585" y2="371.12653973051744"/>
-  <line stroke="#888888" x1="445.17897007012886" x2="441.4279435831173" y1="371.12653973051744" y2="371.12653973051744"/>
-  <line stroke="#888888" x1="455.7500447153432" x2="451.9990182283317" y1="371.12653973051744" y2="371.12653973051744"/>
-  <line stroke="#888888" x1="451.9990182283317" x2="455.7500447153432" y1="371.12653973051744" y2="367.37551324350585"/>
-  <line stroke="#888888" x1="455.7500447153432" x2="465.2981121368271" y1="367.37551324350585" y2="367.37551324350585"/>
-  <line stroke="#888888" x1="465.2981121368271" x2="469.0491386238387" y1="367.37551324350585" y2="371.1265397305174"/>
-  <line stroke="#888888" x1="469.0491386238387" x2="465.2981121368271" y1="371.1265397305174" y2="371.12653973051744"/>
+  <line stroke="#888888" x1="231.32222819470834" x2="231.32222819470834" y1="378.6285927045407" y2="369.87619756818043"/>
+  <line stroke="#888888" x1="231.32222819470834" x2="248.82701846742887" y1="369.87619756818043" y2="369.87619756818043"/>
+  <line stroke="#888888" x1="248.82701846742887" x2="248.82701846742887" y1="369.87619756818043" y2="378.6285927045407"/>
+  <line stroke="#888888" x1="202.10730572662035" x2="207.1441052180734" y1="277.4879208023067" y2="294.7738435039605"/>
+  <line stroke="#888888" x1="207.1441052180734" x2="206.66406844897412" y1="294.7738435039605" y2="294.9137173768343"/>
+  <line stroke="#888888" x1="206.66406844897412" x2="201.62726895752107" y1="294.9137173768343" y2="277.62779467518055"/>
+  <line stroke="#888888" x1="201.62726895752107" x2="202.10730572662035" y1="277.62779467518055" y2="277.4879208023067"/>
+  <line stroke="#888888" x1="207.14410521807326" x2="202.10730572662024" y1="206.22615649604003" y2="223.51207919769385"/>
+  <line stroke="#888888" x1="202.10730572662024" x2="201.62726895752098" y1="223.51207919769385" y2="223.37220532482002"/>
+  <line stroke="#888888" x1="201.62726895752098" x2="206.66406844897395" y1="223.37220532482002" y2="206.08628262316617"/>
+  <line stroke="#888888" x1="206.66406844897395" x2="207.14410521807326" y1="206.08628262316617" y2="206.22615649604003"/>
+  <line stroke="#888888" x1="248.8270184674285" x2="248.82701846742856" y1="122.37140729545976" y2="131.12380243182005"/>
+  <line stroke="#888888" x1="248.82701846742856" x2="231.322228194708" y1="131.12380243182005" y2="131.12380243182008"/>
+  <line stroke="#888888" x1="231.322228194708" x2="231.32222819470798" y1="131.12380243182008" y2="122.3714072954598"/>
+  <line stroke="#888888" x1="439.83659901287" x2="439.83659901287" y1="378.6285927045405" y2="369.87619756818015"/>
+  <line stroke="#888888" x1="439.83659901287" x2="457.34138928559054" y1="369.87619756818015" y2="369.87619756818015"/>
+  <line stroke="#888888" x1="457.34138928559054" x2="457.34138928559054" y1="369.87619756818015" y2="378.6285927045405"/>
   <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="551.3550614105758" x2="612.3550614105757" y1="123.50000000000001" y2="123.50000000000001"/>
   <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="612.3550614105757" x2="612.3550614105757" y1="123.50000000000001" y2="147.5"/>
   <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="612.3550614105757" x2="551.3550614105758" y1="147.5" y2="147.5"/>
diff --git a/rocolib/output/BoatWithServoStackBattery/graph-model.png b/rocolib/output/BoatWithServoStackBattery/graph-model.png
index a8df56288589bef4bd0d8bdfa7924508830fc08a..092685693d941fad3eae3c5d43726216f16bbda1 100644
Binary files a/rocolib/output/BoatWithServoStackBattery/graph-model.png and b/rocolib/output/BoatWithServoStackBattery/graph-model.png differ
diff --git a/rocolib/output/BoatWithServoStackBattery/graph-model.stl b/rocolib/output/BoatWithServoStackBattery/graph-model.stl
index 36f2b431f35da0306c753d74e2cca5ee66d9fe79..ea1fc435fbf24d74e6fe0dd215d72973e5af6423 100644
--- a/rocolib/output/BoatWithServoStackBattery/graph-model.stl
+++ b/rocolib/output/BoatWithServoStackBattery/graph-model.stl
@@ -309,266 +309,266 @@ endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0850 -0.0340 0.0000
-vertex 0.0610 -0.0340 0.0000
-vertex 0.0610 -0.0700 0.0000
+vertex 0.0850 -0.0335 -0.0059
+vertex 0.0610 -0.0335 -0.0059
+vertex 0.0610 -0.0689 -0.0122
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0610 -0.0700 0.0000
-vertex 0.0850 -0.0700 0.0000
-vertex 0.0850 -0.0340 0.0000
+vertex 0.0610 -0.0689 -0.0122
+vertex 0.0850 -0.0689 -0.0122
+vertex 0.0850 -0.0335 -0.0059
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0610 -0.0340 -0.0900
-vertex 0.0850 -0.0340 -0.0900
-vertex 0.0850 -0.0700 -0.0900
+vertex 0.0610 -0.0335 -0.0841
+vertex 0.0850 -0.0335 -0.0841
+vertex 0.0850 -0.0689 -0.0778
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0850 -0.0700 -0.0900
-vertex 0.0610 -0.0700 -0.0900
-vertex 0.0610 -0.0340 -0.0900
+vertex 0.0850 -0.0689 -0.0778
+vertex 0.0610 -0.0689 -0.0778
+vertex 0.0610 -0.0335 -0.0841
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0610 -0.0700 0.0450
-vertex 0.0850 -0.0700 0.0450
-vertex 0.0850 -0.0700 0.0000
+vertex 0.0610 -0.0768 0.0322
+vertex 0.0850 -0.0768 0.0322
+vertex 0.0850 -0.0689 -0.0122
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0850 -0.0700 0.0000
-vertex 0.0610 -0.0700 0.0000
-vertex 0.0610 -0.0700 0.0450
+vertex 0.0850 -0.0689 -0.0122
+vertex 0.0610 -0.0689 -0.0122
+vertex 0.0610 -0.0768 0.0322
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0850 -0.0340 -0.0000
-vertex 0.0850 -0.0230 -0.0150
-vertex 0.0850 -0.0110 -0.0150
+vertex 0.0850 -0.0335 -0.0059
+vertex 0.0850 -0.0200 -0.0188
+vertex 0.0850 -0.0082 -0.0167
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0850 -0.0230 -0.0150
-vertex 0.0850 -0.0340 -0.0000
-vertex 0.0850 -0.0340 -0.0200
+vertex 0.0850 -0.0200 -0.0188
+vertex 0.0850 -0.0335 -0.0059
+vertex 0.0850 -0.0300 -0.0256
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
 vertex 0.0850 0.0000 -0.0000
-vertex 0.0850 -0.0110 -0.0150
-vertex 0.0850 0.0000 -0.0200
+vertex 0.0850 -0.0082 -0.0167
+vertex 0.0850 0.0035 -0.0197
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0850 -0.0110 -0.0150
+vertex 0.0850 -0.0082 -0.0167
 vertex 0.0850 0.0000 -0.0000
-vertex 0.0850 -0.0340 -0.0000
+vertex 0.0850 -0.0335 -0.0059
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0850 -0.0230 -0.0190
-vertex 0.0850 -0.0340 -0.0200
-vertex 0.0850 0.0000 -0.0200
+vertex 0.0850 -0.0194 -0.0227
+vertex 0.0850 -0.0300 -0.0256
+vertex 0.0850 0.0035 -0.0197
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0850 -0.0340 -0.0200
-vertex 0.0850 -0.0230 -0.0190
-vertex 0.0850 -0.0230 -0.0150
+vertex 0.0850 -0.0300 -0.0256
+vertex 0.0850 -0.0194 -0.0227
+vertex 0.0850 -0.0200 -0.0188
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0850 -0.0110 -0.0190
-vertex 0.0850 0.0000 -0.0200
-vertex 0.0850 -0.0110 -0.0150
+vertex 0.0850 -0.0075 -0.0206
+vertex 0.0850 0.0035 -0.0197
+vertex 0.0850 -0.0082 -0.0167
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0850 0.0000 -0.0200
-vertex 0.0850 -0.0110 -0.0190
-vertex 0.0850 -0.0230 -0.0190
+vertex 0.0850 0.0035 -0.0197
+vertex 0.0850 -0.0075 -0.0206
+vertex 0.0850 -0.0194 -0.0227
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0850 -0.0340 -0.0200
-vertex 0.0845 -0.0230 -0.0200
-vertex 0.0845 -0.0110 -0.0200
+vertex 0.0850 -0.0300 -0.0256
+vertex 0.0845 -0.0192 -0.0237
+vertex 0.0845 -0.0074 -0.0216
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0845 -0.0230 -0.0200
-vertex 0.0850 -0.0340 -0.0200
-vertex 0.0610 -0.0340 -0.0200
+vertex 0.0845 -0.0192 -0.0237
+vertex 0.0850 -0.0300 -0.0256
+vertex 0.0610 -0.0300 -0.0256
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0850 0.0000 -0.0200
-vertex 0.0845 -0.0110 -0.0200
-vertex 0.0615 -0.0110 -0.0200
+vertex 0.0850 0.0035 -0.0197
+vertex 0.0845 -0.0074 -0.0216
+vertex 0.0615 -0.0074 -0.0216
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0845 -0.0110 -0.0200
-vertex 0.0850 0.0000 -0.0200
-vertex 0.0850 -0.0340 -0.0200
+vertex 0.0845 -0.0074 -0.0216
+vertex 0.0850 0.0035 -0.0197
+vertex 0.0850 -0.0300 -0.0256
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0615 -0.0230 -0.0200
-vertex 0.0610 -0.0340 -0.0200
-vertex 0.0610 0.0000 -0.0200
+vertex 0.0615 -0.0192 -0.0237
+vertex 0.0610 -0.0300 -0.0256
+vertex 0.0610 0.0035 -0.0197
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0610 -0.0340 -0.0200
-vertex 0.0615 -0.0230 -0.0200
-vertex 0.0845 -0.0230 -0.0200
+vertex 0.0610 -0.0300 -0.0256
+vertex 0.0615 -0.0192 -0.0237
+vertex 0.0845 -0.0192 -0.0237
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0615 -0.0110 -0.0200
-vertex 0.0610 0.0000 -0.0200
-vertex 0.0850 0.0000 -0.0200
+vertex 0.0615 -0.0074 -0.0216
+vertex 0.0610 0.0035 -0.0197
+vertex 0.0850 0.0035 -0.0197
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0610 0.0000 -0.0200
-vertex 0.0615 -0.0110 -0.0200
-vertex 0.0615 -0.0230 -0.0200
+vertex 0.0610 0.0035 -0.0197
+vertex 0.0615 -0.0074 -0.0216
+vertex 0.0615 -0.0192 -0.0237
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0610 -0.0340 -0.0200
-vertex 0.0610 -0.0230 -0.0150
-vertex 0.0610 -0.0230 -0.0190
+vertex 0.0610 -0.0300 -0.0256
+vertex 0.0610 -0.0200 -0.0188
+vertex 0.0610 -0.0194 -0.0227
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0610 -0.0230 -0.0150
-vertex 0.0610 -0.0340 -0.0200
-vertex 0.0610 -0.0340 0.0000
+vertex 0.0610 -0.0200 -0.0188
+vertex 0.0610 -0.0300 -0.0256
+vertex 0.0610 -0.0335 -0.0059
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0610 -0.0340 -0.0200
-vertex 0.0610 -0.0230 -0.0190
-vertex 0.0610 -0.0110 -0.0190
+vertex 0.0610 -0.0300 -0.0256
+vertex 0.0610 -0.0194 -0.0227
+vertex 0.0610 -0.0075 -0.0206
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0610 0.0000 -0.0200
-vertex 0.0610 -0.0110 -0.0190
-vertex 0.0610 -0.0110 -0.0150
+vertex 0.0610 0.0035 -0.0197
+vertex 0.0610 -0.0075 -0.0206
+vertex 0.0610 -0.0082 -0.0167
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0610 -0.0110 -0.0190
-vertex 0.0610 0.0000 -0.0200
-vertex 0.0610 -0.0340 -0.0200
+vertex 0.0610 -0.0075 -0.0206
+vertex 0.0610 0.0035 -0.0197
+vertex 0.0610 -0.0300 -0.0256
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0610 0.0000 -0.0200
-vertex 0.0610 -0.0110 -0.0150
-vertex 0.0610 0.0000 0.0000
+vertex 0.0610 0.0035 -0.0197
+vertex 0.0610 -0.0082 -0.0167
+vertex 0.0610 0.0000 -0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0610 -0.0230 -0.0150
-vertex 0.0610 -0.0215 -0.0070
-vertex 0.0610 -0.0110 -0.0150
+vertex 0.0610 -0.0200 -0.0188
+vertex 0.0610 -0.0200 -0.0106
+vertex 0.0610 -0.0082 -0.0167
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0610 -0.0215 -0.0070
-vertex 0.0610 -0.0340 0.0000
-vertex 0.0610 -0.0215 -0.0030
+vertex 0.0610 -0.0200 -0.0106
+vertex 0.0610 -0.0335 -0.0059
+vertex 0.0610 -0.0207 -0.0067
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0610 -0.0340 0.0000
-vertex 0.0610 -0.0215 -0.0070
-vertex 0.0610 -0.0230 -0.0150
+vertex 0.0610 -0.0335 -0.0059
+vertex 0.0610 -0.0200 -0.0106
+vertex 0.0610 -0.0200 -0.0188
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0610 -0.0215 -0.0030
-vertex 0.0610 -0.0340 0.0000
-vertex 0.0610 0.0000 0.0000
+vertex 0.0610 -0.0207 -0.0067
+vertex 0.0610 -0.0335 -0.0059
+vertex 0.0610 0.0000 -0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0610 -0.0125 -0.0070
-vertex 0.0610 -0.0125 -0.0030
-vertex 0.0610 0.0000 0.0000
+vertex 0.0610 -0.0111 -0.0091
+vertex 0.0610 -0.0118 -0.0051
+vertex 0.0610 0.0000 -0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0610 0.0000 0.0000
-vertex 0.0610 -0.0125 -0.0030
-vertex 0.0610 -0.0215 -0.0030
+vertex 0.0610 0.0000 -0.0000
+vertex 0.0610 -0.0118 -0.0051
+vertex 0.0610 -0.0207 -0.0067
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0610 -0.0125 -0.0070
-vertex 0.0610 0.0000 0.0000
-vertex 0.0610 -0.0110 -0.0150
+vertex 0.0610 -0.0111 -0.0091
+vertex 0.0610 0.0000 -0.0000
+vertex 0.0610 -0.0082 -0.0167
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0610 -0.0215 -0.0070
-vertex 0.0610 -0.0125 -0.0070
-vertex 0.0610 -0.0110 -0.0150
+vertex 0.0610 -0.0200 -0.0106
+vertex 0.0610 -0.0111 -0.0091
+vertex 0.0610 -0.0082 -0.0167
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
 vertex 0.0610 0.0000 0.0000
-vertex 0.0610 -0.0340 0.0000
-vertex 0.0850 -0.0340 0.0000
+vertex 0.0610 -0.0335 -0.0059
+vertex 0.0850 -0.0335 -0.0059
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0850 -0.0340 0.0000
+vertex 0.0850 -0.0335 -0.0059
 vertex 0.0850 0.0000 0.0000
 vertex 0.0610 0.0000 0.0000
 endloop
@@ -576,216 +576,216 @@ endfacet
 facet normal 0 0 0
 outer loop
 vertex 0.0850 0.0000 -0.0900
-vertex 0.0850 -0.0110 -0.0750
-vertex 0.0850 -0.0230 -0.0750
+vertex 0.0850 -0.0082 -0.0733
+vertex 0.0850 -0.0200 -0.0712
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0850 -0.0110 -0.0750
+vertex 0.0850 -0.0082 -0.0733
 vertex 0.0850 0.0000 -0.0900
-vertex 0.0850 0.0000 -0.0700
+vertex 0.0850 0.0035 -0.0703
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0850 -0.0340 -0.0900
-vertex 0.0850 -0.0230 -0.0750
-vertex 0.0850 -0.0340 -0.0700
+vertex 0.0850 -0.0335 -0.0841
+vertex 0.0850 -0.0200 -0.0712
+vertex 0.0850 -0.0300 -0.0644
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0850 -0.0230 -0.0750
-vertex 0.0850 -0.0340 -0.0900
+vertex 0.0850 -0.0200 -0.0712
+vertex 0.0850 -0.0335 -0.0841
 vertex 0.0850 0.0000 -0.0900
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0850 -0.0110 -0.0710
-vertex 0.0850 0.0000 -0.0700
-vertex 0.0850 -0.0340 -0.0700
+vertex 0.0850 -0.0075 -0.0694
+vertex 0.0850 0.0035 -0.0703
+vertex 0.0850 -0.0300 -0.0644
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0850 0.0000 -0.0700
-vertex 0.0850 -0.0110 -0.0710
-vertex 0.0850 -0.0110 -0.0750
+vertex 0.0850 0.0035 -0.0703
+vertex 0.0850 -0.0075 -0.0694
+vertex 0.0850 -0.0082 -0.0733
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0850 -0.0230 -0.0710
-vertex 0.0850 -0.0340 -0.0700
-vertex 0.0850 -0.0230 -0.0750
+vertex 0.0850 -0.0194 -0.0673
+vertex 0.0850 -0.0300 -0.0644
+vertex 0.0850 -0.0200 -0.0712
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0850 -0.0340 -0.0700
-vertex 0.0850 -0.0230 -0.0710
-vertex 0.0850 -0.0110 -0.0710
+vertex 0.0850 -0.0300 -0.0644
+vertex 0.0850 -0.0194 -0.0673
+vertex 0.0850 -0.0075 -0.0694
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0850 0.0000 -0.0700
-vertex 0.0845 -0.0110 -0.0700
-vertex 0.0845 -0.0230 -0.0700
+vertex 0.0850 0.0035 -0.0703
+vertex 0.0845 -0.0074 -0.0684
+vertex 0.0845 -0.0192 -0.0663
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0845 -0.0110 -0.0700
-vertex 0.0850 0.0000 -0.0700
-vertex 0.0610 0.0000 -0.0700
+vertex 0.0845 -0.0074 -0.0684
+vertex 0.0850 0.0035 -0.0703
+vertex 0.0610 0.0035 -0.0703
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0850 -0.0340 -0.0700
-vertex 0.0845 -0.0230 -0.0700
-vertex 0.0615 -0.0230 -0.0700
+vertex 0.0850 -0.0300 -0.0644
+vertex 0.0845 -0.0192 -0.0663
+vertex 0.0615 -0.0192 -0.0663
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0845 -0.0230 -0.0700
-vertex 0.0850 -0.0340 -0.0700
-vertex 0.0850 0.0000 -0.0700
+vertex 0.0845 -0.0192 -0.0663
+vertex 0.0850 -0.0300 -0.0644
+vertex 0.0850 0.0035 -0.0703
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0615 -0.0110 -0.0700
-vertex 0.0610 0.0000 -0.0700
-vertex 0.0610 -0.0340 -0.0700
+vertex 0.0615 -0.0074 -0.0684
+vertex 0.0610 0.0035 -0.0703
+vertex 0.0610 -0.0300 -0.0644
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0610 0.0000 -0.0700
-vertex 0.0615 -0.0110 -0.0700
-vertex 0.0845 -0.0110 -0.0700
+vertex 0.0610 0.0035 -0.0703
+vertex 0.0615 -0.0074 -0.0684
+vertex 0.0845 -0.0074 -0.0684
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0615 -0.0230 -0.0700
-vertex 0.0610 -0.0340 -0.0700
-vertex 0.0850 -0.0340 -0.0700
+vertex 0.0615 -0.0192 -0.0663
+vertex 0.0610 -0.0300 -0.0644
+vertex 0.0850 -0.0300 -0.0644
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0610 -0.0340 -0.0700
-vertex 0.0615 -0.0230 -0.0700
-vertex 0.0615 -0.0110 -0.0700
+vertex 0.0610 -0.0300 -0.0644
+vertex 0.0615 -0.0192 -0.0663
+vertex 0.0615 -0.0074 -0.0684
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0610 0.0000 -0.0700
-vertex 0.0610 -0.0110 -0.0750
-vertex 0.0610 -0.0110 -0.0710
+vertex 0.0610 0.0035 -0.0703
+vertex 0.0610 -0.0082 -0.0733
+vertex 0.0610 -0.0075 -0.0694
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0610 -0.0110 -0.0750
-vertex 0.0610 0.0000 -0.0700
+vertex 0.0610 -0.0082 -0.0733
+vertex 0.0610 0.0035 -0.0703
 vertex 0.0610 0.0000 -0.0900
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0610 0.0000 -0.0700
-vertex 0.0610 -0.0110 -0.0710
-vertex 0.0610 -0.0230 -0.0710
+vertex 0.0610 0.0035 -0.0703
+vertex 0.0610 -0.0075 -0.0694
+vertex 0.0610 -0.0194 -0.0673
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0610 -0.0340 -0.0700
-vertex 0.0610 -0.0230 -0.0710
-vertex 0.0610 -0.0230 -0.0750
+vertex 0.0610 -0.0300 -0.0644
+vertex 0.0610 -0.0194 -0.0673
+vertex 0.0610 -0.0200 -0.0712
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0610 -0.0230 -0.0710
-vertex 0.0610 -0.0340 -0.0700
-vertex 0.0610 0.0000 -0.0700
+vertex 0.0610 -0.0194 -0.0673
+vertex 0.0610 -0.0300 -0.0644
+vertex 0.0610 0.0035 -0.0703
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0610 -0.0340 -0.0700
-vertex 0.0610 -0.0230 -0.0750
-vertex 0.0610 -0.0340 -0.0900
+vertex 0.0610 -0.0300 -0.0644
+vertex 0.0610 -0.0200 -0.0712
+vertex 0.0610 -0.0335 -0.0841
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0610 -0.0110 -0.0750
-vertex 0.0610 -0.0125 -0.0830
-vertex 0.0610 -0.0230 -0.0750
+vertex 0.0610 -0.0082 -0.0733
+vertex 0.0610 -0.0111 -0.0809
+vertex 0.0610 -0.0200 -0.0712
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0610 -0.0125 -0.0830
+vertex 0.0610 -0.0111 -0.0809
 vertex 0.0610 0.0000 -0.0900
-vertex 0.0610 -0.0125 -0.0870
+vertex 0.0610 -0.0118 -0.0849
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
 vertex 0.0610 0.0000 -0.0900
-vertex 0.0610 -0.0125 -0.0830
-vertex 0.0610 -0.0110 -0.0750
+vertex 0.0610 -0.0111 -0.0809
+vertex 0.0610 -0.0082 -0.0733
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0610 -0.0125 -0.0870
+vertex 0.0610 -0.0118 -0.0849
 vertex 0.0610 0.0000 -0.0900
-vertex 0.0610 -0.0340 -0.0900
+vertex 0.0610 -0.0335 -0.0841
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0610 -0.0215 -0.0830
-vertex 0.0610 -0.0215 -0.0870
-vertex 0.0610 -0.0340 -0.0900
+vertex 0.0610 -0.0200 -0.0794
+vertex 0.0610 -0.0207 -0.0833
+vertex 0.0610 -0.0335 -0.0841
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0610 -0.0340 -0.0900
-vertex 0.0610 -0.0215 -0.0870
-vertex 0.0610 -0.0125 -0.0870
+vertex 0.0610 -0.0335 -0.0841
+vertex 0.0610 -0.0207 -0.0833
+vertex 0.0610 -0.0118 -0.0849
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0610 -0.0215 -0.0830
-vertex 0.0610 -0.0340 -0.0900
-vertex 0.0610 -0.0230 -0.0750
+vertex 0.0610 -0.0200 -0.0794
+vertex 0.0610 -0.0335 -0.0841
+vertex 0.0610 -0.0200 -0.0712
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0610 -0.0125 -0.0830
-vertex 0.0610 -0.0215 -0.0830
-vertex 0.0610 -0.0230 -0.0750
+vertex 0.0610 -0.0111 -0.0809
+vertex 0.0610 -0.0200 -0.0794
+vertex 0.0610 -0.0200 -0.0712
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0610 -0.0340 -0.0900
+vertex 0.0610 -0.0335 -0.0841
 vertex 0.0610 0.0000 -0.0900
 vertex 0.0850 0.0000 -0.0900
 endloop
@@ -793,22 +793,22 @@ endfacet
 facet normal 0 0 0
 outer loop
 vertex 0.0850 0.0000 -0.0900
-vertex 0.0850 -0.0340 -0.0900
-vertex 0.0610 -0.0340 -0.0900
+vertex 0.0850 -0.0335 -0.0841
+vertex 0.0610 -0.0335 -0.0841
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0850 -0.0700 -0.1350
-vertex 0.0610 -0.0700 -0.1350
-vertex 0.0610 -0.0700 -0.0900
+vertex 0.0850 -0.0768 -0.1222
+vertex 0.0610 -0.0768 -0.1222
+vertex 0.0610 -0.0689 -0.0778
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0610 -0.0700 -0.0900
-vertex 0.0850 -0.0700 -0.0900
-vertex 0.0850 -0.0700 -0.1350
+vertex 0.0610 -0.0689 -0.0778
+vertex 0.0850 -0.0689 -0.0778
+vertex 0.0850 -0.0768 -0.1222
 endloop
 endfacet
 facet normal 0 0 0
@@ -828,127 +828,127 @@ endfacet
 facet normal 0 0 0
 outer loop
 vertex 0.0950 0.0000 0.0000
-vertex 0.0950 -0.0361 0.0000
-vertex 0.1560 -0.0361 0.0000
+vertex 0.0950 -0.0356 -0.0063
+vertex 0.1560 -0.0356 -0.0063
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1560 -0.0361 0.0000
+vertex 0.1560 -0.0356 -0.0063
 vertex 0.1560 0.0000 0.0000
 vertex 0.0950 0.0000 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1560 -0.0531 -0.0531
-vertex 0.1560 -0.0531 -0.0170
-vertex 0.0950 -0.0531 -0.0170
+vertex 0.1560 -0.0431 -0.0615
+vertex 0.1560 -0.0494 -0.0259
+vertex 0.0950 -0.0494 -0.0259
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0950 -0.0531 -0.0170
-vertex 0.0950 -0.0531 -0.0531
-vertex 0.1560 -0.0531 -0.0531
+vertex 0.0950 -0.0494 -0.0259
+vertex 0.0950 -0.0431 -0.0615
+vertex 0.1560 -0.0431 -0.0615
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0950 -0.0531 -0.0170
-vertex 0.1240 -0.0492 -0.0131
-vertex 0.1130 -0.0492 -0.0131
+vertex 0.0950 -0.0494 -0.0259
+vertex 0.1240 -0.0462 -0.0214
+vertex 0.1130 -0.0462 -0.0214
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1240 -0.0492 -0.0131
-vertex 0.0950 -0.0531 -0.0170
-vertex 0.1560 -0.0531 -0.0170
+vertex 0.1240 -0.0462 -0.0214
+vertex 0.0950 -0.0494 -0.0259
+vertex 0.1560 -0.0494 -0.0259
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0950 -0.0531 -0.0170
-vertex 0.1130 -0.0492 -0.0131
-vertex 0.1130 -0.0400 -0.0039
+vertex 0.0950 -0.0494 -0.0259
+vertex 0.1130 -0.0462 -0.0214
+vertex 0.1130 -0.0387 -0.0108
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0950 -0.0361 0.0000
-vertex 0.1130 -0.0400 -0.0039
-vertex 0.1240 -0.0400 -0.0039
+vertex 0.0950 -0.0356 -0.0063
+vertex 0.1130 -0.0387 -0.0108
+vertex 0.1240 -0.0387 -0.0108
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1130 -0.0400 -0.0039
-vertex 0.0950 -0.0361 0.0000
-vertex 0.0950 -0.0531 -0.0170
+vertex 0.1130 -0.0387 -0.0108
+vertex 0.0950 -0.0356 -0.0063
+vertex 0.0950 -0.0494 -0.0259
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0950 -0.0361 0.0000
-vertex 0.1240 -0.0400 -0.0039
-vertex 0.1560 -0.0361 0.0000
+vertex 0.0950 -0.0356 -0.0063
+vertex 0.1240 -0.0387 -0.0108
+vertex 0.1560 -0.0356 -0.0063
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1240 -0.0492 -0.0131
-vertex 0.1445 -0.0482 -0.0120
-vertex 0.1240 -0.0400 -0.0039
+vertex 0.1240 -0.0462 -0.0214
+vertex 0.1445 -0.0453 -0.0202
+vertex 0.1240 -0.0387 -0.0108
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1445 -0.0482 -0.0120
-vertex 0.1560 -0.0531 -0.0170
-vertex 0.1505 -0.0482 -0.0120
+vertex 0.1445 -0.0453 -0.0202
+vertex 0.1560 -0.0494 -0.0259
+vertex 0.1505 -0.0453 -0.0202
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1560 -0.0531 -0.0170
-vertex 0.1445 -0.0482 -0.0120
-vertex 0.1240 -0.0492 -0.0131
+vertex 0.1560 -0.0494 -0.0259
+vertex 0.1445 -0.0453 -0.0202
+vertex 0.1240 -0.0462 -0.0214
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1505 -0.0482 -0.0120
-vertex 0.1560 -0.0531 -0.0170
-vertex 0.1560 -0.0361 0.0000
+vertex 0.1505 -0.0453 -0.0202
+vertex 0.1560 -0.0494 -0.0259
+vertex 0.1560 -0.0356 -0.0063
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1445 -0.0411 -0.0049
-vertex 0.1505 -0.0411 -0.0049
-vertex 0.1560 -0.0361 0.0000
+vertex 0.1445 -0.0396 -0.0120
+vertex 0.1505 -0.0396 -0.0120
+vertex 0.1560 -0.0356 -0.0063
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1560 -0.0361 0.0000
-vertex 0.1505 -0.0411 -0.0049
-vertex 0.1505 -0.0482 -0.0120
+vertex 0.1560 -0.0356 -0.0063
+vertex 0.1505 -0.0396 -0.0120
+vertex 0.1505 -0.0453 -0.0202
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1445 -0.0411 -0.0049
-vertex 0.1560 -0.0361 0.0000
-vertex 0.1240 -0.0400 -0.0039
+vertex 0.1445 -0.0396 -0.0120
+vertex 0.1560 -0.0356 -0.0063
+vertex 0.1240 -0.0387 -0.0108
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1445 -0.0482 -0.0120
-vertex 0.1445 -0.0411 -0.0049
-vertex 0.1240 -0.0400 -0.0039
+vertex 0.1445 -0.0453 -0.0202
+vertex 0.1445 -0.0396 -0.0120
+vertex 0.1240 -0.0387 -0.0108
 endloop
 endfacet
 facet normal 0 0 0
@@ -3823,7 +3823,7 @@ endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1956 0.0075 -0.0345
+vertex 0.1963 0.0174 -0.0338
 vertex 0.1950 0.0000 -0.0351
 vertex 0.1560 0.0000 0.0000
 endloop
@@ -3831,13 +3831,13 @@ endfacet
 facet normal 0 0 0
 outer loop
 vertex 0.1560 0.0000 0.0000
-vertex 0.1565 0.0075 0.0006
-vertex 0.1956 0.0075 -0.0345
+vertex 0.1572 0.0174 0.0014
+vertex 0.1963 0.0174 -0.0338
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1565 0.0075 -0.0906
+vertex 0.1572 0.0174 -0.0914
 vertex 0.1560 -0.0000 -0.0900
 vertex 0.1950 -0.0000 -0.0549
 endloop
@@ -3845,13 +3845,13 @@ endfacet
 facet normal 0 0 0
 outer loop
 vertex 0.1950 -0.0000 -0.0549
-vertex 0.1956 0.0075 -0.0555
-vertex 0.1565 0.0075 -0.0906
+vertex 0.1963 0.0174 -0.0562
+vertex 0.1572 0.0174 -0.0914
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0396 0.0075 -0.0555
+vertex -0.0403 0.0174 -0.0562
 vertex -0.0390 0.0000 -0.0549
 vertex -0.0000 0.0000 -0.0900
 endloop
@@ -3859,13 +3859,13 @@ endfacet
 facet normal 0 0 0
 outer loop
 vertex -0.0000 0.0000 -0.0900
-vertex -0.0005 0.0075 -0.0906
-vertex -0.0396 0.0075 -0.0555
+vertex -0.0012 0.0174 -0.0914
+vertex -0.0403 0.0174 -0.0562
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0005 0.0075 0.0006
+vertex -0.0012 0.0174 0.0014
 vertex -0.0000 0.0000 0.0000
 vertex -0.0390 0.0000 -0.0351
 endloop
@@ -3873,14 +3873,14 @@ endfacet
 facet normal 0 0 0
 outer loop
 vertex -0.0390 0.0000 -0.0351
-vertex -0.0396 0.0075 -0.0345
-vertex -0.0005 0.0075 0.0006
+vertex -0.0403 0.0174 -0.0338
+vertex -0.0012 0.0174 0.0014
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0750 -0.0340 -0.0000
-vertex 0.0850 -0.0340 -0.0000
+vertex 0.0750 -0.0335 -0.0059
+vertex 0.0850 -0.0335 -0.0059
 vertex 0.0850 0.0000 -0.0000
 endloop
 endfacet
@@ -3888,49 +3888,63 @@ facet normal 0 0 0
 outer loop
 vertex 0.0850 0.0000 -0.0000
 vertex 0.0750 0.0000 -0.0000
-vertex 0.0750 -0.0340 -0.0000
+vertex 0.0750 -0.0335 -0.0059
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
 vertex 0.0750 0.0000 -0.0900
 vertex 0.0850 0.0000 -0.0900
-vertex 0.0850 -0.0340 -0.0900
+vertex 0.0850 -0.0335 -0.0841
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0850 -0.0340 -0.0900
-vertex 0.0750 -0.0340 -0.0900
+vertex 0.0850 -0.0335 -0.0841
+vertex 0.0750 -0.0335 -0.0841
 vertex 0.0750 0.0000 -0.0900
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0850 -0.0700 0.0500
-vertex 0.0850 -0.0700 0.0450
-vertex 0.0610 -0.0700 0.0450
+vertex 0.0850 -0.0776 0.0371
+vertex 0.0850 -0.0768 0.0322
+vertex 0.0610 -0.0768 0.0322
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0610 -0.0768 0.0322
+vertex 0.0610 -0.0776 0.0371
+vertex 0.0850 -0.0776 0.0371
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0610 -0.0700 0.0450
-vertex 0.0610 -0.0700 0.0500
-vertex 0.0850 -0.0700 0.0500
+vertex 0.0950 -0.0098 -0.0883
+vertex 0.0950 0.0000 -0.0900
+vertex 0.1560 -0.0000 -0.0900
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0850 -0.0531 -0.0170
-vertex 0.0950 -0.0531 -0.0170
-vertex 0.0950 -0.0361 0.0000
+vertex 0.1560 -0.0000 -0.0900
+vertex 0.1560 -0.0098 -0.0883
+vertex 0.0950 -0.0098 -0.0883
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0950 -0.0361 0.0000
-vertex 0.0850 -0.0361 0.0000
-vertex 0.0850 -0.0531 -0.0170
+vertex 0.0850 -0.0494 -0.0259
+vertex 0.0950 -0.0494 -0.0259
+vertex 0.0950 -0.0356 -0.0063
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0950 -0.0356 -0.0063
+vertex 0.0850 -0.0356 -0.0063
+vertex 0.0850 -0.0494 -0.0259
 endloop
 endfacet
 facet normal 0 0 0
@@ -3949,16 +3963,16 @@ endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1560 -0.0291 -0.0071
-vertex 0.1560 -0.0361 0.0000
-vertex 0.1560 -0.0531 -0.0170
+vertex 0.1560 -0.0274 -0.0120
+vertex 0.1560 -0.0356 -0.0063
+vertex 0.1560 -0.0494 -0.0259
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1560 -0.0531 -0.0170
-vertex 0.1560 -0.0460 -0.0240
-vertex 0.1560 -0.0291 -0.0071
+vertex 0.1560 -0.0494 -0.0259
+vertex 0.1560 -0.0412 -0.0317
+vertex 0.1560 -0.0274 -0.0120
 endloop
 endfacet
 facet normal 0 0 0
@@ -4003,18 +4017,4 @@ vertex -0.0195 -0.0120 -0.0610
 vertex -0.0195 -0.0120 -0.0000
 endloop
 endfacet
-facet normal 0 0 0
-outer loop
-vertex 0.1560 -0.0531 -0.0631
-vertex 0.1560 -0.0531 -0.0531
-vertex 0.0950 -0.0531 -0.0531
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex 0.0950 -0.0531 -0.0531
-vertex 0.0950 -0.0531 -0.0631
-vertex 0.1560 -0.0531 -0.0631
-endloop
-endfacet
 endsolid python
diff --git a/rocolib/output/BoatWithServoStackBattery/graph-silhouette.dxf b/rocolib/output/BoatWithServoStackBattery/graph-silhouette.dxf
index d808f87001dd0d3a70cacfc5b672468f2920bebc..64dfa1eaae01996e55eca8c29e855d6173ef514e 100644
--- a/rocolib/output/BoatWithServoStackBattery/graph-silhouette.dxf
+++ b/rocolib/output/BoatWithServoStackBattery/graph-silhouette.dxf
@@ -1849,6 +1849,26 @@ LINE
  31
 0.0
   0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+327.33180874014937
+ 20
+135.50000000000003
+ 30
+0.0
+ 11
+351.33180874014937
+ 21
+135.50000000000003
+ 31
+0.0
+  0
 LINE
  62
 5
@@ -1867,6 +1887,26 @@ LINE
  31
 0.0
   0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+361.3318087401493
+ 20
+135.50000000000003
+ 30
+0.0
+ 11
+422.33180874014937
+ 21
+135.50000000000003
+ 31
+0.0
+  0
 LINE
  62
 5
@@ -2539,25 +2579,7 @@ LINE
  10
 422.33180874014937
  20
-75.36137800081472
- 30
-0.0
- 11
-422.33180874014937
- 21
 39.22275600162939
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-361.3318087401493
- 20
-29.222756001629396
  30
 0.0
  11
@@ -2575,31 +2597,13 @@ LINE
  10
 422.33180874014937
  20
-29.222756001629396
- 30
-0.0
- 11
-361.3318087401493
- 21
-29.222756001629396
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-422.33180874014937
- 20
-39.22275600162939
+75.36137800081472
  30
 0.0
  11
 422.33180874014937
  21
-29.222756001629396
+39.22275600162939
  31
 0.0
   0
@@ -2799,7 +2803,7 @@ LINE
  10
 422.33180874014937
  20
-127.99794702597693
+117.99520972727949
  30
 0.0
  11
@@ -2817,13 +2821,13 @@ LINE
  10
 474.84617955831095
  20
-127.99794702597693
+117.99520972727949
  30
 0.0
  11
 422.33180874014937
  21
-127.99794702597693
+117.99520972727949
  31
 0.0
   0
@@ -2841,7 +2845,7 @@ LINE
  11
 474.84617955831095
  21
-127.99794702597693
+117.99520972727949
  31
 0.0
   0
@@ -3153,6 +3157,26 @@ DOTTED
  31
 0.0
   0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+422.3318087401495
+ 20
+365.5000000000001
+ 30
+0.0
+ 11
+361.3318087401494
+ 21
+365.50000000000017
+ 31
+0.0
+  0
 LINE
  62
 5
@@ -3172,14 +3196,16 @@ LINE
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-266.33180874014937
+351.3318087401494
  20
-365.5000000000003
+365.50000000000017
  30
 0.0
  11
@@ -3201,9 +3227,9 @@ LINE
  30
 0.0
  11
-266.33180874014937
+327.3318087401494
  21
-365.5000000000003
+365.50000000000017
  31
 0.0
   0
@@ -3213,15 +3239,15 @@ LINE
   8
 0
  10
-422.3318087401495
+266.33180874014937
  20
-365.5000000000001
+365.5000000000003
  30
 0.0
  11
-422.3318087401495
+266.33180874014937
  21
-365.5000000000001
+365.5000000000003
  31
 0.0
   0
@@ -3231,9 +3257,9 @@ LINE
   8
 0
  10
-361.3318087401494
+422.3318087401495
  20
-365.50000000000017
+365.5000000000001
  30
 0.0
  11
@@ -3357,6 +3383,60 @@ LINE
   8
 0
  10
+422.3318087401495
+ 20
+375.5000000000001
+ 30
+0.0
+ 11
+422.3318087401495
+ 21
+365.5000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+361.3318087401494
+ 20
+375.50000000000017
+ 30
+0.0
+ 11
+422.3318087401495
+ 21
+375.5000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+361.3318087401494
+ 20
+365.50000000000017
+ 30
+0.0
+ 11
+361.3318087401494
+ 21
+375.50000000000017
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
 351.3318087401494
  20
 399.5000000000001
@@ -3789,7 +3869,7 @@ LINE
  10
 266.33180874014937
  20
-373.00205297402334
+383.00479027272075
  30
 0.0
  11
@@ -3807,13 +3887,13 @@ LINE
  10
 213.81743792198782
  20
-373.0020529740234
+383.00479027272087
  30
 0.0
  11
 266.33180874014937
  21
-373.00205297402334
+383.00479027272075
  31
 0.0
   0
@@ -3831,7 +3911,7 @@ LINE
  11
 213.81743792198782
  21
-373.0020529740234
+383.00479027272087
  31
 0.0
   0
@@ -4129,9 +4209,9 @@ LINE
   8
 0
  10
-213.81743792198745
+213.81743792198742
  20
-127.99794702597715
+117.9952097272797
  30
 0.0
  11
@@ -4149,13 +4229,13 @@ LINE
  10
 266.3318087401491
  20
-127.99794702597704
+117.9952097272796
  30
 0.0
  11
-213.81743792198745
+213.81743792198742
  21
-127.99794702597715
+117.9952097272797
  31
 0.0
   0
@@ -4173,7 +4253,7 @@ LINE
  11
 266.3318087401491
  21
-127.99794702597704
+117.9952097272796
  31
 0.0
   0
@@ -4183,9 +4263,9 @@ LINE
   8
 0
  10
-474.84617955831106
+474.8461795583111
  20
-373.0020529740231
+383.0047902727206
  30
 0.0
  11
@@ -4203,13 +4283,13 @@ LINE
  10
 422.3318087401495
  20
-373.00205297402323
+383.00479027272064
  30
 0.0
  11
-474.84617955831106
+474.8461795583111
  21
-373.0020529740231
+383.0047902727206
  31
 0.0
   0
@@ -4227,7 +4307,7 @@ LINE
  11
 422.3318087401495
  21
-373.00205297402323
+383.00479027272064
  31
 0.0
   0
@@ -5029,15 +5109,51 @@ LINE
   8
 0
  10
-411.24089964924025
+383.76362692196756
+ 20
+46.9727560016294
+ 30
+0.0
+ 11
+372.1727178310585
+ 21
+46.9727560016294
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+372.1727178310585
+ 20
+46.9727560016294
+ 30
+0.0
+ 11
+372.1727178310585
+ 21
+46.4727560016294
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+372.1727178310585
  20
-31.722756001629396
+46.4727560016294
  30
 0.0
  11
-411.24089964924025
+383.76362692196756
  21
-36.7227560016294
+46.4727560016294
  31
 0.0
   0
@@ -5047,15 +5163,15 @@ LINE
   8
 0
  10
-411.24089964924025
+383.76362692196756
  20
-36.7227560016294
+46.4727560016294
  30
 0.0
  11
-400.1499905583311
+383.76362692196756
  21
-36.7227560016294
+46.9727560016294
  31
 0.0
   0
@@ -5065,15 +5181,15 @@ LINE
   8
 0
  10
-400.1499905583311
+411.49089964924025
  20
-36.7227560016294
+46.9727560016294
  30
 0.0
  11
-400.1499905583311
+399.8999905583312
  21
-31.722756001629396
+46.9727560016294
  31
 0.0
   0
@@ -5083,15 +5199,15 @@ LINE
   8
 0
  10
-383.51362692196756
+399.8999905583312
  20
-31.722756001629396
+46.9727560016294
  30
 0.0
  11
-383.51362692196756
+399.8999905583312
  21
-36.7227560016294
+46.4727560016294
  31
 0.0
   0
@@ -5101,15 +5217,15 @@ LINE
   8
 0
  10
-383.51362692196756
+399.8999905583312
  20
-36.7227560016294
+46.4727560016294
  30
 0.0
  11
-372.4227178310585
+411.49089964924025
  21
-36.7227560016294
+46.4727560016294
  31
 0.0
   0
@@ -5119,15 +5235,15 @@ LINE
   8
 0
  10
-372.4227178310585
+411.49089964924025
  20
-36.7227560016294
+46.4727560016294
  30
 0.0
  11
-372.4227178310585
+411.49089964924025
  21
-31.722756001629396
+46.9727560016294
  31
 0.0
   0
@@ -5245,15 +5361,15 @@ LINE
   8
 0
  10
-465.29811213682694
+457.3413892855904
  20
-129.8734602694827
+122.37140729545962
  30
 0.0
  11
-469.0491386238386
+457.3413892855904
  21
-129.8734602694827
+131.12380243181985
  31
 0.0
   0
@@ -5263,15 +5379,15 @@ LINE
   8
 0
  10
-469.0491386238386
+457.3413892855904
  20
-129.8734602694827
+131.12380243181985
  30
 0.0
  11
-465.29811213682694
+439.8365990128699
  21
-133.62448675649426
+131.12380243181988
  31
 0.0
   0
@@ -5281,15 +5397,15 @@ LINE
   8
 0
  10
-465.29811213682694
+439.8365990128699
  20
-133.62448675649426
+131.12380243181988
  30
 0.0
  11
-455.7500447153431
+439.8365990128699
  21
-133.62448675649426
+122.37140729545962
  31
 0.0
   0
@@ -5299,15 +5415,15 @@ LINE
   8
 0
  10
-455.7500447153431
+486.5563117536783
  20
-133.62448675649426
+223.5120791976936
  30
 0.0
  11
-451.9990182283316
+481.5195122622253
  21
-129.8734602694827
+206.22615649603978
  31
 0.0
   0
@@ -5317,15 +5433,15 @@ LINE
   8
 0
  10
-451.9990182283316
+481.5195122622253
  20
-129.8734602694827
+206.22615649603978
  30
 0.0
  11
-455.7500447153431
+481.99954903132453
  21
-129.8734602694827
+206.08628262316594
  31
 0.0
   0
@@ -5335,15 +5451,15 @@ LINE
   8
 0
  10
-441.4279435831172
+481.99954903132453
  20
-129.8734602694827
+206.08628262316594
  30
 0.0
  11
-445.17897007012874
+487.0363485227776
  21
-129.8734602694827
+223.37220532481973
  31
 0.0
   0
@@ -5353,15 +5469,15 @@ LINE
   8
 0
  10
-445.17897007012874
+487.0363485227776
  20
-129.8734602694827
+223.37220532481973
  30
 0.0
  11
-441.4279435831172
+486.5563117536783
  21
-133.62448675649426
+223.5120791976936
  31
 0.0
   0
@@ -5371,15 +5487,15 @@ LINE
   8
 0
  10
-441.4279435831172
+481.5195122622253
  20
-133.62448675649426
+294.77384350396034
  30
 0.0
  11
-431.8798761616332
+486.55631175367836
  21
-133.62448675649426
+277.4879208023065
  31
 0.0
   0
@@ -5389,15 +5505,15 @@ LINE
   8
 0
  10
-431.8798761616332
+486.55631175367836
  20
-133.62448675649426
+277.4879208023065
  30
 0.0
  11
-428.1288496746218
+487.0363485227776
  21
-129.8734602694827
+277.6277946751803
  31
 0.0
   0
@@ -5407,15 +5523,15 @@ LINE
   8
 0
  10
-428.1288496746218
+487.0363485227776
  20
-129.8734602694827
+277.6277946751803
  30
 0.0
  11
-431.8798761616332
+481.9995490313246
  21
-129.8734602694827
+294.91371737683414
  31
 0.0
   0
@@ -5425,15 +5541,15 @@ LINE
   8
 0
  10
-489.307083733857
+481.9995490313246
  20
-206.13531866922696
+294.91371737683414
  30
 0.0
  11
-486.4961595235763
+481.5195122622253
  21
-196.48843502782523
+294.77384350396034
  31
 0.0
   0
@@ -5443,15 +5559,15 @@ LINE
   8
 0
  10
-486.4961595235763
+304.8999905583312
  20
-196.48843502782523
+357.7500000000002
  30
 0.0
  11
-486.9761962926755
+316.4908996492403
  21
-196.3485611549514
+357.75000000000017
  31
 0.0
   0
@@ -5461,15 +5577,15 @@ LINE
   8
 0
  10
-486.9761962926755
+316.4908996492403
  20
-196.3485611549514
+357.75000000000017
  30
 0.0
  11
-489.78712050295627
+316.4908996492403
  21
-205.99544479635315
+358.25000000000017
  31
 0.0
   0
@@ -5479,15 +5595,15 @@ LINE
   8
 0
  10
-489.78712050295627
+316.4908996492403
  20
-205.99544479635315
+358.25000000000017
  30
 0.0
  11
-489.307083733857
+304.8999905583312
  21
-206.13531866922696
+358.25000000000017
  31
 0.0
   0
@@ -5497,15 +5613,15 @@ LINE
   8
 0
  10
-495.9847095773741
+304.8999905583312
  20
-229.05243584998314
+358.25000000000017
  30
 0.0
  11
-493.1737853670934
+304.8999905583312
  21
-219.40555220858138
+357.7500000000002
  31
 0.0
   0
@@ -5515,15 +5631,15 @@ LINE
   8
 0
  10
-493.1737853670934
+277.1727178310585
  20
-219.40555220858138
+357.7500000000002
  30
 0.0
  11
-493.6538221361927
+288.7636269219676
  21
-219.26567833570755
+357.7500000000002
  31
 0.0
   0
@@ -5533,15 +5649,15 @@ LINE
   8
 0
  10
-493.6538221361927
+288.7636269219676
  20
-219.26567833570755
+357.7500000000002
  30
 0.0
  11
-496.4647463464733
+288.7636269219676
  21
-228.9125619771093
+358.25000000000017
  31
 0.0
   0
@@ -5551,15 +5667,15 @@ LINE
   8
 0
  10
-496.4647463464733
+288.7636269219676
  20
-228.9125619771093
+358.25000000000017
  30
 0.0
  11
-495.9847095773741
+277.1727178310585
  21
-229.05243584998314
+358.25000000000017
  31
 0.0
   0
@@ -5569,15 +5685,15 @@ LINE
   8
 0
  10
-493.17378536709344
+277.1727178310585
  20
-281.5944477914187
+358.25000000000017
  30
 0.0
  11
-495.9847095773741
+277.1727178310585
  21
-271.94756415001694
+357.7500000000002
  31
 0.0
   0
@@ -5587,15 +5703,15 @@ LINE
   8
 0
  10
-495.9847095773741
+372.42271783105855
  20
-271.94756415001694
+373.0000000000001
  30
 0.0
  11
-496.4647463464733
+372.42271783105855
  21
-272.0874380228908
+368.0000000000001
  31
 0.0
   0
@@ -5605,15 +5721,15 @@ LINE
   8
 0
  10
-496.4647463464733
+372.42271783105855
  20
-272.0874380228908
+368.0000000000001
  30
 0.0
  11
-493.6538221361927
+383.5136269219676
  21
-281.7343216642925
+368.0000000000001
  31
 0.0
   0
@@ -5623,15 +5739,15 @@ LINE
   8
 0
  10
-493.6538221361927
+383.5136269219676
  20
-281.7343216642925
+368.0000000000001
  30
 0.0
  11
-493.17378536709344
+383.51362692196767
  21
-281.5944477914187
+373.0000000000001
  31
 0.0
   0
@@ -5641,15 +5757,15 @@ LINE
   8
 0
  10
-486.49615952357635
+400.14999055833124
  20
-304.5115649721748
+373.0000000000001
  30
 0.0
  11
-489.30708373385704
+400.14999055833124
  21
-294.86468133077307
+368.0000000000001
  31
 0.0
   0
@@ -5659,15 +5775,15 @@ LINE
   8
 0
  10
-489.30708373385704
+400.14999055833124
  20
-294.86468133077307
+368.0000000000001
  30
 0.0
  11
-489.78712050295627
+411.24089964924036
  21
-295.0045552036469
+368.00000000000006
  31
 0.0
   0
@@ -5677,15 +5793,15 @@ LINE
   8
 0
  10
-489.78712050295627
+411.24089964924036
  20
-295.0045552036469
+368.00000000000006
  30
 0.0
  11
-486.97619629267564
+411.2408996492404
  21
-304.6514388450487
+373.00000000000006
  31
 0.0
   0
@@ -5695,15 +5811,15 @@ LINE
   8
 0
  10
-486.97619629267564
+343.5818087401495
  20
-304.6514388450487
+388.4166666666668
  30
 0.0
  11
-486.49615952357635
+343.5818087401495
  21
-304.5115649721748
+376.5833333333335
  31
 0.0
   0
@@ -5713,15 +5829,15 @@ LINE
   8
 0
  10
-304.8999905583312
+343.5818087401495
  20
-357.7500000000002
+376.5833333333335
  30
 0.0
  11
-316.4908996492403
+344.0818087401495
  21
-357.75000000000017
+376.5833333333335
  31
 0.0
   0
@@ -5731,15 +5847,15 @@ LINE
   8
 0
  10
-316.4908996492403
+344.0818087401495
  20
-357.75000000000017
+376.5833333333335
  30
 0.0
  11
-316.4908996492403
+344.0818087401495
  21
-358.25000000000017
+388.4166666666668
  31
 0.0
   0
@@ -5749,105 +5865,15 @@ LINE
   8
 0
  10
-316.4908996492403
+344.0818087401495
  20
-358.25000000000017
- 30
-0.0
- 11
-304.8999905583312
- 21
-358.25000000000017
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-304.8999905583312
- 20
-358.25000000000017
- 30
-0.0
- 11
-304.8999905583312
- 21
-357.7500000000002
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-277.1727178310585
- 20
-357.7500000000002
- 30
-0.0
- 11
-288.7636269219676
- 21
-357.7500000000002
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-288.7636269219676
- 20
-357.7500000000002
- 30
-0.0
- 11
-288.7636269219676
- 21
-358.25000000000017
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-288.7636269219676
- 20
-358.25000000000017
- 30
-0.0
- 11
-277.1727178310585
- 21
-358.25000000000017
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-277.1727178310585
- 20
-358.25000000000017
+388.4166666666668
  30
 0.0
  11
-277.1727178310585
+343.5818087401495
  21
-357.7500000000002
+388.4166666666668
  31
 0.0
   0
@@ -5857,15 +5883,15 @@ LINE
   8
 0
  10
-399.89999055833124
+335.08180874014954
  20
-357.75000000000017
+476.50000000000017
  30
 0.0
  11
-411.49089964924036
+343.58180874014954
  21
-357.7500000000001
+476.50000000000017
  31
 0.0
   0
@@ -5875,15 +5901,15 @@ LINE
   8
 0
  10
-411.49089964924036
+343.58180874014954
  20
-357.7500000000001
+476.50000000000017
  30
 0.0
  11
-411.49089964924036
+343.58180874014954
  21
-358.2500000000001
+477.00000000000017
  31
 0.0
   0
@@ -5893,15 +5919,15 @@ LINE
   8
 0
  10
-411.49089964924036
+343.58180874014954
  20
-358.2500000000001
+477.00000000000017
  30
 0.0
  11
-399.89999055833124
+335.08180874014954
  21
-358.25000000000017
+477.00000000000017
  31
 0.0
   0
@@ -5911,15 +5937,15 @@ LINE
   8
 0
  10
-399.89999055833124
+335.08180874014954
  20
-358.25000000000017
+477.00000000000017
  30
 0.0
  11
-399.89999055833124
+335.08180874014954
  21
-357.75000000000017
+476.50000000000017
  31
 0.0
   0
@@ -5929,15 +5955,15 @@ LINE
   8
 0
  10
-372.17271783105855
+308.3318087401494
  20
-357.75000000000017
+376.50000000000017
  30
 0.0
  11
-383.7636269219676
+312.3318087401494
  21
-357.75000000000017
+376.50000000000017
  31
 0.0
   0
@@ -5947,15 +5973,15 @@ LINE
   8
 0
  10
-383.7636269219676
+312.3318087401494
  20
-357.75000000000017
+376.50000000000017
  30
 0.0
  11
-383.7636269219676
+312.3318087401495
  21
-358.25000000000017
+388.50000000000017
  31
 0.0
   0
@@ -5965,15 +5991,15 @@ LINE
   8
 0
  10
-383.7636269219676
+312.3318087401495
  20
-358.25000000000017
+388.50000000000017
  30
 0.0
  11
-372.17271783105855
+308.3318087401495
  21
-358.25000000000017
+388.50000000000017
  31
 0.0
   0
@@ -5983,15 +6009,15 @@ LINE
   8
 0
  10
-372.17271783105855
+308.3318087401495
  20
-358.25000000000017
+388.50000000000017
  30
 0.0
  11
-372.17271783105855
+308.3318087401494
  21
-357.75000000000017
+376.50000000000017
  31
 0.0
   0
@@ -6001,15 +6027,15 @@ LINE
   8
 0
  10
-343.5818087401495
+320.33180874014937
  20
-388.4166666666668
+378.00000000000017
  30
 0.0
  11
-343.5818087401495
+324.3318087401494
  21
-376.5833333333335
+378.00000000000017
  31
 0.0
   0
@@ -6019,15 +6045,15 @@ LINE
   8
 0
  10
-343.5818087401495
+324.3318087401494
  20
-376.5833333333335
+378.00000000000017
  30
 0.0
  11
-344.0818087401495
+324.3318087401494
  21
-376.5833333333335
+387.00000000000017
  31
 0.0
   0
@@ -6037,15 +6063,15 @@ LINE
   8
 0
  10
-344.0818087401495
+324.3318087401494
  20
-376.5833333333335
+387.00000000000017
  30
 0.0
  11
-344.0818087401495
+320.3318087401494
  21
-388.4166666666668
+387.00000000000017
  31
 0.0
   0
@@ -6055,15 +6081,15 @@ LINE
   8
 0
  10
-344.0818087401495
+320.3318087401494
  20
-388.4166666666668
+387.00000000000017
  30
 0.0
  11
-343.5818087401495
+320.33180874014937
  21
-388.4166666666668
+378.00000000000017
  31
 0.0
   0
@@ -6073,15 +6099,15 @@ LINE
   8
 0
  10
-335.08180874014954
+283.83180874014937
  20
-476.50000000000017
+376.50000000000017
  30
 0.0
  11
-343.58180874014954
+306.83180874014937
  21
-476.50000000000017
+376.50000000000017
  31
 0.0
   0
@@ -6091,15 +6117,15 @@ LINE
   8
 0
  10
-343.58180874014954
+306.83180874014937
  20
-476.50000000000017
+376.50000000000017
  30
 0.0
  11
-343.58180874014954
+306.8318087401494
  21
-477.00000000000017
+388.50000000000017
  31
 0.0
   0
@@ -6109,15 +6135,15 @@ LINE
   8
 0
  10
-343.58180874014954
+306.8318087401494
  20
-477.00000000000017
+388.50000000000017
  30
 0.0
  11
-335.08180874014954
+283.83180874014937
  21
-477.00000000000017
+388.50000000000017
  31
 0.0
   0
@@ -6127,15 +6153,15 @@ LINE
   8
 0
  10
-335.08180874014954
+283.83180874014937
  20
-477.00000000000017
+388.50000000000017
  30
 0.0
  11
-335.08180874014954
+283.83180874014937
  21
-476.50000000000017
+376.50000000000017
  31
 0.0
   0
@@ -6145,13 +6171,13 @@ LINE
   8
 0
  10
-308.3318087401494
+278.3318087401494
  20
 376.50000000000017
  30
 0.0
  11
-312.3318087401494
+282.3318087401494
  21
 376.50000000000017
  31
@@ -6163,13 +6189,13 @@ LINE
   8
 0
  10
-312.3318087401494
+282.3318087401494
  20
 376.50000000000017
  30
 0.0
  11
-312.3318087401495
+282.3318087401494
  21
 388.50000000000017
  31
@@ -6181,13 +6207,13 @@ LINE
   8
 0
  10
-312.3318087401495
+282.3318087401494
  20
 388.50000000000017
  30
 0.0
  11
-308.3318087401495
+278.3318087401494
  21
 388.50000000000017
  31
@@ -6199,13 +6225,13 @@ LINE
   8
 0
  10
-308.3318087401495
+278.3318087401494
  20
 388.50000000000017
  30
 0.0
  11
-308.3318087401494
+278.3318087401494
  21
 376.50000000000017
  31
@@ -6217,15 +6243,15 @@ LINE
   8
 0
  10
-320.33180874014937
+255.8318087401494
  20
-378.00000000000017
+376.8333333333335
  30
 0.0
  11
-324.3318087401494
+260.8318087401494
  21
-378.00000000000017
+376.8333333333335
  31
 0.0
   0
@@ -6235,15 +6261,15 @@ LINE
   8
 0
  10
-324.3318087401494
+260.8318087401494
  20
-378.00000000000017
+376.8333333333335
  30
 0.0
  11
-324.3318087401494
+260.8318087401494
  21
-387.00000000000017
+388.16666666666686
  31
 0.0
   0
@@ -6253,229 +6279,13 @@ LINE
   8
 0
  10
-324.3318087401494
+260.8318087401494
  20
-387.00000000000017
+388.16666666666686
  30
 0.0
  11
-320.3318087401494
- 21
-387.00000000000017
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-320.3318087401494
- 20
-387.00000000000017
- 30
-0.0
- 11
-320.33180874014937
- 21
-378.00000000000017
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-283.83180874014937
- 20
-376.50000000000017
- 30
-0.0
- 11
-306.83180874014937
- 21
-376.50000000000017
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-306.83180874014937
- 20
-376.50000000000017
- 30
-0.0
- 11
-306.8318087401494
- 21
-388.50000000000017
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-306.8318087401494
- 20
-388.50000000000017
- 30
-0.0
- 11
-283.83180874014937
- 21
-388.50000000000017
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-283.83180874014937
- 20
-388.50000000000017
- 30
-0.0
- 11
-283.83180874014937
- 21
-376.50000000000017
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-278.3318087401494
- 20
-376.50000000000017
- 30
-0.0
- 11
-282.3318087401494
- 21
-376.50000000000017
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-282.3318087401494
- 20
-376.50000000000017
- 30
-0.0
- 11
-282.3318087401494
- 21
-388.50000000000017
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-282.3318087401494
- 20
-388.50000000000017
- 30
-0.0
- 11
-278.3318087401494
- 21
-388.50000000000017
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-278.3318087401494
- 20
-388.50000000000017
- 30
-0.0
- 11
-278.3318087401494
- 21
-376.50000000000017
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-255.8318087401494
- 20
-376.8333333333335
- 30
-0.0
- 11
-260.8318087401494
- 21
-376.8333333333335
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-260.8318087401494
- 20
-376.8333333333335
- 30
-0.0
- 11
-260.8318087401494
- 21
-388.16666666666686
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-260.8318087401494
- 20
-388.16666666666686
- 30
-0.0
- 11
-255.8318087401494
+255.8318087401494
  21
 388.16666666666686
  31
@@ -6487,537 +6297,15 @@ LINE
   8
 0
  10
-223.36550534347174
- 20
-371.12653973051766
- 30
-0.0
- 11
-219.61447885646018
- 21
-371.12653973051766
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-219.61447885646018
- 20
-371.12653973051766
- 30
-0.0
- 11
-223.3655053434717
- 21
-367.3755132435061
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-223.3655053434717
- 20
-367.3755132435061
- 30
-0.0
- 11
-232.91357276495566
- 21
-367.3755132435061
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-232.91357276495566
- 20
-367.3755132435061
- 30
-0.0
- 11
-236.66459925196722
- 21
-371.1265397305176
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-236.66459925196722
- 20
-371.1265397305176
- 30
-0.0
- 11
-232.91357276495566
- 21
-371.1265397305176
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-247.23567389718156
- 20
-371.1265397305176
- 30
-0.0
- 11
-243.48464741017003
- 21
-371.1265397305176
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-243.48464741017003
- 20
-371.1265397305176
- 30
-0.0
- 11
-247.23567389718156
- 21
-367.3755132435061
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-247.23567389718156
- 20
-367.3755132435061
- 30
-0.0
- 11
-256.7837413186655
- 21
-367.3755132435061
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-256.7837413186655
- 20
-367.3755132435061
- 30
-0.0
- 11
-260.534767805677
- 21
-371.1265397305176
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-260.534767805677
- 20
-371.1265397305176
- 30
-0.0
- 11
-256.78374131866553
- 21
-371.1265397305176
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-199.35653374644173
- 20
-294.86468133077335
- 30
-0.0
- 11
-202.16745795672242
- 21
-304.5115649721751
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-202.16745795672242
- 20
-304.5115649721751
- 30
-0.0
- 11
-201.6874211876231
- 21
-304.651438845049
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-201.6874211876231
- 20
-304.651438845049
- 30
-0.0
- 11
-198.87649697734244
- 21
-295.0045552036471
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-198.87649697734244
- 20
-295.0045552036471
- 30
-0.0
- 11
-199.35653374644173
- 21
-294.86468133077335
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-192.67890790292464
- 20
-271.9475641500171
- 30
-0.0
- 11
-195.48983211320527
- 21
-281.5944477914189
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-195.48983211320527
- 20
-281.5944477914189
- 30
-0.0
- 11
-195.009795344106
- 21
-281.7343216642927
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-195.009795344106
- 20
-281.7343216642927
- 30
-0.0
- 11
-192.19887113382532
- 21
-272.087438022891
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-192.19887113382532
- 20
-272.087438022891
- 30
-0.0
- 11
-192.67890790292464
- 21
-271.9475641500171
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-195.48983211320518
- 20
-219.40555220858164
- 30
-0.0
- 11
-192.67890790292452
- 21
-229.0524358499834
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-192.67890790292452
- 20
-229.0524358499834
- 30
-0.0
- 11
-192.19887113382526
- 21
-228.91256197710956
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-192.19887113382526
- 20
-228.91256197710956
- 30
-0.0
- 11
-195.00979534410592
- 21
-219.2656783357078
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-195.00979534410592
- 20
-219.2656783357078
- 30
-0.0
- 11
-195.48983211320518
- 21
-219.40555220858164
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-202.16745795672222
- 20
-196.48843502782546
- 30
-0.0
- 11
-199.35653374644158
- 21
-206.13531866922722
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-199.35653374644158
- 20
-206.13531866922722
- 30
-0.0
- 11
-198.8764969773423
- 21
-205.99544479635338
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-198.8764969773423
- 20
-205.99544479635338
- 30
-0.0
- 11
-201.68742118762296
- 21
-196.34856115495162
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-201.68742118762296
- 20
-196.34856115495162
- 30
-0.0
- 11
-202.16745795672222
- 21
-196.48843502782546
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-256.7837413186651
- 20
-129.87346026948285
- 30
-0.0
- 11
-260.53476780567667
- 21
-129.87346026948285
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-260.53476780567667
- 20
-129.87346026948285
- 30
-0.0
- 11
-256.78374131866514
- 21
-133.6244867564944
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-256.78374131866514
- 20
-133.6244867564944
- 30
-0.0
- 11
-247.23567389718121
- 21
-133.6244867564944
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-247.23567389718121
+231.32222819470834
  20
-133.6244867564944
+378.6285927045407
  30
 0.0
  11
-243.48464741016966
+231.32222819470834
  21
-129.87346026948285
+369.87619756818043
  31
 0.0
   0
@@ -7027,15 +6315,15 @@ LINE
   8
 0
  10
-243.48464741016966
+231.32222819470834
  20
-129.87346026948285
+369.87619756818043
  30
 0.0
  11
-247.23567389718121
+248.82701846742887
  21
-129.87346026948285
+369.87619756818043
  31
 0.0
   0
@@ -7045,15 +6333,15 @@ LINE
   8
 0
  10
-232.91357276495532
+248.82701846742887
  20
-129.87346026948288
+369.87619756818043
  30
 0.0
  11
-236.66459925196685
+248.82701846742887
  21
-129.87346026948285
+378.6285927045407
  31
 0.0
   0
@@ -7063,15 +6351,15 @@ LINE
   8
 0
  10
-236.66459925196685
+202.10730572662035
  20
-129.87346026948285
+277.4879208023067
  30
 0.0
  11
-232.91357276495532
+207.1441052180734
  21
-133.62448675649443
+294.7738435039605
  31
 0.0
   0
@@ -7081,15 +6369,15 @@ LINE
   8
 0
  10
-232.91357276495532
+207.1441052180734
  20
-133.62448675649443
+294.7738435039605
  30
 0.0
  11
-223.36550534347137
+206.66406844897412
  21
-133.62448675649446
+294.9137173768343
  31
 0.0
   0
@@ -7099,15 +6387,15 @@ LINE
   8
 0
  10
-223.36550534347137
+206.66406844897412
  20
-133.62448675649446
+294.9137173768343
  30
 0.0
  11
-219.6144788564598
+201.62726895752107
  21
-129.8734602694829
+277.62779467518055
  31
 0.0
   0
@@ -7117,15 +6405,15 @@ LINE
   8
 0
  10
-219.6144788564598
+201.62726895752107
  20
-129.8734602694829
+277.62779467518055
  30
 0.0
  11
-223.36550534347137
+202.10730572662035
  21
-129.87346026948288
+277.4879208023067
  31
 0.0
   0
@@ -7135,15 +6423,15 @@ LINE
   8
 0
  10
-431.8798761616334
+207.14410521807326
  20
-371.12653973051744
+206.22615649604003
  30
 0.0
  11
-428.1288496746219
+202.10730572662024
  21
-371.12653973051744
+223.51207919769385
  31
 0.0
   0
@@ -7153,15 +6441,15 @@ LINE
   8
 0
  10
-428.1288496746219
+202.10730572662024
  20
-371.12653973051744
+223.51207919769385
  30
 0.0
  11
-431.8798761616334
+201.62726895752098
  21
-367.37551324350585
+223.37220532482002
  31
 0.0
   0
@@ -7171,15 +6459,15 @@ LINE
   8
 0
  10
-431.8798761616334
+201.62726895752098
  20
-367.37551324350585
+223.37220532482002
  30
 0.0
  11
-441.4279435831173
+206.66406844897395
  21
-367.37551324350585
+206.08628262316617
  31
 0.0
   0
@@ -7189,15 +6477,15 @@ LINE
   8
 0
  10
-441.4279435831173
+206.66406844897395
  20
-367.37551324350585
+206.08628262316617
  30
 0.0
  11
-445.17897007012886
+207.14410521807326
  21
-371.12653973051744
+206.22615649604003
  31
 0.0
   0
@@ -7207,15 +6495,15 @@ LINE
   8
 0
  10
-445.17897007012886
+248.8270184674285
  20
-371.12653973051744
+122.37140729545976
  30
 0.0
  11
-441.4279435831173
+248.82701846742856
  21
-371.12653973051744
+131.12380243182005
  31
 0.0
   0
@@ -7225,15 +6513,15 @@ LINE
   8
 0
  10
-455.7500447153432
+248.82701846742856
  20
-371.12653973051744
+131.12380243182005
  30
 0.0
  11
-451.9990182283317
+231.322228194708
  21
-371.12653973051744
+131.12380243182008
  31
 0.0
   0
@@ -7243,15 +6531,15 @@ LINE
   8
 0
  10
-451.9990182283317
+231.322228194708
  20
-371.12653973051744
+131.12380243182008
  30
 0.0
  11
-455.7500447153432
+231.32222819470798
  21
-367.37551324350585
+122.3714072954598
  31
 0.0
   0
@@ -7261,15 +6549,15 @@ LINE
   8
 0
  10
-455.7500447153432
+439.83659901287
  20
-367.37551324350585
+378.6285927045405
  30
 0.0
  11
-465.2981121368271
+439.83659901287
  21
-367.37551324350585
+369.87619756818015
  31
 0.0
   0
@@ -7279,15 +6567,15 @@ LINE
   8
 0
  10
-465.2981121368271
+439.83659901287
  20
-367.37551324350585
+369.87619756818015
  30
 0.0
  11
-469.0491386238387
+457.34138928559054
  21
-371.1265397305174
+369.87619756818015
  31
 0.0
   0
@@ -7297,15 +6585,15 @@ LINE
   8
 0
  10
-469.0491386238387
+457.34138928559054
  20
-371.1265397305174
+369.87619756818015
  30
 0.0
  11
-465.2981121368271
+457.34138928559054
  21
-371.12653973051744
+378.6285927045405
  31
 0.0
   0
diff --git a/rocolib/output/BottomServoMount/graph-anim.svg b/rocolib/output/BottomServoMount/graph-anim.svg
new file mode 100644
index 0000000000000000000000000000000000000000..0ee3a00b498f44c45a48eba4a3c99971f65335e4
--- /dev/null
+++ b/rocolib/output/BottomServoMount/graph-anim.svg
@@ -0,0 +1,53 @@
+<?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="98.000000mm" version="1.1" viewBox="0.000000 0.000000 214.000000 98.000000" width="214.000000mm">
+  <defs/>
+  <line stroke="#000000" x1="57.00000000000001" x2="0.0" y1="0.0" y2="0.0"/>
+  <line opacity="0.5" stroke="#ff0000" x1="57.00000000000001" x2="57.00000000000001" y1="0.0" y2="24.000000000000004"/>
+  <line stroke="#000000" x1="0.0" x2="57.00000000000001" y1="24.000000000000004" y2="24.000000000000004"/>
+  <line stroke="#000000" x1="0.0" x2="0.0" y1="0.0" y2="24.000000000000004"/>
+  <line stroke="#000000" x1="57.00000000000001" x2="90.0" y1="24.000000000000004" y2="24.000000000000004"/>
+  <line stroke="#000000" x1="90.0" x2="57.00000000000001" y1="0.0" y2="0.0"/>
+  <line stroke="#000000" x1="124.00000000000003" x2="90.0" y1="0.0" y2="0.0"/>
+  <line opacity="0.5" stroke="#0000ff" x1="90.0" x2="124.00000000000003" y1="24.000000000000004" y2="24.000000000000004"/>
+  <line stroke="#000000" x1="157.0" x2="124.00000000000003" y1="0.0" y2="0.0"/>
+  <line opacity="0.5" stroke="#ff0000" x1="157.0" x2="157.0" y1="24.000000000000004" y2="0.0"/>
+  <line stroke="#000000" x1="124.00000000000003" x2="157.0" y1="24.000000000000004" y2="24.000000000000004"/>
+  <line stroke="#000000" x1="157.0" x2="214.0" y1="24.000000000000004" y2="24.000000000000004"/>
+  <line stroke="#000000" x1="214.0" x2="157.0" y1="0.0" y2="0.0"/>
+  <line stroke="#000000" x1="214.0" x2="214.0" y1="24.000000000000004" y2="0.0"/>
+  <line stroke="#000000" x1="90.0" x2="90.0" y1="24.000000000000004" y2="44.00000000000001"/>
+  <line stroke="#000000" x1="124.00000000000003" x2="124.00000000000003" y1="44.00000000000001" y2="24.000000000000004"/>
+  <line opacity="0.5" stroke="#0000ff" x1="90.0" x2="124.00000000000003" y1="44.00000000000001" y2="44.00000000000001"/>
+  <line stroke="#000000" x1="90.0" x2="90.0" y1="44.00000000000001" y2="68.0"/>
+  <line stroke="#000000" x1="124.00000000000003" x2="124.00000000000003" y1="68.0" y2="44.00000000000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="90.0" x2="124.00000000000003" y1="68.0" y2="68.0"/>
+  <line stroke="#000000" x1="90.0" x2="90.0" y1="68.0" y2="88.00000000000001"/>
+  <line stroke="#000000" x1="124.00000000000003" x2="124.00000000000003" y1="88.00000000000001" y2="68.0"/>
+  <line opacity="0.5" stroke="#0000ff" x1="124.00000000000003" x2="90.0" y1="88.00000000000001" y2="88.00000000000001"/>
+  <line stroke="#000000" x1="124.00000000000003" x2="124.00000000000003" y1="98.00000000000001" y2="88.00000000000001"/>
+  <line stroke="#000000" x1="90.0" x2="124.00000000000003" y1="98.00000000000001" y2="98.00000000000001"/>
+  <line stroke="#000000" x1="90.0" x2="90.0" y1="88.00000000000001" y2="98.00000000000001"/>
+  <line stroke="#888888" x1="112.91666666666669" x2="101.08333333333336" y1="7.749999999999998" y2="7.750000000000002"/>
+  <line stroke="#888888" x1="101.08333333333336" x2="101.08333333333336" y1="7.750000000000002" y2="7.25"/>
+  <line stroke="#888888" x1="101.08333333333336" x2="112.91666666666669" y1="7.25" y2="7.249999999999998"/>
+  <line stroke="#888888" x1="112.91666666666669" x2="112.91666666666669" y1="7.249999999999998" y2="7.749999999999998"/>
+  <line stroke="#888888" x1="101.00000000000001" x2="101.00000000000001" y1="43.00000000000001" y2="39.00000000000001"/>
+  <line stroke="#888888" x1="101.00000000000001" x2="113.00000000000001" y1="39.00000000000001" y2="39.00000000000001"/>
+  <line stroke="#888888" x1="113.00000000000001" x2="113.00000000000001" y1="39.00000000000001" y2="43.00000000000001"/>
+  <line stroke="#888888" x1="113.00000000000001" x2="101.00000000000001" y1="43.00000000000001" y2="43.00000000000001"/>
+  <line stroke="#888888" x1="102.50000000000001" x2="102.50000000000001" y1="31.000000000000007" y2="27.000000000000004"/>
+  <line stroke="#888888" x1="102.50000000000001" x2="111.5" y1="27.000000000000004" y2="27.000000000000004"/>
+  <line stroke="#888888" x1="111.5" x2="111.5" y1="27.000000000000004" y2="31.000000000000007"/>
+  <line stroke="#888888" x1="111.5" x2="102.50000000000001" y1="31.000000000000007" y2="31.000000000000007"/>
+  <line stroke="#888888" x1="101.00000000000001" x2="101.00000000000001" y1="67.50000000000001" y2="44.50000000000001"/>
+  <line stroke="#888888" x1="101.00000000000001" x2="113.00000000000001" y1="44.50000000000001" y2="44.50000000000001"/>
+  <line stroke="#888888" x1="113.00000000000001" x2="113.00000000000001" y1="44.50000000000001" y2="67.50000000000001"/>
+  <line stroke="#888888" x1="113.00000000000001" x2="101.00000000000001" y1="67.50000000000001" y2="67.50000000000001"/>
+  <line stroke="#888888" x1="101.00000000000001" x2="101.00000000000001" y1="73.0" y2="69.00000000000001"/>
+  <line stroke="#888888" x1="101.00000000000001" x2="113.00000000000001" y1="69.00000000000001" y2="69.00000000000001"/>
+  <line stroke="#888888" x1="113.00000000000001" x2="113.00000000000001" y1="69.00000000000001" y2="73.0"/>
+  <line stroke="#888888" x1="113.00000000000001" x2="101.00000000000001" y1="73.0" y2="73.0"/>
+  <line stroke="#888888" x1="101.33333333333336" x2="101.33333333333336" y1="95.5" y2="90.50000000000001"/>
+  <line stroke="#888888" x1="101.33333333333336" x2="112.66666666666669" y1="90.50000000000001" y2="90.50000000000001"/>
+  <line stroke="#888888" x1="112.66666666666669" x2="112.66666666666669" y1="90.50000000000001" y2="95.5"/>
+</svg>
diff --git a/rocolib/output/BottomServoMount/graph-autofold-default.dxf b/rocolib/output/BottomServoMount/graph-autofold-default.dxf
new file mode 100644
index 0000000000000000000000000000000000000000..fbf6a63243aed24a267e4f97ccb37dc7694366dc
--- /dev/null
+++ b/rocolib/output/BottomServoMount/graph-autofold-default.dxf
@@ -0,0 +1,1866 @@
+  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
+8
+  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
+-90
+ 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
+ 62
+5
+  8
+cut
+ 10
+57.00000000000001
+ 20
+0.0
+ 30
+0.0
+ 11
+0.0
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+57.00000000000001
+ 20
+0.0
+ 30
+0.0
+ 11
+57.00000000000001
+ 21
+24.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+0.0
+ 20
+24.000000000000004
+ 30
+0.0
+ 11
+57.00000000000001
+ 21
+24.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+0.0
+ 20
+0.0
+ 30
+0.0
+ 11
+0.0
+ 21
+24.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+57.00000000000001
+ 20
+24.000000000000004
+ 30
+0.0
+ 11
+90.0
+ 21
+24.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+90.0
+ 20
+0.0
+ 30
+0.0
+ 11
+57.00000000000001
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+124.00000000000003
+ 20
+0.0
+ 30
+0.0
+ 11
+90.0
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+90.0
+ 20
+24.000000000000004
+ 30
+0.0
+ 11
+124.00000000000003
+ 21
+24.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+157.0
+ 20
+0.0
+ 30
+0.0
+ 11
+124.00000000000003
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+157.0
+ 20
+24.000000000000004
+ 30
+0.0
+ 11
+157.0
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+124.00000000000003
+ 20
+24.000000000000004
+ 30
+0.0
+ 11
+157.0
+ 21
+24.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+157.0
+ 20
+24.000000000000004
+ 30
+0.0
+ 11
+214.0
+ 21
+24.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+214.0
+ 20
+0.0
+ 30
+0.0
+ 11
+157.0
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+214.0
+ 20
+24.000000000000004
+ 30
+0.0
+ 11
+214.0
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+90.0
+ 20
+24.000000000000004
+ 30
+0.0
+ 11
+90.0
+ 21
+44.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+124.00000000000003
+ 20
+44.00000000000001
+ 30
+0.0
+ 11
+124.00000000000003
+ 21
+24.000000000000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+90.0
+ 20
+44.00000000000001
+ 30
+0.0
+ 11
+124.00000000000003
+ 21
+44.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+90.0
+ 20
+44.00000000000001
+ 30
+0.0
+ 11
+90.0
+ 21
+68.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+124.00000000000003
+ 20
+68.0
+ 30
+0.0
+ 11
+124.00000000000003
+ 21
+44.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+90.0
+ 20
+68.0
+ 30
+0.0
+ 11
+124.00000000000003
+ 21
+68.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+90.0
+ 20
+68.0
+ 30
+0.0
+ 11
+90.0
+ 21
+88.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+124.00000000000003
+ 20
+88.00000000000001
+ 30
+0.0
+ 11
+124.00000000000003
+ 21
+68.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+124.00000000000003
+ 20
+88.00000000000001
+ 30
+0.0
+ 11
+90.0
+ 21
+88.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+124.00000000000003
+ 20
+98.00000000000001
+ 30
+0.0
+ 11
+124.00000000000003
+ 21
+88.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+90.0
+ 20
+98.00000000000001
+ 30
+0.0
+ 11
+124.00000000000003
+ 21
+98.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+90.0
+ 20
+88.00000000000001
+ 30
+0.0
+ 11
+90.0
+ 21
+98.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+112.91666666666669
+ 20
+7.749999999999998
+ 30
+0.0
+ 11
+101.08333333333336
+ 21
+7.750000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+101.08333333333336
+ 20
+7.750000000000002
+ 30
+0.0
+ 11
+101.08333333333336
+ 21
+7.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+101.08333333333336
+ 20
+7.25
+ 30
+0.0
+ 11
+112.91666666666669
+ 21
+7.249999999999998
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+112.91666666666669
+ 20
+7.249999999999998
+ 30
+0.0
+ 11
+112.91666666666669
+ 21
+7.749999999999998
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+101.00000000000001
+ 20
+43.00000000000001
+ 30
+0.0
+ 11
+101.00000000000001
+ 21
+39.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+101.00000000000001
+ 20
+39.00000000000001
+ 30
+0.0
+ 11
+113.00000000000001
+ 21
+39.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+113.00000000000001
+ 20
+39.00000000000001
+ 30
+0.0
+ 11
+113.00000000000001
+ 21
+43.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+113.00000000000001
+ 20
+43.00000000000001
+ 30
+0.0
+ 11
+101.00000000000001
+ 21
+43.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+102.50000000000001
+ 20
+31.000000000000007
+ 30
+0.0
+ 11
+102.50000000000001
+ 21
+27.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+102.50000000000001
+ 20
+27.000000000000004
+ 30
+0.0
+ 11
+111.5
+ 21
+27.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+111.5
+ 20
+27.000000000000004
+ 30
+0.0
+ 11
+111.5
+ 21
+31.000000000000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+111.5
+ 20
+31.000000000000007
+ 30
+0.0
+ 11
+102.50000000000001
+ 21
+31.000000000000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+101.00000000000001
+ 20
+67.50000000000001
+ 30
+0.0
+ 11
+101.00000000000001
+ 21
+44.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+101.00000000000001
+ 20
+44.50000000000001
+ 30
+0.0
+ 11
+113.00000000000001
+ 21
+44.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+113.00000000000001
+ 20
+44.50000000000001
+ 30
+0.0
+ 11
+113.00000000000001
+ 21
+67.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+113.00000000000001
+ 20
+67.50000000000001
+ 30
+0.0
+ 11
+101.00000000000001
+ 21
+67.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+101.00000000000001
+ 20
+73.0
+ 30
+0.0
+ 11
+101.00000000000001
+ 21
+69.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+101.00000000000001
+ 20
+69.00000000000001
+ 30
+0.0
+ 11
+113.00000000000001
+ 21
+69.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+113.00000000000001
+ 20
+69.00000000000001
+ 30
+0.0
+ 11
+113.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+113.00000000000001
+ 20
+73.0
+ 30
+0.0
+ 11
+101.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+101.33333333333336
+ 20
+95.5
+ 30
+0.0
+ 11
+101.33333333333336
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+101.33333333333336
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+112.66666666666669
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+112.66666666666669
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+112.66666666666669
+ 21
+95.5
+ 31
+0.0
+  0
+ENDSEC
+  0
+EOF
diff --git a/rocolib/output/BottomServoMount/graph-autofold-graph.dxf b/rocolib/output/BottomServoMount/graph-autofold-graph.dxf
new file mode 100644
index 0000000000000000000000000000000000000000..5535d60344e461fa2008710b4071a0f5d1e79a4b
--- /dev/null
+++ b/rocolib/output/BottomServoMount/graph-autofold-graph.dxf
@@ -0,0 +1,1836 @@
+  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
+57.00000000000001
+ 20
+0.0
+ 30
+0.0
+ 11
+0.0
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+57.00000000000001
+ 20
+0.0
+ 30
+0.0
+ 11
+57.00000000000001
+ 21
+24.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+24.000000000000004
+ 30
+0.0
+ 11
+57.00000000000001
+ 21
+24.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+0.0
+ 30
+0.0
+ 11
+0.0
+ 21
+24.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+57.00000000000001
+ 20
+24.000000000000004
+ 30
+0.0
+ 11
+90.0
+ 21
+24.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+90.0
+ 20
+0.0
+ 30
+0.0
+ 11
+57.00000000000001
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+124.00000000000003
+ 20
+0.0
+ 30
+0.0
+ 11
+90.0
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+90.0
+ 20
+24.000000000000004
+ 30
+0.0
+ 11
+124.00000000000003
+ 21
+24.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+157.0
+ 20
+0.0
+ 30
+0.0
+ 11
+124.00000000000003
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+157.0
+ 20
+24.000000000000004
+ 30
+0.0
+ 11
+157.0
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+124.00000000000003
+ 20
+24.000000000000004
+ 30
+0.0
+ 11
+157.0
+ 21
+24.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+157.0
+ 20
+24.000000000000004
+ 30
+0.0
+ 11
+214.0
+ 21
+24.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+214.0
+ 20
+0.0
+ 30
+0.0
+ 11
+157.0
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+214.0
+ 20
+24.000000000000004
+ 30
+0.0
+ 11
+214.0
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+90.0
+ 20
+24.000000000000004
+ 30
+0.0
+ 11
+90.0
+ 21
+44.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+124.00000000000003
+ 20
+44.00000000000001
+ 30
+0.0
+ 11
+124.00000000000003
+ 21
+24.000000000000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+90.0
+ 20
+44.00000000000001
+ 30
+0.0
+ 11
+124.00000000000003
+ 21
+44.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+90.0
+ 20
+44.00000000000001
+ 30
+0.0
+ 11
+90.0
+ 21
+68.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+124.00000000000003
+ 20
+68.0
+ 30
+0.0
+ 11
+124.00000000000003
+ 21
+44.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+90.0
+ 20
+68.0
+ 30
+0.0
+ 11
+124.00000000000003
+ 21
+68.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+90.0
+ 20
+68.0
+ 30
+0.0
+ 11
+90.0
+ 21
+88.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+124.00000000000003
+ 20
+88.00000000000001
+ 30
+0.0
+ 11
+124.00000000000003
+ 21
+68.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+124.00000000000003
+ 20
+88.00000000000001
+ 30
+0.0
+ 11
+90.0
+ 21
+88.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+124.00000000000003
+ 20
+98.00000000000001
+ 30
+0.0
+ 11
+124.00000000000003
+ 21
+88.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+90.0
+ 20
+98.00000000000001
+ 30
+0.0
+ 11
+124.00000000000003
+ 21
+98.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+90.0
+ 20
+88.00000000000001
+ 30
+0.0
+ 11
+90.0
+ 21
+98.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+112.91666666666669
+ 20
+7.749999999999998
+ 30
+0.0
+ 11
+101.08333333333336
+ 21
+7.750000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.08333333333336
+ 20
+7.750000000000002
+ 30
+0.0
+ 11
+101.08333333333336
+ 21
+7.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.08333333333336
+ 20
+7.25
+ 30
+0.0
+ 11
+112.91666666666669
+ 21
+7.249999999999998
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+112.91666666666669
+ 20
+7.249999999999998
+ 30
+0.0
+ 11
+112.91666666666669
+ 21
+7.749999999999998
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.00000000000001
+ 20
+43.00000000000001
+ 30
+0.0
+ 11
+101.00000000000001
+ 21
+39.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.00000000000001
+ 20
+39.00000000000001
+ 30
+0.0
+ 11
+113.00000000000001
+ 21
+39.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+113.00000000000001
+ 20
+39.00000000000001
+ 30
+0.0
+ 11
+113.00000000000001
+ 21
+43.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+113.00000000000001
+ 20
+43.00000000000001
+ 30
+0.0
+ 11
+101.00000000000001
+ 21
+43.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+102.50000000000001
+ 20
+31.000000000000007
+ 30
+0.0
+ 11
+102.50000000000001
+ 21
+27.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+102.50000000000001
+ 20
+27.000000000000004
+ 30
+0.0
+ 11
+111.5
+ 21
+27.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+111.5
+ 20
+27.000000000000004
+ 30
+0.0
+ 11
+111.5
+ 21
+31.000000000000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+111.5
+ 20
+31.000000000000007
+ 30
+0.0
+ 11
+102.50000000000001
+ 21
+31.000000000000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.00000000000001
+ 20
+67.50000000000001
+ 30
+0.0
+ 11
+101.00000000000001
+ 21
+44.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.00000000000001
+ 20
+44.50000000000001
+ 30
+0.0
+ 11
+113.00000000000001
+ 21
+44.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+113.00000000000001
+ 20
+44.50000000000001
+ 30
+0.0
+ 11
+113.00000000000001
+ 21
+67.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+113.00000000000001
+ 20
+67.50000000000001
+ 30
+0.0
+ 11
+101.00000000000001
+ 21
+67.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.00000000000001
+ 20
+73.0
+ 30
+0.0
+ 11
+101.00000000000001
+ 21
+69.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.00000000000001
+ 20
+69.00000000000001
+ 30
+0.0
+ 11
+113.00000000000001
+ 21
+69.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+113.00000000000001
+ 20
+69.00000000000001
+ 30
+0.0
+ 11
+113.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+113.00000000000001
+ 20
+73.0
+ 30
+0.0
+ 11
+101.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.33333333333336
+ 20
+95.5
+ 30
+0.0
+ 11
+101.33333333333336
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.33333333333336
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+112.66666666666669
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+112.66666666666669
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+112.66666666666669
+ 21
+95.5
+ 31
+0.0
+  0
+ENDSEC
+  0
+EOF
diff --git a/rocolib/output/BottomServoMount/graph-lasercutter.svg b/rocolib/output/BottomServoMount/graph-lasercutter.svg
new file mode 100644
index 0000000000000000000000000000000000000000..8d834018b05c2410bc40f124e59c14359ed9092f
--- /dev/null
+++ b/rocolib/output/BottomServoMount/graph-lasercutter.svg
@@ -0,0 +1,53 @@
+<?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="98.000000mm" version="1.1" viewBox="0.000000 0.000000 214.000000 98.000000" width="214.000000mm">
+  <defs/>
+  <line stroke="#000000" x1="57.00000000000001" x2="0.0" y1="0.0" y2="0.0"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="57.00000000000001" x2="57.00000000000001" y1="0.0" y2="24.000000000000004"/>
+  <line stroke="#000000" x1="0.0" x2="57.00000000000001" y1="24.000000000000004" y2="24.000000000000004"/>
+  <line stroke="#000000" x1="0.0" x2="0.0" y1="0.0" y2="24.000000000000004"/>
+  <line stroke="#000000" x1="57.00000000000001" x2="90.0" y1="24.000000000000004" y2="24.000000000000004"/>
+  <line stroke="#000000" x1="90.0" x2="57.00000000000001" y1="0.0" y2="0.0"/>
+  <line stroke="#000000" x1="124.00000000000003" x2="90.0" y1="0.0" y2="0.0"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="90.0" x2="124.00000000000003" y1="24.000000000000004" y2="24.000000000000004"/>
+  <line stroke="#000000" x1="157.0" x2="124.00000000000003" y1="0.0" y2="0.0"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="157.0" x2="157.0" y1="24.000000000000004" y2="0.0"/>
+  <line stroke="#000000" x1="124.00000000000003" x2="157.0" y1="24.000000000000004" y2="24.000000000000004"/>
+  <line stroke="#000000" x1="157.0" x2="214.0" y1="24.000000000000004" y2="24.000000000000004"/>
+  <line stroke="#000000" x1="214.0" x2="157.0" y1="0.0" y2="0.0"/>
+  <line stroke="#000000" x1="214.0" x2="214.0" y1="24.000000000000004" y2="0.0"/>
+  <line stroke="#000000" x1="90.0" x2="90.0" y1="24.000000000000004" y2="44.00000000000001"/>
+  <line stroke="#000000" x1="124.00000000000003" x2="124.00000000000003" y1="44.00000000000001" y2="24.000000000000004"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="90.0" x2="124.00000000000003" y1="44.00000000000001" y2="44.00000000000001"/>
+  <line stroke="#000000" x1="90.0" x2="90.0" y1="44.00000000000001" y2="68.0"/>
+  <line stroke="#000000" x1="124.00000000000003" x2="124.00000000000003" y1="68.0" y2="44.00000000000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="90.0" x2="124.00000000000003" y1="68.0" y2="68.0"/>
+  <line stroke="#000000" x1="90.0" x2="90.0" y1="68.0" y2="88.00000000000001"/>
+  <line stroke="#000000" x1="124.00000000000003" x2="124.00000000000003" y1="88.00000000000001" y2="68.0"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="124.00000000000003" x2="90.0" y1="88.00000000000001" y2="88.00000000000001"/>
+  <line stroke="#000000" x1="124.00000000000003" x2="124.00000000000003" y1="98.00000000000001" y2="88.00000000000001"/>
+  <line stroke="#000000" x1="90.0" x2="124.00000000000003" y1="98.00000000000001" y2="98.00000000000001"/>
+  <line stroke="#000000" x1="90.0" x2="90.0" y1="88.00000000000001" y2="98.00000000000001"/>
+  <line stroke="#888888" x1="112.91666666666669" x2="101.08333333333336" y1="7.749999999999998" y2="7.750000000000002"/>
+  <line stroke="#888888" x1="101.08333333333336" x2="101.08333333333336" y1="7.750000000000002" y2="7.25"/>
+  <line stroke="#888888" x1="101.08333333333336" x2="112.91666666666669" y1="7.25" y2="7.249999999999998"/>
+  <line stroke="#888888" x1="112.91666666666669" x2="112.91666666666669" y1="7.249999999999998" y2="7.749999999999998"/>
+  <line stroke="#888888" x1="101.00000000000001" x2="101.00000000000001" y1="43.00000000000001" y2="39.00000000000001"/>
+  <line stroke="#888888" x1="101.00000000000001" x2="113.00000000000001" y1="39.00000000000001" y2="39.00000000000001"/>
+  <line stroke="#888888" x1="113.00000000000001" x2="113.00000000000001" y1="39.00000000000001" y2="43.00000000000001"/>
+  <line stroke="#888888" x1="113.00000000000001" x2="101.00000000000001" y1="43.00000000000001" y2="43.00000000000001"/>
+  <line stroke="#888888" x1="102.50000000000001" x2="102.50000000000001" y1="31.000000000000007" y2="27.000000000000004"/>
+  <line stroke="#888888" x1="102.50000000000001" x2="111.5" y1="27.000000000000004" y2="27.000000000000004"/>
+  <line stroke="#888888" x1="111.5" x2="111.5" y1="27.000000000000004" y2="31.000000000000007"/>
+  <line stroke="#888888" x1="111.5" x2="102.50000000000001" y1="31.000000000000007" y2="31.000000000000007"/>
+  <line stroke="#888888" x1="101.00000000000001" x2="101.00000000000001" y1="67.50000000000001" y2="44.50000000000001"/>
+  <line stroke="#888888" x1="101.00000000000001" x2="113.00000000000001" y1="44.50000000000001" y2="44.50000000000001"/>
+  <line stroke="#888888" x1="113.00000000000001" x2="113.00000000000001" y1="44.50000000000001" y2="67.50000000000001"/>
+  <line stroke="#888888" x1="113.00000000000001" x2="101.00000000000001" y1="67.50000000000001" y2="67.50000000000001"/>
+  <line stroke="#888888" x1="101.00000000000001" x2="101.00000000000001" y1="73.0" y2="69.00000000000001"/>
+  <line stroke="#888888" x1="101.00000000000001" x2="113.00000000000001" y1="69.00000000000001" y2="69.00000000000001"/>
+  <line stroke="#888888" x1="113.00000000000001" x2="113.00000000000001" y1="69.00000000000001" y2="73.0"/>
+  <line stroke="#888888" x1="113.00000000000001" x2="101.00000000000001" y1="73.0" y2="73.0"/>
+  <line stroke="#888888" x1="101.33333333333336" x2="101.33333333333336" y1="95.5" y2="90.50000000000001"/>
+  <line stroke="#888888" x1="101.33333333333336" x2="112.66666666666669" y1="90.50000000000001" y2="90.50000000000001"/>
+  <line stroke="#888888" x1="112.66666666666669" x2="112.66666666666669" y1="90.50000000000001" y2="95.5"/>
+</svg>
diff --git a/rocolib/output/BottomServoMount/graph-model.png b/rocolib/output/BottomServoMount/graph-model.png
new file mode 100644
index 0000000000000000000000000000000000000000..d2aee0d615689a9aba237d81ea248a900624bf66
Binary files /dev/null and b/rocolib/output/BottomServoMount/graph-model.png differ
diff --git a/rocolib/output/BottomServoMount/graph-model.stl b/rocolib/output/BottomServoMount/graph-model.stl
new file mode 100644
index 0000000000000000000000000000000000000000..1ece27a6b4858a95913166a460e7078c5ff9e492
--- /dev/null
+++ b/rocolib/output/BottomServoMount/graph-model.stl
@@ -0,0 +1,296 @@
+solid python
+facet normal 0 0 0
+outer loop
+vertex -0.0285 0.0120 0.0000
+vertex -0.0285 -0.0120 0.0000
+vertex 0.0285 -0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0285 -0.0120 0.0000
+vertex 0.0285 0.0120 0.0000
+vertex -0.0285 0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0285 -0.0120 0.1000
+vertex -0.0285 0.0120 0.1000
+vertex 0.0285 0.0120 0.1000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0285 0.0120 0.1000
+vertex 0.0285 -0.0120 0.1000
+vertex -0.0285 -0.0120 0.1000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0285 -0.0120 0.0330
+vertex 0.0435 -0.0120 0.0440
+vertex 0.0435 -0.0120 0.0560
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0435 -0.0120 0.0440
+vertex 0.0285 -0.0120 0.0330
+vertex 0.0485 -0.0120 0.0330
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0285 -0.0120 0.0670
+vertex 0.0435 -0.0120 0.0560
+vertex 0.0485 -0.0120 0.0670
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0435 -0.0120 0.0560
+vertex 0.0285 -0.0120 0.0670
+vertex 0.0285 -0.0120 0.0330
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0475 -0.0120 0.0440
+vertex 0.0485 -0.0120 0.0330
+vertex 0.0485 -0.0120 0.0670
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0485 -0.0120 0.0330
+vertex 0.0475 -0.0120 0.0440
+vertex 0.0435 -0.0120 0.0440
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0475 -0.0120 0.0560
+vertex 0.0485 -0.0120 0.0670
+vertex 0.0435 -0.0120 0.0560
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0485 -0.0120 0.0670
+vertex 0.0475 -0.0120 0.0560
+vertex 0.0475 -0.0120 0.0440
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0485 -0.0120 0.0330
+vertex 0.0485 -0.0115 0.0440
+vertex 0.0485 -0.0115 0.0560
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0485 -0.0115 0.0440
+vertex 0.0485 -0.0120 0.0330
+vertex 0.0485 0.0120 0.0330
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0485 -0.0120 0.0670
+vertex 0.0485 -0.0115 0.0560
+vertex 0.0485 0.0115 0.0560
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0485 -0.0115 0.0560
+vertex 0.0485 -0.0120 0.0670
+vertex 0.0485 -0.0120 0.0330
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0485 0.0115 0.0440
+vertex 0.0485 0.0120 0.0330
+vertex 0.0485 0.0120 0.0670
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0485 0.0120 0.0330
+vertex 0.0485 0.0115 0.0440
+vertex 0.0485 -0.0115 0.0440
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0485 0.0115 0.0560
+vertex 0.0485 0.0120 0.0670
+vertex 0.0485 -0.0120 0.0670
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0485 0.0120 0.0670
+vertex 0.0485 0.0115 0.0560
+vertex 0.0485 0.0115 0.0440
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0485 0.0120 0.0330
+vertex 0.0435 0.0120 0.0440
+vertex 0.0475 0.0120 0.0440
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0435 0.0120 0.0440
+vertex 0.0485 0.0120 0.0330
+vertex 0.0285 0.0120 0.0330
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0485 0.0120 0.0330
+vertex 0.0475 0.0120 0.0440
+vertex 0.0475 0.0120 0.0560
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0485 0.0120 0.0670
+vertex 0.0475 0.0120 0.0560
+vertex 0.0435 0.0120 0.0560
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0475 0.0120 0.0560
+vertex 0.0485 0.0120 0.0670
+vertex 0.0485 0.0120 0.0330
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0485 0.0120 0.0670
+vertex 0.0435 0.0120 0.0560
+vertex 0.0285 0.0120 0.0670
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0435 0.0120 0.0440
+vertex 0.0355 0.0120 0.0455
+vertex 0.0435 0.0120 0.0560
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0355 0.0120 0.0455
+vertex 0.0285 0.0120 0.0330
+vertex 0.0315 0.0120 0.0455
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0285 0.0120 0.0330
+vertex 0.0355 0.0120 0.0455
+vertex 0.0435 0.0120 0.0440
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0315 0.0120 0.0455
+vertex 0.0285 0.0120 0.0330
+vertex 0.0285 0.0120 0.0670
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0355 0.0120 0.0545
+vertex 0.0315 0.0120 0.0545
+vertex 0.0285 0.0120 0.0670
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0285 0.0120 0.0670
+vertex 0.0315 0.0120 0.0545
+vertex 0.0315 0.0120 0.0455
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0355 0.0120 0.0545
+vertex 0.0285 0.0120 0.0670
+vertex 0.0435 0.0120 0.0560
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0355 0.0120 0.0455
+vertex 0.0355 0.0120 0.0545
+vertex 0.0435 0.0120 0.0560
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0285 0.0120 0.0670
+vertex 0.0285 0.0120 0.0330
+vertex 0.0285 -0.0120 0.0330
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0285 -0.0120 0.0330
+vertex 0.0285 -0.0120 0.0670
+vertex 0.0285 0.0120 0.0670
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0285 -0.0120 0.0330
+vertex 0.0285 0.0120 0.0330
+vertex 0.0285 0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0285 0.0120 0.0000
+vertex 0.0285 -0.0120 0.0000
+vertex 0.0285 -0.0120 0.0330
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0285 0.0120 0.0670
+vertex 0.0285 -0.0120 0.0670
+vertex 0.0285 -0.0120 0.1000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0285 -0.0120 0.1000
+vertex 0.0285 0.0120 0.1000
+vertex 0.0285 0.0120 0.0670
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0285 -0.0020 0.0330
+vertex 0.0285 -0.0120 0.0330
+vertex 0.0285 -0.0120 0.0670
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0285 -0.0120 0.0670
+vertex 0.0285 -0.0020 0.0670
+vertex 0.0285 -0.0020 0.0330
+endloop
+endfacet
+endsolid python
diff --git a/rocolib/output/BottomServoMount/graph-silhouette.dxf b/rocolib/output/BottomServoMount/graph-silhouette.dxf
new file mode 100644
index 0000000000000000000000000000000000000000..4d9aba0b98a2ea72258b447b3574fe2bcc4ac413
--- /dev/null
+++ b/rocolib/output/BottomServoMount/graph-silhouette.dxf
@@ -0,0 +1,1836 @@
+  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
+57.00000000000001
+ 20
+0.0
+ 30
+0.0
+ 11
+0.0
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+57.00000000000001
+ 20
+0.0
+ 30
+0.0
+ 11
+57.00000000000001
+ 21
+24.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+24.000000000000004
+ 30
+0.0
+ 11
+57.00000000000001
+ 21
+24.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+0.0
+ 30
+0.0
+ 11
+0.0
+ 21
+24.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+57.00000000000001
+ 20
+24.000000000000004
+ 30
+0.0
+ 11
+90.0
+ 21
+24.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+90.0
+ 20
+0.0
+ 30
+0.0
+ 11
+57.00000000000001
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+124.00000000000003
+ 20
+0.0
+ 30
+0.0
+ 11
+90.0
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+90.0
+ 20
+24.000000000000004
+ 30
+0.0
+ 11
+124.00000000000003
+ 21
+24.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+157.0
+ 20
+0.0
+ 30
+0.0
+ 11
+124.00000000000003
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+157.0
+ 20
+24.000000000000004
+ 30
+0.0
+ 11
+157.0
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+124.00000000000003
+ 20
+24.000000000000004
+ 30
+0.0
+ 11
+157.0
+ 21
+24.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+157.0
+ 20
+24.000000000000004
+ 30
+0.0
+ 11
+214.0
+ 21
+24.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+214.0
+ 20
+0.0
+ 30
+0.0
+ 11
+157.0
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+214.0
+ 20
+24.000000000000004
+ 30
+0.0
+ 11
+214.0
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+90.0
+ 20
+24.000000000000004
+ 30
+0.0
+ 11
+90.0
+ 21
+44.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+124.00000000000003
+ 20
+44.00000000000001
+ 30
+0.0
+ 11
+124.00000000000003
+ 21
+24.000000000000004
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+90.0
+ 20
+44.00000000000001
+ 30
+0.0
+ 11
+124.00000000000003
+ 21
+44.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+90.0
+ 20
+44.00000000000001
+ 30
+0.0
+ 11
+90.0
+ 21
+68.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+124.00000000000003
+ 20
+68.0
+ 30
+0.0
+ 11
+124.00000000000003
+ 21
+44.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+90.0
+ 20
+68.0
+ 30
+0.0
+ 11
+124.00000000000003
+ 21
+68.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+90.0
+ 20
+68.0
+ 30
+0.0
+ 11
+90.0
+ 21
+88.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+124.00000000000003
+ 20
+88.00000000000001
+ 30
+0.0
+ 11
+124.00000000000003
+ 21
+68.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+124.00000000000003
+ 20
+88.00000000000001
+ 30
+0.0
+ 11
+90.0
+ 21
+88.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+124.00000000000003
+ 20
+98.00000000000001
+ 30
+0.0
+ 11
+124.00000000000003
+ 21
+88.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+90.0
+ 20
+98.00000000000001
+ 30
+0.0
+ 11
+124.00000000000003
+ 21
+98.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+90.0
+ 20
+88.00000000000001
+ 30
+0.0
+ 11
+90.0
+ 21
+98.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+112.91666666666669
+ 20
+7.749999999999998
+ 30
+0.0
+ 11
+101.08333333333336
+ 21
+7.750000000000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.08333333333336
+ 20
+7.750000000000002
+ 30
+0.0
+ 11
+101.08333333333336
+ 21
+7.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.08333333333336
+ 20
+7.25
+ 30
+0.0
+ 11
+112.91666666666669
+ 21
+7.249999999999998
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+112.91666666666669
+ 20
+7.249999999999998
+ 30
+0.0
+ 11
+112.91666666666669
+ 21
+7.749999999999998
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.00000000000001
+ 20
+43.00000000000001
+ 30
+0.0
+ 11
+101.00000000000001
+ 21
+39.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.00000000000001
+ 20
+39.00000000000001
+ 30
+0.0
+ 11
+113.00000000000001
+ 21
+39.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+113.00000000000001
+ 20
+39.00000000000001
+ 30
+0.0
+ 11
+113.00000000000001
+ 21
+43.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+113.00000000000001
+ 20
+43.00000000000001
+ 30
+0.0
+ 11
+101.00000000000001
+ 21
+43.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+102.50000000000001
+ 20
+31.000000000000007
+ 30
+0.0
+ 11
+102.50000000000001
+ 21
+27.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+102.50000000000001
+ 20
+27.000000000000004
+ 30
+0.0
+ 11
+111.5
+ 21
+27.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+111.5
+ 20
+27.000000000000004
+ 30
+0.0
+ 11
+111.5
+ 21
+31.000000000000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+111.5
+ 20
+31.000000000000007
+ 30
+0.0
+ 11
+102.50000000000001
+ 21
+31.000000000000007
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.00000000000001
+ 20
+67.50000000000001
+ 30
+0.0
+ 11
+101.00000000000001
+ 21
+44.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.00000000000001
+ 20
+44.50000000000001
+ 30
+0.0
+ 11
+113.00000000000001
+ 21
+44.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+113.00000000000001
+ 20
+44.50000000000001
+ 30
+0.0
+ 11
+113.00000000000001
+ 21
+67.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+113.00000000000001
+ 20
+67.50000000000001
+ 30
+0.0
+ 11
+101.00000000000001
+ 21
+67.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.00000000000001
+ 20
+73.0
+ 30
+0.0
+ 11
+101.00000000000001
+ 21
+69.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.00000000000001
+ 20
+69.00000000000001
+ 30
+0.0
+ 11
+113.00000000000001
+ 21
+69.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+113.00000000000001
+ 20
+69.00000000000001
+ 30
+0.0
+ 11
+113.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+113.00000000000001
+ 20
+73.0
+ 30
+0.0
+ 11
+101.00000000000001
+ 21
+73.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.33333333333336
+ 20
+95.5
+ 30
+0.0
+ 11
+101.33333333333336
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.33333333333336
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+112.66666666666669
+ 21
+90.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+112.66666666666669
+ 20
+90.50000000000001
+ 30
+0.0
+ 11
+112.66666666666669
+ 21
+95.5
+ 31
+0.0
+  0
+ENDSEC
+  0
+EOF
diff --git a/rocolib/output/BottomServoMount/tree.png b/rocolib/output/BottomServoMount/tree.png
new file mode 100644
index 0000000000000000000000000000000000000000..57da09031d1522c36cfcbeabccc8aa5b568d44a2
Binary files /dev/null and b/rocolib/output/BottomServoMount/tree.png differ
diff --git a/rocolib/output/DCStackMount/graph-anim.svg b/rocolib/output/DCStackMount/graph-anim.svg
new file mode 100644
index 0000000000000000000000000000000000000000..fd9be6e7c77e86855893e4e4974e196bb7b321ed
--- /dev/null
+++ b/rocolib/output/DCStackMount/graph-anim.svg
@@ -0,0 +1,418 @@
+<?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="160.000000mm" version="1.1" viewBox="0.000000 0.000000 369.000000 160.000000" width="369.000000mm">
+  <defs/>
+  <line opacity="0.5" stroke="#0000ff" x1="33.0" x2="94.00000000000001" y1="68.0" y2="68.0"/>
+  <line opacity="0.5" stroke="#0000ff" x1="94.00000000000001" x2="94.00000000000001" y1="68.0" y2="92.00000000000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="94.00000000000001" x2="33.0" y1="92.00000000000001" y2="92.00000000000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="33.0" x2="33.0" y1="92.00000000000001" y2="68.0"/>
+  <line stroke="#000000" x1="33.0" x2="33.0" y1="61.00000000000001" y2="68.0"/>
+  <line stroke="#000000" x1="93.00000000000001" x2="33.0" y1="61.00000000000001" y2="61.00000000000001"/>
+  <line stroke="#000000" x1="93.00000000000001" x2="93.00000000000001" y1="68.0" y2="61.00000000000001"/>
+  <line stroke="#000000" x1="101.00000000000001" x2="94.00000000000001" y1="68.0" y2="68.0"/>
+  <line stroke="#000000" x1="101.00000000000001" x2="101.00000000000001" y1="92.00000000000001" y2="68.0"/>
+  <line stroke="#000000" x1="94.00000000000001" x2="101.00000000000001" y1="92.00000000000001" y2="92.00000000000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="94.00000000000001" x2="94.00000000000001" y1="92.00000000000001" y2="153.00000000000003"/>
+  <line stroke="#000000" x1="34.0" x2="94.00000000000001" y1="153.00000000000003" y2="153.00000000000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="34.0" x2="34.0" y1="92.00000000000001" y2="153.00000000000003"/>
+  <line stroke="#000000" x1="118.00000000000001" x2="94.00000000000001" y1="92.00000000000001" y2="92.00000000000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="118.00000000000001" x2="118.00000000000001" y1="92.00000000000001" y2="153.00000000000003"/>
+  <line stroke="#000000" x1="94.00000000000001" x2="118.00000000000001" y1="153.00000000000003" y2="153.00000000000003"/>
+  <line stroke="#000000" x1="178.00000000000003" x2="118.00000000000001" y1="92.00000000000001" y2="92.00000000000001"/>
+  <line stroke="#000000" x1="178.00000000000003" x2="178.00000000000003" y1="153.00000000000003" y2="92.00000000000001"/>
+  <line stroke="#000000" x1="118.00000000000001" x2="178.00000000000003" y1="153.00000000000003" y2="153.00000000000003"/>
+  <line stroke="#000000" x1="34.0" x2="10.000000000000002" y1="92.00000000000001" y2="92.00000000000001"/>
+  <line stroke="#000000" x1="10.000000000000002" x2="34.0" y1="153.00000000000003" y2="153.00000000000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="10.000000000000002" x2="10.000000000000002" y1="153.00000000000003" y2="92.00000000000001"/>
+  <line stroke="#000000" x1="0.0" x2="10.000000000000002" y1="153.00000000000003" y2="153.00000000000003"/>
+  <line stroke="#000000" x1="0.0" x2="0.0" y1="92.00000000000001" y2="153.00000000000003"/>
+  <line stroke="#000000" x1="10.000000000000002" x2="0.0" y1="92.00000000000001" y2="92.00000000000001"/>
+  <line stroke="#000000" x1="26.000000000000004" x2="33.0" y1="92.00000000000001" y2="92.00000000000001"/>
+  <line stroke="#000000" x1="26.000000000000004" x2="26.000000000000004" y1="68.0" y2="92.00000000000001"/>
+  <line stroke="#000000" x1="33.0" x2="26.000000000000004" y1="68.0" y2="68.0"/>
+  <line stroke="#888888" x1="82.09090909090911" x2="85.59090909090911" y1="62.75000000000001" y2="62.75000000000001"/>
+  <line stroke="#888888" x1="85.59090909090911" x2="82.09090909090911" y1="62.75000000000001" y2="66.25000000000001"/>
+  <line stroke="#888888" x1="82.09090909090911" x2="71.1818181818182" y1="66.25000000000001" y2="66.25000000000001"/>
+  <line stroke="#888888" x1="71.1818181818182" x2="67.68181818181819" y1="66.25000000000001" y2="62.75000000000001"/>
+  <line stroke="#888888" x1="67.68181818181819" x2="71.1818181818182" y1="62.75000000000001" y2="62.75000000000001"/>
+  <line stroke="#888888" x1="54.818181818181834" x2="58.31818181818183" y1="62.75000000000001" y2="62.75000000000001"/>
+  <line stroke="#888888" x1="58.31818181818183" x2="54.818181818181834" y1="62.75000000000001" y2="66.25000000000001"/>
+  <line stroke="#888888" x1="54.818181818181834" x2="43.909090909090914" y1="66.25000000000001" y2="66.25000000000001"/>
+  <line stroke="#888888" x1="43.909090909090914" x2="40.40909090909092" y1="66.25000000000001" y2="62.75000000000001"/>
+  <line stroke="#888888" x1="40.40909090909092" x2="43.909090909090914" y1="62.75000000000001" y2="62.75000000000001"/>
+  <line stroke="#888888" x1="99.25000000000001" x2="95.75000000000001" y1="84.0" y2="84.0"/>
+  <line stroke="#888888" x1="95.75000000000001" x2="95.75000000000001" y1="84.0" y2="76.00000000000001"/>
+  <line stroke="#888888" x1="95.75000000000001" x2="99.25000000000001" y1="76.00000000000001" y2="76.00000000000001"/>
+  <line stroke="#888888" x1="41.5" x2="41.5" y1="143.5" y2="125.50000000000001"/>
+  <line stroke="#888888" x1="41.5" x2="76.50000000000001" y1="125.50000000000001" y2="125.50000000000001"/>
+  <line stroke="#888888" x1="76.50000000000001" x2="76.50000000000001" y1="125.50000000000001" y2="143.5"/>
+  <line stroke="#888888" x1="76.50000000000001" x2="41.5" y1="143.5" y2="143.5"/>
+  <line stroke="#888888" x1="94.5" x2="94.5" y1="105.25000000000001" y2="102.25000000000001"/>
+  <line stroke="#888888" x1="94.5" x2="97.50000000000001" y1="102.25000000000001" y2="102.25000000000001"/>
+  <line stroke="#888888" x1="97.50000000000001" x2="97.50000000000001" y1="102.25000000000001" y2="105.25000000000001"/>
+  <line stroke="#888888" x1="97.50000000000001" x2="94.5" y1="105.25000000000001" y2="105.25000000000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="115.50000000000001" y1="104.25000000000001" y2="103.25000000000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="116.50000000000001" y1="103.25000000000001" y2="103.25000000000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="116.50000000000001" y1="103.25000000000001" y2="104.25000000000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="115.50000000000001" y1="104.25000000000001" y2="104.25000000000001"/>
+  <line stroke="#888888" x1="95.5" x2="95.5" y1="106.75000000000001" y2="105.75"/>
+  <line stroke="#888888" x1="95.5" x2="96.50000000000001" y1="105.75" y2="105.75"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="96.50000000000001" y1="105.75" y2="106.75000000000001"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="95.5" y1="106.75000000000001" y2="106.75000000000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="115.50000000000001" y1="106.75000000000001" y2="105.75"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="116.50000000000001" y1="105.75" y2="105.75"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="116.50000000000001" y1="105.75" y2="106.75000000000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="115.50000000000001" y1="106.75000000000001" y2="106.75000000000001"/>
+  <line stroke="#888888" x1="95.5" x2="95.5" y1="109.25" y2="108.25000000000001"/>
+  <line stroke="#888888" x1="95.5" x2="96.50000000000001" y1="108.25000000000001" y2="108.25000000000001"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="96.50000000000001" y1="108.25000000000001" y2="109.25"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="95.5" y1="109.25" y2="109.25"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="115.50000000000001" y1="109.25" y2="108.25000000000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="116.50000000000001" y1="108.25000000000001" y2="108.25000000000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="116.50000000000001" y1="108.25000000000001" y2="109.25"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="115.50000000000001" y1="109.25" y2="109.25"/>
+  <line stroke="#888888" x1="95.5" x2="95.5" y1="111.75000000000001" y2="110.75000000000001"/>
+  <line stroke="#888888" x1="95.5" x2="96.50000000000001" y1="110.75000000000001" y2="110.75000000000001"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="96.50000000000001" y1="110.75000000000001" y2="111.75000000000001"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="95.5" y1="111.75000000000001" y2="111.75000000000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="115.50000000000001" y1="111.75000000000001" y2="110.75000000000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="116.50000000000001" y1="110.75000000000001" y2="110.75000000000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="116.50000000000001" y1="110.75000000000001" y2="111.75000000000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="115.50000000000001" y1="111.75000000000001" y2="111.75000000000001"/>
+  <line stroke="#888888" x1="95.5" x2="95.5" y1="114.25000000000001" y2="113.25000000000001"/>
+  <line stroke="#888888" x1="95.5" x2="96.50000000000001" y1="113.25000000000001" y2="113.25000000000001"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="96.50000000000001" y1="113.25000000000001" y2="114.25000000000001"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="95.5" y1="114.25000000000001" y2="114.25000000000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="115.50000000000001" y1="114.25000000000001" y2="113.25000000000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="116.50000000000001" y1="113.25000000000001" y2="113.25000000000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="116.50000000000001" y1="113.25000000000001" y2="114.25000000000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="115.50000000000001" y1="114.25000000000001" y2="114.25000000000001"/>
+  <line stroke="#888888" x1="95.5" x2="95.5" y1="116.75000000000001" y2="115.75000000000001"/>
+  <line stroke="#888888" x1="95.5" x2="96.50000000000001" y1="115.75000000000001" y2="115.75000000000001"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="96.50000000000001" y1="115.75000000000001" y2="116.75000000000001"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="95.5" y1="116.75000000000001" y2="116.75000000000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="115.50000000000001" y1="116.75000000000001" y2="115.75000000000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="116.50000000000001" y1="115.75000000000001" y2="115.75000000000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="116.50000000000001" y1="115.75000000000001" y2="116.75000000000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="115.50000000000001" y1="116.75000000000001" y2="116.75000000000001"/>
+  <line stroke="#888888" x1="95.5" x2="95.5" y1="119.25000000000001" y2="118.25000000000001"/>
+  <line stroke="#888888" x1="95.5" x2="96.50000000000001" y1="118.25000000000001" y2="118.25000000000001"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="96.50000000000001" y1="118.25000000000001" y2="119.25000000000001"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="95.5" y1="119.25000000000001" y2="119.25000000000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="115.50000000000001" y1="119.25000000000001" y2="118.25000000000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="116.50000000000001" y1="118.25000000000001" y2="118.25000000000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="116.50000000000001" y1="118.25000000000001" y2="119.25000000000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="115.50000000000001" y1="119.25000000000001" y2="119.25000000000001"/>
+  <line stroke="#888888" x1="95.5" x2="95.5" y1="121.75000000000001" y2="120.75000000000001"/>
+  <line stroke="#888888" x1="95.5" x2="96.50000000000001" y1="120.75000000000001" y2="120.75000000000001"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="96.50000000000001" y1="120.75000000000001" y2="121.75000000000001"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="95.5" y1="121.75000000000001" y2="121.75000000000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="115.50000000000001" y1="121.75000000000001" y2="120.75000000000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="116.50000000000001" y1="120.75000000000001" y2="120.75000000000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="116.50000000000001" y1="120.75000000000001" y2="121.75000000000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="115.50000000000001" y1="121.75000000000001" y2="121.75000000000001"/>
+  <line stroke="#888888" x1="95.5" x2="95.5" y1="124.25000000000001" y2="123.25000000000001"/>
+  <line stroke="#888888" x1="95.5" x2="96.50000000000001" y1="123.25000000000001" y2="123.25000000000001"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="96.50000000000001" y1="123.25000000000001" y2="124.25000000000001"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="95.5" y1="124.25000000000001" y2="124.25000000000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="115.50000000000001" y1="124.25000000000001" y2="123.25000000000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="116.50000000000001" y1="123.25000000000001" y2="123.25000000000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="116.50000000000001" y1="123.25000000000001" y2="124.25000000000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="115.50000000000001" y1="124.25000000000001" y2="124.25000000000001"/>
+  <line stroke="#888888" x1="95.5" x2="95.5" y1="126.75000000000001" y2="125.75000000000001"/>
+  <line stroke="#888888" x1="95.5" x2="96.50000000000001" y1="125.75000000000001" y2="125.75000000000001"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="96.50000000000001" y1="125.75000000000001" y2="126.75000000000001"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="95.5" y1="126.75000000000001" y2="126.75000000000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="115.50000000000001" y1="126.75000000000001" y2="125.75000000000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="116.50000000000001" y1="125.75000000000001" y2="125.75000000000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="116.50000000000001" y1="125.75000000000001" y2="126.75000000000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="115.50000000000001" y1="126.75000000000001" y2="126.75000000000001"/>
+  <line stroke="#888888" x1="95.5" x2="95.5" y1="129.25000000000003" y2="128.25000000000003"/>
+  <line stroke="#888888" x1="95.5" x2="96.50000000000001" y1="128.25000000000003" y2="128.25000000000003"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="96.50000000000001" y1="128.25000000000003" y2="129.25000000000003"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="95.5" y1="129.25000000000003" y2="129.25000000000003"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="115.50000000000001" y1="129.25000000000003" y2="128.25000000000003"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="116.50000000000001" y1="128.25000000000003" y2="128.25000000000003"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="116.50000000000001" y1="128.25000000000003" y2="129.25000000000003"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="115.50000000000001" y1="129.25000000000003" y2="129.25000000000003"/>
+  <line stroke="#888888" x1="95.5" x2="95.5" y1="131.75000000000003" y2="130.75000000000003"/>
+  <line stroke="#888888" x1="95.5" x2="96.50000000000001" y1="130.75000000000003" y2="130.75000000000003"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="96.50000000000001" y1="130.75000000000003" y2="131.75000000000003"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="95.5" y1="131.75000000000003" y2="131.75000000000003"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="115.50000000000001" y1="131.75000000000003" y2="130.75000000000003"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="116.50000000000001" y1="130.75000000000003" y2="130.75000000000003"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="116.50000000000001" y1="130.75000000000003" y2="131.75000000000003"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="115.50000000000001" y1="131.75000000000003" y2="131.75000000000003"/>
+  <line stroke="#888888" x1="95.5" x2="95.5" y1="134.25000000000003" y2="133.25"/>
+  <line stroke="#888888" x1="95.5" x2="96.50000000000001" y1="133.25" y2="133.25"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="96.50000000000001" y1="133.25" y2="134.25000000000003"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="95.5" y1="134.25000000000003" y2="134.25000000000003"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="115.50000000000001" y1="134.25000000000003" y2="133.25"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="116.50000000000001" y1="133.25" y2="133.25"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="116.50000000000001" y1="133.25" y2="134.25000000000003"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="115.50000000000001" y1="134.25000000000003" y2="134.25000000000003"/>
+  <line stroke="#888888" x1="95.5" x2="95.5" y1="136.75" y2="135.75000000000003"/>
+  <line stroke="#888888" x1="95.5" x2="96.50000000000001" y1="135.75000000000003" y2="135.75000000000003"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="96.50000000000001" y1="135.75000000000003" y2="136.75"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="95.5" y1="136.75" y2="136.75"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="115.50000000000001" y1="136.75" y2="135.75000000000003"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="116.50000000000001" y1="135.75000000000003" y2="135.75000000000003"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="116.50000000000001" y1="135.75000000000003" y2="136.75"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="115.50000000000001" y1="136.75" y2="136.75"/>
+  <line stroke="#888888" x1="95.5" x2="95.5" y1="139.25" y2="138.25000000000003"/>
+  <line stroke="#888888" x1="95.5" x2="96.50000000000001" y1="138.25000000000003" y2="138.25000000000003"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="96.50000000000001" y1="138.25000000000003" y2="139.25"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="95.5" y1="139.25" y2="139.25"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="115.50000000000001" y1="139.25" y2="138.25000000000003"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="116.50000000000001" y1="138.25000000000003" y2="138.25000000000003"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="116.50000000000001" y1="138.25000000000003" y2="139.25"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="115.50000000000001" y1="139.25" y2="139.25"/>
+  <line stroke="#888888" x1="95.5" x2="95.5" y1="141.75000000000003" y2="140.75"/>
+  <line stroke="#888888" x1="95.5" x2="96.50000000000001" y1="140.75" y2="140.75"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="96.50000000000001" y1="140.75" y2="141.75000000000003"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="95.5" y1="141.75000000000003" y2="141.75000000000003"/>
+  <line stroke="#888888" x1="114.50000000000001" x2="114.50000000000001" y1="142.75000000000003" y2="139.75000000000003"/>
+  <line stroke="#888888" x1="114.50000000000001" x2="117.50000000000001" y1="139.75000000000003" y2="139.75000000000003"/>
+  <line stroke="#888888" x1="117.50000000000001" x2="117.50000000000001" y1="139.75000000000003" y2="142.75000000000003"/>
+  <line stroke="#888888" x1="117.50000000000001" x2="114.50000000000001" y1="142.75000000000003" y2="142.75000000000003"/>
+  <line stroke="#888888" x1="110.25000000000001" x2="101.75000000000001" y1="99.75000000000001" y2="99.75000000000001"/>
+  <line stroke="#888888" x1="101.75000000000001" x2="101.75000000000001" y1="99.75000000000001" y2="99.25000000000001"/>
+  <line stroke="#888888" x1="101.75000000000001" x2="110.25000000000001" y1="99.25000000000001" y2="99.25000000000001"/>
+  <line stroke="#888888" x1="110.25000000000001" x2="110.25000000000001" y1="99.25000000000001" y2="99.75000000000001"/>
+  <line stroke="#888888" x1="101.75000000000001" x2="110.25000000000001" y1="147.5" y2="147.5"/>
+  <line stroke="#888888" x1="110.25000000000001" x2="110.25000000000001" y1="147.5" y2="148.0"/>
+  <line stroke="#888888" x1="110.25000000000001" x2="101.75000000000001" y1="148.0" y2="148.0"/>
+  <line stroke="#888888" x1="101.75000000000001" x2="101.75000000000001" y1="148.0" y2="147.5"/>
+  <line stroke="#888888" x1="133.00000000000003" x2="133.00000000000003" y1="143.0" y2="130.0"/>
+  <line stroke="#888888" x1="133.00000000000003" x2="163.00000000000003" y1="130.0" y2="130.0"/>
+  <line stroke="#888888" x1="163.00000000000003" x2="163.00000000000003" y1="130.0" y2="143.0"/>
+  <line stroke="#888888" x1="163.00000000000003" x2="133.00000000000003" y1="143.0" y2="143.0"/>
+  <line stroke="#888888" x1="140.06818181818184" x2="128.65909090909093" y1="97.50000000000001" y2="97.50000000000001"/>
+  <line stroke="#888888" x1="128.65909090909093" x2="128.65909090909093" y1="97.50000000000001" y2="97.00000000000001"/>
+  <line stroke="#888888" x1="128.65909090909093" x2="140.06818181818184" y1="97.00000000000001" y2="97.00000000000001"/>
+  <line stroke="#888888" x1="140.06818181818184" x2="140.06818181818184" y1="97.00000000000001" y2="97.50000000000001"/>
+  <line stroke="#888888" x1="167.3409090909091" x2="155.93181818181822" y1="97.50000000000001" y2="97.50000000000001"/>
+  <line stroke="#888888" x1="155.93181818181822" x2="155.93181818181822" y1="97.50000000000001" y2="97.00000000000001"/>
+  <line stroke="#888888" x1="155.93181818181822" x2="167.3409090909091" y1="97.00000000000001" y2="97.00000000000001"/>
+  <line stroke="#888888" x1="167.3409090909091" x2="167.3409090909091" y1="97.00000000000001" y2="97.50000000000001"/>
+  <line stroke="#888888" x1="170.25000000000003" x2="170.25000000000003" y1="114.4318181818182" y2="102.84090909090911"/>
+  <line stroke="#888888" x1="170.25000000000003" x2="170.75" y1="102.84090909090911" y2="102.84090909090911"/>
+  <line stroke="#888888" x1="170.75" x2="170.75" y1="102.84090909090911" y2="114.4318181818182"/>
+  <line stroke="#888888" x1="170.75" x2="170.25000000000003" y1="114.4318181818182" y2="114.4318181818182"/>
+  <line stroke="#888888" x1="170.25000000000003" x2="170.25000000000003" y1="142.1590909090909" y2="130.56818181818184"/>
+  <line stroke="#888888" x1="170.25000000000003" x2="170.75" y1="130.56818181818184" y2="130.56818181818184"/>
+  <line stroke="#888888" x1="170.75" x2="170.75" y1="130.56818181818184" y2="142.1590909090909"/>
+  <line stroke="#888888" x1="170.75" x2="170.25000000000003" y1="142.1590909090909" y2="142.1590909090909"/>
+  <line stroke="#888888" x1="10.5" x2="10.5" y1="105.25000000000001" y2="102.25000000000001"/>
+  <line stroke="#888888" x1="10.5" x2="13.500000000000002" y1="102.25000000000001" y2="102.25000000000001"/>
+  <line stroke="#888888" x1="13.500000000000002" x2="13.500000000000002" y1="102.25000000000001" y2="105.25000000000001"/>
+  <line stroke="#888888" x1="13.500000000000002" x2="10.5" y1="105.25000000000001" y2="105.25000000000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="31.500000000000004" y1="104.25000000000001" y2="103.25000000000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="32.5" y1="103.25000000000001" y2="103.25000000000001"/>
+  <line stroke="#888888" x1="32.5" x2="32.5" y1="103.25000000000001" y2="104.25000000000001"/>
+  <line stroke="#888888" x1="32.5" x2="31.500000000000004" y1="104.25000000000001" y2="104.25000000000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="11.500000000000002" y1="106.75000000000001" y2="105.75"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="12.5" y1="105.75" y2="105.75"/>
+  <line stroke="#888888" x1="12.5" x2="12.5" y1="105.75" y2="106.75000000000001"/>
+  <line stroke="#888888" x1="12.5" x2="11.500000000000002" y1="106.75000000000001" y2="106.75000000000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="31.500000000000004" y1="106.75000000000001" y2="105.75"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="32.5" y1="105.75" y2="105.75"/>
+  <line stroke="#888888" x1="32.5" x2="32.5" y1="105.75" y2="106.75000000000001"/>
+  <line stroke="#888888" x1="32.5" x2="31.500000000000004" y1="106.75000000000001" y2="106.75000000000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="11.500000000000002" y1="109.25" y2="108.25000000000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="12.5" y1="108.25000000000001" y2="108.25000000000001"/>
+  <line stroke="#888888" x1="12.5" x2="12.5" y1="108.25000000000001" y2="109.25"/>
+  <line stroke="#888888" x1="12.5" x2="11.500000000000002" y1="109.25" y2="109.25"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="31.500000000000004" y1="109.25" y2="108.25000000000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="32.5" y1="108.25000000000001" y2="108.25000000000001"/>
+  <line stroke="#888888" x1="32.5" x2="32.5" y1="108.25000000000001" y2="109.25"/>
+  <line stroke="#888888" x1="32.5" x2="31.500000000000004" y1="109.25" y2="109.25"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="11.500000000000002" y1="111.75000000000001" y2="110.75000000000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="12.5" y1="110.75000000000001" y2="110.75000000000001"/>
+  <line stroke="#888888" x1="12.5" x2="12.5" y1="110.75000000000001" y2="111.75000000000001"/>
+  <line stroke="#888888" x1="12.5" x2="11.500000000000002" y1="111.75000000000001" y2="111.75000000000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="31.500000000000004" y1="111.75000000000001" y2="110.75000000000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="32.5" y1="110.75000000000001" y2="110.75000000000001"/>
+  <line stroke="#888888" x1="32.5" x2="32.5" y1="110.75000000000001" y2="111.75000000000001"/>
+  <line stroke="#888888" x1="32.5" x2="31.500000000000004" y1="111.75000000000001" y2="111.75000000000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="11.500000000000002" y1="114.25000000000001" y2="113.25000000000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="12.5" y1="113.25000000000001" y2="113.25000000000001"/>
+  <line stroke="#888888" x1="12.5" x2="12.5" y1="113.25000000000001" y2="114.25000000000001"/>
+  <line stroke="#888888" x1="12.5" x2="11.500000000000002" y1="114.25000000000001" y2="114.25000000000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="31.500000000000004" y1="114.25000000000001" y2="113.25000000000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="32.5" y1="113.25000000000001" y2="113.25000000000001"/>
+  <line stroke="#888888" x1="32.5" x2="32.5" y1="113.25000000000001" y2="114.25000000000001"/>
+  <line stroke="#888888" x1="32.5" x2="31.500000000000004" y1="114.25000000000001" y2="114.25000000000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="11.500000000000002" y1="116.75000000000001" y2="115.75000000000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="12.5" y1="115.75000000000001" y2="115.75000000000001"/>
+  <line stroke="#888888" x1="12.5" x2="12.5" y1="115.75000000000001" y2="116.75000000000001"/>
+  <line stroke="#888888" x1="12.5" x2="11.500000000000002" y1="116.75000000000001" y2="116.75000000000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="31.500000000000004" y1="116.75000000000001" y2="115.75000000000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="32.5" y1="115.75000000000001" y2="115.75000000000001"/>
+  <line stroke="#888888" x1="32.5" x2="32.5" y1="115.75000000000001" y2="116.75000000000001"/>
+  <line stroke="#888888" x1="32.5" x2="31.500000000000004" y1="116.75000000000001" y2="116.75000000000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="11.500000000000002" y1="119.25000000000001" y2="118.25000000000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="12.5" y1="118.25000000000001" y2="118.25000000000001"/>
+  <line stroke="#888888" x1="12.5" x2="12.5" y1="118.25000000000001" y2="119.25000000000001"/>
+  <line stroke="#888888" x1="12.5" x2="11.500000000000002" y1="119.25000000000001" y2="119.25000000000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="31.500000000000004" y1="119.25000000000001" y2="118.25000000000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="32.5" y1="118.25000000000001" y2="118.25000000000001"/>
+  <line stroke="#888888" x1="32.5" x2="32.5" y1="118.25000000000001" y2="119.25000000000001"/>
+  <line stroke="#888888" x1="32.5" x2="31.500000000000004" y1="119.25000000000001" y2="119.25000000000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="11.500000000000002" y1="121.75000000000001" y2="120.75000000000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="12.5" y1="120.75000000000001" y2="120.75000000000001"/>
+  <line stroke="#888888" x1="12.5" x2="12.5" y1="120.75000000000001" y2="121.75000000000001"/>
+  <line stroke="#888888" x1="12.5" x2="11.500000000000002" y1="121.75000000000001" y2="121.75000000000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="31.500000000000004" y1="121.75000000000001" y2="120.75000000000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="32.5" y1="120.75000000000001" y2="120.75000000000001"/>
+  <line stroke="#888888" x1="32.5" x2="32.5" y1="120.75000000000001" y2="121.75000000000001"/>
+  <line stroke="#888888" x1="32.5" x2="31.500000000000004" y1="121.75000000000001" y2="121.75000000000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="11.500000000000002" y1="124.25000000000001" y2="123.25000000000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="12.5" y1="123.25000000000001" y2="123.25000000000001"/>
+  <line stroke="#888888" x1="12.5" x2="12.5" y1="123.25000000000001" y2="124.25000000000001"/>
+  <line stroke="#888888" x1="12.5" x2="11.500000000000002" y1="124.25000000000001" y2="124.25000000000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="31.500000000000004" y1="124.25000000000001" y2="123.25000000000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="32.5" y1="123.25000000000001" y2="123.25000000000001"/>
+  <line stroke="#888888" x1="32.5" x2="32.5" y1="123.25000000000001" y2="124.25000000000001"/>
+  <line stroke="#888888" x1="32.5" x2="31.500000000000004" y1="124.25000000000001" y2="124.25000000000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="11.500000000000002" y1="126.75000000000001" y2="125.75000000000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="12.5" y1="125.75000000000001" y2="125.75000000000001"/>
+  <line stroke="#888888" x1="12.5" x2="12.5" y1="125.75000000000001" y2="126.75000000000001"/>
+  <line stroke="#888888" x1="12.5" x2="11.500000000000002" y1="126.75000000000001" y2="126.75000000000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="31.500000000000004" y1="126.75000000000001" y2="125.75000000000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="32.5" y1="125.75000000000001" y2="125.75000000000001"/>
+  <line stroke="#888888" x1="32.5" x2="32.5" y1="125.75000000000001" y2="126.75000000000001"/>
+  <line stroke="#888888" x1="32.5" x2="31.500000000000004" y1="126.75000000000001" y2="126.75000000000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="11.500000000000002" y1="129.25000000000003" y2="128.25000000000003"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="12.5" y1="128.25000000000003" y2="128.25000000000003"/>
+  <line stroke="#888888" x1="12.5" x2="12.5" y1="128.25000000000003" y2="129.25000000000003"/>
+  <line stroke="#888888" x1="12.5" x2="11.500000000000002" y1="129.25000000000003" y2="129.25000000000003"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="31.500000000000004" y1="129.25000000000003" y2="128.25000000000003"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="32.5" y1="128.25000000000003" y2="128.25000000000003"/>
+  <line stroke="#888888" x1="32.5" x2="32.5" y1="128.25000000000003" y2="129.25000000000003"/>
+  <line stroke="#888888" x1="32.5" x2="31.500000000000004" y1="129.25000000000003" y2="129.25000000000003"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="11.500000000000002" y1="131.75000000000003" y2="130.75000000000003"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="12.5" y1="130.75000000000003" y2="130.75000000000003"/>
+  <line stroke="#888888" x1="12.5" x2="12.5" y1="130.75000000000003" y2="131.75000000000003"/>
+  <line stroke="#888888" x1="12.5" x2="11.500000000000002" y1="131.75000000000003" y2="131.75000000000003"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="31.500000000000004" y1="131.75000000000003" y2="130.75000000000003"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="32.5" y1="130.75000000000003" y2="130.75000000000003"/>
+  <line stroke="#888888" x1="32.5" x2="32.5" y1="130.75000000000003" y2="131.75000000000003"/>
+  <line stroke="#888888" x1="32.5" x2="31.500000000000004" y1="131.75000000000003" y2="131.75000000000003"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="11.500000000000002" y1="134.25000000000003" y2="133.25"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="12.5" y1="133.25" y2="133.25"/>
+  <line stroke="#888888" x1="12.5" x2="12.5" y1="133.25" y2="134.25000000000003"/>
+  <line stroke="#888888" x1="12.5" x2="11.500000000000002" y1="134.25000000000003" y2="134.25000000000003"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="31.500000000000004" y1="134.25000000000003" y2="133.25"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="32.5" y1="133.25" y2="133.25"/>
+  <line stroke="#888888" x1="32.5" x2="32.5" y1="133.25" y2="134.25000000000003"/>
+  <line stroke="#888888" x1="32.5" x2="31.500000000000004" y1="134.25000000000003" y2="134.25000000000003"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="11.500000000000002" y1="136.75" y2="135.75000000000003"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="12.5" y1="135.75000000000003" y2="135.75000000000003"/>
+  <line stroke="#888888" x1="12.5" x2="12.5" y1="135.75000000000003" y2="136.75"/>
+  <line stroke="#888888" x1="12.5" x2="11.500000000000002" y1="136.75" y2="136.75"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="31.500000000000004" y1="136.75" y2="135.75000000000003"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="32.5" y1="135.75000000000003" y2="135.75000000000003"/>
+  <line stroke="#888888" x1="32.5" x2="32.5" y1="135.75000000000003" y2="136.75"/>
+  <line stroke="#888888" x1="32.5" x2="31.500000000000004" y1="136.75" y2="136.75"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="11.500000000000002" y1="139.25" y2="138.25000000000003"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="12.5" y1="138.25000000000003" y2="138.25000000000003"/>
+  <line stroke="#888888" x1="12.5" x2="12.5" y1="138.25000000000003" y2="139.25"/>
+  <line stroke="#888888" x1="12.5" x2="11.500000000000002" y1="139.25" y2="139.25"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="31.500000000000004" y1="139.25" y2="138.25000000000003"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="32.5" y1="138.25000000000003" y2="138.25000000000003"/>
+  <line stroke="#888888" x1="32.5" x2="32.5" y1="138.25000000000003" y2="139.25"/>
+  <line stroke="#888888" x1="32.5" x2="31.500000000000004" y1="139.25" y2="139.25"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="11.500000000000002" y1="141.75000000000003" y2="140.75"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="12.5" y1="140.75" y2="140.75"/>
+  <line stroke="#888888" x1="12.5" x2="12.5" y1="140.75" y2="141.75000000000003"/>
+  <line stroke="#888888" x1="12.5" x2="11.500000000000002" y1="141.75000000000003" y2="141.75000000000003"/>
+  <line stroke="#888888" x1="30.500000000000004" x2="30.500000000000004" y1="142.75000000000003" y2="139.75000000000003"/>
+  <line stroke="#888888" x1="30.500000000000004" x2="33.50000000000001" y1="139.75000000000003" y2="139.75000000000003"/>
+  <line stroke="#888888" x1="33.50000000000001" x2="33.50000000000001" y1="139.75000000000003" y2="142.75000000000003"/>
+  <line stroke="#888888" x1="33.50000000000001" x2="30.500000000000004" y1="142.75000000000003" y2="142.75000000000003"/>
+  <line stroke="#888888" x1="26.250000000000004" x2="17.750000000000004" y1="99.75000000000001" y2="99.75000000000001"/>
+  <line stroke="#888888" x1="17.750000000000004" x2="17.750000000000004" y1="99.75000000000001" y2="99.25000000000001"/>
+  <line stroke="#888888" x1="17.750000000000004" x2="26.250000000000004" y1="99.25000000000001" y2="99.25000000000001"/>
+  <line stroke="#888888" x1="26.250000000000004" x2="26.250000000000004" y1="99.25000000000001" y2="99.75000000000001"/>
+  <line stroke="#888888" x1="17.750000000000004" x2="26.250000000000004" y1="147.5" y2="147.5"/>
+  <line stroke="#888888" x1="26.250000000000004" x2="26.250000000000004" y1="147.5" y2="148.0"/>
+  <line stroke="#888888" x1="26.250000000000004" x2="17.750000000000004" y1="148.0" y2="148.0"/>
+  <line stroke="#888888" x1="17.750000000000004" x2="17.750000000000004" y1="148.0" y2="147.5"/>
+  <line stroke="#888888" x1="2.5000000000000004" x2="7.500000000000001" y1="103.09090909090911" y2="103.09090909090911"/>
+  <line stroke="#888888" x1="7.500000000000001" x2="7.500000000000001" y1="103.09090909090911" y2="114.1818181818182"/>
+  <line stroke="#888888" x1="7.500000000000001" x2="2.5000000000000004" y1="114.1818181818182" y2="114.1818181818182"/>
+  <line stroke="#888888" x1="2.5000000000000004" x2="7.500000000000001" y1="130.81818181818184" y2="130.81818181818184"/>
+  <line stroke="#888888" x1="7.500000000000001" x2="7.500000000000001" y1="130.81818181818184" y2="141.9090909090909"/>
+  <line stroke="#888888" x1="7.500000000000001" x2="2.5000000000000004" y1="141.9090909090909" y2="141.9090909090909"/>
+  <line stroke="#888888" x1="27.750000000000004" x2="31.250000000000004" y1="76.00000000000001" y2="76.00000000000001"/>
+  <line stroke="#888888" x1="31.250000000000004" x2="31.250000000000004" y1="76.00000000000001" y2="84.0"/>
+  <line stroke="#888888" x1="31.250000000000004" x2="27.750000000000004" y1="84.0" y2="84.0"/>
+  <line opacity="0.25" stroke="#0000ff" x1="198.0" x2="259.00000000000006" y1="61.930689000407355" y2="61.930689000407355"/>
+  <line stroke="#000000" x1="259.00000000000006" x2="259.00000000000006" y1="98.06931099959267" y2="61.930689000407355"/>
+  <line stroke="#000000" x1="198.0" x2="259.00000000000006" y1="98.06931099959267" y2="98.06931099959267"/>
+  <line stroke="#000000" x1="198.0" x2="198.0" y1="61.930689000407355" y2="98.06931099959267"/>
+  <line opacity="0.25" stroke="#0000ff" x1="259.00000000000006" x2="198.0" y1="37.93068900040735" y2="37.93068900040735"/>
+  <line opacity="0.5" stroke="#0000ff" x1="259.00000000000006" x2="259.00000000000006" y1="37.93068900040735" y2="61.930689000407355"/>
+  <line stroke="#000000" x1="198.0" x2="198.0" y1="1.7920670012220514" y2="37.93068900040735"/>
+  <line stroke="#000000" x1="259.00000000000006" x2="198.0" y1="1.7920670012220514" y2="1.7920670012220514"/>
+  <line stroke="#000000" x1="259.00000000000006" x2="259.00000000000006" y1="37.93068900040735" y2="1.7920670012220514"/>
+  <line stroke="#000000" x1="269.0" x2="259.00000000000006" y1="37.93068900040735" y2="37.93068900040735"/>
+  <line stroke="#000000" x1="269.0" x2="269.0" y1="61.930689000407355" y2="37.93068900040735"/>
+  <line stroke="#000000" x1="259.00000000000006" x2="269.0" y1="61.930689000407355" y2="61.930689000407355"/>
+  <line stroke="#000000" x1="188.00000000000003" x2="198.0" y1="61.930689000407355" y2="61.930689000407355"/>
+  <line stroke="#000000" x1="188.00000000000003" x2="188.00000000000003" y1="37.93068900040735" y2="61.930689000407355"/>
+  <line stroke="#000000" x1="198.0" x2="188.00000000000003" y1="37.93068900040735" y2="37.93068900040735"/>
+  <line stroke="#888888" x1="216.00000000000003" x2="227.00000000000003" y1="43.430689000407355" y2="43.430689000407355"/>
+  <line stroke="#888888" x1="227.00000000000003" x2="227.00000000000003" y1="43.430689000407355" y2="56.430689000407355"/>
+  <line stroke="#888888" x1="227.00000000000003" x2="216.00000000000003" y1="56.430689000407355" y2="56.430689000407355"/>
+  <line stroke="#888888" x1="216.00000000000003" x2="216.00000000000003" y1="56.430689000407355" y2="43.430689000407355"/>
+  <line stroke="#888888" x1="247.50000000000003" x2="253.50000000000003" y1="44.930689000407355" y2="44.930689000407355"/>
+  <line stroke="#888888" x1="253.50000000000003" x2="253.50000000000003" y1="44.930689000407355" y2="54.930689000407355"/>
+  <line stroke="#888888" x1="253.50000000000003" x2="247.50000000000003" y1="54.930689000407355" y2="54.930689000407355"/>
+  <line stroke="#888888" x1="247.50000000000003" x2="247.50000000000003" y1="54.930689000407355" y2="44.930689000407355"/>
+  <line stroke="#888888" x1="266.5" x2="261.50000000000006" y1="53.930689000407355" y2="53.930689000407355"/>
+  <line stroke="#888888" x1="261.50000000000006" x2="261.50000000000006" y1="53.930689000407355" y2="45.93068900040735"/>
+  <line stroke="#888888" x1="261.50000000000006" x2="266.5" y1="45.93068900040735" y2="45.93068900040735"/>
+  <line stroke="#888888" x1="190.50000000000003" x2="195.5" y1="45.93068900040735" y2="45.93068900040735"/>
+  <line stroke="#888888" x1="195.5" x2="195.5" y1="45.93068900040735" y2="53.930689000407355"/>
+  <line stroke="#888888" x1="195.5" x2="190.50000000000003" y1="53.930689000407355" y2="53.930689000407355"/>
+  <line stroke="#000000" x1="319.0" x2="289.00000000000006" y1="60.00000000000001" y2="60.00000000000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="319.0" x2="319.0" y1="60.00000000000001" y2="100.0"/>
+  <line stroke="#000000" x1="289.00000000000006" x2="319.0" y1="100.0" y2="100.0"/>
+  <line opacity="0.5" stroke="#0000ff" x1="289.00000000000006" x2="289.00000000000006" y1="100.0" y2="60.00000000000001"/>
+  <line opacity="0.5" stroke="#ff0000" x1="319.0" x2="329.00000000000006" y1="60.00000000000001" y2="60.00000000000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="329.00000000000006" x2="329.00000000000006" y1="60.00000000000001" y2="100.0"/>
+  <line opacity="0.5" stroke="#ff0000" x1="329.00000000000006" x2="319.0" y1="100.0" y2="100.0"/>
+  <line stroke="#000000" x1="329.00000000000006" x2="329.00000000000006" y1="60.00000000000001" y2="0.0"/>
+  <line stroke="#000000" x1="319.0" x2="319.0" y1="0.0" y2="60.00000000000001"/>
+  <line stroke="#000000" x1="329.00000000000006" x2="319.0" y1="0.0" y2="0.0"/>
+  <line stroke="#000000" x1="359.0" x2="329.00000000000006" y1="60.00000000000001" y2="60.00000000000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="359.0" x2="359.0" y1="60.00000000000001" y2="100.0"/>
+  <line stroke="#000000" x1="329.00000000000006" x2="359.0" y1="100.0" y2="100.0"/>
+  <line stroke="#000000" x1="369.0" x2="359.0" y1="60.00000000000001" y2="60.00000000000001"/>
+  <line stroke="#000000" x1="369.0" x2="369.0" y1="100.0" y2="60.00000000000001"/>
+  <line stroke="#000000" x1="359.0" x2="369.0" y1="100.0" y2="100.0"/>
+  <line stroke="#000000" x1="319.0" x2="319.0" y1="100.0" y2="160.00000000000003"/>
+  <line stroke="#000000" x1="329.00000000000006" x2="329.00000000000006" y1="160.00000000000003" y2="100.0"/>
+  <line stroke="#000000" x1="319.0" x2="329.00000000000006" y1="160.00000000000003" y2="160.00000000000003"/>
+  <line stroke="#000000" x1="279.00000000000006" x2="289.00000000000006" y1="100.0" y2="100.0"/>
+  <line stroke="#000000" x1="279.00000000000006" x2="279.00000000000006" y1="60.00000000000001" y2="100.0"/>
+  <line stroke="#000000" x1="289.00000000000006" x2="279.00000000000006" y1="60.00000000000001" y2="60.00000000000001"/>
+  <line stroke="#888888" x1="290.00000000000006" x2="298.00000000000006" y1="76.00000000000001" y2="76.00000000000001"/>
+  <line stroke="#888888" x1="298.00000000000006" x2="298.00000000000006" y1="76.00000000000001" y2="84.0"/>
+  <line stroke="#888888" x1="298.00000000000006" x2="290.00000000000006" y1="84.0" y2="84.0"/>
+  <line stroke="#888888" x1="290.00000000000006" x2="290.00000000000006" y1="84.0" y2="76.00000000000001"/>
+  <line stroke="#888888" x1="350.0" x2="358.00000000000006" y1="76.00000000000001" y2="76.00000000000001"/>
+  <line stroke="#888888" x1="358.00000000000006" x2="358.00000000000006" y1="76.00000000000001" y2="84.0"/>
+  <line stroke="#888888" x1="358.00000000000006" x2="350.0" y1="84.0" y2="84.0"/>
+  <line stroke="#888888" x1="350.0" x2="350.0" y1="84.0" y2="76.00000000000001"/>
+  <line stroke="#888888" x1="361.25000000000006" x2="361.25000000000006" y1="86.91666666666669" y2="73.08333333333336"/>
+  <line stroke="#888888" x1="361.25000000000006" x2="361.75000000000006" y1="73.08333333333336" y2="73.08333333333336"/>
+  <line stroke="#888888" x1="361.75000000000006" x2="361.75000000000006" y1="73.08333333333336" y2="86.91666666666669"/>
+  <line stroke="#888888" x1="361.75000000000006" x2="361.25000000000006" y1="86.91666666666669" y2="86.91666666666669"/>
+  <line stroke="#888888" x1="281.5" x2="281.5" y1="73.33333333333336" y2="68.33333333333334"/>
+  <line stroke="#888888" x1="281.5" x2="286.5" y1="68.33333333333334" y2="73.33333333333336"/>
+  <line stroke="#888888" x1="286.5" x2="286.5" y1="73.33333333333336" y2="86.66666666666669"/>
+  <line stroke="#888888" x1="286.5" x2="281.5" y1="86.66666666666669" y2="91.66666666666669"/>
+  <line stroke="#888888" x1="281.5" x2="281.5" y1="91.66666666666669" y2="86.66666666666669"/>
+</svg>
diff --git a/rocolib/output/DCStackMount/graph-autofold-default.dxf b/rocolib/output/DCStackMount/graph-autofold-default.dxf
new file mode 100644
index 0000000000000000000000000000000000000000..ddf1e1915b001b38ab29020ef17e79f510a74107
--- /dev/null
+++ b/rocolib/output/DCStackMount/graph-autofold-default.dxf
@@ -0,0 +1,8468 @@
+  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
+9
+  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
+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
+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
+33.0
+ 20
+68.0
+ 30
+0.0
+ 11
+94.00000000000001
+ 21
+68.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+94.00000000000001
+ 20
+68.0
+ 30
+0.0
+ 11
+94.00000000000001
+ 21
+92.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+94.00000000000001
+ 20
+92.00000000000001
+ 30
+0.0
+ 11
+33.0
+ 21
+92.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+33.0
+ 20
+92.00000000000001
+ 30
+0.0
+ 11
+33.0
+ 21
+68.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+33.0
+ 20
+61.00000000000001
+ 30
+0.0
+ 11
+33.0
+ 21
+68.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+93.00000000000001
+ 20
+61.00000000000001
+ 30
+0.0
+ 11
+33.0
+ 21
+61.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+93.00000000000001
+ 20
+68.0
+ 30
+0.0
+ 11
+93.00000000000001
+ 21
+61.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+101.00000000000001
+ 20
+68.0
+ 30
+0.0
+ 11
+94.00000000000001
+ 21
+68.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+101.00000000000001
+ 20
+92.00000000000001
+ 30
+0.0
+ 11
+101.00000000000001
+ 21
+68.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+94.00000000000001
+ 20
+92.00000000000001
+ 30
+0.0
+ 11
+101.00000000000001
+ 21
+92.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+94.00000000000001
+ 20
+92.00000000000001
+ 30
+0.0
+ 11
+94.00000000000001
+ 21
+153.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+34.0
+ 20
+153.00000000000003
+ 30
+0.0
+ 11
+94.00000000000001
+ 21
+153.00000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+34.0
+ 20
+92.00000000000001
+ 30
+0.0
+ 11
+34.0
+ 21
+153.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+118.00000000000001
+ 20
+92.00000000000001
+ 30
+0.0
+ 11
+94.00000000000001
+ 21
+92.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+118.00000000000001
+ 20
+92.00000000000001
+ 30
+0.0
+ 11
+118.00000000000001
+ 21
+153.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+94.00000000000001
+ 20
+153.00000000000003
+ 30
+0.0
+ 11
+118.00000000000001
+ 21
+153.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+178.00000000000003
+ 20
+92.00000000000001
+ 30
+0.0
+ 11
+118.00000000000001
+ 21
+92.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+178.00000000000003
+ 20
+153.00000000000003
+ 30
+0.0
+ 11
+178.00000000000003
+ 21
+92.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+118.00000000000001
+ 20
+153.00000000000003
+ 30
+0.0
+ 11
+178.00000000000003
+ 21
+153.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+34.0
+ 20
+92.00000000000001
+ 30
+0.0
+ 11
+10.000000000000002
+ 21
+92.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+10.000000000000002
+ 20
+153.00000000000003
+ 30
+0.0
+ 11
+34.0
+ 21
+153.00000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+10.000000000000002
+ 20
+153.00000000000003
+ 30
+0.0
+ 11
+10.000000000000002
+ 21
+92.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+0.0
+ 20
+153.00000000000003
+ 30
+0.0
+ 11
+10.000000000000002
+ 21
+153.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+0.0
+ 20
+92.00000000000001
+ 30
+0.0
+ 11
+0.0
+ 21
+153.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+10.000000000000002
+ 20
+92.00000000000001
+ 30
+0.0
+ 11
+0.0
+ 21
+92.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+26.000000000000004
+ 20
+92.00000000000001
+ 30
+0.0
+ 11
+33.0
+ 21
+92.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+26.000000000000004
+ 20
+68.0
+ 30
+0.0
+ 11
+26.000000000000004
+ 21
+92.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+33.0
+ 20
+68.0
+ 30
+0.0
+ 11
+26.000000000000004
+ 21
+68.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+82.09090909090911
+ 20
+62.75000000000001
+ 30
+0.0
+ 11
+85.59090909090911
+ 21
+62.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+85.59090909090911
+ 20
+62.75000000000001
+ 30
+0.0
+ 11
+82.09090909090911
+ 21
+66.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+82.09090909090911
+ 20
+66.25000000000001
+ 30
+0.0
+ 11
+71.1818181818182
+ 21
+66.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+71.1818181818182
+ 20
+66.25000000000001
+ 30
+0.0
+ 11
+67.68181818181819
+ 21
+62.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+67.68181818181819
+ 20
+62.75000000000001
+ 30
+0.0
+ 11
+71.1818181818182
+ 21
+62.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+54.818181818181834
+ 20
+62.75000000000001
+ 30
+0.0
+ 11
+58.31818181818183
+ 21
+62.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+58.31818181818183
+ 20
+62.75000000000001
+ 30
+0.0
+ 11
+54.818181818181834
+ 21
+66.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+54.818181818181834
+ 20
+66.25000000000001
+ 30
+0.0
+ 11
+43.909090909090914
+ 21
+66.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+43.909090909090914
+ 20
+66.25000000000001
+ 30
+0.0
+ 11
+40.40909090909092
+ 21
+62.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+40.40909090909092
+ 20
+62.75000000000001
+ 30
+0.0
+ 11
+43.909090909090914
+ 21
+62.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+99.25000000000001
+ 20
+84.0
+ 30
+0.0
+ 11
+95.75000000000001
+ 21
+84.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.75000000000001
+ 20
+84.0
+ 30
+0.0
+ 11
+95.75000000000001
+ 21
+76.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.75000000000001
+ 20
+76.00000000000001
+ 30
+0.0
+ 11
+99.25000000000001
+ 21
+76.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+41.5
+ 20
+143.5
+ 30
+0.0
+ 11
+41.5
+ 21
+125.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+41.5
+ 20
+125.50000000000001
+ 30
+0.0
+ 11
+76.50000000000001
+ 21
+125.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+76.50000000000001
+ 20
+125.50000000000001
+ 30
+0.0
+ 11
+76.50000000000001
+ 21
+143.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+76.50000000000001
+ 20
+143.5
+ 30
+0.0
+ 11
+41.5
+ 21
+143.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+94.5
+ 20
+105.25000000000001
+ 30
+0.0
+ 11
+94.5
+ 21
+102.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+94.5
+ 20
+102.25000000000001
+ 30
+0.0
+ 11
+97.50000000000001
+ 21
+102.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+97.50000000000001
+ 20
+102.25000000000001
+ 30
+0.0
+ 11
+97.50000000000001
+ 21
+105.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+97.50000000000001
+ 20
+105.25000000000001
+ 30
+0.0
+ 11
+94.5
+ 21
+105.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.50000000000001
+ 20
+104.25000000000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+103.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.50000000000001
+ 20
+103.25000000000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+103.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+116.50000000000001
+ 20
+103.25000000000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+104.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+116.50000000000001
+ 20
+104.25000000000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+104.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.5
+ 20
+106.75000000000001
+ 30
+0.0
+ 11
+95.5
+ 21
+105.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.5
+ 20
+105.75
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+105.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+96.50000000000001
+ 20
+105.75
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+106.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+96.50000000000001
+ 20
+106.75000000000001
+ 30
+0.0
+ 11
+95.5
+ 21
+106.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.50000000000001
+ 20
+106.75000000000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+105.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.50000000000001
+ 20
+105.75
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+105.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+116.50000000000001
+ 20
+105.75
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+106.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+116.50000000000001
+ 20
+106.75000000000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+106.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.5
+ 20
+109.25
+ 30
+0.0
+ 11
+95.5
+ 21
+108.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.5
+ 20
+108.25000000000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+108.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+96.50000000000001
+ 20
+108.25000000000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+109.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+96.50000000000001
+ 20
+109.25
+ 30
+0.0
+ 11
+95.5
+ 21
+109.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.50000000000001
+ 20
+109.25
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+108.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.50000000000001
+ 20
+108.25000000000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+108.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+116.50000000000001
+ 20
+108.25000000000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+109.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+116.50000000000001
+ 20
+109.25
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+109.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.5
+ 20
+111.75000000000001
+ 30
+0.0
+ 11
+95.5
+ 21
+110.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.5
+ 20
+110.75000000000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+110.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+96.50000000000001
+ 20
+110.75000000000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+111.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+96.50000000000001
+ 20
+111.75000000000001
+ 30
+0.0
+ 11
+95.5
+ 21
+111.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.50000000000001
+ 20
+111.75000000000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+110.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.50000000000001
+ 20
+110.75000000000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+110.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+116.50000000000001
+ 20
+110.75000000000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+111.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+116.50000000000001
+ 20
+111.75000000000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+111.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.5
+ 20
+114.25000000000001
+ 30
+0.0
+ 11
+95.5
+ 21
+113.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.5
+ 20
+113.25000000000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+113.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+96.50000000000001
+ 20
+113.25000000000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+114.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+96.50000000000001
+ 20
+114.25000000000001
+ 30
+0.0
+ 11
+95.5
+ 21
+114.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.50000000000001
+ 20
+114.25000000000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+113.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.50000000000001
+ 20
+113.25000000000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+113.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+116.50000000000001
+ 20
+113.25000000000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+114.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+116.50000000000001
+ 20
+114.25000000000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+114.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.5
+ 20
+116.75000000000001
+ 30
+0.0
+ 11
+95.5
+ 21
+115.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.5
+ 20
+115.75000000000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+115.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+96.50000000000001
+ 20
+115.75000000000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+116.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+96.50000000000001
+ 20
+116.75000000000001
+ 30
+0.0
+ 11
+95.5
+ 21
+116.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.50000000000001
+ 20
+116.75000000000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+115.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.50000000000001
+ 20
+115.75000000000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+115.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+116.50000000000001
+ 20
+115.75000000000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+116.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+116.50000000000001
+ 20
+116.75000000000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+116.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.5
+ 20
+119.25000000000001
+ 30
+0.0
+ 11
+95.5
+ 21
+118.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.5
+ 20
+118.25000000000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+118.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+96.50000000000001
+ 20
+118.25000000000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+119.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+96.50000000000001
+ 20
+119.25000000000001
+ 30
+0.0
+ 11
+95.5
+ 21
+119.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.50000000000001
+ 20
+119.25000000000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+118.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.50000000000001
+ 20
+118.25000000000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+118.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+116.50000000000001
+ 20
+118.25000000000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+119.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+116.50000000000001
+ 20
+119.25000000000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+119.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.5
+ 20
+121.75000000000001
+ 30
+0.0
+ 11
+95.5
+ 21
+120.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.5
+ 20
+120.75000000000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+120.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+96.50000000000001
+ 20
+120.75000000000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+121.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+96.50000000000001
+ 20
+121.75000000000001
+ 30
+0.0
+ 11
+95.5
+ 21
+121.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.50000000000001
+ 20
+121.75000000000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+120.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.50000000000001
+ 20
+120.75000000000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+120.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+116.50000000000001
+ 20
+120.75000000000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+121.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+116.50000000000001
+ 20
+121.75000000000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+121.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.5
+ 20
+124.25000000000001
+ 30
+0.0
+ 11
+95.5
+ 21
+123.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.5
+ 20
+123.25000000000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+123.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+96.50000000000001
+ 20
+123.25000000000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+124.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+96.50000000000001
+ 20
+124.25000000000001
+ 30
+0.0
+ 11
+95.5
+ 21
+124.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.50000000000001
+ 20
+124.25000000000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+123.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.50000000000001
+ 20
+123.25000000000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+123.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+116.50000000000001
+ 20
+123.25000000000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+124.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+116.50000000000001
+ 20
+124.25000000000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+124.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.5
+ 20
+126.75000000000001
+ 30
+0.0
+ 11
+95.5
+ 21
+125.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.5
+ 20
+125.75000000000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+125.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+96.50000000000001
+ 20
+125.75000000000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+126.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+96.50000000000001
+ 20
+126.75000000000001
+ 30
+0.0
+ 11
+95.5
+ 21
+126.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.50000000000001
+ 20
+126.75000000000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+125.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.50000000000001
+ 20
+125.75000000000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+125.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+116.50000000000001
+ 20
+125.75000000000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+126.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+116.50000000000001
+ 20
+126.75000000000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+126.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.5
+ 20
+129.25000000000003
+ 30
+0.0
+ 11
+95.5
+ 21
+128.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.5
+ 20
+128.25000000000003
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+128.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+96.50000000000001
+ 20
+128.25000000000003
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+129.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+96.50000000000001
+ 20
+129.25000000000003
+ 30
+0.0
+ 11
+95.5
+ 21
+129.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.50000000000001
+ 20
+129.25000000000003
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+128.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.50000000000001
+ 20
+128.25000000000003
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+128.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+116.50000000000001
+ 20
+128.25000000000003
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+129.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+116.50000000000001
+ 20
+129.25000000000003
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+129.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.5
+ 20
+131.75000000000003
+ 30
+0.0
+ 11
+95.5
+ 21
+130.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.5
+ 20
+130.75000000000003
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+130.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+96.50000000000001
+ 20
+130.75000000000003
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+131.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+96.50000000000001
+ 20
+131.75000000000003
+ 30
+0.0
+ 11
+95.5
+ 21
+131.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.50000000000001
+ 20
+131.75000000000003
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+130.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.50000000000001
+ 20
+130.75000000000003
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+130.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+116.50000000000001
+ 20
+130.75000000000003
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+131.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+116.50000000000001
+ 20
+131.75000000000003
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+131.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.5
+ 20
+134.25000000000003
+ 30
+0.0
+ 11
+95.5
+ 21
+133.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.5
+ 20
+133.25
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+133.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+96.50000000000001
+ 20
+133.25
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+134.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+96.50000000000001
+ 20
+134.25000000000003
+ 30
+0.0
+ 11
+95.5
+ 21
+134.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.50000000000001
+ 20
+134.25000000000003
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+133.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.50000000000001
+ 20
+133.25
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+133.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+116.50000000000001
+ 20
+133.25
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+134.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+116.50000000000001
+ 20
+134.25000000000003
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+134.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.5
+ 20
+136.75
+ 30
+0.0
+ 11
+95.5
+ 21
+135.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.5
+ 20
+135.75000000000003
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+135.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+96.50000000000001
+ 20
+135.75000000000003
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+136.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+96.50000000000001
+ 20
+136.75
+ 30
+0.0
+ 11
+95.5
+ 21
+136.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.50000000000001
+ 20
+136.75
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+135.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.50000000000001
+ 20
+135.75000000000003
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+135.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+116.50000000000001
+ 20
+135.75000000000003
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+136.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+116.50000000000001
+ 20
+136.75
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+136.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.5
+ 20
+139.25
+ 30
+0.0
+ 11
+95.5
+ 21
+138.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.5
+ 20
+138.25000000000003
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+138.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+96.50000000000001
+ 20
+138.25000000000003
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+139.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+96.50000000000001
+ 20
+139.25
+ 30
+0.0
+ 11
+95.5
+ 21
+139.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.50000000000001
+ 20
+139.25
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+138.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.50000000000001
+ 20
+138.25000000000003
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+138.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+116.50000000000001
+ 20
+138.25000000000003
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+139.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+116.50000000000001
+ 20
+139.25
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+139.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.5
+ 20
+141.75000000000003
+ 30
+0.0
+ 11
+95.5
+ 21
+140.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+95.5
+ 20
+140.75
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+140.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+96.50000000000001
+ 20
+140.75
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+141.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+96.50000000000001
+ 20
+141.75000000000003
+ 30
+0.0
+ 11
+95.5
+ 21
+141.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+114.50000000000001
+ 20
+142.75000000000003
+ 30
+0.0
+ 11
+114.50000000000001
+ 21
+139.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+114.50000000000001
+ 20
+139.75000000000003
+ 30
+0.0
+ 11
+117.50000000000001
+ 21
+139.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+117.50000000000001
+ 20
+139.75000000000003
+ 30
+0.0
+ 11
+117.50000000000001
+ 21
+142.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+117.50000000000001
+ 20
+142.75000000000003
+ 30
+0.0
+ 11
+114.50000000000001
+ 21
+142.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+110.25000000000001
+ 20
+99.75000000000001
+ 30
+0.0
+ 11
+101.75000000000001
+ 21
+99.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+101.75000000000001
+ 20
+99.75000000000001
+ 30
+0.0
+ 11
+101.75000000000001
+ 21
+99.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+101.75000000000001
+ 20
+99.25000000000001
+ 30
+0.0
+ 11
+110.25000000000001
+ 21
+99.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+110.25000000000001
+ 20
+99.25000000000001
+ 30
+0.0
+ 11
+110.25000000000001
+ 21
+99.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+101.75000000000001
+ 20
+147.5
+ 30
+0.0
+ 11
+110.25000000000001
+ 21
+147.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+110.25000000000001
+ 20
+147.5
+ 30
+0.0
+ 11
+110.25000000000001
+ 21
+148.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+110.25000000000001
+ 20
+148.0
+ 30
+0.0
+ 11
+101.75000000000001
+ 21
+148.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+101.75000000000001
+ 20
+148.0
+ 30
+0.0
+ 11
+101.75000000000001
+ 21
+147.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+133.00000000000003
+ 20
+143.0
+ 30
+0.0
+ 11
+133.00000000000003
+ 21
+130.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+133.00000000000003
+ 20
+130.0
+ 30
+0.0
+ 11
+163.00000000000003
+ 21
+130.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+163.00000000000003
+ 20
+130.0
+ 30
+0.0
+ 11
+163.00000000000003
+ 21
+143.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+163.00000000000003
+ 20
+143.0
+ 30
+0.0
+ 11
+133.00000000000003
+ 21
+143.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+140.06818181818184
+ 20
+97.50000000000001
+ 30
+0.0
+ 11
+128.65909090909093
+ 21
+97.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+128.65909090909093
+ 20
+97.50000000000001
+ 30
+0.0
+ 11
+128.65909090909093
+ 21
+97.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+128.65909090909093
+ 20
+97.00000000000001
+ 30
+0.0
+ 11
+140.06818181818184
+ 21
+97.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+140.06818181818184
+ 20
+97.00000000000001
+ 30
+0.0
+ 11
+140.06818181818184
+ 21
+97.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+167.3409090909091
+ 20
+97.50000000000001
+ 30
+0.0
+ 11
+155.93181818181822
+ 21
+97.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+155.93181818181822
+ 20
+97.50000000000001
+ 30
+0.0
+ 11
+155.93181818181822
+ 21
+97.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+155.93181818181822
+ 20
+97.00000000000001
+ 30
+0.0
+ 11
+167.3409090909091
+ 21
+97.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+167.3409090909091
+ 20
+97.00000000000001
+ 30
+0.0
+ 11
+167.3409090909091
+ 21
+97.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+170.25000000000003
+ 20
+114.4318181818182
+ 30
+0.0
+ 11
+170.25000000000003
+ 21
+102.84090909090911
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+170.25000000000003
+ 20
+102.84090909090911
+ 30
+0.0
+ 11
+170.75
+ 21
+102.84090909090911
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+170.75
+ 20
+102.84090909090911
+ 30
+0.0
+ 11
+170.75
+ 21
+114.4318181818182
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+170.75
+ 20
+114.4318181818182
+ 30
+0.0
+ 11
+170.25000000000003
+ 21
+114.4318181818182
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+170.25000000000003
+ 20
+142.1590909090909
+ 30
+0.0
+ 11
+170.25000000000003
+ 21
+130.56818181818184
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+170.25000000000003
+ 20
+130.56818181818184
+ 30
+0.0
+ 11
+170.75
+ 21
+130.56818181818184
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+170.75
+ 20
+130.56818181818184
+ 30
+0.0
+ 11
+170.75
+ 21
+142.1590909090909
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+170.75
+ 20
+142.1590909090909
+ 30
+0.0
+ 11
+170.25000000000003
+ 21
+142.1590909090909
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+10.5
+ 20
+105.25000000000001
+ 30
+0.0
+ 11
+10.5
+ 21
+102.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+10.5
+ 20
+102.25000000000001
+ 30
+0.0
+ 11
+13.500000000000002
+ 21
+102.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+13.500000000000002
+ 20
+102.25000000000001
+ 30
+0.0
+ 11
+13.500000000000002
+ 21
+105.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+13.500000000000002
+ 20
+105.25000000000001
+ 30
+0.0
+ 11
+10.5
+ 21
+105.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+31.500000000000004
+ 20
+104.25000000000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+103.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+31.500000000000004
+ 20
+103.25000000000001
+ 30
+0.0
+ 11
+32.5
+ 21
+103.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+32.5
+ 20
+103.25000000000001
+ 30
+0.0
+ 11
+32.5
+ 21
+104.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+32.5
+ 20
+104.25000000000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+104.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.500000000000002
+ 20
+106.75000000000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+105.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.500000000000002
+ 20
+105.75
+ 30
+0.0
+ 11
+12.5
+ 21
+105.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+12.5
+ 20
+105.75
+ 30
+0.0
+ 11
+12.5
+ 21
+106.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+12.5
+ 20
+106.75000000000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+106.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+31.500000000000004
+ 20
+106.75000000000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+105.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+31.500000000000004
+ 20
+105.75
+ 30
+0.0
+ 11
+32.5
+ 21
+105.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+32.5
+ 20
+105.75
+ 30
+0.0
+ 11
+32.5
+ 21
+106.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+32.5
+ 20
+106.75000000000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+106.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.500000000000002
+ 20
+109.25
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+108.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.500000000000002
+ 20
+108.25000000000001
+ 30
+0.0
+ 11
+12.5
+ 21
+108.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+12.5
+ 20
+108.25000000000001
+ 30
+0.0
+ 11
+12.5
+ 21
+109.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+12.5
+ 20
+109.25
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+109.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+31.500000000000004
+ 20
+109.25
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+108.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+31.500000000000004
+ 20
+108.25000000000001
+ 30
+0.0
+ 11
+32.5
+ 21
+108.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+32.5
+ 20
+108.25000000000001
+ 30
+0.0
+ 11
+32.5
+ 21
+109.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+32.5
+ 20
+109.25
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+109.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.500000000000002
+ 20
+111.75000000000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+110.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.500000000000002
+ 20
+110.75000000000001
+ 30
+0.0
+ 11
+12.5
+ 21
+110.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+12.5
+ 20
+110.75000000000001
+ 30
+0.0
+ 11
+12.5
+ 21
+111.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+12.5
+ 20
+111.75000000000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+111.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+31.500000000000004
+ 20
+111.75000000000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+110.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+31.500000000000004
+ 20
+110.75000000000001
+ 30
+0.0
+ 11
+32.5
+ 21
+110.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+32.5
+ 20
+110.75000000000001
+ 30
+0.0
+ 11
+32.5
+ 21
+111.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+32.5
+ 20
+111.75000000000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+111.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.500000000000002
+ 20
+114.25000000000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+113.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.500000000000002
+ 20
+113.25000000000001
+ 30
+0.0
+ 11
+12.5
+ 21
+113.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+12.5
+ 20
+113.25000000000001
+ 30
+0.0
+ 11
+12.5
+ 21
+114.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+12.5
+ 20
+114.25000000000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+114.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+31.500000000000004
+ 20
+114.25000000000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+113.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+31.500000000000004
+ 20
+113.25000000000001
+ 30
+0.0
+ 11
+32.5
+ 21
+113.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+32.5
+ 20
+113.25000000000001
+ 30
+0.0
+ 11
+32.5
+ 21
+114.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+32.5
+ 20
+114.25000000000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+114.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.500000000000002
+ 20
+116.75000000000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+115.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.500000000000002
+ 20
+115.75000000000001
+ 30
+0.0
+ 11
+12.5
+ 21
+115.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+12.5
+ 20
+115.75000000000001
+ 30
+0.0
+ 11
+12.5
+ 21
+116.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+12.5
+ 20
+116.75000000000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+116.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+31.500000000000004
+ 20
+116.75000000000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+115.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+31.500000000000004
+ 20
+115.75000000000001
+ 30
+0.0
+ 11
+32.5
+ 21
+115.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+32.5
+ 20
+115.75000000000001
+ 30
+0.0
+ 11
+32.5
+ 21
+116.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+32.5
+ 20
+116.75000000000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+116.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.500000000000002
+ 20
+119.25000000000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+118.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.500000000000002
+ 20
+118.25000000000001
+ 30
+0.0
+ 11
+12.5
+ 21
+118.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+12.5
+ 20
+118.25000000000001
+ 30
+0.0
+ 11
+12.5
+ 21
+119.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+12.5
+ 20
+119.25000000000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+119.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+31.500000000000004
+ 20
+119.25000000000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+118.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+31.500000000000004
+ 20
+118.25000000000001
+ 30
+0.0
+ 11
+32.5
+ 21
+118.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+32.5
+ 20
+118.25000000000001
+ 30
+0.0
+ 11
+32.5
+ 21
+119.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+32.5
+ 20
+119.25000000000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+119.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.500000000000002
+ 20
+121.75000000000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+120.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.500000000000002
+ 20
+120.75000000000001
+ 30
+0.0
+ 11
+12.5
+ 21
+120.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+12.5
+ 20
+120.75000000000001
+ 30
+0.0
+ 11
+12.5
+ 21
+121.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+12.5
+ 20
+121.75000000000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+121.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+31.500000000000004
+ 20
+121.75000000000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+120.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+31.500000000000004
+ 20
+120.75000000000001
+ 30
+0.0
+ 11
+32.5
+ 21
+120.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+32.5
+ 20
+120.75000000000001
+ 30
+0.0
+ 11
+32.5
+ 21
+121.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+32.5
+ 20
+121.75000000000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+121.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.500000000000002
+ 20
+124.25000000000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+123.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.500000000000002
+ 20
+123.25000000000001
+ 30
+0.0
+ 11
+12.5
+ 21
+123.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+12.5
+ 20
+123.25000000000001
+ 30
+0.0
+ 11
+12.5
+ 21
+124.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+12.5
+ 20
+124.25000000000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+124.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+31.500000000000004
+ 20
+124.25000000000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+123.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+31.500000000000004
+ 20
+123.25000000000001
+ 30
+0.0
+ 11
+32.5
+ 21
+123.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+32.5
+ 20
+123.25000000000001
+ 30
+0.0
+ 11
+32.5
+ 21
+124.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+32.5
+ 20
+124.25000000000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+124.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.500000000000002
+ 20
+126.75000000000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+125.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.500000000000002
+ 20
+125.75000000000001
+ 30
+0.0
+ 11
+12.5
+ 21
+125.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+12.5
+ 20
+125.75000000000001
+ 30
+0.0
+ 11
+12.5
+ 21
+126.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+12.5
+ 20
+126.75000000000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+126.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+31.500000000000004
+ 20
+126.75000000000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+125.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+31.500000000000004
+ 20
+125.75000000000001
+ 30
+0.0
+ 11
+32.5
+ 21
+125.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+32.5
+ 20
+125.75000000000001
+ 30
+0.0
+ 11
+32.5
+ 21
+126.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+32.5
+ 20
+126.75000000000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+126.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.500000000000002
+ 20
+129.25000000000003
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+128.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.500000000000002
+ 20
+128.25000000000003
+ 30
+0.0
+ 11
+12.5
+ 21
+128.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+12.5
+ 20
+128.25000000000003
+ 30
+0.0
+ 11
+12.5
+ 21
+129.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+12.5
+ 20
+129.25000000000003
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+129.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+31.500000000000004
+ 20
+129.25000000000003
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+128.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+31.500000000000004
+ 20
+128.25000000000003
+ 30
+0.0
+ 11
+32.5
+ 21
+128.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+32.5
+ 20
+128.25000000000003
+ 30
+0.0
+ 11
+32.5
+ 21
+129.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+32.5
+ 20
+129.25000000000003
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+129.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.500000000000002
+ 20
+131.75000000000003
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+130.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.500000000000002
+ 20
+130.75000000000003
+ 30
+0.0
+ 11
+12.5
+ 21
+130.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+12.5
+ 20
+130.75000000000003
+ 30
+0.0
+ 11
+12.5
+ 21
+131.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+12.5
+ 20
+131.75000000000003
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+131.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+31.500000000000004
+ 20
+131.75000000000003
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+130.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+31.500000000000004
+ 20
+130.75000000000003
+ 30
+0.0
+ 11
+32.5
+ 21
+130.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+32.5
+ 20
+130.75000000000003
+ 30
+0.0
+ 11
+32.5
+ 21
+131.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+32.5
+ 20
+131.75000000000003
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+131.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.500000000000002
+ 20
+134.25000000000003
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+133.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.500000000000002
+ 20
+133.25
+ 30
+0.0
+ 11
+12.5
+ 21
+133.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+12.5
+ 20
+133.25
+ 30
+0.0
+ 11
+12.5
+ 21
+134.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+12.5
+ 20
+134.25000000000003
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+134.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+31.500000000000004
+ 20
+134.25000000000003
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+133.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+31.500000000000004
+ 20
+133.25
+ 30
+0.0
+ 11
+32.5
+ 21
+133.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+32.5
+ 20
+133.25
+ 30
+0.0
+ 11
+32.5
+ 21
+134.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+32.5
+ 20
+134.25000000000003
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+134.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.500000000000002
+ 20
+136.75
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+135.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.500000000000002
+ 20
+135.75000000000003
+ 30
+0.0
+ 11
+12.5
+ 21
+135.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+12.5
+ 20
+135.75000000000003
+ 30
+0.0
+ 11
+12.5
+ 21
+136.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+12.5
+ 20
+136.75
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+136.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+31.500000000000004
+ 20
+136.75
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+135.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+31.500000000000004
+ 20
+135.75000000000003
+ 30
+0.0
+ 11
+32.5
+ 21
+135.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+32.5
+ 20
+135.75000000000003
+ 30
+0.0
+ 11
+32.5
+ 21
+136.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+32.5
+ 20
+136.75
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+136.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.500000000000002
+ 20
+139.25
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+138.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.500000000000002
+ 20
+138.25000000000003
+ 30
+0.0
+ 11
+12.5
+ 21
+138.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+12.5
+ 20
+138.25000000000003
+ 30
+0.0
+ 11
+12.5
+ 21
+139.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+12.5
+ 20
+139.25
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+139.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+31.500000000000004
+ 20
+139.25
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+138.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+31.500000000000004
+ 20
+138.25000000000003
+ 30
+0.0
+ 11
+32.5
+ 21
+138.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+32.5
+ 20
+138.25000000000003
+ 30
+0.0
+ 11
+32.5
+ 21
+139.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+32.5
+ 20
+139.25
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+139.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.500000000000002
+ 20
+141.75000000000003
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+140.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.500000000000002
+ 20
+140.75
+ 30
+0.0
+ 11
+12.5
+ 21
+140.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+12.5
+ 20
+140.75
+ 30
+0.0
+ 11
+12.5
+ 21
+141.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+12.5
+ 20
+141.75000000000003
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+141.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+30.500000000000004
+ 20
+142.75000000000003
+ 30
+0.0
+ 11
+30.500000000000004
+ 21
+139.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+30.500000000000004
+ 20
+139.75000000000003
+ 30
+0.0
+ 11
+33.50000000000001
+ 21
+139.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+33.50000000000001
+ 20
+139.75000000000003
+ 30
+0.0
+ 11
+33.50000000000001
+ 21
+142.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+33.50000000000001
+ 20
+142.75000000000003
+ 30
+0.0
+ 11
+30.500000000000004
+ 21
+142.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+26.250000000000004
+ 20
+99.75000000000001
+ 30
+0.0
+ 11
+17.750000000000004
+ 21
+99.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+17.750000000000004
+ 20
+99.75000000000001
+ 30
+0.0
+ 11
+17.750000000000004
+ 21
+99.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+17.750000000000004
+ 20
+99.25000000000001
+ 30
+0.0
+ 11
+26.250000000000004
+ 21
+99.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+26.250000000000004
+ 20
+99.25000000000001
+ 30
+0.0
+ 11
+26.250000000000004
+ 21
+99.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+17.750000000000004
+ 20
+147.5
+ 30
+0.0
+ 11
+26.250000000000004
+ 21
+147.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+26.250000000000004
+ 20
+147.5
+ 30
+0.0
+ 11
+26.250000000000004
+ 21
+148.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+26.250000000000004
+ 20
+148.0
+ 30
+0.0
+ 11
+17.750000000000004
+ 21
+148.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+17.750000000000004
+ 20
+148.0
+ 30
+0.0
+ 11
+17.750000000000004
+ 21
+147.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+2.5000000000000004
+ 20
+103.09090909090911
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+103.09090909090911
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+7.500000000000001
+ 20
+103.09090909090911
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+114.1818181818182
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+7.500000000000001
+ 20
+114.1818181818182
+ 30
+0.0
+ 11
+2.5000000000000004
+ 21
+114.1818181818182
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+2.5000000000000004
+ 20
+130.81818181818184
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+130.81818181818184
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+7.500000000000001
+ 20
+130.81818181818184
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+141.9090909090909
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+7.500000000000001
+ 20
+141.9090909090909
+ 30
+0.0
+ 11
+2.5000000000000004
+ 21
+141.9090909090909
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+27.750000000000004
+ 20
+76.00000000000001
+ 30
+0.0
+ 11
+31.250000000000004
+ 21
+76.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+31.250000000000004
+ 20
+76.00000000000001
+ 30
+0.0
+ 11
+31.250000000000004
+ 21
+84.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+31.250000000000004
+ 20
+84.0
+ 30
+0.0
+ 11
+27.750000000000004
+ 21
+84.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+45
+ 10
+198.0
+ 20
+61.930689000407355
+ 30
+0.0
+ 11
+259.00000000000006
+ 21
+61.930689000407355
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+259.00000000000006
+ 20
+98.06931099959267
+ 30
+0.0
+ 11
+259.00000000000006
+ 21
+61.930689000407355
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+198.0
+ 20
+98.06931099959267
+ 30
+0.0
+ 11
+259.00000000000006
+ 21
+98.06931099959267
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+198.0
+ 20
+61.930689000407355
+ 30
+0.0
+ 11
+198.0
+ 21
+98.06931099959267
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+45
+ 10
+259.00000000000006
+ 20
+37.93068900040735
+ 30
+0.0
+ 11
+198.0
+ 21
+37.93068900040735
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+259.00000000000006
+ 20
+37.93068900040735
+ 30
+0.0
+ 11
+259.00000000000006
+ 21
+61.930689000407355
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+198.0
+ 20
+1.7920670012220514
+ 30
+0.0
+ 11
+198.0
+ 21
+37.93068900040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+259.00000000000006
+ 20
+1.7920670012220514
+ 30
+0.0
+ 11
+198.0
+ 21
+1.7920670012220514
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+259.00000000000006
+ 20
+37.93068900040735
+ 30
+0.0
+ 11
+259.00000000000006
+ 21
+1.7920670012220514
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+269.0
+ 20
+37.93068900040735
+ 30
+0.0
+ 11
+259.00000000000006
+ 21
+37.93068900040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+269.0
+ 20
+61.930689000407355
+ 30
+0.0
+ 11
+269.0
+ 21
+37.93068900040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+259.00000000000006
+ 20
+61.930689000407355
+ 30
+0.0
+ 11
+269.0
+ 21
+61.930689000407355
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+188.00000000000003
+ 20
+61.930689000407355
+ 30
+0.0
+ 11
+198.0
+ 21
+61.930689000407355
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+188.00000000000003
+ 20
+37.93068900040735
+ 30
+0.0
+ 11
+188.00000000000003
+ 21
+61.930689000407355
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+198.0
+ 20
+37.93068900040735
+ 30
+0.0
+ 11
+188.00000000000003
+ 21
+37.93068900040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+216.00000000000003
+ 20
+43.430689000407355
+ 30
+0.0
+ 11
+227.00000000000003
+ 21
+43.430689000407355
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+227.00000000000003
+ 20
+43.430689000407355
+ 30
+0.0
+ 11
+227.00000000000003
+ 21
+56.430689000407355
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+227.00000000000003
+ 20
+56.430689000407355
+ 30
+0.0
+ 11
+216.00000000000003
+ 21
+56.430689000407355
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+216.00000000000003
+ 20
+56.430689000407355
+ 30
+0.0
+ 11
+216.00000000000003
+ 21
+43.430689000407355
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+247.50000000000003
+ 20
+44.930689000407355
+ 30
+0.0
+ 11
+253.50000000000003
+ 21
+44.930689000407355
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+253.50000000000003
+ 20
+44.930689000407355
+ 30
+0.0
+ 11
+253.50000000000003
+ 21
+54.930689000407355
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+253.50000000000003
+ 20
+54.930689000407355
+ 30
+0.0
+ 11
+247.50000000000003
+ 21
+54.930689000407355
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+247.50000000000003
+ 20
+54.930689000407355
+ 30
+0.0
+ 11
+247.50000000000003
+ 21
+44.930689000407355
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+266.5
+ 20
+53.930689000407355
+ 30
+0.0
+ 11
+261.50000000000006
+ 21
+53.930689000407355
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+261.50000000000006
+ 20
+53.930689000407355
+ 30
+0.0
+ 11
+261.50000000000006
+ 21
+45.93068900040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+261.50000000000006
+ 20
+45.93068900040735
+ 30
+0.0
+ 11
+266.5
+ 21
+45.93068900040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+190.50000000000003
+ 20
+45.93068900040735
+ 30
+0.0
+ 11
+195.5
+ 21
+45.93068900040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+195.5
+ 20
+45.93068900040735
+ 30
+0.0
+ 11
+195.5
+ 21
+53.930689000407355
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+195.5
+ 20
+53.930689000407355
+ 30
+0.0
+ 11
+190.50000000000003
+ 21
+53.930689000407355
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+319.0
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+289.00000000000006
+ 21
+60.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+319.0
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+319.0
+ 21
+100.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+289.00000000000006
+ 20
+100.0
+ 30
+0.0
+ 11
+319.0
+ 21
+100.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+289.00000000000006
+ 20
+100.0
+ 30
+0.0
+ 11
+289.00000000000006
+ 21
+60.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+319.0
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+329.00000000000006
+ 21
+60.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+329.00000000000006
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+329.00000000000006
+ 21
+100.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+329.00000000000006
+ 20
+100.0
+ 30
+0.0
+ 11
+319.0
+ 21
+100.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+329.00000000000006
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+329.00000000000006
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+319.0
+ 20
+0.0
+ 30
+0.0
+ 11
+319.0
+ 21
+60.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+329.00000000000006
+ 20
+0.0
+ 30
+0.0
+ 11
+319.0
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+359.0
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+329.00000000000006
+ 21
+60.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+359.0
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+359.0
+ 21
+100.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+329.00000000000006
+ 20
+100.0
+ 30
+0.0
+ 11
+359.0
+ 21
+100.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+369.0
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+359.0
+ 21
+60.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+369.0
+ 20
+100.0
+ 30
+0.0
+ 11
+369.0
+ 21
+60.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+359.0
+ 20
+100.0
+ 30
+0.0
+ 11
+369.0
+ 21
+100.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+319.0
+ 20
+100.0
+ 30
+0.0
+ 11
+319.0
+ 21
+160.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+329.00000000000006
+ 20
+160.00000000000003
+ 30
+0.0
+ 11
+329.00000000000006
+ 21
+100.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+319.0
+ 20
+160.00000000000003
+ 30
+0.0
+ 11
+329.00000000000006
+ 21
+160.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+279.00000000000006
+ 20
+100.0
+ 30
+0.0
+ 11
+289.00000000000006
+ 21
+100.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+279.00000000000006
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+279.00000000000006
+ 21
+100.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+289.00000000000006
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+279.00000000000006
+ 21
+60.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+290.00000000000006
+ 20
+76.00000000000001
+ 30
+0.0
+ 11
+298.00000000000006
+ 21
+76.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+298.00000000000006
+ 20
+76.00000000000001
+ 30
+0.0
+ 11
+298.00000000000006
+ 21
+84.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+298.00000000000006
+ 20
+84.0
+ 30
+0.0
+ 11
+290.00000000000006
+ 21
+84.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+290.00000000000006
+ 20
+84.0
+ 30
+0.0
+ 11
+290.00000000000006
+ 21
+76.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+350.0
+ 20
+76.00000000000001
+ 30
+0.0
+ 11
+358.00000000000006
+ 21
+76.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+358.00000000000006
+ 20
+76.00000000000001
+ 30
+0.0
+ 11
+358.00000000000006
+ 21
+84.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+358.00000000000006
+ 20
+84.0
+ 30
+0.0
+ 11
+350.0
+ 21
+84.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+350.0
+ 20
+84.0
+ 30
+0.0
+ 11
+350.0
+ 21
+76.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+361.25000000000006
+ 20
+86.91666666666669
+ 30
+0.0
+ 11
+361.25000000000006
+ 21
+73.08333333333336
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+361.25000000000006
+ 20
+73.08333333333336
+ 30
+0.0
+ 11
+361.75000000000006
+ 21
+73.08333333333336
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+361.75000000000006
+ 20
+73.08333333333336
+ 30
+0.0
+ 11
+361.75000000000006
+ 21
+86.91666666666669
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+361.75000000000006
+ 20
+86.91666666666669
+ 30
+0.0
+ 11
+361.25000000000006
+ 21
+86.91666666666669
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+281.5
+ 20
+73.33333333333336
+ 30
+0.0
+ 11
+281.5
+ 21
+68.33333333333334
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+281.5
+ 20
+68.33333333333334
+ 30
+0.0
+ 11
+286.5
+ 21
+73.33333333333336
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+286.5
+ 20
+73.33333333333336
+ 30
+0.0
+ 11
+286.5
+ 21
+86.66666666666669
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+286.5
+ 20
+86.66666666666669
+ 30
+0.0
+ 11
+281.5
+ 21
+91.66666666666669
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+281.5
+ 20
+91.66666666666669
+ 30
+0.0
+ 11
+281.5
+ 21
+86.66666666666669
+ 31
+0.0
+  0
+ENDSEC
+  0
+EOF
diff --git a/rocolib/output/DCStackMount/graph-autofold-graph.dxf b/rocolib/output/DCStackMount/graph-autofold-graph.dxf
new file mode 100644
index 0000000000000000000000000000000000000000..1cf8eb7d3f801525fa72470a40c7a6a2e1af1856
--- /dev/null
+++ b/rocolib/output/DCStackMount/graph-autofold-graph.dxf
@@ -0,0 +1,8428 @@
+  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
+33.0
+ 20
+68.0
+ 30
+0.0
+ 11
+94.00000000000001
+ 21
+68.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+94.00000000000001
+ 20
+68.0
+ 30
+0.0
+ 11
+94.00000000000001
+ 21
+92.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+94.00000000000001
+ 20
+92.00000000000001
+ 30
+0.0
+ 11
+33.0
+ 21
+92.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+33.0
+ 20
+92.00000000000001
+ 30
+0.0
+ 11
+33.0
+ 21
+68.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+33.0
+ 20
+61.00000000000001
+ 30
+0.0
+ 11
+33.0
+ 21
+68.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.00000000000001
+ 20
+61.00000000000001
+ 30
+0.0
+ 11
+33.0
+ 21
+61.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.00000000000001
+ 20
+68.0
+ 30
+0.0
+ 11
+93.00000000000001
+ 21
+61.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.00000000000001
+ 20
+68.0
+ 30
+0.0
+ 11
+94.00000000000001
+ 21
+68.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.00000000000001
+ 20
+92.00000000000001
+ 30
+0.0
+ 11
+101.00000000000001
+ 21
+68.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+94.00000000000001
+ 20
+92.00000000000001
+ 30
+0.0
+ 11
+101.00000000000001
+ 21
+92.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+94.00000000000001
+ 20
+92.00000000000001
+ 30
+0.0
+ 11
+94.00000000000001
+ 21
+153.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+34.0
+ 20
+153.00000000000003
+ 30
+0.0
+ 11
+94.00000000000001
+ 21
+153.00000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+34.0
+ 20
+92.00000000000001
+ 30
+0.0
+ 11
+34.0
+ 21
+153.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+118.00000000000001
+ 20
+92.00000000000001
+ 30
+0.0
+ 11
+94.00000000000001
+ 21
+92.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+118.00000000000001
+ 20
+92.00000000000001
+ 30
+0.0
+ 11
+118.00000000000001
+ 21
+153.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+94.00000000000001
+ 20
+153.00000000000003
+ 30
+0.0
+ 11
+118.00000000000001
+ 21
+153.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+178.00000000000003
+ 20
+92.00000000000001
+ 30
+0.0
+ 11
+118.00000000000001
+ 21
+92.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+178.00000000000003
+ 20
+153.00000000000003
+ 30
+0.0
+ 11
+178.00000000000003
+ 21
+92.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+118.00000000000001
+ 20
+153.00000000000003
+ 30
+0.0
+ 11
+178.00000000000003
+ 21
+153.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+34.0
+ 20
+92.00000000000001
+ 30
+0.0
+ 11
+10.000000000000002
+ 21
+92.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+10.000000000000002
+ 20
+153.00000000000003
+ 30
+0.0
+ 11
+34.0
+ 21
+153.00000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+10.000000000000002
+ 20
+153.00000000000003
+ 30
+0.0
+ 11
+10.000000000000002
+ 21
+92.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+153.00000000000003
+ 30
+0.0
+ 11
+10.000000000000002
+ 21
+153.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+92.00000000000001
+ 30
+0.0
+ 11
+0.0
+ 21
+153.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+10.000000000000002
+ 20
+92.00000000000001
+ 30
+0.0
+ 11
+0.0
+ 21
+92.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+26.000000000000004
+ 20
+92.00000000000001
+ 30
+0.0
+ 11
+33.0
+ 21
+92.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+26.000000000000004
+ 20
+68.0
+ 30
+0.0
+ 11
+26.000000000000004
+ 21
+92.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+33.0
+ 20
+68.0
+ 30
+0.0
+ 11
+26.000000000000004
+ 21
+68.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+82.09090909090911
+ 20
+62.75000000000001
+ 30
+0.0
+ 11
+85.59090909090911
+ 21
+62.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+85.59090909090911
+ 20
+62.75000000000001
+ 30
+0.0
+ 11
+82.09090909090911
+ 21
+66.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+82.09090909090911
+ 20
+66.25000000000001
+ 30
+0.0
+ 11
+71.1818181818182
+ 21
+66.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+71.1818181818182
+ 20
+66.25000000000001
+ 30
+0.0
+ 11
+67.68181818181819
+ 21
+62.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+67.68181818181819
+ 20
+62.75000000000001
+ 30
+0.0
+ 11
+71.1818181818182
+ 21
+62.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+54.818181818181834
+ 20
+62.75000000000001
+ 30
+0.0
+ 11
+58.31818181818183
+ 21
+62.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+58.31818181818183
+ 20
+62.75000000000001
+ 30
+0.0
+ 11
+54.818181818181834
+ 21
+66.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+54.818181818181834
+ 20
+66.25000000000001
+ 30
+0.0
+ 11
+43.909090909090914
+ 21
+66.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+43.909090909090914
+ 20
+66.25000000000001
+ 30
+0.0
+ 11
+40.40909090909092
+ 21
+62.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+40.40909090909092
+ 20
+62.75000000000001
+ 30
+0.0
+ 11
+43.909090909090914
+ 21
+62.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+99.25000000000001
+ 20
+84.0
+ 30
+0.0
+ 11
+95.75000000000001
+ 21
+84.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.75000000000001
+ 20
+84.0
+ 30
+0.0
+ 11
+95.75000000000001
+ 21
+76.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.75000000000001
+ 20
+76.00000000000001
+ 30
+0.0
+ 11
+99.25000000000001
+ 21
+76.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+41.5
+ 20
+143.5
+ 30
+0.0
+ 11
+41.5
+ 21
+125.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+41.5
+ 20
+125.50000000000001
+ 30
+0.0
+ 11
+76.50000000000001
+ 21
+125.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+76.50000000000001
+ 20
+125.50000000000001
+ 30
+0.0
+ 11
+76.50000000000001
+ 21
+143.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+76.50000000000001
+ 20
+143.5
+ 30
+0.0
+ 11
+41.5
+ 21
+143.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+94.5
+ 20
+105.25000000000001
+ 30
+0.0
+ 11
+94.5
+ 21
+102.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+94.5
+ 20
+102.25000000000001
+ 30
+0.0
+ 11
+97.50000000000001
+ 21
+102.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+97.50000000000001
+ 20
+102.25000000000001
+ 30
+0.0
+ 11
+97.50000000000001
+ 21
+105.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+97.50000000000001
+ 20
+105.25000000000001
+ 30
+0.0
+ 11
+94.5
+ 21
+105.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+104.25000000000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+103.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+103.25000000000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+103.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+103.25000000000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+104.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+104.25000000000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+104.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+106.75000000000001
+ 30
+0.0
+ 11
+95.5
+ 21
+105.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+105.75
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+105.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+105.75
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+106.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+106.75000000000001
+ 30
+0.0
+ 11
+95.5
+ 21
+106.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+106.75000000000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+105.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+105.75
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+105.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+105.75
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+106.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+106.75000000000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+106.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+109.25
+ 30
+0.0
+ 11
+95.5
+ 21
+108.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+108.25000000000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+108.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+108.25000000000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+109.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+109.25
+ 30
+0.0
+ 11
+95.5
+ 21
+109.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+109.25
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+108.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+108.25000000000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+108.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+108.25000000000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+109.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+109.25
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+109.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+111.75000000000001
+ 30
+0.0
+ 11
+95.5
+ 21
+110.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+110.75000000000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+110.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+110.75000000000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+111.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+111.75000000000001
+ 30
+0.0
+ 11
+95.5
+ 21
+111.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+111.75000000000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+110.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+110.75000000000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+110.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+110.75000000000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+111.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+111.75000000000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+111.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+114.25000000000001
+ 30
+0.0
+ 11
+95.5
+ 21
+113.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+113.25000000000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+113.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+113.25000000000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+114.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+114.25000000000001
+ 30
+0.0
+ 11
+95.5
+ 21
+114.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+114.25000000000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+113.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+113.25000000000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+113.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+113.25000000000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+114.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+114.25000000000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+114.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+116.75000000000001
+ 30
+0.0
+ 11
+95.5
+ 21
+115.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+115.75000000000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+115.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+115.75000000000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+116.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+116.75000000000001
+ 30
+0.0
+ 11
+95.5
+ 21
+116.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+116.75000000000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+115.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+115.75000000000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+115.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+115.75000000000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+116.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+116.75000000000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+116.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+119.25000000000001
+ 30
+0.0
+ 11
+95.5
+ 21
+118.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+118.25000000000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+118.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+118.25000000000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+119.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+119.25000000000001
+ 30
+0.0
+ 11
+95.5
+ 21
+119.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+119.25000000000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+118.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+118.25000000000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+118.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+118.25000000000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+119.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+119.25000000000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+119.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+121.75000000000001
+ 30
+0.0
+ 11
+95.5
+ 21
+120.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+120.75000000000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+120.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+120.75000000000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+121.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+121.75000000000001
+ 30
+0.0
+ 11
+95.5
+ 21
+121.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+121.75000000000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+120.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+120.75000000000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+120.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+120.75000000000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+121.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+121.75000000000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+121.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+124.25000000000001
+ 30
+0.0
+ 11
+95.5
+ 21
+123.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+123.25000000000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+123.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+123.25000000000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+124.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+124.25000000000001
+ 30
+0.0
+ 11
+95.5
+ 21
+124.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+124.25000000000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+123.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+123.25000000000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+123.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+123.25000000000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+124.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+124.25000000000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+124.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+126.75000000000001
+ 30
+0.0
+ 11
+95.5
+ 21
+125.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+125.75000000000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+125.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+125.75000000000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+126.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+126.75000000000001
+ 30
+0.0
+ 11
+95.5
+ 21
+126.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+126.75000000000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+125.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+125.75000000000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+125.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+125.75000000000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+126.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+126.75000000000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+126.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+129.25000000000003
+ 30
+0.0
+ 11
+95.5
+ 21
+128.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+128.25000000000003
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+128.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+128.25000000000003
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+129.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+129.25000000000003
+ 30
+0.0
+ 11
+95.5
+ 21
+129.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+129.25000000000003
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+128.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+128.25000000000003
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+128.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+128.25000000000003
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+129.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+129.25000000000003
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+129.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+131.75000000000003
+ 30
+0.0
+ 11
+95.5
+ 21
+130.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+130.75000000000003
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+130.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+130.75000000000003
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+131.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+131.75000000000003
+ 30
+0.0
+ 11
+95.5
+ 21
+131.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+131.75000000000003
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+130.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+130.75000000000003
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+130.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+130.75000000000003
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+131.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+131.75000000000003
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+131.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+134.25000000000003
+ 30
+0.0
+ 11
+95.5
+ 21
+133.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+133.25
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+133.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+133.25
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+134.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+134.25000000000003
+ 30
+0.0
+ 11
+95.5
+ 21
+134.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+134.25000000000003
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+133.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+133.25
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+133.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+133.25
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+134.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+134.25000000000003
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+134.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+136.75
+ 30
+0.0
+ 11
+95.5
+ 21
+135.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+135.75000000000003
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+135.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+135.75000000000003
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+136.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+136.75
+ 30
+0.0
+ 11
+95.5
+ 21
+136.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+136.75
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+135.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+135.75000000000003
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+135.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+135.75000000000003
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+136.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+136.75
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+136.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+139.25
+ 30
+0.0
+ 11
+95.5
+ 21
+138.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+138.25000000000003
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+138.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+138.25000000000003
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+139.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+139.25
+ 30
+0.0
+ 11
+95.5
+ 21
+139.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+139.25
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+138.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+138.25000000000003
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+138.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+138.25000000000003
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+139.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+139.25
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+139.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+141.75000000000003
+ 30
+0.0
+ 11
+95.5
+ 21
+140.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+140.75
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+140.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+140.75
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+141.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+141.75000000000003
+ 30
+0.0
+ 11
+95.5
+ 21
+141.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+114.50000000000001
+ 20
+142.75000000000003
+ 30
+0.0
+ 11
+114.50000000000001
+ 21
+139.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+114.50000000000001
+ 20
+139.75000000000003
+ 30
+0.0
+ 11
+117.50000000000001
+ 21
+139.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+117.50000000000001
+ 20
+139.75000000000003
+ 30
+0.0
+ 11
+117.50000000000001
+ 21
+142.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+117.50000000000001
+ 20
+142.75000000000003
+ 30
+0.0
+ 11
+114.50000000000001
+ 21
+142.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+110.25000000000001
+ 20
+99.75000000000001
+ 30
+0.0
+ 11
+101.75000000000001
+ 21
+99.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.75000000000001
+ 20
+99.75000000000001
+ 30
+0.0
+ 11
+101.75000000000001
+ 21
+99.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.75000000000001
+ 20
+99.25000000000001
+ 30
+0.0
+ 11
+110.25000000000001
+ 21
+99.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+110.25000000000001
+ 20
+99.25000000000001
+ 30
+0.0
+ 11
+110.25000000000001
+ 21
+99.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.75000000000001
+ 20
+147.5
+ 30
+0.0
+ 11
+110.25000000000001
+ 21
+147.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+110.25000000000001
+ 20
+147.5
+ 30
+0.0
+ 11
+110.25000000000001
+ 21
+148.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+110.25000000000001
+ 20
+148.0
+ 30
+0.0
+ 11
+101.75000000000001
+ 21
+148.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.75000000000001
+ 20
+148.0
+ 30
+0.0
+ 11
+101.75000000000001
+ 21
+147.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+133.00000000000003
+ 20
+143.0
+ 30
+0.0
+ 11
+133.00000000000003
+ 21
+130.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+133.00000000000003
+ 20
+130.0
+ 30
+0.0
+ 11
+163.00000000000003
+ 21
+130.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.00000000000003
+ 20
+130.0
+ 30
+0.0
+ 11
+163.00000000000003
+ 21
+143.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.00000000000003
+ 20
+143.0
+ 30
+0.0
+ 11
+133.00000000000003
+ 21
+143.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+140.06818181818184
+ 20
+97.50000000000001
+ 30
+0.0
+ 11
+128.65909090909093
+ 21
+97.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+128.65909090909093
+ 20
+97.50000000000001
+ 30
+0.0
+ 11
+128.65909090909093
+ 21
+97.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+128.65909090909093
+ 20
+97.00000000000001
+ 30
+0.0
+ 11
+140.06818181818184
+ 21
+97.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+140.06818181818184
+ 20
+97.00000000000001
+ 30
+0.0
+ 11
+140.06818181818184
+ 21
+97.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+167.3409090909091
+ 20
+97.50000000000001
+ 30
+0.0
+ 11
+155.93181818181822
+ 21
+97.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+155.93181818181822
+ 20
+97.50000000000001
+ 30
+0.0
+ 11
+155.93181818181822
+ 21
+97.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+155.93181818181822
+ 20
+97.00000000000001
+ 30
+0.0
+ 11
+167.3409090909091
+ 21
+97.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+167.3409090909091
+ 20
+97.00000000000001
+ 30
+0.0
+ 11
+167.3409090909091
+ 21
+97.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+170.25000000000003
+ 20
+114.4318181818182
+ 30
+0.0
+ 11
+170.25000000000003
+ 21
+102.84090909090911
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+170.25000000000003
+ 20
+102.84090909090911
+ 30
+0.0
+ 11
+170.75
+ 21
+102.84090909090911
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+170.75
+ 20
+102.84090909090911
+ 30
+0.0
+ 11
+170.75
+ 21
+114.4318181818182
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+170.75
+ 20
+114.4318181818182
+ 30
+0.0
+ 11
+170.25000000000003
+ 21
+114.4318181818182
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+170.25000000000003
+ 20
+142.1590909090909
+ 30
+0.0
+ 11
+170.25000000000003
+ 21
+130.56818181818184
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+170.25000000000003
+ 20
+130.56818181818184
+ 30
+0.0
+ 11
+170.75
+ 21
+130.56818181818184
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+170.75
+ 20
+130.56818181818184
+ 30
+0.0
+ 11
+170.75
+ 21
+142.1590909090909
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+170.75
+ 20
+142.1590909090909
+ 30
+0.0
+ 11
+170.25000000000003
+ 21
+142.1590909090909
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+10.5
+ 20
+105.25000000000001
+ 30
+0.0
+ 11
+10.5
+ 21
+102.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+10.5
+ 20
+102.25000000000001
+ 30
+0.0
+ 11
+13.500000000000002
+ 21
+102.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+13.500000000000002
+ 20
+102.25000000000001
+ 30
+0.0
+ 11
+13.500000000000002
+ 21
+105.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+13.500000000000002
+ 20
+105.25000000000001
+ 30
+0.0
+ 11
+10.5
+ 21
+105.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+104.25000000000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+103.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+103.25000000000001
+ 30
+0.0
+ 11
+32.5
+ 21
+103.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+103.25000000000001
+ 30
+0.0
+ 11
+32.5
+ 21
+104.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+104.25000000000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+104.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+106.75000000000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+105.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+105.75
+ 30
+0.0
+ 11
+12.5
+ 21
+105.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+105.75
+ 30
+0.0
+ 11
+12.5
+ 21
+106.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+106.75000000000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+106.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+106.75000000000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+105.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+105.75
+ 30
+0.0
+ 11
+32.5
+ 21
+105.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+105.75
+ 30
+0.0
+ 11
+32.5
+ 21
+106.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+106.75000000000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+106.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+109.25
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+108.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+108.25000000000001
+ 30
+0.0
+ 11
+12.5
+ 21
+108.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+108.25000000000001
+ 30
+0.0
+ 11
+12.5
+ 21
+109.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+109.25
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+109.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+109.25
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+108.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+108.25000000000001
+ 30
+0.0
+ 11
+32.5
+ 21
+108.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+108.25000000000001
+ 30
+0.0
+ 11
+32.5
+ 21
+109.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+109.25
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+109.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+111.75000000000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+110.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+110.75000000000001
+ 30
+0.0
+ 11
+12.5
+ 21
+110.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+110.75000000000001
+ 30
+0.0
+ 11
+12.5
+ 21
+111.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+111.75000000000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+111.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+111.75000000000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+110.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+110.75000000000001
+ 30
+0.0
+ 11
+32.5
+ 21
+110.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+110.75000000000001
+ 30
+0.0
+ 11
+32.5
+ 21
+111.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+111.75000000000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+111.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+114.25000000000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+113.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+113.25000000000001
+ 30
+0.0
+ 11
+12.5
+ 21
+113.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+113.25000000000001
+ 30
+0.0
+ 11
+12.5
+ 21
+114.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+114.25000000000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+114.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+114.25000000000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+113.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+113.25000000000001
+ 30
+0.0
+ 11
+32.5
+ 21
+113.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+113.25000000000001
+ 30
+0.0
+ 11
+32.5
+ 21
+114.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+114.25000000000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+114.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+116.75000000000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+115.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+115.75000000000001
+ 30
+0.0
+ 11
+12.5
+ 21
+115.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+115.75000000000001
+ 30
+0.0
+ 11
+12.5
+ 21
+116.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+116.75000000000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+116.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+116.75000000000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+115.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+115.75000000000001
+ 30
+0.0
+ 11
+32.5
+ 21
+115.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+115.75000000000001
+ 30
+0.0
+ 11
+32.5
+ 21
+116.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+116.75000000000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+116.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+119.25000000000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+118.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+118.25000000000001
+ 30
+0.0
+ 11
+12.5
+ 21
+118.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+118.25000000000001
+ 30
+0.0
+ 11
+12.5
+ 21
+119.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+119.25000000000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+119.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+119.25000000000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+118.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+118.25000000000001
+ 30
+0.0
+ 11
+32.5
+ 21
+118.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+118.25000000000001
+ 30
+0.0
+ 11
+32.5
+ 21
+119.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+119.25000000000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+119.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+121.75000000000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+120.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+120.75000000000001
+ 30
+0.0
+ 11
+12.5
+ 21
+120.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+120.75000000000001
+ 30
+0.0
+ 11
+12.5
+ 21
+121.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+121.75000000000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+121.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+121.75000000000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+120.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+120.75000000000001
+ 30
+0.0
+ 11
+32.5
+ 21
+120.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+120.75000000000001
+ 30
+0.0
+ 11
+32.5
+ 21
+121.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+121.75000000000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+121.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+124.25000000000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+123.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+123.25000000000001
+ 30
+0.0
+ 11
+12.5
+ 21
+123.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+123.25000000000001
+ 30
+0.0
+ 11
+12.5
+ 21
+124.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+124.25000000000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+124.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+124.25000000000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+123.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+123.25000000000001
+ 30
+0.0
+ 11
+32.5
+ 21
+123.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+123.25000000000001
+ 30
+0.0
+ 11
+32.5
+ 21
+124.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+124.25000000000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+124.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+126.75000000000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+125.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+125.75000000000001
+ 30
+0.0
+ 11
+12.5
+ 21
+125.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+125.75000000000001
+ 30
+0.0
+ 11
+12.5
+ 21
+126.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+126.75000000000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+126.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+126.75000000000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+125.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+125.75000000000001
+ 30
+0.0
+ 11
+32.5
+ 21
+125.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+125.75000000000001
+ 30
+0.0
+ 11
+32.5
+ 21
+126.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+126.75000000000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+126.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+129.25000000000003
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+128.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+128.25000000000003
+ 30
+0.0
+ 11
+12.5
+ 21
+128.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+128.25000000000003
+ 30
+0.0
+ 11
+12.5
+ 21
+129.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+129.25000000000003
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+129.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+129.25000000000003
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+128.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+128.25000000000003
+ 30
+0.0
+ 11
+32.5
+ 21
+128.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+128.25000000000003
+ 30
+0.0
+ 11
+32.5
+ 21
+129.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+129.25000000000003
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+129.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+131.75000000000003
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+130.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+130.75000000000003
+ 30
+0.0
+ 11
+12.5
+ 21
+130.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+130.75000000000003
+ 30
+0.0
+ 11
+12.5
+ 21
+131.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+131.75000000000003
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+131.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+131.75000000000003
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+130.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+130.75000000000003
+ 30
+0.0
+ 11
+32.5
+ 21
+130.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+130.75000000000003
+ 30
+0.0
+ 11
+32.5
+ 21
+131.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+131.75000000000003
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+131.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+134.25000000000003
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+133.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+133.25
+ 30
+0.0
+ 11
+12.5
+ 21
+133.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+133.25
+ 30
+0.0
+ 11
+12.5
+ 21
+134.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+134.25000000000003
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+134.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+134.25000000000003
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+133.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+133.25
+ 30
+0.0
+ 11
+32.5
+ 21
+133.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+133.25
+ 30
+0.0
+ 11
+32.5
+ 21
+134.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+134.25000000000003
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+134.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+136.75
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+135.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+135.75000000000003
+ 30
+0.0
+ 11
+12.5
+ 21
+135.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+135.75000000000003
+ 30
+0.0
+ 11
+12.5
+ 21
+136.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+136.75
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+136.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+136.75
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+135.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+135.75000000000003
+ 30
+0.0
+ 11
+32.5
+ 21
+135.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+135.75000000000003
+ 30
+0.0
+ 11
+32.5
+ 21
+136.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+136.75
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+136.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+139.25
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+138.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+138.25000000000003
+ 30
+0.0
+ 11
+12.5
+ 21
+138.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+138.25000000000003
+ 30
+0.0
+ 11
+12.5
+ 21
+139.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+139.25
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+139.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+139.25
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+138.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+138.25000000000003
+ 30
+0.0
+ 11
+32.5
+ 21
+138.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+138.25000000000003
+ 30
+0.0
+ 11
+32.5
+ 21
+139.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+139.25
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+139.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+141.75000000000003
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+140.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+140.75
+ 30
+0.0
+ 11
+12.5
+ 21
+140.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+140.75
+ 30
+0.0
+ 11
+12.5
+ 21
+141.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+141.75000000000003
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+141.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+30.500000000000004
+ 20
+142.75000000000003
+ 30
+0.0
+ 11
+30.500000000000004
+ 21
+139.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+30.500000000000004
+ 20
+139.75000000000003
+ 30
+0.0
+ 11
+33.50000000000001
+ 21
+139.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+33.50000000000001
+ 20
+139.75000000000003
+ 30
+0.0
+ 11
+33.50000000000001
+ 21
+142.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+33.50000000000001
+ 20
+142.75000000000003
+ 30
+0.0
+ 11
+30.500000000000004
+ 21
+142.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+26.250000000000004
+ 20
+99.75000000000001
+ 30
+0.0
+ 11
+17.750000000000004
+ 21
+99.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+17.750000000000004
+ 20
+99.75000000000001
+ 30
+0.0
+ 11
+17.750000000000004
+ 21
+99.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+17.750000000000004
+ 20
+99.25000000000001
+ 30
+0.0
+ 11
+26.250000000000004
+ 21
+99.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+26.250000000000004
+ 20
+99.25000000000001
+ 30
+0.0
+ 11
+26.250000000000004
+ 21
+99.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+17.750000000000004
+ 20
+147.5
+ 30
+0.0
+ 11
+26.250000000000004
+ 21
+147.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+26.250000000000004
+ 20
+147.5
+ 30
+0.0
+ 11
+26.250000000000004
+ 21
+148.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+26.250000000000004
+ 20
+148.0
+ 30
+0.0
+ 11
+17.750000000000004
+ 21
+148.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+17.750000000000004
+ 20
+148.0
+ 30
+0.0
+ 11
+17.750000000000004
+ 21
+147.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+2.5000000000000004
+ 20
+103.09090909090911
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+103.09090909090911
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+7.500000000000001
+ 20
+103.09090909090911
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+114.1818181818182
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+7.500000000000001
+ 20
+114.1818181818182
+ 30
+0.0
+ 11
+2.5000000000000004
+ 21
+114.1818181818182
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+2.5000000000000004
+ 20
+130.81818181818184
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+130.81818181818184
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+7.500000000000001
+ 20
+130.81818181818184
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+141.9090909090909
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+7.500000000000001
+ 20
+141.9090909090909
+ 30
+0.0
+ 11
+2.5000000000000004
+ 21
+141.9090909090909
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+27.750000000000004
+ 20
+76.00000000000001
+ 30
+0.0
+ 11
+31.250000000000004
+ 21
+76.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.250000000000004
+ 20
+76.00000000000001
+ 30
+0.0
+ 11
+31.250000000000004
+ 21
+84.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.250000000000004
+ 20
+84.0
+ 30
+0.0
+ 11
+27.750000000000004
+ 21
+84.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+198.0
+ 20
+61.930689000407355
+ 30
+0.0
+ 11
+259.00000000000006
+ 21
+61.930689000407355
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+259.00000000000006
+ 20
+98.06931099959267
+ 30
+0.0
+ 11
+259.00000000000006
+ 21
+61.930689000407355
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+198.0
+ 20
+98.06931099959267
+ 30
+0.0
+ 11
+259.00000000000006
+ 21
+98.06931099959267
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+198.0
+ 20
+61.930689000407355
+ 30
+0.0
+ 11
+198.0
+ 21
+98.06931099959267
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+259.00000000000006
+ 20
+37.93068900040735
+ 30
+0.0
+ 11
+198.0
+ 21
+37.93068900040735
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+259.00000000000006
+ 20
+37.93068900040735
+ 30
+0.0
+ 11
+259.00000000000006
+ 21
+61.930689000407355
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+198.0
+ 20
+1.7920670012220514
+ 30
+0.0
+ 11
+198.0
+ 21
+37.93068900040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+259.00000000000006
+ 20
+1.7920670012220514
+ 30
+0.0
+ 11
+198.0
+ 21
+1.7920670012220514
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+259.00000000000006
+ 20
+37.93068900040735
+ 30
+0.0
+ 11
+259.00000000000006
+ 21
+1.7920670012220514
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+269.0
+ 20
+37.93068900040735
+ 30
+0.0
+ 11
+259.00000000000006
+ 21
+37.93068900040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+269.0
+ 20
+61.930689000407355
+ 30
+0.0
+ 11
+269.0
+ 21
+37.93068900040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+259.00000000000006
+ 20
+61.930689000407355
+ 30
+0.0
+ 11
+269.0
+ 21
+61.930689000407355
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+188.00000000000003
+ 20
+61.930689000407355
+ 30
+0.0
+ 11
+198.0
+ 21
+61.930689000407355
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+188.00000000000003
+ 20
+37.93068900040735
+ 30
+0.0
+ 11
+188.00000000000003
+ 21
+61.930689000407355
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+198.0
+ 20
+37.93068900040735
+ 30
+0.0
+ 11
+188.00000000000003
+ 21
+37.93068900040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+216.00000000000003
+ 20
+43.430689000407355
+ 30
+0.0
+ 11
+227.00000000000003
+ 21
+43.430689000407355
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+227.00000000000003
+ 20
+43.430689000407355
+ 30
+0.0
+ 11
+227.00000000000003
+ 21
+56.430689000407355
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+227.00000000000003
+ 20
+56.430689000407355
+ 30
+0.0
+ 11
+216.00000000000003
+ 21
+56.430689000407355
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+216.00000000000003
+ 20
+56.430689000407355
+ 30
+0.0
+ 11
+216.00000000000003
+ 21
+43.430689000407355
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+247.50000000000003
+ 20
+44.930689000407355
+ 30
+0.0
+ 11
+253.50000000000003
+ 21
+44.930689000407355
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+253.50000000000003
+ 20
+44.930689000407355
+ 30
+0.0
+ 11
+253.50000000000003
+ 21
+54.930689000407355
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+253.50000000000003
+ 20
+54.930689000407355
+ 30
+0.0
+ 11
+247.50000000000003
+ 21
+54.930689000407355
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+247.50000000000003
+ 20
+54.930689000407355
+ 30
+0.0
+ 11
+247.50000000000003
+ 21
+44.930689000407355
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+266.5
+ 20
+53.930689000407355
+ 30
+0.0
+ 11
+261.50000000000006
+ 21
+53.930689000407355
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+261.50000000000006
+ 20
+53.930689000407355
+ 30
+0.0
+ 11
+261.50000000000006
+ 21
+45.93068900040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+261.50000000000006
+ 20
+45.93068900040735
+ 30
+0.0
+ 11
+266.5
+ 21
+45.93068900040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+190.50000000000003
+ 20
+45.93068900040735
+ 30
+0.0
+ 11
+195.5
+ 21
+45.93068900040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+195.5
+ 20
+45.93068900040735
+ 30
+0.0
+ 11
+195.5
+ 21
+53.930689000407355
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+195.5
+ 20
+53.930689000407355
+ 30
+0.0
+ 11
+190.50000000000003
+ 21
+53.930689000407355
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+319.0
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+289.00000000000006
+ 21
+60.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+319.0
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+319.0
+ 21
+100.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+289.00000000000006
+ 20
+100.0
+ 30
+0.0
+ 11
+319.0
+ 21
+100.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+289.00000000000006
+ 20
+100.0
+ 30
+0.0
+ 11
+289.00000000000006
+ 21
+60.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+319.0
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+329.00000000000006
+ 21
+60.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+329.00000000000006
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+329.00000000000006
+ 21
+100.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+329.00000000000006
+ 20
+100.0
+ 30
+0.0
+ 11
+319.0
+ 21
+100.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+329.00000000000006
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+329.00000000000006
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+319.0
+ 20
+0.0
+ 30
+0.0
+ 11
+319.0
+ 21
+60.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+329.00000000000006
+ 20
+0.0
+ 30
+0.0
+ 11
+319.0
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+359.0
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+329.00000000000006
+ 21
+60.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+359.0
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+359.0
+ 21
+100.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+329.00000000000006
+ 20
+100.0
+ 30
+0.0
+ 11
+359.0
+ 21
+100.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+369.0
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+359.0
+ 21
+60.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+369.0
+ 20
+100.0
+ 30
+0.0
+ 11
+369.0
+ 21
+60.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+359.0
+ 20
+100.0
+ 30
+0.0
+ 11
+369.0
+ 21
+100.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+319.0
+ 20
+100.0
+ 30
+0.0
+ 11
+319.0
+ 21
+160.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+329.00000000000006
+ 20
+160.00000000000003
+ 30
+0.0
+ 11
+329.00000000000006
+ 21
+100.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+319.0
+ 20
+160.00000000000003
+ 30
+0.0
+ 11
+329.00000000000006
+ 21
+160.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+279.00000000000006
+ 20
+100.0
+ 30
+0.0
+ 11
+289.00000000000006
+ 21
+100.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+279.00000000000006
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+279.00000000000006
+ 21
+100.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+289.00000000000006
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+279.00000000000006
+ 21
+60.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+290.00000000000006
+ 20
+76.00000000000001
+ 30
+0.0
+ 11
+298.00000000000006
+ 21
+76.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+298.00000000000006
+ 20
+76.00000000000001
+ 30
+0.0
+ 11
+298.00000000000006
+ 21
+84.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+298.00000000000006
+ 20
+84.0
+ 30
+0.0
+ 11
+290.00000000000006
+ 21
+84.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+290.00000000000006
+ 20
+84.0
+ 30
+0.0
+ 11
+290.00000000000006
+ 21
+76.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+350.0
+ 20
+76.00000000000001
+ 30
+0.0
+ 11
+358.00000000000006
+ 21
+76.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+358.00000000000006
+ 20
+76.00000000000001
+ 30
+0.0
+ 11
+358.00000000000006
+ 21
+84.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+358.00000000000006
+ 20
+84.0
+ 30
+0.0
+ 11
+350.0
+ 21
+84.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+350.0
+ 20
+84.0
+ 30
+0.0
+ 11
+350.0
+ 21
+76.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+361.25000000000006
+ 20
+86.91666666666669
+ 30
+0.0
+ 11
+361.25000000000006
+ 21
+73.08333333333336
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+361.25000000000006
+ 20
+73.08333333333336
+ 30
+0.0
+ 11
+361.75000000000006
+ 21
+73.08333333333336
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+361.75000000000006
+ 20
+73.08333333333336
+ 30
+0.0
+ 11
+361.75000000000006
+ 21
+86.91666666666669
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+361.75000000000006
+ 20
+86.91666666666669
+ 30
+0.0
+ 11
+361.25000000000006
+ 21
+86.91666666666669
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+281.5
+ 20
+73.33333333333336
+ 30
+0.0
+ 11
+281.5
+ 21
+68.33333333333334
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+281.5
+ 20
+68.33333333333334
+ 30
+0.0
+ 11
+286.5
+ 21
+73.33333333333336
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+286.5
+ 20
+73.33333333333336
+ 30
+0.0
+ 11
+286.5
+ 21
+86.66666666666669
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+286.5
+ 20
+86.66666666666669
+ 30
+0.0
+ 11
+281.5
+ 21
+91.66666666666669
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+281.5
+ 20
+91.66666666666669
+ 30
+0.0
+ 11
+281.5
+ 21
+86.66666666666669
+ 31
+0.0
+  0
+ENDSEC
+  0
+EOF
diff --git a/rocolib/output/DCStackMount/graph-lasercutter.svg b/rocolib/output/DCStackMount/graph-lasercutter.svg
new file mode 100644
index 0000000000000000000000000000000000000000..1089f34ce8fe732958daf307f29a0d4a50a4bc5c
--- /dev/null
+++ b/rocolib/output/DCStackMount/graph-lasercutter.svg
@@ -0,0 +1,418 @@
+<?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="160.000000mm" version="1.1" viewBox="0.000000 0.000000 369.000000 160.000000" width="369.000000mm">
+  <defs/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="33.0" x2="94.00000000000001" y1="68.0" y2="68.0"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="94.00000000000001" x2="94.00000000000001" y1="68.0" y2="92.00000000000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="94.00000000000001" x2="33.0" y1="92.00000000000001" y2="92.00000000000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="33.0" x2="33.0" y1="92.00000000000001" y2="68.0"/>
+  <line stroke="#000000" x1="33.0" x2="33.0" y1="61.00000000000001" y2="68.0"/>
+  <line stroke="#000000" x1="93.00000000000001" x2="33.0" y1="61.00000000000001" y2="61.00000000000001"/>
+  <line stroke="#000000" x1="93.00000000000001" x2="93.00000000000001" y1="68.0" y2="61.00000000000001"/>
+  <line stroke="#000000" x1="101.00000000000001" x2="94.00000000000001" y1="68.0" y2="68.0"/>
+  <line stroke="#000000" x1="101.00000000000001" x2="101.00000000000001" y1="92.00000000000001" y2="68.0"/>
+  <line stroke="#000000" x1="94.00000000000001" x2="101.00000000000001" y1="92.00000000000001" y2="92.00000000000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="94.00000000000001" x2="94.00000000000001" y1="92.00000000000001" y2="153.00000000000003"/>
+  <line stroke="#000000" x1="34.0" x2="94.00000000000001" y1="153.00000000000003" y2="153.00000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="34.0" x2="34.0" y1="92.00000000000001" y2="153.00000000000003"/>
+  <line stroke="#000000" x1="118.00000000000001" x2="94.00000000000001" y1="92.00000000000001" y2="92.00000000000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="118.00000000000001" x2="118.00000000000001" y1="92.00000000000001" y2="153.00000000000003"/>
+  <line stroke="#000000" x1="94.00000000000001" x2="118.00000000000001" y1="153.00000000000003" y2="153.00000000000003"/>
+  <line stroke="#000000" x1="178.00000000000003" x2="118.00000000000001" y1="92.00000000000001" y2="92.00000000000001"/>
+  <line stroke="#000000" x1="178.00000000000003" x2="178.00000000000003" y1="153.00000000000003" y2="92.00000000000001"/>
+  <line stroke="#000000" x1="118.00000000000001" x2="178.00000000000003" y1="153.00000000000003" y2="153.00000000000003"/>
+  <line stroke="#000000" x1="34.0" x2="10.000000000000002" y1="92.00000000000001" y2="92.00000000000001"/>
+  <line stroke="#000000" x1="10.000000000000002" x2="34.0" y1="153.00000000000003" y2="153.00000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="10.000000000000002" x2="10.000000000000002" y1="153.00000000000003" y2="92.00000000000001"/>
+  <line stroke="#000000" x1="0.0" x2="10.000000000000002" y1="153.00000000000003" y2="153.00000000000003"/>
+  <line stroke="#000000" x1="0.0" x2="0.0" y1="92.00000000000001" y2="153.00000000000003"/>
+  <line stroke="#000000" x1="10.000000000000002" x2="0.0" y1="92.00000000000001" y2="92.00000000000001"/>
+  <line stroke="#000000" x1="26.000000000000004" x2="33.0" y1="92.00000000000001" y2="92.00000000000001"/>
+  <line stroke="#000000" x1="26.000000000000004" x2="26.000000000000004" y1="68.0" y2="92.00000000000001"/>
+  <line stroke="#000000" x1="33.0" x2="26.000000000000004" y1="68.0" y2="68.0"/>
+  <line stroke="#888888" x1="82.09090909090911" x2="85.59090909090911" y1="62.75000000000001" y2="62.75000000000001"/>
+  <line stroke="#888888" x1="85.59090909090911" x2="82.09090909090911" y1="62.75000000000001" y2="66.25000000000001"/>
+  <line stroke="#888888" x1="82.09090909090911" x2="71.1818181818182" y1="66.25000000000001" y2="66.25000000000001"/>
+  <line stroke="#888888" x1="71.1818181818182" x2="67.68181818181819" y1="66.25000000000001" y2="62.75000000000001"/>
+  <line stroke="#888888" x1="67.68181818181819" x2="71.1818181818182" y1="62.75000000000001" y2="62.75000000000001"/>
+  <line stroke="#888888" x1="54.818181818181834" x2="58.31818181818183" y1="62.75000000000001" y2="62.75000000000001"/>
+  <line stroke="#888888" x1="58.31818181818183" x2="54.818181818181834" y1="62.75000000000001" y2="66.25000000000001"/>
+  <line stroke="#888888" x1="54.818181818181834" x2="43.909090909090914" y1="66.25000000000001" y2="66.25000000000001"/>
+  <line stroke="#888888" x1="43.909090909090914" x2="40.40909090909092" y1="66.25000000000001" y2="62.75000000000001"/>
+  <line stroke="#888888" x1="40.40909090909092" x2="43.909090909090914" y1="62.75000000000001" y2="62.75000000000001"/>
+  <line stroke="#888888" x1="99.25000000000001" x2="95.75000000000001" y1="84.0" y2="84.0"/>
+  <line stroke="#888888" x1="95.75000000000001" x2="95.75000000000001" y1="84.0" y2="76.00000000000001"/>
+  <line stroke="#888888" x1="95.75000000000001" x2="99.25000000000001" y1="76.00000000000001" y2="76.00000000000001"/>
+  <line stroke="#888888" x1="41.5" x2="41.5" y1="143.5" y2="125.50000000000001"/>
+  <line stroke="#888888" x1="41.5" x2="76.50000000000001" y1="125.50000000000001" y2="125.50000000000001"/>
+  <line stroke="#888888" x1="76.50000000000001" x2="76.50000000000001" y1="125.50000000000001" y2="143.5"/>
+  <line stroke="#888888" x1="76.50000000000001" x2="41.5" y1="143.5" y2="143.5"/>
+  <line stroke="#888888" x1="94.5" x2="94.5" y1="105.25000000000001" y2="102.25000000000001"/>
+  <line stroke="#888888" x1="94.5" x2="97.50000000000001" y1="102.25000000000001" y2="102.25000000000001"/>
+  <line stroke="#888888" x1="97.50000000000001" x2="97.50000000000001" y1="102.25000000000001" y2="105.25000000000001"/>
+  <line stroke="#888888" x1="97.50000000000001" x2="94.5" y1="105.25000000000001" y2="105.25000000000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="115.50000000000001" y1="104.25000000000001" y2="103.25000000000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="116.50000000000001" y1="103.25000000000001" y2="103.25000000000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="116.50000000000001" y1="103.25000000000001" y2="104.25000000000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="115.50000000000001" y1="104.25000000000001" y2="104.25000000000001"/>
+  <line stroke="#888888" x1="95.5" x2="95.5" y1="106.75000000000001" y2="105.75"/>
+  <line stroke="#888888" x1="95.5" x2="96.50000000000001" y1="105.75" y2="105.75"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="96.50000000000001" y1="105.75" y2="106.75000000000001"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="95.5" y1="106.75000000000001" y2="106.75000000000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="115.50000000000001" y1="106.75000000000001" y2="105.75"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="116.50000000000001" y1="105.75" y2="105.75"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="116.50000000000001" y1="105.75" y2="106.75000000000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="115.50000000000001" y1="106.75000000000001" y2="106.75000000000001"/>
+  <line stroke="#888888" x1="95.5" x2="95.5" y1="109.25" y2="108.25000000000001"/>
+  <line stroke="#888888" x1="95.5" x2="96.50000000000001" y1="108.25000000000001" y2="108.25000000000001"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="96.50000000000001" y1="108.25000000000001" y2="109.25"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="95.5" y1="109.25" y2="109.25"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="115.50000000000001" y1="109.25" y2="108.25000000000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="116.50000000000001" y1="108.25000000000001" y2="108.25000000000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="116.50000000000001" y1="108.25000000000001" y2="109.25"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="115.50000000000001" y1="109.25" y2="109.25"/>
+  <line stroke="#888888" x1="95.5" x2="95.5" y1="111.75000000000001" y2="110.75000000000001"/>
+  <line stroke="#888888" x1="95.5" x2="96.50000000000001" y1="110.75000000000001" y2="110.75000000000001"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="96.50000000000001" y1="110.75000000000001" y2="111.75000000000001"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="95.5" y1="111.75000000000001" y2="111.75000000000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="115.50000000000001" y1="111.75000000000001" y2="110.75000000000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="116.50000000000001" y1="110.75000000000001" y2="110.75000000000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="116.50000000000001" y1="110.75000000000001" y2="111.75000000000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="115.50000000000001" y1="111.75000000000001" y2="111.75000000000001"/>
+  <line stroke="#888888" x1="95.5" x2="95.5" y1="114.25000000000001" y2="113.25000000000001"/>
+  <line stroke="#888888" x1="95.5" x2="96.50000000000001" y1="113.25000000000001" y2="113.25000000000001"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="96.50000000000001" y1="113.25000000000001" y2="114.25000000000001"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="95.5" y1="114.25000000000001" y2="114.25000000000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="115.50000000000001" y1="114.25000000000001" y2="113.25000000000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="116.50000000000001" y1="113.25000000000001" y2="113.25000000000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="116.50000000000001" y1="113.25000000000001" y2="114.25000000000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="115.50000000000001" y1="114.25000000000001" y2="114.25000000000001"/>
+  <line stroke="#888888" x1="95.5" x2="95.5" y1="116.75000000000001" y2="115.75000000000001"/>
+  <line stroke="#888888" x1="95.5" x2="96.50000000000001" y1="115.75000000000001" y2="115.75000000000001"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="96.50000000000001" y1="115.75000000000001" y2="116.75000000000001"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="95.5" y1="116.75000000000001" y2="116.75000000000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="115.50000000000001" y1="116.75000000000001" y2="115.75000000000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="116.50000000000001" y1="115.75000000000001" y2="115.75000000000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="116.50000000000001" y1="115.75000000000001" y2="116.75000000000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="115.50000000000001" y1="116.75000000000001" y2="116.75000000000001"/>
+  <line stroke="#888888" x1="95.5" x2="95.5" y1="119.25000000000001" y2="118.25000000000001"/>
+  <line stroke="#888888" x1="95.5" x2="96.50000000000001" y1="118.25000000000001" y2="118.25000000000001"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="96.50000000000001" y1="118.25000000000001" y2="119.25000000000001"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="95.5" y1="119.25000000000001" y2="119.25000000000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="115.50000000000001" y1="119.25000000000001" y2="118.25000000000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="116.50000000000001" y1="118.25000000000001" y2="118.25000000000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="116.50000000000001" y1="118.25000000000001" y2="119.25000000000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="115.50000000000001" y1="119.25000000000001" y2="119.25000000000001"/>
+  <line stroke="#888888" x1="95.5" x2="95.5" y1="121.75000000000001" y2="120.75000000000001"/>
+  <line stroke="#888888" x1="95.5" x2="96.50000000000001" y1="120.75000000000001" y2="120.75000000000001"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="96.50000000000001" y1="120.75000000000001" y2="121.75000000000001"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="95.5" y1="121.75000000000001" y2="121.75000000000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="115.50000000000001" y1="121.75000000000001" y2="120.75000000000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="116.50000000000001" y1="120.75000000000001" y2="120.75000000000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="116.50000000000001" y1="120.75000000000001" y2="121.75000000000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="115.50000000000001" y1="121.75000000000001" y2="121.75000000000001"/>
+  <line stroke="#888888" x1="95.5" x2="95.5" y1="124.25000000000001" y2="123.25000000000001"/>
+  <line stroke="#888888" x1="95.5" x2="96.50000000000001" y1="123.25000000000001" y2="123.25000000000001"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="96.50000000000001" y1="123.25000000000001" y2="124.25000000000001"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="95.5" y1="124.25000000000001" y2="124.25000000000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="115.50000000000001" y1="124.25000000000001" y2="123.25000000000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="116.50000000000001" y1="123.25000000000001" y2="123.25000000000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="116.50000000000001" y1="123.25000000000001" y2="124.25000000000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="115.50000000000001" y1="124.25000000000001" y2="124.25000000000001"/>
+  <line stroke="#888888" x1="95.5" x2="95.5" y1="126.75000000000001" y2="125.75000000000001"/>
+  <line stroke="#888888" x1="95.5" x2="96.50000000000001" y1="125.75000000000001" y2="125.75000000000001"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="96.50000000000001" y1="125.75000000000001" y2="126.75000000000001"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="95.5" y1="126.75000000000001" y2="126.75000000000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="115.50000000000001" y1="126.75000000000001" y2="125.75000000000001"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="116.50000000000001" y1="125.75000000000001" y2="125.75000000000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="116.50000000000001" y1="125.75000000000001" y2="126.75000000000001"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="115.50000000000001" y1="126.75000000000001" y2="126.75000000000001"/>
+  <line stroke="#888888" x1="95.5" x2="95.5" y1="129.25000000000003" y2="128.25000000000003"/>
+  <line stroke="#888888" x1="95.5" x2="96.50000000000001" y1="128.25000000000003" y2="128.25000000000003"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="96.50000000000001" y1="128.25000000000003" y2="129.25000000000003"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="95.5" y1="129.25000000000003" y2="129.25000000000003"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="115.50000000000001" y1="129.25000000000003" y2="128.25000000000003"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="116.50000000000001" y1="128.25000000000003" y2="128.25000000000003"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="116.50000000000001" y1="128.25000000000003" y2="129.25000000000003"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="115.50000000000001" y1="129.25000000000003" y2="129.25000000000003"/>
+  <line stroke="#888888" x1="95.5" x2="95.5" y1="131.75000000000003" y2="130.75000000000003"/>
+  <line stroke="#888888" x1="95.5" x2="96.50000000000001" y1="130.75000000000003" y2="130.75000000000003"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="96.50000000000001" y1="130.75000000000003" y2="131.75000000000003"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="95.5" y1="131.75000000000003" y2="131.75000000000003"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="115.50000000000001" y1="131.75000000000003" y2="130.75000000000003"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="116.50000000000001" y1="130.75000000000003" y2="130.75000000000003"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="116.50000000000001" y1="130.75000000000003" y2="131.75000000000003"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="115.50000000000001" y1="131.75000000000003" y2="131.75000000000003"/>
+  <line stroke="#888888" x1="95.5" x2="95.5" y1="134.25000000000003" y2="133.25"/>
+  <line stroke="#888888" x1="95.5" x2="96.50000000000001" y1="133.25" y2="133.25"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="96.50000000000001" y1="133.25" y2="134.25000000000003"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="95.5" y1="134.25000000000003" y2="134.25000000000003"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="115.50000000000001" y1="134.25000000000003" y2="133.25"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="116.50000000000001" y1="133.25" y2="133.25"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="116.50000000000001" y1="133.25" y2="134.25000000000003"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="115.50000000000001" y1="134.25000000000003" y2="134.25000000000003"/>
+  <line stroke="#888888" x1="95.5" x2="95.5" y1="136.75" y2="135.75000000000003"/>
+  <line stroke="#888888" x1="95.5" x2="96.50000000000001" y1="135.75000000000003" y2="135.75000000000003"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="96.50000000000001" y1="135.75000000000003" y2="136.75"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="95.5" y1="136.75" y2="136.75"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="115.50000000000001" y1="136.75" y2="135.75000000000003"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="116.50000000000001" y1="135.75000000000003" y2="135.75000000000003"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="116.50000000000001" y1="135.75000000000003" y2="136.75"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="115.50000000000001" y1="136.75" y2="136.75"/>
+  <line stroke="#888888" x1="95.5" x2="95.5" y1="139.25" y2="138.25000000000003"/>
+  <line stroke="#888888" x1="95.5" x2="96.50000000000001" y1="138.25000000000003" y2="138.25000000000003"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="96.50000000000001" y1="138.25000000000003" y2="139.25"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="95.5" y1="139.25" y2="139.25"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="115.50000000000001" y1="139.25" y2="138.25000000000003"/>
+  <line stroke="#888888" x1="115.50000000000001" x2="116.50000000000001" y1="138.25000000000003" y2="138.25000000000003"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="116.50000000000001" y1="138.25000000000003" y2="139.25"/>
+  <line stroke="#888888" x1="116.50000000000001" x2="115.50000000000001" y1="139.25" y2="139.25"/>
+  <line stroke="#888888" x1="95.5" x2="95.5" y1="141.75000000000003" y2="140.75"/>
+  <line stroke="#888888" x1="95.5" x2="96.50000000000001" y1="140.75" y2="140.75"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="96.50000000000001" y1="140.75" y2="141.75000000000003"/>
+  <line stroke="#888888" x1="96.50000000000001" x2="95.5" y1="141.75000000000003" y2="141.75000000000003"/>
+  <line stroke="#888888" x1="114.50000000000001" x2="114.50000000000001" y1="142.75000000000003" y2="139.75000000000003"/>
+  <line stroke="#888888" x1="114.50000000000001" x2="117.50000000000001" y1="139.75000000000003" y2="139.75000000000003"/>
+  <line stroke="#888888" x1="117.50000000000001" x2="117.50000000000001" y1="139.75000000000003" y2="142.75000000000003"/>
+  <line stroke="#888888" x1="117.50000000000001" x2="114.50000000000001" y1="142.75000000000003" y2="142.75000000000003"/>
+  <line stroke="#888888" x1="110.25000000000001" x2="101.75000000000001" y1="99.75000000000001" y2="99.75000000000001"/>
+  <line stroke="#888888" x1="101.75000000000001" x2="101.75000000000001" y1="99.75000000000001" y2="99.25000000000001"/>
+  <line stroke="#888888" x1="101.75000000000001" x2="110.25000000000001" y1="99.25000000000001" y2="99.25000000000001"/>
+  <line stroke="#888888" x1="110.25000000000001" x2="110.25000000000001" y1="99.25000000000001" y2="99.75000000000001"/>
+  <line stroke="#888888" x1="101.75000000000001" x2="110.25000000000001" y1="147.5" y2="147.5"/>
+  <line stroke="#888888" x1="110.25000000000001" x2="110.25000000000001" y1="147.5" y2="148.0"/>
+  <line stroke="#888888" x1="110.25000000000001" x2="101.75000000000001" y1="148.0" y2="148.0"/>
+  <line stroke="#888888" x1="101.75000000000001" x2="101.75000000000001" y1="148.0" y2="147.5"/>
+  <line stroke="#888888" x1="133.00000000000003" x2="133.00000000000003" y1="143.0" y2="130.0"/>
+  <line stroke="#888888" x1="133.00000000000003" x2="163.00000000000003" y1="130.0" y2="130.0"/>
+  <line stroke="#888888" x1="163.00000000000003" x2="163.00000000000003" y1="130.0" y2="143.0"/>
+  <line stroke="#888888" x1="163.00000000000003" x2="133.00000000000003" y1="143.0" y2="143.0"/>
+  <line stroke="#888888" x1="140.06818181818184" x2="128.65909090909093" y1="97.50000000000001" y2="97.50000000000001"/>
+  <line stroke="#888888" x1="128.65909090909093" x2="128.65909090909093" y1="97.50000000000001" y2="97.00000000000001"/>
+  <line stroke="#888888" x1="128.65909090909093" x2="140.06818181818184" y1="97.00000000000001" y2="97.00000000000001"/>
+  <line stroke="#888888" x1="140.06818181818184" x2="140.06818181818184" y1="97.00000000000001" y2="97.50000000000001"/>
+  <line stroke="#888888" x1="167.3409090909091" x2="155.93181818181822" y1="97.50000000000001" y2="97.50000000000001"/>
+  <line stroke="#888888" x1="155.93181818181822" x2="155.93181818181822" y1="97.50000000000001" y2="97.00000000000001"/>
+  <line stroke="#888888" x1="155.93181818181822" x2="167.3409090909091" y1="97.00000000000001" y2="97.00000000000001"/>
+  <line stroke="#888888" x1="167.3409090909091" x2="167.3409090909091" y1="97.00000000000001" y2="97.50000000000001"/>
+  <line stroke="#888888" x1="170.25000000000003" x2="170.25000000000003" y1="114.4318181818182" y2="102.84090909090911"/>
+  <line stroke="#888888" x1="170.25000000000003" x2="170.75" y1="102.84090909090911" y2="102.84090909090911"/>
+  <line stroke="#888888" x1="170.75" x2="170.75" y1="102.84090909090911" y2="114.4318181818182"/>
+  <line stroke="#888888" x1="170.75" x2="170.25000000000003" y1="114.4318181818182" y2="114.4318181818182"/>
+  <line stroke="#888888" x1="170.25000000000003" x2="170.25000000000003" y1="142.1590909090909" y2="130.56818181818184"/>
+  <line stroke="#888888" x1="170.25000000000003" x2="170.75" y1="130.56818181818184" y2="130.56818181818184"/>
+  <line stroke="#888888" x1="170.75" x2="170.75" y1="130.56818181818184" y2="142.1590909090909"/>
+  <line stroke="#888888" x1="170.75" x2="170.25000000000003" y1="142.1590909090909" y2="142.1590909090909"/>
+  <line stroke="#888888" x1="10.5" x2="10.5" y1="105.25000000000001" y2="102.25000000000001"/>
+  <line stroke="#888888" x1="10.5" x2="13.500000000000002" y1="102.25000000000001" y2="102.25000000000001"/>
+  <line stroke="#888888" x1="13.500000000000002" x2="13.500000000000002" y1="102.25000000000001" y2="105.25000000000001"/>
+  <line stroke="#888888" x1="13.500000000000002" x2="10.5" y1="105.25000000000001" y2="105.25000000000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="31.500000000000004" y1="104.25000000000001" y2="103.25000000000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="32.5" y1="103.25000000000001" y2="103.25000000000001"/>
+  <line stroke="#888888" x1="32.5" x2="32.5" y1="103.25000000000001" y2="104.25000000000001"/>
+  <line stroke="#888888" x1="32.5" x2="31.500000000000004" y1="104.25000000000001" y2="104.25000000000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="11.500000000000002" y1="106.75000000000001" y2="105.75"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="12.5" y1="105.75" y2="105.75"/>
+  <line stroke="#888888" x1="12.5" x2="12.5" y1="105.75" y2="106.75000000000001"/>
+  <line stroke="#888888" x1="12.5" x2="11.500000000000002" y1="106.75000000000001" y2="106.75000000000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="31.500000000000004" y1="106.75000000000001" y2="105.75"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="32.5" y1="105.75" y2="105.75"/>
+  <line stroke="#888888" x1="32.5" x2="32.5" y1="105.75" y2="106.75000000000001"/>
+  <line stroke="#888888" x1="32.5" x2="31.500000000000004" y1="106.75000000000001" y2="106.75000000000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="11.500000000000002" y1="109.25" y2="108.25000000000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="12.5" y1="108.25000000000001" y2="108.25000000000001"/>
+  <line stroke="#888888" x1="12.5" x2="12.5" y1="108.25000000000001" y2="109.25"/>
+  <line stroke="#888888" x1="12.5" x2="11.500000000000002" y1="109.25" y2="109.25"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="31.500000000000004" y1="109.25" y2="108.25000000000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="32.5" y1="108.25000000000001" y2="108.25000000000001"/>
+  <line stroke="#888888" x1="32.5" x2="32.5" y1="108.25000000000001" y2="109.25"/>
+  <line stroke="#888888" x1="32.5" x2="31.500000000000004" y1="109.25" y2="109.25"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="11.500000000000002" y1="111.75000000000001" y2="110.75000000000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="12.5" y1="110.75000000000001" y2="110.75000000000001"/>
+  <line stroke="#888888" x1="12.5" x2="12.5" y1="110.75000000000001" y2="111.75000000000001"/>
+  <line stroke="#888888" x1="12.5" x2="11.500000000000002" y1="111.75000000000001" y2="111.75000000000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="31.500000000000004" y1="111.75000000000001" y2="110.75000000000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="32.5" y1="110.75000000000001" y2="110.75000000000001"/>
+  <line stroke="#888888" x1="32.5" x2="32.5" y1="110.75000000000001" y2="111.75000000000001"/>
+  <line stroke="#888888" x1="32.5" x2="31.500000000000004" y1="111.75000000000001" y2="111.75000000000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="11.500000000000002" y1="114.25000000000001" y2="113.25000000000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="12.5" y1="113.25000000000001" y2="113.25000000000001"/>
+  <line stroke="#888888" x1="12.5" x2="12.5" y1="113.25000000000001" y2="114.25000000000001"/>
+  <line stroke="#888888" x1="12.5" x2="11.500000000000002" y1="114.25000000000001" y2="114.25000000000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="31.500000000000004" y1="114.25000000000001" y2="113.25000000000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="32.5" y1="113.25000000000001" y2="113.25000000000001"/>
+  <line stroke="#888888" x1="32.5" x2="32.5" y1="113.25000000000001" y2="114.25000000000001"/>
+  <line stroke="#888888" x1="32.5" x2="31.500000000000004" y1="114.25000000000001" y2="114.25000000000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="11.500000000000002" y1="116.75000000000001" y2="115.75000000000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="12.5" y1="115.75000000000001" y2="115.75000000000001"/>
+  <line stroke="#888888" x1="12.5" x2="12.5" y1="115.75000000000001" y2="116.75000000000001"/>
+  <line stroke="#888888" x1="12.5" x2="11.500000000000002" y1="116.75000000000001" y2="116.75000000000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="31.500000000000004" y1="116.75000000000001" y2="115.75000000000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="32.5" y1="115.75000000000001" y2="115.75000000000001"/>
+  <line stroke="#888888" x1="32.5" x2="32.5" y1="115.75000000000001" y2="116.75000000000001"/>
+  <line stroke="#888888" x1="32.5" x2="31.500000000000004" y1="116.75000000000001" y2="116.75000000000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="11.500000000000002" y1="119.25000000000001" y2="118.25000000000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="12.5" y1="118.25000000000001" y2="118.25000000000001"/>
+  <line stroke="#888888" x1="12.5" x2="12.5" y1="118.25000000000001" y2="119.25000000000001"/>
+  <line stroke="#888888" x1="12.5" x2="11.500000000000002" y1="119.25000000000001" y2="119.25000000000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="31.500000000000004" y1="119.25000000000001" y2="118.25000000000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="32.5" y1="118.25000000000001" y2="118.25000000000001"/>
+  <line stroke="#888888" x1="32.5" x2="32.5" y1="118.25000000000001" y2="119.25000000000001"/>
+  <line stroke="#888888" x1="32.5" x2="31.500000000000004" y1="119.25000000000001" y2="119.25000000000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="11.500000000000002" y1="121.75000000000001" y2="120.75000000000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="12.5" y1="120.75000000000001" y2="120.75000000000001"/>
+  <line stroke="#888888" x1="12.5" x2="12.5" y1="120.75000000000001" y2="121.75000000000001"/>
+  <line stroke="#888888" x1="12.5" x2="11.500000000000002" y1="121.75000000000001" y2="121.75000000000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="31.500000000000004" y1="121.75000000000001" y2="120.75000000000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="32.5" y1="120.75000000000001" y2="120.75000000000001"/>
+  <line stroke="#888888" x1="32.5" x2="32.5" y1="120.75000000000001" y2="121.75000000000001"/>
+  <line stroke="#888888" x1="32.5" x2="31.500000000000004" y1="121.75000000000001" y2="121.75000000000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="11.500000000000002" y1="124.25000000000001" y2="123.25000000000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="12.5" y1="123.25000000000001" y2="123.25000000000001"/>
+  <line stroke="#888888" x1="12.5" x2="12.5" y1="123.25000000000001" y2="124.25000000000001"/>
+  <line stroke="#888888" x1="12.5" x2="11.500000000000002" y1="124.25000000000001" y2="124.25000000000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="31.500000000000004" y1="124.25000000000001" y2="123.25000000000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="32.5" y1="123.25000000000001" y2="123.25000000000001"/>
+  <line stroke="#888888" x1="32.5" x2="32.5" y1="123.25000000000001" y2="124.25000000000001"/>
+  <line stroke="#888888" x1="32.5" x2="31.500000000000004" y1="124.25000000000001" y2="124.25000000000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="11.500000000000002" y1="126.75000000000001" y2="125.75000000000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="12.5" y1="125.75000000000001" y2="125.75000000000001"/>
+  <line stroke="#888888" x1="12.5" x2="12.5" y1="125.75000000000001" y2="126.75000000000001"/>
+  <line stroke="#888888" x1="12.5" x2="11.500000000000002" y1="126.75000000000001" y2="126.75000000000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="31.500000000000004" y1="126.75000000000001" y2="125.75000000000001"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="32.5" y1="125.75000000000001" y2="125.75000000000001"/>
+  <line stroke="#888888" x1="32.5" x2="32.5" y1="125.75000000000001" y2="126.75000000000001"/>
+  <line stroke="#888888" x1="32.5" x2="31.500000000000004" y1="126.75000000000001" y2="126.75000000000001"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="11.500000000000002" y1="129.25000000000003" y2="128.25000000000003"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="12.5" y1="128.25000000000003" y2="128.25000000000003"/>
+  <line stroke="#888888" x1="12.5" x2="12.5" y1="128.25000000000003" y2="129.25000000000003"/>
+  <line stroke="#888888" x1="12.5" x2="11.500000000000002" y1="129.25000000000003" y2="129.25000000000003"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="31.500000000000004" y1="129.25000000000003" y2="128.25000000000003"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="32.5" y1="128.25000000000003" y2="128.25000000000003"/>
+  <line stroke="#888888" x1="32.5" x2="32.5" y1="128.25000000000003" y2="129.25000000000003"/>
+  <line stroke="#888888" x1="32.5" x2="31.500000000000004" y1="129.25000000000003" y2="129.25000000000003"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="11.500000000000002" y1="131.75000000000003" y2="130.75000000000003"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="12.5" y1="130.75000000000003" y2="130.75000000000003"/>
+  <line stroke="#888888" x1="12.5" x2="12.5" y1="130.75000000000003" y2="131.75000000000003"/>
+  <line stroke="#888888" x1="12.5" x2="11.500000000000002" y1="131.75000000000003" y2="131.75000000000003"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="31.500000000000004" y1="131.75000000000003" y2="130.75000000000003"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="32.5" y1="130.75000000000003" y2="130.75000000000003"/>
+  <line stroke="#888888" x1="32.5" x2="32.5" y1="130.75000000000003" y2="131.75000000000003"/>
+  <line stroke="#888888" x1="32.5" x2="31.500000000000004" y1="131.75000000000003" y2="131.75000000000003"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="11.500000000000002" y1="134.25000000000003" y2="133.25"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="12.5" y1="133.25" y2="133.25"/>
+  <line stroke="#888888" x1="12.5" x2="12.5" y1="133.25" y2="134.25000000000003"/>
+  <line stroke="#888888" x1="12.5" x2="11.500000000000002" y1="134.25000000000003" y2="134.25000000000003"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="31.500000000000004" y1="134.25000000000003" y2="133.25"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="32.5" y1="133.25" y2="133.25"/>
+  <line stroke="#888888" x1="32.5" x2="32.5" y1="133.25" y2="134.25000000000003"/>
+  <line stroke="#888888" x1="32.5" x2="31.500000000000004" y1="134.25000000000003" y2="134.25000000000003"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="11.500000000000002" y1="136.75" y2="135.75000000000003"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="12.5" y1="135.75000000000003" y2="135.75000000000003"/>
+  <line stroke="#888888" x1="12.5" x2="12.5" y1="135.75000000000003" y2="136.75"/>
+  <line stroke="#888888" x1="12.5" x2="11.500000000000002" y1="136.75" y2="136.75"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="31.500000000000004" y1="136.75" y2="135.75000000000003"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="32.5" y1="135.75000000000003" y2="135.75000000000003"/>
+  <line stroke="#888888" x1="32.5" x2="32.5" y1="135.75000000000003" y2="136.75"/>
+  <line stroke="#888888" x1="32.5" x2="31.500000000000004" y1="136.75" y2="136.75"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="11.500000000000002" y1="139.25" y2="138.25000000000003"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="12.5" y1="138.25000000000003" y2="138.25000000000003"/>
+  <line stroke="#888888" x1="12.5" x2="12.5" y1="138.25000000000003" y2="139.25"/>
+  <line stroke="#888888" x1="12.5" x2="11.500000000000002" y1="139.25" y2="139.25"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="31.500000000000004" y1="139.25" y2="138.25000000000003"/>
+  <line stroke="#888888" x1="31.500000000000004" x2="32.5" y1="138.25000000000003" y2="138.25000000000003"/>
+  <line stroke="#888888" x1="32.5" x2="32.5" y1="138.25000000000003" y2="139.25"/>
+  <line stroke="#888888" x1="32.5" x2="31.500000000000004" y1="139.25" y2="139.25"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="11.500000000000002" y1="141.75000000000003" y2="140.75"/>
+  <line stroke="#888888" x1="11.500000000000002" x2="12.5" y1="140.75" y2="140.75"/>
+  <line stroke="#888888" x1="12.5" x2="12.5" y1="140.75" y2="141.75000000000003"/>
+  <line stroke="#888888" x1="12.5" x2="11.500000000000002" y1="141.75000000000003" y2="141.75000000000003"/>
+  <line stroke="#888888" x1="30.500000000000004" x2="30.500000000000004" y1="142.75000000000003" y2="139.75000000000003"/>
+  <line stroke="#888888" x1="30.500000000000004" x2="33.50000000000001" y1="139.75000000000003" y2="139.75000000000003"/>
+  <line stroke="#888888" x1="33.50000000000001" x2="33.50000000000001" y1="139.75000000000003" y2="142.75000000000003"/>
+  <line stroke="#888888" x1="33.50000000000001" x2="30.500000000000004" y1="142.75000000000003" y2="142.75000000000003"/>
+  <line stroke="#888888" x1="26.250000000000004" x2="17.750000000000004" y1="99.75000000000001" y2="99.75000000000001"/>
+  <line stroke="#888888" x1="17.750000000000004" x2="17.750000000000004" y1="99.75000000000001" y2="99.25000000000001"/>
+  <line stroke="#888888" x1="17.750000000000004" x2="26.250000000000004" y1="99.25000000000001" y2="99.25000000000001"/>
+  <line stroke="#888888" x1="26.250000000000004" x2="26.250000000000004" y1="99.25000000000001" y2="99.75000000000001"/>
+  <line stroke="#888888" x1="17.750000000000004" x2="26.250000000000004" y1="147.5" y2="147.5"/>
+  <line stroke="#888888" x1="26.250000000000004" x2="26.250000000000004" y1="147.5" y2="148.0"/>
+  <line stroke="#888888" x1="26.250000000000004" x2="17.750000000000004" y1="148.0" y2="148.0"/>
+  <line stroke="#888888" x1="17.750000000000004" x2="17.750000000000004" y1="148.0" y2="147.5"/>
+  <line stroke="#888888" x1="2.5000000000000004" x2="7.500000000000001" y1="103.09090909090911" y2="103.09090909090911"/>
+  <line stroke="#888888" x1="7.500000000000001" x2="7.500000000000001" y1="103.09090909090911" y2="114.1818181818182"/>
+  <line stroke="#888888" x1="7.500000000000001" x2="2.5000000000000004" y1="114.1818181818182" y2="114.1818181818182"/>
+  <line stroke="#888888" x1="2.5000000000000004" x2="7.500000000000001" y1="130.81818181818184" y2="130.81818181818184"/>
+  <line stroke="#888888" x1="7.500000000000001" x2="7.500000000000001" y1="130.81818181818184" y2="141.9090909090909"/>
+  <line stroke="#888888" x1="7.500000000000001" x2="2.5000000000000004" y1="141.9090909090909" y2="141.9090909090909"/>
+  <line stroke="#888888" x1="27.750000000000004" x2="31.250000000000004" y1="76.00000000000001" y2="76.00000000000001"/>
+  <line stroke="#888888" x1="31.250000000000004" x2="31.250000000000004" y1="76.00000000000001" y2="84.0"/>
+  <line stroke="#888888" x1="31.250000000000004" x2="27.750000000000004" y1="84.0" y2="84.0"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="198.0" x2="259.00000000000006" y1="61.930689000407355" y2="61.930689000407355"/>
+  <line stroke="#000000" x1="259.00000000000006" x2="259.00000000000006" y1="98.06931099959267" y2="61.930689000407355"/>
+  <line stroke="#000000" x1="198.0" x2="259.00000000000006" y1="98.06931099959267" y2="98.06931099959267"/>
+  <line stroke="#000000" x1="198.0" x2="198.0" y1="61.930689000407355" y2="98.06931099959267"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="259.00000000000006" x2="198.0" y1="37.93068900040735" y2="37.93068900040735"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="259.00000000000006" x2="259.00000000000006" y1="37.93068900040735" y2="61.930689000407355"/>
+  <line stroke="#000000" x1="198.0" x2="198.0" y1="1.7920670012220514" y2="37.93068900040735"/>
+  <line stroke="#000000" x1="259.00000000000006" x2="198.0" y1="1.7920670012220514" y2="1.7920670012220514"/>
+  <line stroke="#000000" x1="259.00000000000006" x2="259.00000000000006" y1="37.93068900040735" y2="1.7920670012220514"/>
+  <line stroke="#000000" x1="269.0" x2="259.00000000000006" y1="37.93068900040735" y2="37.93068900040735"/>
+  <line stroke="#000000" x1="269.0" x2="269.0" y1="61.930689000407355" y2="37.93068900040735"/>
+  <line stroke="#000000" x1="259.00000000000006" x2="269.0" y1="61.930689000407355" y2="61.930689000407355"/>
+  <line stroke="#000000" x1="188.00000000000003" x2="198.0" y1="61.930689000407355" y2="61.930689000407355"/>
+  <line stroke="#000000" x1="188.00000000000003" x2="188.00000000000003" y1="37.93068900040735" y2="61.930689000407355"/>
+  <line stroke="#000000" x1="198.0" x2="188.00000000000003" y1="37.93068900040735" y2="37.93068900040735"/>
+  <line stroke="#888888" x1="216.00000000000003" x2="227.00000000000003" y1="43.430689000407355" y2="43.430689000407355"/>
+  <line stroke="#888888" x1="227.00000000000003" x2="227.00000000000003" y1="43.430689000407355" y2="56.430689000407355"/>
+  <line stroke="#888888" x1="227.00000000000003" x2="216.00000000000003" y1="56.430689000407355" y2="56.430689000407355"/>
+  <line stroke="#888888" x1="216.00000000000003" x2="216.00000000000003" y1="56.430689000407355" y2="43.430689000407355"/>
+  <line stroke="#888888" x1="247.50000000000003" x2="253.50000000000003" y1="44.930689000407355" y2="44.930689000407355"/>
+  <line stroke="#888888" x1="253.50000000000003" x2="253.50000000000003" y1="44.930689000407355" y2="54.930689000407355"/>
+  <line stroke="#888888" x1="253.50000000000003" x2="247.50000000000003" y1="54.930689000407355" y2="54.930689000407355"/>
+  <line stroke="#888888" x1="247.50000000000003" x2="247.50000000000003" y1="54.930689000407355" y2="44.930689000407355"/>
+  <line stroke="#888888" x1="266.5" x2="261.50000000000006" y1="53.930689000407355" y2="53.930689000407355"/>
+  <line stroke="#888888" x1="261.50000000000006" x2="261.50000000000006" y1="53.930689000407355" y2="45.93068900040735"/>
+  <line stroke="#888888" x1="261.50000000000006" x2="266.5" y1="45.93068900040735" y2="45.93068900040735"/>
+  <line stroke="#888888" x1="190.50000000000003" x2="195.5" y1="45.93068900040735" y2="45.93068900040735"/>
+  <line stroke="#888888" x1="195.5" x2="195.5" y1="45.93068900040735" y2="53.930689000407355"/>
+  <line stroke="#888888" x1="195.5" x2="190.50000000000003" y1="53.930689000407355" y2="53.930689000407355"/>
+  <line stroke="#000000" x1="319.0" x2="289.00000000000006" y1="60.00000000000001" y2="60.00000000000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="319.0" x2="319.0" y1="60.00000000000001" y2="100.0"/>
+  <line stroke="#000000" x1="289.00000000000006" x2="319.0" y1="100.0" y2="100.0"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="289.00000000000006" x2="289.00000000000006" y1="100.0" y2="60.00000000000001"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="319.0" x2="329.00000000000006" y1="60.00000000000001" y2="60.00000000000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="329.00000000000006" x2="329.00000000000006" y1="60.00000000000001" y2="100.0"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="329.00000000000006" x2="319.0" y1="100.0" y2="100.0"/>
+  <line stroke="#000000" x1="329.00000000000006" x2="329.00000000000006" y1="60.00000000000001" y2="0.0"/>
+  <line stroke="#000000" x1="319.0" x2="319.0" y1="0.0" y2="60.00000000000001"/>
+  <line stroke="#000000" x1="329.00000000000006" x2="319.0" y1="0.0" y2="0.0"/>
+  <line stroke="#000000" x1="359.0" x2="329.00000000000006" y1="60.00000000000001" y2="60.00000000000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="359.0" x2="359.0" y1="60.00000000000001" y2="100.0"/>
+  <line stroke="#000000" x1="329.00000000000006" x2="359.0" y1="100.0" y2="100.0"/>
+  <line stroke="#000000" x1="369.0" x2="359.0" y1="60.00000000000001" y2="60.00000000000001"/>
+  <line stroke="#000000" x1="369.0" x2="369.0" y1="100.0" y2="60.00000000000001"/>
+  <line stroke="#000000" x1="359.0" x2="369.0" y1="100.0" y2="100.0"/>
+  <line stroke="#000000" x1="319.0" x2="319.0" y1="100.0" y2="160.00000000000003"/>
+  <line stroke="#000000" x1="329.00000000000006" x2="329.00000000000006" y1="160.00000000000003" y2="100.0"/>
+  <line stroke="#000000" x1="319.0" x2="329.00000000000006" y1="160.00000000000003" y2="160.00000000000003"/>
+  <line stroke="#000000" x1="279.00000000000006" x2="289.00000000000006" y1="100.0" y2="100.0"/>
+  <line stroke="#000000" x1="279.00000000000006" x2="279.00000000000006" y1="60.00000000000001" y2="100.0"/>
+  <line stroke="#000000" x1="289.00000000000006" x2="279.00000000000006" y1="60.00000000000001" y2="60.00000000000001"/>
+  <line stroke="#888888" x1="290.00000000000006" x2="298.00000000000006" y1="76.00000000000001" y2="76.00000000000001"/>
+  <line stroke="#888888" x1="298.00000000000006" x2="298.00000000000006" y1="76.00000000000001" y2="84.0"/>
+  <line stroke="#888888" x1="298.00000000000006" x2="290.00000000000006" y1="84.0" y2="84.0"/>
+  <line stroke="#888888" x1="290.00000000000006" x2="290.00000000000006" y1="84.0" y2="76.00000000000001"/>
+  <line stroke="#888888" x1="350.0" x2="358.00000000000006" y1="76.00000000000001" y2="76.00000000000001"/>
+  <line stroke="#888888" x1="358.00000000000006" x2="358.00000000000006" y1="76.00000000000001" y2="84.0"/>
+  <line stroke="#888888" x1="358.00000000000006" x2="350.0" y1="84.0" y2="84.0"/>
+  <line stroke="#888888" x1="350.0" x2="350.0" y1="84.0" y2="76.00000000000001"/>
+  <line stroke="#888888" x1="361.25000000000006" x2="361.25000000000006" y1="86.91666666666669" y2="73.08333333333336"/>
+  <line stroke="#888888" x1="361.25000000000006" x2="361.75000000000006" y1="73.08333333333336" y2="73.08333333333336"/>
+  <line stroke="#888888" x1="361.75000000000006" x2="361.75000000000006" y1="73.08333333333336" y2="86.91666666666669"/>
+  <line stroke="#888888" x1="361.75000000000006" x2="361.25000000000006" y1="86.91666666666669" y2="86.91666666666669"/>
+  <line stroke="#888888" x1="281.5" x2="281.5" y1="73.33333333333336" y2="68.33333333333334"/>
+  <line stroke="#888888" x1="281.5" x2="286.5" y1="68.33333333333334" y2="73.33333333333336"/>
+  <line stroke="#888888" x1="286.5" x2="286.5" y1="73.33333333333336" y2="86.66666666666669"/>
+  <line stroke="#888888" x1="286.5" x2="281.5" y1="86.66666666666669" y2="91.66666666666669"/>
+  <line stroke="#888888" x1="281.5" x2="281.5" y1="91.66666666666669" y2="86.66666666666669"/>
+</svg>
diff --git a/rocolib/output/DCStackMount/graph-model.png b/rocolib/output/DCStackMount/graph-model.png
new file mode 100644
index 0000000000000000000000000000000000000000..33527289b5a7d7b93bc8652f3e478b398207f96c
Binary files /dev/null and b/rocolib/output/DCStackMount/graph-model.png differ
diff --git a/rocolib/output/DCStackMount/graph-model.stl b/rocolib/output/DCStackMount/graph-model.stl
new file mode 100644
index 0000000000000000000000000000000000000000..83945e3a73a4bf20865721b66b1930f90985958e
--- /dev/null
+++ b/rocolib/output/DCStackMount/graph-model.stl
@@ -0,0 +1,3236 @@
+solid python
+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.0305 0.0181 0.0000
+vertex -0.0305 -0.0181 0.0000
+vertex 0.0305 -0.0181 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0181 0.0000
+vertex 0.0305 0.0181 0.0000
+vertex -0.0305 0.0181 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0350 -0.0531
+vertex 0.0305 -0.0350 -0.0170
+vertex -0.0305 -0.0350 -0.0170
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0305 -0.0350 -0.0170
+vertex -0.0305 -0.0350 -0.0531
+vertex 0.0305 -0.0350 -0.0531
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0305 -0.0350 -0.0170
+vertex -0.0015 -0.0312 -0.0131
+vertex -0.0125 -0.0312 -0.0131
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0015 -0.0312 -0.0131
+vertex -0.0305 -0.0350 -0.0170
+vertex 0.0305 -0.0350 -0.0170
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0305 -0.0350 -0.0170
+vertex -0.0125 -0.0312 -0.0131
+vertex -0.0125 -0.0220 -0.0039
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0305 -0.0181 0.0000
+vertex -0.0125 -0.0220 -0.0039
+vertex -0.0015 -0.0220 -0.0039
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0125 -0.0220 -0.0039
+vertex -0.0305 -0.0181 0.0000
+vertex -0.0305 -0.0350 -0.0170
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0305 -0.0181 0.0000
+vertex -0.0015 -0.0220 -0.0039
+vertex 0.0305 -0.0181 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0015 -0.0312 -0.0131
+vertex 0.0190 -0.0301 -0.0120
+vertex -0.0015 -0.0220 -0.0039
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0190 -0.0301 -0.0120
+vertex 0.0305 -0.0350 -0.0170
+vertex 0.0250 -0.0301 -0.0120
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0350 -0.0170
+vertex 0.0190 -0.0301 -0.0120
+vertex -0.0015 -0.0312 -0.0131
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0250 -0.0301 -0.0120
+vertex 0.0305 -0.0350 -0.0170
+vertex 0.0305 -0.0181 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0190 -0.0230 -0.0049
+vertex 0.0250 -0.0230 -0.0049
+vertex 0.0305 -0.0181 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0181 0.0000
+vertex 0.0250 -0.0230 -0.0049
+vertex 0.0250 -0.0301 -0.0120
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0190 -0.0230 -0.0049
+vertex 0.0305 -0.0181 0.0000
+vertex -0.0015 -0.0220 -0.0039
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0190 -0.0301 -0.0120
+vertex 0.0190 -0.0230 -0.0049
+vertex -0.0015 -0.0220 -0.0039
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0120 0.0000
+vertex -0.0295 -0.0115 -0.0103
+vertex -0.0295 -0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0115 -0.0132
+vertex -0.0295 -0.0105 -0.0138
+vertex -0.0295 -0.0105 -0.0148
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0115 -0.0103
+vertex -0.0295 -0.0120 0.0000
+vertex -0.0295 -0.0085 -0.0103
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0120 0.0000
+vertex -0.0295 -0.0115 -0.0132
+vertex -0.0295 -0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0105 -0.0148
+vertex -0.0295 -0.0105 -0.0163
+vertex -0.0295 -0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0105 -0.0163
+vertex -0.0295 -0.0105 -0.0148
+vertex -0.0295 -0.0095 -0.0148
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0105 -0.0173
+vertex -0.0295 -0.0105 -0.0187
+vertex -0.0295 -0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0105 -0.0187
+vertex -0.0295 -0.0105 -0.0173
+vertex -0.0295 -0.0095 -0.0173
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0105 -0.0163
+vertex -0.0295 -0.0105 -0.0173
+vertex -0.0295 -0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0115 -0.0132
+vertex -0.0295 -0.0105 -0.0187
+vertex -0.0295 -0.0105 -0.0198
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0105 -0.0198
+vertex -0.0295 -0.0105 -0.0213
+vertex -0.0295 -0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0105 -0.0213
+vertex -0.0295 -0.0105 -0.0198
+vertex -0.0295 -0.0095 -0.0198
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0105 -0.0222
+vertex -0.0295 -0.0105 -0.0238
+vertex -0.0295 -0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0105 -0.0238
+vertex -0.0295 -0.0105 -0.0222
+vertex -0.0295 -0.0095 -0.0222
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0105 -0.0213
+vertex -0.0295 -0.0105 -0.0222
+vertex -0.0295 -0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0105 -0.0248
+vertex -0.0295 -0.0105 -0.0262
+vertex -0.0295 -0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0105 -0.0262
+vertex -0.0295 -0.0105 -0.0248
+vertex -0.0295 -0.0095 -0.0248
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0105 -0.0272
+vertex -0.0295 -0.0105 -0.0288
+vertex -0.0295 -0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0105 -0.0288
+vertex -0.0295 -0.0105 -0.0272
+vertex -0.0295 -0.0095 -0.0272
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0105 -0.0262
+vertex -0.0295 -0.0105 -0.0272
+vertex -0.0295 -0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0105 -0.0238
+vertex -0.0295 -0.0105 -0.0248
+vertex -0.0295 -0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0115 -0.0132
+vertex -0.0295 -0.0105 -0.0288
+vertex -0.0295 -0.0105 -0.0298
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0095 -0.0163
+vertex -0.0295 -0.0105 -0.0163
+vertex -0.0295 -0.0095 -0.0148
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0095 -0.0148
+vertex -0.0295 -0.0095 -0.0138
+vertex -0.0295 -0.0085 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0095 -0.0187
+vertex -0.0295 -0.0105 -0.0187
+vertex -0.0295 -0.0095 -0.0173
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0095 -0.0173
+vertex -0.0295 -0.0095 -0.0163
+vertex -0.0295 -0.0085 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0095 -0.0148
+vertex -0.0295 -0.0085 -0.0132
+vertex -0.0295 -0.0095 -0.0163
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0095 -0.0173
+vertex -0.0295 0.0095 -0.0173
+vertex -0.0295 -0.0095 -0.0187
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0085 -0.0132
+vertex -0.0295 -0.0085 -0.0103
+vertex -0.0295 0.0095 -0.0112
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0095 -0.0213
+vertex -0.0295 -0.0105 -0.0213
+vertex -0.0295 -0.0095 -0.0198
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0095 -0.0187
+vertex -0.0295 -0.0095 -0.0198
+vertex -0.0295 -0.0095 -0.0187
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0095 -0.0198
+vertex -0.0295 0.0095 -0.0198
+vertex -0.0295 -0.0095 -0.0213
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0095 -0.0138
+vertex -0.0295 -0.0115 -0.0132
+vertex -0.0295 -0.0085 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0105 -0.0138
+vertex -0.0295 -0.0115 -0.0132
+vertex -0.0295 -0.0095 -0.0138
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0095 -0.0238
+vertex -0.0295 -0.0105 -0.0238
+vertex -0.0295 -0.0095 -0.0222
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0095 -0.0213
+vertex -0.0295 -0.0095 -0.0222
+vertex -0.0295 -0.0095 -0.0213
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0095 -0.0248
+vertex -0.0295 -0.0095 -0.0262
+vertex -0.0295 -0.0105 -0.0262
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0095 -0.0238
+vertex -0.0295 -0.0095 -0.0222
+vertex -0.0295 0.0095 -0.0222
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0095 -0.0248
+vertex -0.0295 -0.0095 -0.0262
+vertex -0.0295 -0.0095 -0.0248
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0095 -0.0272
+vertex -0.0295 -0.0095 -0.0288
+vertex -0.0295 -0.0095 -0.0272
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0095 -0.0288
+vertex -0.0295 -0.0095 -0.0298
+vertex -0.0295 -0.0095 -0.0288
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0095 -0.0272
+vertex -0.0295 -0.0095 -0.0262
+vertex -0.0295 0.0095 -0.0262
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0095 -0.0288
+vertex -0.0295 -0.0105 -0.0288
+vertex -0.0295 -0.0095 -0.0272
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0095 -0.0248
+vertex -0.0295 -0.0095 -0.0238
+vertex -0.0295 0.0095 -0.0238
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0105 -0.0298
+vertex -0.0295 -0.0095 -0.0298
+vertex -0.0295 -0.0095 -0.0312
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0095 -0.0298
+vertex -0.0295 0.0095 -0.0298
+vertex -0.0295 -0.0095 -0.0312
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0120 0.0000
+vertex -0.0295 0.0120 0.0000
+vertex -0.0295 -0.0085 -0.0103
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0115 -0.0132
+vertex -0.0295 -0.0105 -0.0298
+vertex -0.0295 -0.0105 -0.0312
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0105 -0.0338
+vertex -0.0295 -0.0115 -0.0132
+vertex -0.0295 -0.0105 -0.0323
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0105 -0.0348
+vertex -0.0295 -0.0120 -0.0610
+vertex -0.0295 -0.0115 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0105 -0.0323
+vertex -0.0295 -0.0095 -0.0323
+vertex -0.0295 -0.0105 -0.0338
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0105 -0.0348
+vertex -0.0295 -0.0115 -0.0132
+vertex -0.0295 -0.0105 -0.0338
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0105 -0.0362
+vertex -0.0295 -0.0105 -0.0372
+vertex -0.0295 -0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0105 -0.0387
+vertex -0.0295 -0.0105 -0.0398
+vertex -0.0295 -0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0105 -0.0372
+vertex -0.0295 -0.0095 -0.0372
+vertex -0.0295 -0.0105 -0.0387
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0105 -0.0372
+vertex -0.0295 -0.0105 -0.0387
+vertex -0.0295 -0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0105 -0.0348
+vertex -0.0295 -0.0095 -0.0348
+vertex -0.0295 -0.0105 -0.0362
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0105 -0.0348
+vertex -0.0295 -0.0105 -0.0362
+vertex -0.0295 -0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0105 -0.0413
+vertex -0.0295 -0.0105 -0.0423
+vertex -0.0295 -0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0120 -0.0610
+vertex -0.0295 -0.0105 -0.0438
+vertex -0.0295 -0.0105 -0.0447
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0105 -0.0438
+vertex -0.0295 -0.0120 -0.0610
+vertex -0.0295 -0.0105 -0.0423
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0105 -0.0423
+vertex -0.0295 -0.0095 -0.0423
+vertex -0.0295 -0.0105 -0.0438
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0105 -0.0413
+vertex -0.0295 -0.0120 -0.0610
+vertex -0.0295 -0.0105 -0.0398
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0105 -0.0447
+vertex -0.0295 -0.0105 -0.0462
+vertex -0.0295 -0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0105 -0.0462
+vertex -0.0295 -0.0105 -0.0447
+vertex -0.0295 -0.0095 -0.0447
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0105 -0.0473
+vertex -0.0295 -0.0105 -0.0488
+vertex -0.0295 -0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0105 -0.0488
+vertex -0.0295 -0.0105 -0.0473
+vertex -0.0295 -0.0095 -0.0473
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0105 -0.0462
+vertex -0.0295 -0.0105 -0.0473
+vertex -0.0295 -0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0120 -0.0610
+vertex -0.0295 -0.0105 -0.0488
+vertex -0.0295 -0.0105 -0.0498
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0105 -0.0398
+vertex -0.0295 -0.0095 -0.0398
+vertex -0.0295 -0.0105 -0.0413
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0105 -0.0323
+vertex -0.0295 -0.0115 -0.0132
+vertex -0.0295 -0.0105 -0.0312
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0095 -0.0338
+vertex -0.0295 -0.0105 -0.0338
+vertex -0.0295 -0.0095 -0.0323
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0095 -0.0312
+vertex -0.0295 -0.0095 -0.0323
+vertex -0.0295 -0.0095 -0.0312
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0095 -0.0362
+vertex -0.0295 -0.0105 -0.0362
+vertex -0.0295 -0.0095 -0.0348
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0095 -0.0338
+vertex -0.0295 -0.0095 -0.0348
+vertex -0.0295 -0.0095 -0.0338
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0095 -0.0338
+vertex -0.0295 -0.0095 -0.0323
+vertex -0.0295 0.0095 -0.0323
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0095 -0.0387
+vertex -0.0295 -0.0105 -0.0387
+vertex -0.0295 -0.0095 -0.0372
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0095 -0.0362
+vertex -0.0295 -0.0095 -0.0372
+vertex -0.0295 -0.0095 -0.0362
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0095 -0.0413
+vertex -0.0295 -0.0105 -0.0413
+vertex -0.0295 -0.0095 -0.0398
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0095 -0.0387
+vertex -0.0295 -0.0095 -0.0398
+vertex -0.0295 -0.0095 -0.0387
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0095 -0.0387
+vertex -0.0295 -0.0095 -0.0372
+vertex -0.0295 0.0095 -0.0372
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0095 -0.0362
+vertex -0.0295 -0.0095 -0.0348
+vertex -0.0295 0.0095 -0.0348
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0095 -0.0438
+vertex -0.0295 -0.0105 -0.0438
+vertex -0.0295 -0.0095 -0.0423
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0095 -0.0413
+vertex -0.0295 -0.0095 -0.0423
+vertex -0.0295 -0.0095 -0.0413
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0095 -0.0447
+vertex -0.0295 -0.0095 -0.0462
+vertex -0.0295 -0.0105 -0.0462
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0095 -0.0438
+vertex -0.0295 -0.0095 -0.0423
+vertex -0.0295 0.0095 -0.0423
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0085 -0.0478
+vertex -0.0295 -0.0095 -0.0462
+vertex -0.0295 -0.0095 -0.0447
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0085 -0.0478
+vertex -0.0295 -0.0095 -0.0488
+vertex -0.0295 -0.0095 -0.0473
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0085 -0.0478
+vertex -0.0295 -0.0095 -0.0498
+vertex -0.0295 -0.0095 -0.0488
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0095 -0.0473
+vertex -0.0295 -0.0095 -0.0462
+vertex -0.0295 0.0085 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0095 -0.0488
+vertex -0.0295 -0.0105 -0.0488
+vertex -0.0295 -0.0095 -0.0473
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0095 -0.0447
+vertex -0.0295 -0.0095 -0.0438
+vertex -0.0295 0.0085 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0105 -0.0498
+vertex -0.0295 -0.0095 -0.0498
+vertex -0.0295 -0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0095 -0.0413
+vertex -0.0295 -0.0095 -0.0398
+vertex -0.0295 0.0095 -0.0398
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0105 -0.0312
+vertex -0.0295 -0.0105 -0.0298
+vertex -0.0295 -0.0095 -0.0312
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0120 -0.0610
+vertex -0.0295 -0.0095 -0.0498
+vertex -0.0295 0.0085 -0.0508
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0095 -0.0173
+vertex -0.0295 -0.0095 -0.0173
+vertex -0.0295 -0.0085 -0.0132
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0095 -0.0138
+vertex -0.0295 -0.0085 -0.0132
+vertex -0.0295 0.0095 -0.0123
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0095 -0.0163
+vertex -0.0295 -0.0085 -0.0132
+vertex -0.0295 0.0095 -0.0148
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0095 -0.0123
+vertex -0.0295 0.0105 -0.0123
+vertex -0.0295 0.0095 -0.0138
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0095 -0.0148
+vertex -0.0295 -0.0085 -0.0132
+vertex -0.0295 0.0095 -0.0138
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0095 -0.0187
+vertex -0.0295 -0.0095 -0.0187
+vertex -0.0295 0.0095 -0.0173
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0095 -0.0213
+vertex -0.0295 -0.0095 -0.0213
+vertex -0.0295 0.0095 -0.0198
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0095 -0.0173
+vertex -0.0295 0.0105 -0.0173
+vertex -0.0295 0.0095 -0.0187
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0095 -0.0198
+vertex -0.0295 -0.0095 -0.0198
+vertex -0.0295 0.0095 -0.0187
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0095 -0.0148
+vertex -0.0295 0.0105 -0.0148
+vertex -0.0295 0.0095 -0.0163
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0095 -0.0173
+vertex -0.0295 -0.0085 -0.0132
+vertex -0.0295 0.0095 -0.0163
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0095 -0.0238
+vertex -0.0295 -0.0095 -0.0238
+vertex -0.0295 0.0095 -0.0222
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0095 -0.0262
+vertex -0.0295 -0.0095 -0.0262
+vertex -0.0295 0.0095 -0.0248
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0095 -0.0222
+vertex -0.0295 0.0105 -0.0222
+vertex -0.0295 0.0095 -0.0238
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0095 -0.0248
+vertex -0.0295 -0.0095 -0.0248
+vertex -0.0295 0.0095 -0.0238
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0095 -0.0288
+vertex -0.0295 -0.0095 -0.0288
+vertex -0.0295 0.0095 -0.0272
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0095 -0.0312
+vertex -0.0295 -0.0095 -0.0312
+vertex -0.0295 0.0095 -0.0298
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0095 -0.0272
+vertex -0.0295 0.0105 -0.0272
+vertex -0.0295 0.0095 -0.0288
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0095 -0.0298
+vertex -0.0295 -0.0095 -0.0298
+vertex -0.0295 0.0095 -0.0288
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0095 -0.0248
+vertex -0.0295 0.0105 -0.0248
+vertex -0.0295 0.0095 -0.0262
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0095 -0.0272
+vertex -0.0295 -0.0095 -0.0272
+vertex -0.0295 0.0095 -0.0262
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0095 -0.0198
+vertex -0.0295 0.0105 -0.0198
+vertex -0.0295 0.0095 -0.0213
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0095 -0.0222
+vertex -0.0295 -0.0095 -0.0222
+vertex -0.0295 0.0095 -0.0213
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0105 -0.0123
+vertex -0.0295 0.0105 -0.0112
+vertex -0.0295 0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0105 -0.0148
+vertex -0.0295 0.0105 -0.0138
+vertex -0.0295 0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0105 -0.0123
+vertex -0.0295 0.0120 0.0000
+vertex -0.0295 0.0105 -0.0138
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0105 -0.0123
+vertex -0.0295 0.0105 -0.0138
+vertex -0.0295 0.0095 -0.0138
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0105 -0.0163
+vertex -0.0295 0.0120 0.0000
+vertex -0.0295 0.0105 -0.0173
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0120 0.0000
+vertex -0.0295 0.0105 -0.0163
+vertex -0.0295 0.0105 -0.0148
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0105 -0.0173
+vertex -0.0295 0.0105 -0.0187
+vertex -0.0295 0.0095 -0.0187
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0105 -0.0187
+vertex -0.0295 0.0105 -0.0173
+vertex -0.0295 0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0120 0.0000
+vertex -0.0295 0.0105 -0.0198
+vertex -0.0295 0.0105 -0.0187
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0105 -0.0112
+vertex -0.0295 0.0095 -0.0112
+vertex -0.0295 0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0105 -0.0148
+vertex -0.0295 0.0105 -0.0163
+vertex -0.0295 0.0095 -0.0163
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0105 -0.0198
+vertex -0.0295 0.0105 -0.0213
+vertex -0.0295 0.0095 -0.0213
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0105 -0.0213
+vertex -0.0295 0.0105 -0.0198
+vertex -0.0295 0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0105 -0.0222
+vertex -0.0295 0.0105 -0.0238
+vertex -0.0295 0.0095 -0.0238
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0105 -0.0238
+vertex -0.0295 0.0105 -0.0222
+vertex -0.0295 0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0105 -0.0213
+vertex -0.0295 0.0120 0.0000
+vertex -0.0295 0.0105 -0.0222
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0105 -0.0248
+vertex -0.0295 0.0105 -0.0262
+vertex -0.0295 0.0095 -0.0262
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0105 -0.0262
+vertex -0.0295 0.0105 -0.0248
+vertex -0.0295 0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0105 -0.0272
+vertex -0.0295 0.0105 -0.0288
+vertex -0.0295 0.0095 -0.0288
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0115 -0.0478
+vertex -0.0295 0.0105 -0.0288
+vertex -0.0295 0.0105 -0.0272
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0115 -0.0478
+vertex -0.0295 0.0105 -0.0298
+vertex -0.0295 0.0105 -0.0288
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0105 -0.0272
+vertex -0.0295 0.0105 -0.0262
+vertex -0.0295 0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0105 -0.0238
+vertex -0.0295 0.0120 0.0000
+vertex -0.0295 0.0105 -0.0248
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0120 0.0000
+vertex -0.0295 0.0115 -0.0478
+vertex -0.0295 0.0105 -0.0262
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0095 -0.0112
+vertex -0.0295 -0.0085 -0.0103
+vertex -0.0295 0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0095 -0.0298
+vertex -0.0295 0.0105 -0.0298
+vertex -0.0295 0.0105 -0.0312
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0095 -0.0338
+vertex -0.0295 -0.0095 -0.0338
+vertex -0.0295 0.0095 -0.0323
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0095 -0.0362
+vertex -0.0295 -0.0095 -0.0362
+vertex -0.0295 0.0095 -0.0348
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0095 -0.0323
+vertex -0.0295 0.0105 -0.0323
+vertex -0.0295 0.0095 -0.0338
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0095 -0.0348
+vertex -0.0295 -0.0095 -0.0348
+vertex -0.0295 0.0095 -0.0338
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0095 -0.0387
+vertex -0.0295 -0.0095 -0.0387
+vertex -0.0295 0.0095 -0.0372
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0095 -0.0413
+vertex -0.0295 -0.0095 -0.0413
+vertex -0.0295 0.0095 -0.0398
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0095 -0.0372
+vertex -0.0295 0.0105 -0.0372
+vertex -0.0295 0.0095 -0.0387
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0095 -0.0398
+vertex -0.0295 -0.0095 -0.0398
+vertex -0.0295 0.0095 -0.0387
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0095 -0.0348
+vertex -0.0295 0.0105 -0.0348
+vertex -0.0295 0.0095 -0.0362
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0095 -0.0372
+vertex -0.0295 -0.0095 -0.0372
+vertex -0.0295 0.0095 -0.0362
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0095 -0.0438
+vertex -0.0295 -0.0095 -0.0438
+vertex -0.0295 0.0095 -0.0423
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0085 -0.0478
+vertex -0.0295 0.0085 -0.0508
+vertex -0.0295 -0.0095 -0.0498
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0115 -0.0478
+vertex -0.0295 0.0085 -0.0478
+vertex -0.0295 0.0095 -0.0473
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0095 -0.0438
+vertex -0.0295 0.0095 -0.0438
+vertex -0.0295 0.0085 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0095 -0.0423
+vertex -0.0295 0.0095 -0.0413
+vertex -0.0295 0.0095 -0.0423
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0095 -0.0438
+vertex -0.0295 0.0095 -0.0447
+vertex -0.0295 0.0085 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0095 -0.0462
+vertex -0.0295 0.0095 -0.0473
+vertex -0.0295 0.0085 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0095 -0.0447
+vertex -0.0295 0.0105 -0.0447
+vertex -0.0295 0.0095 -0.0462
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0095 -0.0447
+vertex -0.0295 0.0095 -0.0462
+vertex -0.0295 0.0085 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0095 -0.0423
+vertex -0.0295 0.0105 -0.0423
+vertex -0.0295 0.0095 -0.0438
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0095 -0.0473
+vertex -0.0295 0.0105 -0.0473
+vertex -0.0295 0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0095 -0.0398
+vertex -0.0295 0.0105 -0.0398
+vertex -0.0295 0.0095 -0.0413
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0095 -0.0323
+vertex -0.0295 0.0095 -0.0312
+vertex -0.0295 0.0095 -0.0323
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0105 -0.0323
+vertex -0.0295 0.0105 -0.0312
+vertex -0.0295 0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0105 -0.0348
+vertex -0.0295 0.0105 -0.0338
+vertex -0.0295 0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0105 -0.0323
+vertex -0.0295 0.0115 -0.0478
+vertex -0.0295 0.0105 -0.0338
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0105 -0.0323
+vertex -0.0295 0.0105 -0.0338
+vertex -0.0295 0.0095 -0.0338
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0105 -0.0372
+vertex -0.0295 0.0105 -0.0362
+vertex -0.0295 0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0105 -0.0398
+vertex -0.0295 0.0105 -0.0387
+vertex -0.0295 0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0105 -0.0372
+vertex -0.0295 0.0115 -0.0478
+vertex -0.0295 0.0105 -0.0387
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0105 -0.0372
+vertex -0.0295 0.0105 -0.0387
+vertex -0.0295 0.0095 -0.0387
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0105 -0.0348
+vertex -0.0295 0.0115 -0.0478
+vertex -0.0295 0.0105 -0.0362
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0105 -0.0348
+vertex -0.0295 0.0105 -0.0362
+vertex -0.0295 0.0095 -0.0362
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0105 -0.0423
+vertex -0.0295 0.0105 -0.0413
+vertex -0.0295 0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0105 -0.0447
+vertex -0.0295 0.0105 -0.0438
+vertex -0.0295 0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0105 -0.0423
+vertex -0.0295 0.0115 -0.0478
+vertex -0.0295 0.0105 -0.0438
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0105 -0.0423
+vertex -0.0295 0.0105 -0.0438
+vertex -0.0295 0.0095 -0.0438
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0105 -0.0473
+vertex -0.0295 0.0105 -0.0462
+vertex -0.0295 0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0115 -0.0478
+vertex -0.0295 0.0120 -0.0610
+vertex -0.0295 0.0115 -0.0508
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0120 -0.0610
+vertex -0.0295 0.0115 -0.0478
+vertex -0.0295 0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0120 -0.0610
+vertex -0.0295 0.0085 -0.0508
+vertex -0.0295 0.0115 -0.0508
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0105 -0.0462
+vertex -0.0295 0.0105 -0.0447
+vertex -0.0295 0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0105 -0.0413
+vertex -0.0295 0.0105 -0.0398
+vertex -0.0295 0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0105 -0.0447
+vertex -0.0295 0.0105 -0.0462
+vertex -0.0295 0.0095 -0.0462
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0105 -0.0312
+vertex -0.0295 0.0105 -0.0298
+vertex -0.0295 0.0115 -0.0478
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0105 -0.0398
+vertex -0.0295 0.0105 -0.0413
+vertex -0.0295 0.0095 -0.0413
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0095 -0.0312
+vertex -0.0295 0.0095 -0.0298
+vertex -0.0295 0.0105 -0.0312
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0085 -0.0508
+vertex -0.0295 0.0120 -0.0610
+vertex -0.0295 -0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0095 -0.0123
+vertex -0.0295 -0.0085 -0.0132
+vertex -0.0295 0.0095 -0.0112
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0120 0.0000
+vertex -0.0220 0.0120 -0.0335
+vertex -0.0295 0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0220 0.0120 -0.0335
+vertex -0.0295 0.0120 0.0000
+vertex 0.0130 0.0120 -0.0335
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 0.0120 -0.0610
+vertex -0.0220 0.0120 -0.0515
+vertex 0.0130 0.0120 -0.0515
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0220 0.0120 -0.0515
+vertex -0.0295 0.0120 -0.0610
+vertex -0.0220 0.0120 -0.0335
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0130 0.0120 -0.0335
+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.0130 0.0120 -0.0335
+vertex -0.0295 0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0130 0.0120 -0.0515
+vertex 0.0305 0.0120 -0.0610
+vertex -0.0295 0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 0.0120 -0.0610
+vertex 0.0130 0.0120 -0.0515
+vertex 0.0130 0.0120 -0.0335
+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.0155 -0.0120 -0.0380
+vertex 0.0305 -0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0155 -0.0120 -0.0380
+vertex 0.0305 -0.0120 0.0000
+vertex -0.0295 -0.0120 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0120 -0.0610
+vertex 0.0155 -0.0120 -0.0510
+vertex -0.0145 -0.0120 -0.0510
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0155 -0.0120 -0.0510
+vertex 0.0305 -0.0120 -0.0610
+vertex 0.0155 -0.0120 -0.0380
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0145 -0.0120 -0.0380
+vertex -0.0295 -0.0120 0.0000
+vertex -0.0295 -0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0120 0.0000
+vertex -0.0145 -0.0120 -0.0380
+vertex 0.0155 -0.0120 -0.0380
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0145 -0.0120 -0.0510
+vertex -0.0295 -0.0120 -0.0610
+vertex 0.0305 -0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0120 -0.0610
+vertex -0.0145 -0.0120 -0.0510
+vertex -0.0145 -0.0120 -0.0380
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0150 -0.0200 0.0000
+vertex -0.0140 -0.0040 0.0000
+vertex -0.0140 0.0040 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0140 -0.0040 0.0000
+vertex -0.0150 -0.0200 0.0000
+vertex -0.0060 -0.0040 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0150 0.0200 0.0000
+vertex -0.0140 0.0040 0.0000
+vertex -0.0060 0.0040 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0140 0.0040 0.0000
+vertex -0.0150 0.0200 0.0000
+vertex -0.0150 -0.0200 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0060 -0.0040 0.0000
+vertex 0.0150 -0.0200 0.0000
+vertex 0.0150 0.0200 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0150 -0.0200 0.0000
+vertex -0.0060 -0.0040 0.0000
+vertex -0.0150 -0.0200 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0060 0.0040 0.0000
+vertex 0.0150 0.0200 0.0000
+vertex -0.0150 0.0200 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0150 0.0200 0.0000
+vertex -0.0060 0.0040 0.0000
+vertex -0.0060 -0.0040 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0150 0.0200 0.0000
+vertex 0.0150 -0.0200 0.0000
+vertex 0.0150 -0.0200 -0.0100
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0150 -0.0200 -0.0100
+vertex 0.0150 0.0200 -0.0100
+vertex 0.0150 0.0200 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0150 -0.0200 -0.0100
+vertex -0.0060 -0.0040 -0.0100
+vertex -0.0060 0.0040 -0.0100
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0060 -0.0040 -0.0100
+vertex 0.0150 -0.0200 -0.0100
+vertex -0.0150 -0.0200 -0.0100
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0150 0.0200 -0.0100
+vertex -0.0060 0.0040 -0.0100
+vertex -0.0150 0.0200 -0.0100
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0060 0.0040 -0.0100
+vertex 0.0150 0.0200 -0.0100
+vertex 0.0150 -0.0200 -0.0100
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0140 -0.0040 -0.0100
+vertex -0.0150 -0.0200 -0.0100
+vertex -0.0150 0.0200 -0.0100
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0150 -0.0200 -0.0100
+vertex -0.0140 -0.0040 -0.0100
+vertex -0.0060 -0.0040 -0.0100
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0140 0.0040 -0.0100
+vertex -0.0150 0.0200 -0.0100
+vertex -0.0060 0.0040 -0.0100
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0150 0.0200 -0.0100
+vertex -0.0140 0.0040 -0.0100
+vertex -0.0140 -0.0040 -0.0100
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0150 0.0200 -0.0100
+vertex -0.0150 -0.0200 -0.0100
+vertex -0.0150 -0.0200 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0150 -0.0200 -0.0000
+vertex -0.0150 0.0200 -0.0000
+vertex -0.0150 0.0200 -0.0100
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0750 -0.0200 0.0000
+vertex 0.0750 -0.0200 -0.0100
+vertex 0.0150 -0.0200 -0.0100
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0150 -0.0200 -0.0100
+vertex 0.0150 -0.0200 0.0000
+vertex 0.0750 -0.0200 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0750 0.0200 -0.0100
+vertex 0.0750 0.0200 0.0000
+vertex 0.0150 0.0200 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0150 0.0200 0.0000
+vertex 0.0150 0.0200 -0.0100
+vertex 0.0750 0.0200 -0.0100
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0405 -0.0350 -0.0170
+vertex -0.0305 -0.0350 -0.0170
+vertex -0.0305 -0.0181 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0305 -0.0181 0.0000
+vertex -0.0405 -0.0181 0.0000
+vertex -0.0405 -0.0350 -0.0170
+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.0305 -0.0110 -0.0071
+vertex 0.0305 -0.0181 0.0000
+vertex 0.0305 -0.0350 -0.0170
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0305 -0.0350 -0.0170
+vertex 0.0305 -0.0280 -0.0240
+vertex 0.0305 -0.0110 -0.0071
+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.0295 -0.0120 -0.0070
+vertex 0.0295 -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.0295 -0.0120 -0.0070
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0195 -0.0120 -0.0000
+vertex -0.0295 -0.0120 0.0000
+vertex -0.0295 -0.0120 -0.0610
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0295 -0.0120 -0.0610
+vertex -0.0195 -0.0120 -0.0610
+vertex -0.0195 -0.0120 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0150 -0.0200 -0.0100
+vertex -0.0150 -0.0200 0.0000
+vertex -0.0150 0.0200 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0150 0.0200 0.0000
+vertex -0.0150 0.0200 -0.0100
+vertex -0.0150 -0.0200 -0.0100
+endloop
+endfacet
+endsolid python
diff --git a/rocolib/output/DCStackMount/graph-silhouette.dxf b/rocolib/output/DCStackMount/graph-silhouette.dxf
new file mode 100644
index 0000000000000000000000000000000000000000..1e5659127875ad2cf67e462e0218d3aef59aceb3
--- /dev/null
+++ b/rocolib/output/DCStackMount/graph-silhouette.dxf
@@ -0,0 +1,8428 @@
+  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
+33.0
+ 20
+68.0
+ 30
+0.0
+ 11
+94.00000000000001
+ 21
+68.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+94.00000000000001
+ 20
+68.0
+ 30
+0.0
+ 11
+94.00000000000001
+ 21
+92.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+94.00000000000001
+ 20
+92.00000000000001
+ 30
+0.0
+ 11
+33.0
+ 21
+92.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+33.0
+ 20
+92.00000000000001
+ 30
+0.0
+ 11
+33.0
+ 21
+68.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+33.0
+ 20
+61.00000000000001
+ 30
+0.0
+ 11
+33.0
+ 21
+68.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.00000000000001
+ 20
+61.00000000000001
+ 30
+0.0
+ 11
+33.0
+ 21
+61.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.00000000000001
+ 20
+68.0
+ 30
+0.0
+ 11
+93.00000000000001
+ 21
+61.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.00000000000001
+ 20
+68.0
+ 30
+0.0
+ 11
+94.00000000000001
+ 21
+68.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.00000000000001
+ 20
+92.00000000000001
+ 30
+0.0
+ 11
+101.00000000000001
+ 21
+68.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+94.00000000000001
+ 20
+92.00000000000001
+ 30
+0.0
+ 11
+101.00000000000001
+ 21
+92.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+94.00000000000001
+ 20
+92.00000000000001
+ 30
+0.0
+ 11
+94.00000000000001
+ 21
+153.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+34.0
+ 20
+153.00000000000003
+ 30
+0.0
+ 11
+94.00000000000001
+ 21
+153.00000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+34.0
+ 20
+92.00000000000001
+ 30
+0.0
+ 11
+34.0
+ 21
+153.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+118.00000000000001
+ 20
+92.00000000000001
+ 30
+0.0
+ 11
+94.00000000000001
+ 21
+92.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+118.00000000000001
+ 20
+92.00000000000001
+ 30
+0.0
+ 11
+118.00000000000001
+ 21
+153.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+94.00000000000001
+ 20
+153.00000000000003
+ 30
+0.0
+ 11
+118.00000000000001
+ 21
+153.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+178.00000000000003
+ 20
+92.00000000000001
+ 30
+0.0
+ 11
+118.00000000000001
+ 21
+92.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+178.00000000000003
+ 20
+153.00000000000003
+ 30
+0.0
+ 11
+178.00000000000003
+ 21
+92.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+118.00000000000001
+ 20
+153.00000000000003
+ 30
+0.0
+ 11
+178.00000000000003
+ 21
+153.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+34.0
+ 20
+92.00000000000001
+ 30
+0.0
+ 11
+10.000000000000002
+ 21
+92.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+10.000000000000002
+ 20
+153.00000000000003
+ 30
+0.0
+ 11
+34.0
+ 21
+153.00000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+10.000000000000002
+ 20
+153.00000000000003
+ 30
+0.0
+ 11
+10.000000000000002
+ 21
+92.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+153.00000000000003
+ 30
+0.0
+ 11
+10.000000000000002
+ 21
+153.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+0.0
+ 20
+92.00000000000001
+ 30
+0.0
+ 11
+0.0
+ 21
+153.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+10.000000000000002
+ 20
+92.00000000000001
+ 30
+0.0
+ 11
+0.0
+ 21
+92.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+26.000000000000004
+ 20
+92.00000000000001
+ 30
+0.0
+ 11
+33.0
+ 21
+92.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+26.000000000000004
+ 20
+68.0
+ 30
+0.0
+ 11
+26.000000000000004
+ 21
+92.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+33.0
+ 20
+68.0
+ 30
+0.0
+ 11
+26.000000000000004
+ 21
+68.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+82.09090909090911
+ 20
+62.75000000000001
+ 30
+0.0
+ 11
+85.59090909090911
+ 21
+62.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+85.59090909090911
+ 20
+62.75000000000001
+ 30
+0.0
+ 11
+82.09090909090911
+ 21
+66.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+82.09090909090911
+ 20
+66.25000000000001
+ 30
+0.0
+ 11
+71.1818181818182
+ 21
+66.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+71.1818181818182
+ 20
+66.25000000000001
+ 30
+0.0
+ 11
+67.68181818181819
+ 21
+62.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+67.68181818181819
+ 20
+62.75000000000001
+ 30
+0.0
+ 11
+71.1818181818182
+ 21
+62.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+54.818181818181834
+ 20
+62.75000000000001
+ 30
+0.0
+ 11
+58.31818181818183
+ 21
+62.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+58.31818181818183
+ 20
+62.75000000000001
+ 30
+0.0
+ 11
+54.818181818181834
+ 21
+66.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+54.818181818181834
+ 20
+66.25000000000001
+ 30
+0.0
+ 11
+43.909090909090914
+ 21
+66.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+43.909090909090914
+ 20
+66.25000000000001
+ 30
+0.0
+ 11
+40.40909090909092
+ 21
+62.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+40.40909090909092
+ 20
+62.75000000000001
+ 30
+0.0
+ 11
+43.909090909090914
+ 21
+62.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+99.25000000000001
+ 20
+84.0
+ 30
+0.0
+ 11
+95.75000000000001
+ 21
+84.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.75000000000001
+ 20
+84.0
+ 30
+0.0
+ 11
+95.75000000000001
+ 21
+76.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.75000000000001
+ 20
+76.00000000000001
+ 30
+0.0
+ 11
+99.25000000000001
+ 21
+76.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+41.5
+ 20
+143.5
+ 30
+0.0
+ 11
+41.5
+ 21
+125.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+41.5
+ 20
+125.50000000000001
+ 30
+0.0
+ 11
+76.50000000000001
+ 21
+125.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+76.50000000000001
+ 20
+125.50000000000001
+ 30
+0.0
+ 11
+76.50000000000001
+ 21
+143.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+76.50000000000001
+ 20
+143.5
+ 30
+0.0
+ 11
+41.5
+ 21
+143.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+94.5
+ 20
+105.25000000000001
+ 30
+0.0
+ 11
+94.5
+ 21
+102.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+94.5
+ 20
+102.25000000000001
+ 30
+0.0
+ 11
+97.50000000000001
+ 21
+102.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+97.50000000000001
+ 20
+102.25000000000001
+ 30
+0.0
+ 11
+97.50000000000001
+ 21
+105.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+97.50000000000001
+ 20
+105.25000000000001
+ 30
+0.0
+ 11
+94.5
+ 21
+105.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+104.25000000000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+103.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+103.25000000000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+103.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+103.25000000000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+104.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+104.25000000000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+104.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+106.75000000000001
+ 30
+0.0
+ 11
+95.5
+ 21
+105.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+105.75
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+105.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+105.75
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+106.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+106.75000000000001
+ 30
+0.0
+ 11
+95.5
+ 21
+106.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+106.75000000000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+105.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+105.75
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+105.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+105.75
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+106.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+106.75000000000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+106.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+109.25
+ 30
+0.0
+ 11
+95.5
+ 21
+108.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+108.25000000000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+108.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+108.25000000000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+109.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+109.25
+ 30
+0.0
+ 11
+95.5
+ 21
+109.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+109.25
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+108.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+108.25000000000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+108.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+108.25000000000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+109.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+109.25
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+109.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+111.75000000000001
+ 30
+0.0
+ 11
+95.5
+ 21
+110.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+110.75000000000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+110.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+110.75000000000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+111.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+111.75000000000001
+ 30
+0.0
+ 11
+95.5
+ 21
+111.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+111.75000000000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+110.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+110.75000000000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+110.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+110.75000000000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+111.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+111.75000000000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+111.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+114.25000000000001
+ 30
+0.0
+ 11
+95.5
+ 21
+113.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+113.25000000000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+113.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+113.25000000000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+114.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+114.25000000000001
+ 30
+0.0
+ 11
+95.5
+ 21
+114.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+114.25000000000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+113.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+113.25000000000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+113.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+113.25000000000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+114.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+114.25000000000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+114.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+116.75000000000001
+ 30
+0.0
+ 11
+95.5
+ 21
+115.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+115.75000000000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+115.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+115.75000000000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+116.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+116.75000000000001
+ 30
+0.0
+ 11
+95.5
+ 21
+116.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+116.75000000000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+115.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+115.75000000000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+115.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+115.75000000000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+116.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+116.75000000000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+116.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+119.25000000000001
+ 30
+0.0
+ 11
+95.5
+ 21
+118.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+118.25000000000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+118.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+118.25000000000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+119.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+119.25000000000001
+ 30
+0.0
+ 11
+95.5
+ 21
+119.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+119.25000000000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+118.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+118.25000000000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+118.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+118.25000000000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+119.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+119.25000000000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+119.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+121.75000000000001
+ 30
+0.0
+ 11
+95.5
+ 21
+120.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+120.75000000000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+120.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+120.75000000000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+121.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+121.75000000000001
+ 30
+0.0
+ 11
+95.5
+ 21
+121.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+121.75000000000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+120.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+120.75000000000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+120.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+120.75000000000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+121.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+121.75000000000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+121.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+124.25000000000001
+ 30
+0.0
+ 11
+95.5
+ 21
+123.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+123.25000000000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+123.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+123.25000000000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+124.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+124.25000000000001
+ 30
+0.0
+ 11
+95.5
+ 21
+124.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+124.25000000000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+123.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+123.25000000000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+123.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+123.25000000000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+124.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+124.25000000000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+124.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+126.75000000000001
+ 30
+0.0
+ 11
+95.5
+ 21
+125.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+125.75000000000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+125.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+125.75000000000001
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+126.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+126.75000000000001
+ 30
+0.0
+ 11
+95.5
+ 21
+126.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+126.75000000000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+125.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+125.75000000000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+125.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+125.75000000000001
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+126.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+126.75000000000001
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+126.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+129.25000000000003
+ 30
+0.0
+ 11
+95.5
+ 21
+128.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+128.25000000000003
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+128.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+128.25000000000003
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+129.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+129.25000000000003
+ 30
+0.0
+ 11
+95.5
+ 21
+129.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+129.25000000000003
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+128.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+128.25000000000003
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+128.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+128.25000000000003
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+129.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+129.25000000000003
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+129.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+131.75000000000003
+ 30
+0.0
+ 11
+95.5
+ 21
+130.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+130.75000000000003
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+130.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+130.75000000000003
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+131.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+131.75000000000003
+ 30
+0.0
+ 11
+95.5
+ 21
+131.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+131.75000000000003
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+130.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+130.75000000000003
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+130.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+130.75000000000003
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+131.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+131.75000000000003
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+131.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+134.25000000000003
+ 30
+0.0
+ 11
+95.5
+ 21
+133.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+133.25
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+133.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+133.25
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+134.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+134.25000000000003
+ 30
+0.0
+ 11
+95.5
+ 21
+134.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+134.25000000000003
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+133.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+133.25
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+133.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+133.25
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+134.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+134.25000000000003
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+134.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+136.75
+ 30
+0.0
+ 11
+95.5
+ 21
+135.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+135.75000000000003
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+135.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+135.75000000000003
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+136.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+136.75
+ 30
+0.0
+ 11
+95.5
+ 21
+136.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+136.75
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+135.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+135.75000000000003
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+135.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+135.75000000000003
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+136.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+136.75
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+136.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+139.25
+ 30
+0.0
+ 11
+95.5
+ 21
+138.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+138.25000000000003
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+138.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+138.25000000000003
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+139.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+139.25
+ 30
+0.0
+ 11
+95.5
+ 21
+139.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+139.25
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+138.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.50000000000001
+ 20
+138.25000000000003
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+138.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+138.25000000000003
+ 30
+0.0
+ 11
+116.50000000000001
+ 21
+139.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.50000000000001
+ 20
+139.25
+ 30
+0.0
+ 11
+115.50000000000001
+ 21
+139.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+141.75000000000003
+ 30
+0.0
+ 11
+95.5
+ 21
+140.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+95.5
+ 20
+140.75
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+140.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+140.75
+ 30
+0.0
+ 11
+96.50000000000001
+ 21
+141.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.50000000000001
+ 20
+141.75000000000003
+ 30
+0.0
+ 11
+95.5
+ 21
+141.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+114.50000000000001
+ 20
+142.75000000000003
+ 30
+0.0
+ 11
+114.50000000000001
+ 21
+139.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+114.50000000000001
+ 20
+139.75000000000003
+ 30
+0.0
+ 11
+117.50000000000001
+ 21
+139.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+117.50000000000001
+ 20
+139.75000000000003
+ 30
+0.0
+ 11
+117.50000000000001
+ 21
+142.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+117.50000000000001
+ 20
+142.75000000000003
+ 30
+0.0
+ 11
+114.50000000000001
+ 21
+142.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+110.25000000000001
+ 20
+99.75000000000001
+ 30
+0.0
+ 11
+101.75000000000001
+ 21
+99.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.75000000000001
+ 20
+99.75000000000001
+ 30
+0.0
+ 11
+101.75000000000001
+ 21
+99.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.75000000000001
+ 20
+99.25000000000001
+ 30
+0.0
+ 11
+110.25000000000001
+ 21
+99.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+110.25000000000001
+ 20
+99.25000000000001
+ 30
+0.0
+ 11
+110.25000000000001
+ 21
+99.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.75000000000001
+ 20
+147.5
+ 30
+0.0
+ 11
+110.25000000000001
+ 21
+147.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+110.25000000000001
+ 20
+147.5
+ 30
+0.0
+ 11
+110.25000000000001
+ 21
+148.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+110.25000000000001
+ 20
+148.0
+ 30
+0.0
+ 11
+101.75000000000001
+ 21
+148.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.75000000000001
+ 20
+148.0
+ 30
+0.0
+ 11
+101.75000000000001
+ 21
+147.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+133.00000000000003
+ 20
+143.0
+ 30
+0.0
+ 11
+133.00000000000003
+ 21
+130.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+133.00000000000003
+ 20
+130.0
+ 30
+0.0
+ 11
+163.00000000000003
+ 21
+130.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.00000000000003
+ 20
+130.0
+ 30
+0.0
+ 11
+163.00000000000003
+ 21
+143.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.00000000000003
+ 20
+143.0
+ 30
+0.0
+ 11
+133.00000000000003
+ 21
+143.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+140.06818181818184
+ 20
+97.50000000000001
+ 30
+0.0
+ 11
+128.65909090909093
+ 21
+97.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+128.65909090909093
+ 20
+97.50000000000001
+ 30
+0.0
+ 11
+128.65909090909093
+ 21
+97.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+128.65909090909093
+ 20
+97.00000000000001
+ 30
+0.0
+ 11
+140.06818181818184
+ 21
+97.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+140.06818181818184
+ 20
+97.00000000000001
+ 30
+0.0
+ 11
+140.06818181818184
+ 21
+97.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+167.3409090909091
+ 20
+97.50000000000001
+ 30
+0.0
+ 11
+155.93181818181822
+ 21
+97.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+155.93181818181822
+ 20
+97.50000000000001
+ 30
+0.0
+ 11
+155.93181818181822
+ 21
+97.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+155.93181818181822
+ 20
+97.00000000000001
+ 30
+0.0
+ 11
+167.3409090909091
+ 21
+97.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+167.3409090909091
+ 20
+97.00000000000001
+ 30
+0.0
+ 11
+167.3409090909091
+ 21
+97.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+170.25000000000003
+ 20
+114.4318181818182
+ 30
+0.0
+ 11
+170.25000000000003
+ 21
+102.84090909090911
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+170.25000000000003
+ 20
+102.84090909090911
+ 30
+0.0
+ 11
+170.75
+ 21
+102.84090909090911
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+170.75
+ 20
+102.84090909090911
+ 30
+0.0
+ 11
+170.75
+ 21
+114.4318181818182
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+170.75
+ 20
+114.4318181818182
+ 30
+0.0
+ 11
+170.25000000000003
+ 21
+114.4318181818182
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+170.25000000000003
+ 20
+142.1590909090909
+ 30
+0.0
+ 11
+170.25000000000003
+ 21
+130.56818181818184
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+170.25000000000003
+ 20
+130.56818181818184
+ 30
+0.0
+ 11
+170.75
+ 21
+130.56818181818184
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+170.75
+ 20
+130.56818181818184
+ 30
+0.0
+ 11
+170.75
+ 21
+142.1590909090909
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+170.75
+ 20
+142.1590909090909
+ 30
+0.0
+ 11
+170.25000000000003
+ 21
+142.1590909090909
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+10.5
+ 20
+105.25000000000001
+ 30
+0.0
+ 11
+10.5
+ 21
+102.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+10.5
+ 20
+102.25000000000001
+ 30
+0.0
+ 11
+13.500000000000002
+ 21
+102.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+13.500000000000002
+ 20
+102.25000000000001
+ 30
+0.0
+ 11
+13.500000000000002
+ 21
+105.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+13.500000000000002
+ 20
+105.25000000000001
+ 30
+0.0
+ 11
+10.5
+ 21
+105.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+104.25000000000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+103.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+103.25000000000001
+ 30
+0.0
+ 11
+32.5
+ 21
+103.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+103.25000000000001
+ 30
+0.0
+ 11
+32.5
+ 21
+104.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+104.25000000000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+104.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+106.75000000000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+105.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+105.75
+ 30
+0.0
+ 11
+12.5
+ 21
+105.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+105.75
+ 30
+0.0
+ 11
+12.5
+ 21
+106.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+106.75000000000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+106.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+106.75000000000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+105.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+105.75
+ 30
+0.0
+ 11
+32.5
+ 21
+105.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+105.75
+ 30
+0.0
+ 11
+32.5
+ 21
+106.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+106.75000000000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+106.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+109.25
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+108.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+108.25000000000001
+ 30
+0.0
+ 11
+12.5
+ 21
+108.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+108.25000000000001
+ 30
+0.0
+ 11
+12.5
+ 21
+109.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+109.25
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+109.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+109.25
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+108.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+108.25000000000001
+ 30
+0.0
+ 11
+32.5
+ 21
+108.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+108.25000000000001
+ 30
+0.0
+ 11
+32.5
+ 21
+109.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+109.25
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+109.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+111.75000000000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+110.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+110.75000000000001
+ 30
+0.0
+ 11
+12.5
+ 21
+110.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+110.75000000000001
+ 30
+0.0
+ 11
+12.5
+ 21
+111.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+111.75000000000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+111.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+111.75000000000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+110.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+110.75000000000001
+ 30
+0.0
+ 11
+32.5
+ 21
+110.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+110.75000000000001
+ 30
+0.0
+ 11
+32.5
+ 21
+111.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+111.75000000000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+111.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+114.25000000000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+113.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+113.25000000000001
+ 30
+0.0
+ 11
+12.5
+ 21
+113.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+113.25000000000001
+ 30
+0.0
+ 11
+12.5
+ 21
+114.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+114.25000000000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+114.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+114.25000000000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+113.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+113.25000000000001
+ 30
+0.0
+ 11
+32.5
+ 21
+113.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+113.25000000000001
+ 30
+0.0
+ 11
+32.5
+ 21
+114.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+114.25000000000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+114.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+116.75000000000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+115.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+115.75000000000001
+ 30
+0.0
+ 11
+12.5
+ 21
+115.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+115.75000000000001
+ 30
+0.0
+ 11
+12.5
+ 21
+116.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+116.75000000000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+116.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+116.75000000000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+115.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+115.75000000000001
+ 30
+0.0
+ 11
+32.5
+ 21
+115.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+115.75000000000001
+ 30
+0.0
+ 11
+32.5
+ 21
+116.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+116.75000000000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+116.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+119.25000000000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+118.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+118.25000000000001
+ 30
+0.0
+ 11
+12.5
+ 21
+118.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+118.25000000000001
+ 30
+0.0
+ 11
+12.5
+ 21
+119.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+119.25000000000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+119.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+119.25000000000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+118.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+118.25000000000001
+ 30
+0.0
+ 11
+32.5
+ 21
+118.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+118.25000000000001
+ 30
+0.0
+ 11
+32.5
+ 21
+119.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+119.25000000000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+119.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+121.75000000000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+120.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+120.75000000000001
+ 30
+0.0
+ 11
+12.5
+ 21
+120.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+120.75000000000001
+ 30
+0.0
+ 11
+12.5
+ 21
+121.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+121.75000000000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+121.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+121.75000000000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+120.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+120.75000000000001
+ 30
+0.0
+ 11
+32.5
+ 21
+120.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+120.75000000000001
+ 30
+0.0
+ 11
+32.5
+ 21
+121.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+121.75000000000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+121.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+124.25000000000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+123.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+123.25000000000001
+ 30
+0.0
+ 11
+12.5
+ 21
+123.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+123.25000000000001
+ 30
+0.0
+ 11
+12.5
+ 21
+124.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+124.25000000000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+124.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+124.25000000000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+123.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+123.25000000000001
+ 30
+0.0
+ 11
+32.5
+ 21
+123.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+123.25000000000001
+ 30
+0.0
+ 11
+32.5
+ 21
+124.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+124.25000000000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+124.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+126.75000000000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+125.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+125.75000000000001
+ 30
+0.0
+ 11
+12.5
+ 21
+125.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+125.75000000000001
+ 30
+0.0
+ 11
+12.5
+ 21
+126.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+126.75000000000001
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+126.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+126.75000000000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+125.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+125.75000000000001
+ 30
+0.0
+ 11
+32.5
+ 21
+125.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+125.75000000000001
+ 30
+0.0
+ 11
+32.5
+ 21
+126.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+126.75000000000001
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+126.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+129.25000000000003
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+128.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+128.25000000000003
+ 30
+0.0
+ 11
+12.5
+ 21
+128.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+128.25000000000003
+ 30
+0.0
+ 11
+12.5
+ 21
+129.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+129.25000000000003
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+129.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+129.25000000000003
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+128.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+128.25000000000003
+ 30
+0.0
+ 11
+32.5
+ 21
+128.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+128.25000000000003
+ 30
+0.0
+ 11
+32.5
+ 21
+129.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+129.25000000000003
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+129.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+131.75000000000003
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+130.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+130.75000000000003
+ 30
+0.0
+ 11
+12.5
+ 21
+130.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+130.75000000000003
+ 30
+0.0
+ 11
+12.5
+ 21
+131.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+131.75000000000003
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+131.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+131.75000000000003
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+130.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+130.75000000000003
+ 30
+0.0
+ 11
+32.5
+ 21
+130.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+130.75000000000003
+ 30
+0.0
+ 11
+32.5
+ 21
+131.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+131.75000000000003
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+131.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+134.25000000000003
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+133.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+133.25
+ 30
+0.0
+ 11
+12.5
+ 21
+133.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+133.25
+ 30
+0.0
+ 11
+12.5
+ 21
+134.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+134.25000000000003
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+134.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+134.25000000000003
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+133.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+133.25
+ 30
+0.0
+ 11
+32.5
+ 21
+133.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+133.25
+ 30
+0.0
+ 11
+32.5
+ 21
+134.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+134.25000000000003
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+134.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+136.75
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+135.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+135.75000000000003
+ 30
+0.0
+ 11
+12.5
+ 21
+135.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+135.75000000000003
+ 30
+0.0
+ 11
+12.5
+ 21
+136.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+136.75
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+136.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+136.75
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+135.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+135.75000000000003
+ 30
+0.0
+ 11
+32.5
+ 21
+135.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+135.75000000000003
+ 30
+0.0
+ 11
+32.5
+ 21
+136.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+136.75
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+136.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+139.25
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+138.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+138.25000000000003
+ 30
+0.0
+ 11
+12.5
+ 21
+138.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+138.25000000000003
+ 30
+0.0
+ 11
+12.5
+ 21
+139.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+139.25
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+139.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+139.25
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+138.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.500000000000004
+ 20
+138.25000000000003
+ 30
+0.0
+ 11
+32.5
+ 21
+138.25000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+138.25000000000003
+ 30
+0.0
+ 11
+32.5
+ 21
+139.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+32.5
+ 20
+139.25
+ 30
+0.0
+ 11
+31.500000000000004
+ 21
+139.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+141.75000000000003
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+140.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.500000000000002
+ 20
+140.75
+ 30
+0.0
+ 11
+12.5
+ 21
+140.75
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+140.75
+ 30
+0.0
+ 11
+12.5
+ 21
+141.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.5
+ 20
+141.75000000000003
+ 30
+0.0
+ 11
+11.500000000000002
+ 21
+141.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+30.500000000000004
+ 20
+142.75000000000003
+ 30
+0.0
+ 11
+30.500000000000004
+ 21
+139.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+30.500000000000004
+ 20
+139.75000000000003
+ 30
+0.0
+ 11
+33.50000000000001
+ 21
+139.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+33.50000000000001
+ 20
+139.75000000000003
+ 30
+0.0
+ 11
+33.50000000000001
+ 21
+142.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+33.50000000000001
+ 20
+142.75000000000003
+ 30
+0.0
+ 11
+30.500000000000004
+ 21
+142.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+26.250000000000004
+ 20
+99.75000000000001
+ 30
+0.0
+ 11
+17.750000000000004
+ 21
+99.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+17.750000000000004
+ 20
+99.75000000000001
+ 30
+0.0
+ 11
+17.750000000000004
+ 21
+99.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+17.750000000000004
+ 20
+99.25000000000001
+ 30
+0.0
+ 11
+26.250000000000004
+ 21
+99.25000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+26.250000000000004
+ 20
+99.25000000000001
+ 30
+0.0
+ 11
+26.250000000000004
+ 21
+99.75000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+17.750000000000004
+ 20
+147.5
+ 30
+0.0
+ 11
+26.250000000000004
+ 21
+147.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+26.250000000000004
+ 20
+147.5
+ 30
+0.0
+ 11
+26.250000000000004
+ 21
+148.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+26.250000000000004
+ 20
+148.0
+ 30
+0.0
+ 11
+17.750000000000004
+ 21
+148.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+17.750000000000004
+ 20
+148.0
+ 30
+0.0
+ 11
+17.750000000000004
+ 21
+147.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+2.5000000000000004
+ 20
+103.09090909090911
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+103.09090909090911
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+7.500000000000001
+ 20
+103.09090909090911
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+114.1818181818182
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+7.500000000000001
+ 20
+114.1818181818182
+ 30
+0.0
+ 11
+2.5000000000000004
+ 21
+114.1818181818182
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+2.5000000000000004
+ 20
+130.81818181818184
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+130.81818181818184
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+7.500000000000001
+ 20
+130.81818181818184
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+141.9090909090909
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+7.500000000000001
+ 20
+141.9090909090909
+ 30
+0.0
+ 11
+2.5000000000000004
+ 21
+141.9090909090909
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+27.750000000000004
+ 20
+76.00000000000001
+ 30
+0.0
+ 11
+31.250000000000004
+ 21
+76.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.250000000000004
+ 20
+76.00000000000001
+ 30
+0.0
+ 11
+31.250000000000004
+ 21
+84.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+31.250000000000004
+ 20
+84.0
+ 30
+0.0
+ 11
+27.750000000000004
+ 21
+84.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+198.0
+ 20
+61.930689000407355
+ 30
+0.0
+ 11
+259.00000000000006
+ 21
+61.930689000407355
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+259.00000000000006
+ 20
+98.06931099959267
+ 30
+0.0
+ 11
+259.00000000000006
+ 21
+61.930689000407355
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+198.0
+ 20
+98.06931099959267
+ 30
+0.0
+ 11
+259.00000000000006
+ 21
+98.06931099959267
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+198.0
+ 20
+61.930689000407355
+ 30
+0.0
+ 11
+198.0
+ 21
+98.06931099959267
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+259.00000000000006
+ 20
+37.93068900040735
+ 30
+0.0
+ 11
+198.0
+ 21
+37.93068900040735
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+259.00000000000006
+ 20
+37.93068900040735
+ 30
+0.0
+ 11
+259.00000000000006
+ 21
+61.930689000407355
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+198.0
+ 20
+1.7920670012220514
+ 30
+0.0
+ 11
+198.0
+ 21
+37.93068900040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+259.00000000000006
+ 20
+1.7920670012220514
+ 30
+0.0
+ 11
+198.0
+ 21
+1.7920670012220514
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+259.00000000000006
+ 20
+37.93068900040735
+ 30
+0.0
+ 11
+259.00000000000006
+ 21
+1.7920670012220514
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+269.0
+ 20
+37.93068900040735
+ 30
+0.0
+ 11
+259.00000000000006
+ 21
+37.93068900040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+269.0
+ 20
+61.930689000407355
+ 30
+0.0
+ 11
+269.0
+ 21
+37.93068900040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+259.00000000000006
+ 20
+61.930689000407355
+ 30
+0.0
+ 11
+269.0
+ 21
+61.930689000407355
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+188.00000000000003
+ 20
+61.930689000407355
+ 30
+0.0
+ 11
+198.0
+ 21
+61.930689000407355
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+188.00000000000003
+ 20
+37.93068900040735
+ 30
+0.0
+ 11
+188.00000000000003
+ 21
+61.930689000407355
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+198.0
+ 20
+37.93068900040735
+ 30
+0.0
+ 11
+188.00000000000003
+ 21
+37.93068900040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+216.00000000000003
+ 20
+43.430689000407355
+ 30
+0.0
+ 11
+227.00000000000003
+ 21
+43.430689000407355
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+227.00000000000003
+ 20
+43.430689000407355
+ 30
+0.0
+ 11
+227.00000000000003
+ 21
+56.430689000407355
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+227.00000000000003
+ 20
+56.430689000407355
+ 30
+0.0
+ 11
+216.00000000000003
+ 21
+56.430689000407355
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+216.00000000000003
+ 20
+56.430689000407355
+ 30
+0.0
+ 11
+216.00000000000003
+ 21
+43.430689000407355
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+247.50000000000003
+ 20
+44.930689000407355
+ 30
+0.0
+ 11
+253.50000000000003
+ 21
+44.930689000407355
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+253.50000000000003
+ 20
+44.930689000407355
+ 30
+0.0
+ 11
+253.50000000000003
+ 21
+54.930689000407355
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+253.50000000000003
+ 20
+54.930689000407355
+ 30
+0.0
+ 11
+247.50000000000003
+ 21
+54.930689000407355
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+247.50000000000003
+ 20
+54.930689000407355
+ 30
+0.0
+ 11
+247.50000000000003
+ 21
+44.930689000407355
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+266.5
+ 20
+53.930689000407355
+ 30
+0.0
+ 11
+261.50000000000006
+ 21
+53.930689000407355
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+261.50000000000006
+ 20
+53.930689000407355
+ 30
+0.0
+ 11
+261.50000000000006
+ 21
+45.93068900040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+261.50000000000006
+ 20
+45.93068900040735
+ 30
+0.0
+ 11
+266.5
+ 21
+45.93068900040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+190.50000000000003
+ 20
+45.93068900040735
+ 30
+0.0
+ 11
+195.5
+ 21
+45.93068900040735
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+195.5
+ 20
+45.93068900040735
+ 30
+0.0
+ 11
+195.5
+ 21
+53.930689000407355
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+195.5
+ 20
+53.930689000407355
+ 30
+0.0
+ 11
+190.50000000000003
+ 21
+53.930689000407355
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+319.0
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+289.00000000000006
+ 21
+60.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+319.0
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+319.0
+ 21
+100.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+289.00000000000006
+ 20
+100.0
+ 30
+0.0
+ 11
+319.0
+ 21
+100.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+289.00000000000006
+ 20
+100.0
+ 30
+0.0
+ 11
+289.00000000000006
+ 21
+60.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+319.0
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+329.00000000000006
+ 21
+60.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+329.00000000000006
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+329.00000000000006
+ 21
+100.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+329.00000000000006
+ 20
+100.0
+ 30
+0.0
+ 11
+319.0
+ 21
+100.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+329.00000000000006
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+329.00000000000006
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+319.0
+ 20
+0.0
+ 30
+0.0
+ 11
+319.0
+ 21
+60.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+329.00000000000006
+ 20
+0.0
+ 30
+0.0
+ 11
+319.0
+ 21
+0.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+359.0
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+329.00000000000006
+ 21
+60.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+359.0
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+359.0
+ 21
+100.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+329.00000000000006
+ 20
+100.0
+ 30
+0.0
+ 11
+359.0
+ 21
+100.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+369.0
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+359.0
+ 21
+60.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+369.0
+ 20
+100.0
+ 30
+0.0
+ 11
+369.0
+ 21
+60.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+359.0
+ 20
+100.0
+ 30
+0.0
+ 11
+369.0
+ 21
+100.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+319.0
+ 20
+100.0
+ 30
+0.0
+ 11
+319.0
+ 21
+160.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+329.00000000000006
+ 20
+160.00000000000003
+ 30
+0.0
+ 11
+329.00000000000006
+ 21
+100.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+319.0
+ 20
+160.00000000000003
+ 30
+0.0
+ 11
+329.00000000000006
+ 21
+160.00000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+279.00000000000006
+ 20
+100.0
+ 30
+0.0
+ 11
+289.00000000000006
+ 21
+100.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+279.00000000000006
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+279.00000000000006
+ 21
+100.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+289.00000000000006
+ 20
+60.00000000000001
+ 30
+0.0
+ 11
+279.00000000000006
+ 21
+60.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+290.00000000000006
+ 20
+76.00000000000001
+ 30
+0.0
+ 11
+298.00000000000006
+ 21
+76.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+298.00000000000006
+ 20
+76.00000000000001
+ 30
+0.0
+ 11
+298.00000000000006
+ 21
+84.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+298.00000000000006
+ 20
+84.0
+ 30
+0.0
+ 11
+290.00000000000006
+ 21
+84.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+290.00000000000006
+ 20
+84.0
+ 30
+0.0
+ 11
+290.00000000000006
+ 21
+76.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+350.0
+ 20
+76.00000000000001
+ 30
+0.0
+ 11
+358.00000000000006
+ 21
+76.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+358.00000000000006
+ 20
+76.00000000000001
+ 30
+0.0
+ 11
+358.00000000000006
+ 21
+84.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+358.00000000000006
+ 20
+84.0
+ 30
+0.0
+ 11
+350.0
+ 21
+84.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+350.0
+ 20
+84.0
+ 30
+0.0
+ 11
+350.0
+ 21
+76.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+361.25000000000006
+ 20
+86.91666666666669
+ 30
+0.0
+ 11
+361.25000000000006
+ 21
+73.08333333333336
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+361.25000000000006
+ 20
+73.08333333333336
+ 30
+0.0
+ 11
+361.75000000000006
+ 21
+73.08333333333336
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+361.75000000000006
+ 20
+73.08333333333336
+ 30
+0.0
+ 11
+361.75000000000006
+ 21
+86.91666666666669
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+361.75000000000006
+ 20
+86.91666666666669
+ 30
+0.0
+ 11
+361.25000000000006
+ 21
+86.91666666666669
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+281.5
+ 20
+73.33333333333336
+ 30
+0.0
+ 11
+281.5
+ 21
+68.33333333333334
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+281.5
+ 20
+68.33333333333334
+ 30
+0.0
+ 11
+286.5
+ 21
+73.33333333333336
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+286.5
+ 20
+73.33333333333336
+ 30
+0.0
+ 11
+286.5
+ 21
+86.66666666666669
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+286.5
+ 20
+86.66666666666669
+ 30
+0.0
+ 11
+281.5
+ 21
+91.66666666666669
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+281.5
+ 20
+91.66666666666669
+ 30
+0.0
+ 11
+281.5
+ 21
+86.66666666666669
+ 31
+0.0
+  0
+ENDSEC
+  0
+EOF
diff --git a/rocolib/output/DCStackMount/tree.png b/rocolib/output/DCStackMount/tree.png
new file mode 100644
index 0000000000000000000000000000000000000000..9f3b8b1701138aeca6e25953156b869303247832
Binary files /dev/null and b/rocolib/output/DCStackMount/tree.png differ
diff --git a/rocolib/output/PaddleWheel/graph-anim.svg b/rocolib/output/PaddleWheel/graph-anim.svg
new file mode 100644
index 0000000000000000000000000000000000000000..24e36dd725adc0b9c8d6cd6fd48ff55e02b6c480
--- /dev/null
+++ b/rocolib/output/PaddleWheel/graph-anim.svg
@@ -0,0 +1,324 @@
+<?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="151.819806mm" version="1.1" viewBox="0.000000 0.000000 250.000000 151.819806" width="250.000000mm">
+  <defs/>
+  <line stroke="#000000" x1="105.90990257669735" x2="105.90990257669735" y1="75.90990300000001" y2="75.90990300000001"/>
+  <line stroke="#000000" x1="98.40990257669735" x2="98.40990257669735" y1="75.90990300000001" y2="75.90990300000001"/>
+  <line stroke="#000000" x1="105.90990257669735" x2="113.40990257669735" y1="75.90990300000001" y2="75.90990300000001"/>
+  <line stroke="#000000" x1="90.90990257669733" x2="98.40990257669735" y1="75.90990300000001" y2="75.90990300000001"/>
+  <line stroke="#000000" x1="90.90990257669733" x2="90.90990257669733" y1="75.90990300000001" y2="75.90990300000001"/>
+  <line stroke="#000000" x1="113.40990257669735" x2="113.40990257669735" y1="75.90990300000001" y2="75.90990300000001"/>
+  <line stroke="#000000" x1="75.00000000000001" x2="90.90990257669733" y1="60.00000042330269" y2="75.90990300000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="120.00000000000003" x2="75.00000000000001" y1="60.00000042330269" y2="60.00000042330269"/>
+  <line stroke="#000000" x1="113.40990257669735" x2="120.00000000000003" y1="75.90990300000001" y2="60.00000042330269"/>
+  <line stroke="#000000" x1="115.60660171779824" x2="70.60660171779824" y1="49.39339870550447" y2="49.39339870550447"/>
+  <line stroke="#000000" x1="120.00000000000003" x2="115.60660171779824" y1="60.00000042330269" y2="49.39339870550447"/>
+  <line opacity="0.5" stroke="#0000ff" x1="102.42640687119288" x2="70.60660171779824" y1="102.42640729449553" y2="70.6066021411009"/>
+  <line stroke="#000000" x1="106.81980515339467" x2="75.00000000000001" y1="91.81980557669732" y2="60.00000042330269"/>
+  <line stroke="#000000" x1="102.42640687119288" x2="106.81980515339467" y1="102.42640729449553" y2="91.81980557669732"/>
+  <line stroke="#000000" x1="70.60660171779826" x2="70.60660171779826" y1="70.6066021411009" y2="93.10660214110091"/>
+  <line stroke="#000000" x1="86.51650429449558" x2="102.4264068711929" y1="109.01650471779821" y2="102.42640729449553"/>
+  <line stroke="#000000" x1="81.21320343559647" x2="86.51650429449558" y1="103.7132038588991" y2="109.01650471779821"/>
+  <line stroke="#000000" x1="70.60660171779826" x2="75.90990257669735" y1="93.10660214110091" y2="98.40990299999999"/>
+  <line stroke="#000000" x1="70.60660171779826" x2="70.60660171779826" y1="93.10660214110091" y2="93.10660214110091"/>
+  <line stroke="#000000" x1="86.51650429449558" x2="86.51650429449558" y1="109.01650471779821" y2="109.01650471779821"/>
+  <line stroke="#000000" x1="81.21320343559647" x2="81.21320343559647" y1="103.7132038588991" y2="103.7132038588991"/>
+  <line stroke="#000000" x1="75.90990257669735" x2="75.90990257669735" y1="98.40990299999999" y2="98.40990299999999"/>
+  <line stroke="#000000" x1="77.67766952966373" x2="81.21320343559647" y1="107.24873776483184" y2="103.7132038588991"/>
+  <line stroke="#000000" x1="72.37436867076462" x2="77.67766952966373" y1="101.94543690593274" y2="107.24873776483184"/>
+  <line stroke="#000000" x1="75.90990257669735" x2="72.37436867076462" y1="98.40990299999999" y2="101.94543690593274"/>
+  <line opacity="0.5" stroke="#0000ff" x1="60.000000000000036" x2="60.00000000000002" y1="120.0000004233027" y2="75.0000004233027"/>
+  <line stroke="#000000" x1="70.60660171779826" x2="70.60660171779824" y1="115.60660214110091" y2="70.6066021411009"/>
+  <line stroke="#000000" x1="60.000000000000036" x2="70.60660171779826" y1="120.0000004233027" y2="115.60660214110091"/>
+  <line stroke="#000000" x1="60.00000000000002" x2="44.09009742330271" y1="75.00000042330271" y2="90.90990300000003"/>
+  <line stroke="#000000" x1="44.090097423302716" x2="60.000000000000036" y1="113.40990300000003" y2="120.0000004233027"/>
+  <line stroke="#000000" x1="44.090097423302716" x2="44.090097423302716" y1="105.90990300000003" y2="113.40990300000003"/>
+  <line stroke="#000000" x1="44.09009742330271" x2="44.09009742330271" y1="90.90990300000003" y2="98.40990300000003"/>
+  <line stroke="#000000" x1="44.09009742330271" x2="44.09009742330271" y1="90.90990300000003" y2="90.90990300000003"/>
+  <line stroke="#000000" x1="44.090097423302716" x2="44.090097423302716" y1="113.40990300000003" y2="113.40990300000003"/>
+  <line stroke="#000000" x1="44.090097423302716" x2="44.090097423302716" y1="105.90990300000003" y2="105.90990300000003"/>
+  <line stroke="#000000" x1="44.090097423302716" x2="44.090097423302716" y1="98.40990300000003" y2="98.40990300000003"/>
+  <line stroke="#000000" x1="39.090097423302716" x2="44.090097423302716" y1="105.90990300000003" y2="105.90990300000003"/>
+  <line stroke="#000000" x1="39.090097423302716" x2="39.090097423302716" y1="98.40990300000003" y2="105.90990300000003"/>
+  <line stroke="#000000" x1="44.090097423302716" x2="39.090097423302716" y1="98.40990300000003" y2="98.40990300000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="17.57359312880718" x2="49.393398282201815" y1="102.42640729449558" y2="70.60660214110091"/>
+  <line stroke="#000000" x1="28.180194846605406" x2="60.000000000000036" y1="106.81980557669736" y2="75.0000004233027"/>
+  <line stroke="#000000" x1="17.57359312880718" x2="28.180194846605406" y1="102.42640729449558" y2="106.81980557669736"/>
+  <line stroke="#000000" x1="49.393398282201794" x2="26.89339828220179" y1="70.60660214110091" y2="70.60660214110092"/>
+  <line stroke="#000000" x1="10.983495705504483" x2="17.57359312880718" y1="86.51650471779827" y2="102.42640729449558"/>
+  <line stroke="#000000" x1="16.286796564403588" x2="10.983495705504483" y1="81.21320385889915" y2="86.51650471779827"/>
+  <line stroke="#000000" x1="26.89339828220179" x2="21.590097423302698" y1="70.60660214110092" y2="75.90990300000004"/>
+  <line stroke="#000000" x1="26.89339828220179" x2="26.89339828220179" y1="70.60660214110092" y2="70.60660214110092"/>
+  <line stroke="#000000" x1="10.983495705504483" x2="10.983495705504483" y1="86.51650471779827" y2="86.51650471779827"/>
+  <line stroke="#000000" x1="16.286796564403588" x2="16.286796564403588" y1="81.21320385889915" y2="81.21320385889915"/>
+  <line stroke="#000000" x1="21.590097423302698" x2="21.590097423302698" y1="75.90990300000004" y2="75.90990300000004"/>
+  <line stroke="#000000" x1="12.751262658470852" x2="16.286796564403588" y1="77.67766995296643" y2="81.21320385889915"/>
+  <line stroke="#000000" x1="18.05456351736996" x2="12.751262658470852" y1="72.37436909406729" y2="77.67766995296643"/>
+  <line stroke="#000000" x1="21.590097423302698" x2="18.05456351736996" y1="75.90990300000004" y2="72.37436909406729"/>
+  <line opacity="0.5" stroke="#0000ff" x1="1.4210854715202007e-14" x2="45.00000000000002" y1="60.000000423302716" y2="60.0000004233027"/>
+  <line stroke="#000000" x1="4.393398282201801" x2="49.39339828220181" y1="70.60660214110092" y2="70.60660214110091"/>
+  <line stroke="#000000" x1="1.4210854715202007e-14" x2="4.393398282201801" y1="60.000000423302716" y2="70.60660214110092"/>
+  <line stroke="#000000" x1="45.0" x2="29.090097423302684" y1="60.000000423302694" y2="44.09009784660538"/>
+  <line stroke="#000000" x1="6.590097423302681" x2="0.0" y1="44.09009784660539" y2="60.000000423302716"/>
+  <line stroke="#000000" x1="14.090097423302682" x2="6.590097423302681" y1="44.09009784660539" y2="44.090097846605396"/>
+  <line stroke="#000000" x1="29.090097423302684" x2="21.590097423302684" y1="44.09009784660538" y2="44.09009784660539"/>
+  <line stroke="#000000" x1="29.090097423302684" x2="29.090097423302684" y1="44.09009784660538" y2="44.09009784660538"/>
+  <line stroke="#000000" x1="6.590097423302681" x2="6.590097423302681" y1="44.090097846605396" y2="44.090097846605396"/>
+  <line stroke="#000000" x1="14.090097423302682" x2="14.090097423302682" y1="44.09009784660539" y2="44.09009784660539"/>
+  <line stroke="#000000" x1="21.590097423302684" x2="21.590097423302684" y1="44.09009784660538" y2="44.09009784660538"/>
+  <line stroke="#000000" x1="14.090097423302682" x2="14.090097423302682" y1="39.09009784660539" y2="44.09009784660539"/>
+  <line stroke="#000000" x1="21.590097423302684" x2="14.090097423302682" y1="39.09009784660539" y2="39.09009784660539"/>
+  <line stroke="#000000" x1="21.590097423302684" x2="21.590097423302684" y1="44.09009784660538" y2="39.09009784660539"/>
+  <line opacity="0.5" stroke="#0000ff" x1="17.573593128807147" x2="49.39339828220179" y1="17.573593552109866" y2="49.393398705504474"/>
+  <line stroke="#000000" x1="13.180194846605362" x2="45.000000000000014" y1="28.18019526990808" y2="60.000000423302694"/>
+  <line stroke="#000000" x1="17.573593128807147" x2="13.180194846605362" y1="17.573593552109866" y2="28.18019526990808"/>
+  <line stroke="#000000" x1="49.393398282201794" x2="49.39339828220179" y1="49.39339870550447" y2="26.893398705504477"/>
+  <line stroke="#000000" x1="33.483495705504474" x2="17.573593128807147" y1="10.983496128807161" y2="17.57359355210986"/>
+  <line stroke="#000000" x1="38.786796564403566" x2="33.48349570550445" y1="16.286796987706268" y2="10.983496128807161"/>
+  <line stroke="#000000" x1="49.39339828220178" x2="44.09009742330267" y1="26.89339870550447" y2="21.59009784660537"/>
+  <line stroke="#000000" x1="49.39339828220178" x2="49.39339828220178" y1="26.89339870550447" y2="26.89339870550447"/>
+  <line stroke="#000000" x1="33.48349570550445" x2="33.48349570550445" y1="10.983496128807161" y2="10.983496128807161"/>
+  <line stroke="#000000" x1="38.786796564403566" x2="38.786796564403566" y1="16.286796987706268" y2="16.286796987706268"/>
+  <line stroke="#000000" x1="44.09009742330267" x2="44.09009742330267" y1="21.590097846605378" y2="21.590097846605378"/>
+  <line stroke="#000000" x1="42.322330470336304" x2="38.786796564403566" y1="12.751263081773532" y2="16.286796987706268"/>
+  <line stroke="#000000" x1="47.62563132923541" x2="42.322330470336304" y1="18.054563940672637" y2="12.751263081773532"/>
+  <line stroke="#000000" x1="44.09009742330267" x2="47.62563132923541" y1="21.590097846605378" y2="18.054563940672637"/>
+  <line opacity="0.5" stroke="#0000ff" x1="59.99999999999999" x2="60.00000000000002" y1="4.2330268001933296e-07" y2="45.00000042330267"/>
+  <line stroke="#000000" x1="49.39339828220178" x2="49.39339828220181" y1="4.393398705504482" y2="49.39339870550447"/>
+  <line stroke="#000000" x1="59.99999999999999" x2="49.39339828220178" y1="4.2330268001933296e-07" y2="4.393398705504482"/>
+  <line stroke="#000000" x1="60.000000000000014" x2="75.90990257669732" y1="45.00000042330267" y2="29.09009784660535"/>
+  <line stroke="#000000" x1="75.90990257669732" x2="59.999999999999986" y1="6.590097846605347" y2="4.2330268001933296e-07"/>
+  <line stroke="#000000" x1="75.90990257669732" x2="75.90990257669732" y1="14.090097846605348" y2="6.590097846605347"/>
+  <line stroke="#000000" x1="75.90990257669732" x2="75.90990257669732" y1="29.09009784660535" y2="21.590097846605346"/>
+  <line stroke="#000000" x1="75.90990257669732" x2="75.90990257669732" y1="29.09009784660535" y2="29.09009784660535"/>
+  <line stroke="#000000" x1="75.90990257669732" x2="75.90990257669732" y1="6.590097846605347" y2="6.590097846605347"/>
+  <line stroke="#000000" x1="75.90990257669732" x2="75.90990257669732" y1="14.090097846605348" y2="14.090097846605348"/>
+  <line stroke="#000000" x1="75.90990257669732" x2="75.90990257669732" y1="21.590097846605346" y2="21.590097846605346"/>
+  <line stroke="#000000" x1="80.90990257669732" x2="75.90990257669732" y1="14.090097846605348" y2="14.090097846605348"/>
+  <line stroke="#000000" x1="80.90990257669732" x2="80.90990257669732" y1="21.590097846605346" y2="14.090097846605348"/>
+  <line stroke="#000000" x1="75.90990257669732" x2="80.90990257669732" y1="21.590097846605346" y2="21.590097846605346"/>
+  <line opacity="0.5" stroke="#0000ff" x1="102.42640687119287" x2="70.60660171779824" y1="17.57359355210981" y2="49.39339870550446"/>
+  <line stroke="#000000" x1="91.81980515339464" x2="60.00000000000002" y1="13.180195269908026" y2="45.00000042330267"/>
+  <line stroke="#000000" x1="102.42640687119287" x2="91.81980515339464" y1="17.57359355210981" y2="13.180195269908026"/>
+  <line stroke="#000000" x1="70.60660171779824" x2="93.10660171779824" y1="49.39339870550447" y2="49.39339870550446"/>
+  <line stroke="#000000" x1="109.01650429449555" x2="102.42640687119287" y1="33.483496128807126" y2="17.573593552109816"/>
+  <line stroke="#000000" x1="103.71320343559643" x2="109.01650429449555" y1="38.78679698770623" y2="33.483496128807126"/>
+  <line stroke="#000000" x1="93.10660171779824" x2="98.40990257669735" y1="49.39339870550445" y2="44.09009784660533"/>
+  <line stroke="#000000" x1="93.10660171779824" x2="93.10660171779824" y1="49.39339870550445" y2="49.39339870550445"/>
+  <line stroke="#000000" x1="109.01650429449555" x2="109.01650429449555" y1="33.483496128807126" y2="33.483496128807126"/>
+  <line stroke="#000000" x1="103.71320343559643" x2="103.71320343559643" y1="38.78679698770623" y2="38.78679698770623"/>
+  <line stroke="#000000" x1="98.40990257669735" x2="98.40990257669735" y1="44.09009784660533" y2="44.09009784660533"/>
+  <line stroke="#000000" x1="107.24873734152918" x2="103.71320343559643" y1="42.32233089363896" y2="38.78679698770623"/>
+  <line stroke="#000000" x1="101.94543648263009" x2="107.24873734152918" y1="47.62563175253808" y2="42.32233089363896"/>
+  <line stroke="#000000" x1="98.40990257669735" x2="101.94543648263009" y1="44.09009784660533" y2="47.62563175253808"/>
+  <line stroke="#000000" x1="105.90990257669735" x2="105.90990257669735" y1="80.90990300000001" y2="75.90990300000001"/>
+  <line stroke="#000000" x1="98.40990257669735" x2="105.90990257669735" y1="80.90990300000001" y2="80.90990300000001"/>
+  <line stroke="#000000" x1="98.40990257669735" x2="98.40990257669735" y1="75.90990300000001" y2="80.90990300000001"/>
+  <line stroke="#888888" x1="108.15990257669735" x2="108.15990257669735" y1="71.909903" y2="74.90990300000001"/>
+  <line stroke="#888888" x1="108.15990257669735" x2="108.65990257669735" y1="74.90990300000001" y2="74.90990300000001"/>
+  <line stroke="#888888" x1="108.65990257669735" x2="108.65990257669735" y1="74.90990300000001" y2="71.909903"/>
+  <line stroke="#888888" x1="108.65990257669735" x2="108.15990257669735" y1="71.909903" y2="71.909903"/>
+  <line stroke="#888888" x1="85.63262081801238" x2="83.51130047445275" y1="102.47576699182265" y2="104.5970873353823"/>
+  <line stroke="#888888" x1="83.51130047445275" x2="83.86485386504602" y1="104.5970873353823" y2="104.95064072597556"/>
+  <line stroke="#888888" x1="83.86485386504602" x2="85.98617420860566" y1="104.95064072597556" y2="102.82932038241591"/>
+  <line stroke="#888888" x1="85.98617420860566" x2="85.63262081801238" y1="102.82932038241591" y2="102.47576699182265"/>
+  <line stroke="#888888" x1="78.56155300614692" x2="76.79378605318054" y1="102.82932038241591" y2="101.06155342944956"/>
+  <line stroke="#888888" x1="76.79378605318054" x2="75.02601910021419" y1="101.06155342944956" y2="102.82932038241591"/>
+  <line stroke="#888888" x1="75.02601910021419" x2="76.79378605318054" y1="102.82932038241591" y2="104.5970873353823"/>
+  <line stroke="#888888" x1="48.090097423302716" x2="45.090097423302716" y1="108.15990300000003" y2="108.15990300000003"/>
+  <line stroke="#888888" x1="45.090097423302716" x2="45.090097423302716" y1="108.15990300000003" y2="108.65990300000003"/>
+  <line stroke="#888888" x1="45.090097423302716" x2="48.090097423302716" y1="108.65990300000003" y2="108.65990300000003"/>
+  <line stroke="#888888" x1="48.090097423302716" x2="48.090097423302716" y1="108.65990300000003" y2="108.15990300000003"/>
+  <line stroke="#888888" x1="42.840097423302716" x2="42.840097423302716" y1="103.40990300000003" y2="100.90990300000003"/>
+  <line stroke="#888888" x1="42.840097423302716" x2="40.34009742330271" y1="100.90990300000003" y2="100.90990300000003"/>
+  <line stroke="#888888" x1="40.34009742330271" x2="40.34009742330271" y1="100.90990300000003" y2="103.40990300000003"/>
+  <line stroke="#888888" x1="17.52423343148006" x2="15.402913087920412" y1="85.63262124131508" y2="83.51130089775543"/>
+  <line stroke="#888888" x1="15.402913087920412" x2="15.049359697327136" y1="83.51130089775543" y2="83.8648542883487"/>
+  <line stroke="#888888" x1="15.049359697327136" x2="17.17068004088678" y1="83.8648542883487" y2="85.98617463190836"/>
+  <line stroke="#888888" x1="17.17068004088678" x2="17.52423343148006" y1="85.98617463190836" y2="85.63262124131508"/>
+  <line stroke="#888888" x1="17.17068004088677" x2="18.938446993853137" y1="78.5615534294496" y2="76.79378647648322"/>
+  <line stroke="#888888" x1="18.938446993853137" x2="17.17068004088677" y1="76.79378647648322" y2="75.02601952351685"/>
+  <line stroke="#888888" x1="17.17068004088677" x2="15.402913087920398" y1="75.02601952351685" y2="76.79378647648322"/>
+  <line stroke="#888888" x1="11.840097423302682" x2="11.840097423302682" y1="48.09009784660539" y2="45.09009784660538"/>
+  <line stroke="#888888" x1="11.840097423302682" x2="11.340097423302682" y1="45.09009784660538" y2="45.090097846605396"/>
+  <line stroke="#888888" x1="11.340097423302682" x2="11.340097423302682" y1="45.090097846605396" y2="48.090097846605396"/>
+  <line stroke="#888888" x1="11.340097423302682" x2="11.840097423302682" y1="48.090097846605396" y2="48.09009784660539"/>
+  <line stroke="#888888" x1="16.590097423302684" x2="19.090097423302684" y1="42.84009784660539" y2="42.840097846605374"/>
+  <line stroke="#888888" x1="19.090097423302684" x2="19.090097423302684" y1="42.840097846605374" y2="40.34009784660539"/>
+  <line stroke="#888888" x1="19.090097423302684" x2="16.590097423302684" y1="40.34009784660539" y2="40.34009784660539"/>
+  <line stroke="#888888" x1="34.36737918198765" x2="36.48869952554728" y1="17.52423385478272" y2="15.402913511223085"/>
+  <line stroke="#888888" x1="36.48869952554728" x2="36.135146134954" y1="15.402913511223085" y2="15.049360120629816"/>
+  <line stroke="#888888" x1="36.135146134954" x2="34.013825791394375" y1="15.049360120629816" y2="17.170680464189456"/>
+  <line stroke="#888888" x1="34.013825791394375" x2="34.36737918198765" y1="17.170680464189456" y2="17.52423385478272"/>
+  <line stroke="#888888" x1="41.43844699385312" x2="43.20621394681949" y1="17.170680464189456" y2="18.938447417155825"/>
+  <line stroke="#888888" x1="43.20621394681949" x2="44.97398089978585" y1="18.938447417155825" y2="17.170680464189456"/>
+  <line stroke="#888888" x1="44.97398089978585" x2="43.20621394681949" y1="17.170680464189456" y2="15.402913511223085"/>
+  <line stroke="#888888" x1="71.90990257669732" x2="74.9099025766973" y1="11.840097846605348" y2="11.840097846605348"/>
+  <line stroke="#888888" x1="74.9099025766973" x2="74.9099025766973" y1="11.840097846605348" y2="11.340097846605346"/>
+  <line stroke="#888888" x1="74.9099025766973" x2="71.90990257669732" y1="11.340097846605346" y2="11.340097846605346"/>
+  <line stroke="#888888" x1="71.90990257669732" x2="71.90990257669732" y1="11.340097846605346" y2="11.840097846605348"/>
+  <line stroke="#888888" x1="77.1599025766973" x2="77.1599025766973" y1="16.59009784660535" y2="19.09009784660535"/>
+  <line stroke="#888888" x1="77.1599025766973" x2="79.6599025766973" y1="19.09009784660535" y2="19.09009784660535"/>
+  <line stroke="#888888" x1="79.6599025766973" x2="79.6599025766973" y1="19.09009784660535" y2="16.59009784660535"/>
+  <line stroke="#888888" x1="102.47576656851999" x2="104.59708691207963" y1="34.36737960529032" y2="36.488699948849955"/>
+  <line stroke="#888888" x1="104.59708691207963" x2="104.9506403026729" y1="36.488699948849955" y2="36.13514655825667"/>
+  <line stroke="#888888" x1="104.9506403026729" x2="102.82931995911326" y1="36.13514655825667" y2="34.01382621469704"/>
+  <line stroke="#888888" x1="102.82931995911326" x2="102.47576656851999" y1="34.01382621469704" y2="34.36737960529032"/>
+  <line stroke="#888888" x1="102.82931995911326" x2="101.0615530061469" y1="41.438447417155786" y2="43.206214370122154"/>
+  <line stroke="#888888" x1="101.0615530061469" x2="102.82931995911326" y1="43.206214370122154" y2="44.97398132308852"/>
+  <line stroke="#888888" x1="102.82931995911326" x2="104.59708691207963" y1="44.97398132308852" y2="43.206214370122154"/>
+  <line stroke="#888888" x1="103.40990257669735" x2="100.90990257669735" y1="77.15990300000001" y2="77.15990300000001"/>
+  <line stroke="#888888" x1="100.90990257669735" x2="100.90990257669735" y1="77.15990300000001" y2="79.65990300000001"/>
+  <line stroke="#888888" x1="100.90990257669735" x2="103.40990257669735" y1="79.65990300000001" y2="79.65990300000001"/>
+  <line stroke="#000000" x1="151.5900974233027" x2="144.0900974233027" y1="75.90990300000001" y2="75.90990300000001"/>
+  <line stroke="#000000" x1="159.09009742330272" x2="151.5900974233027" y1="75.90990300000001" y2="75.90990300000001"/>
+  <line stroke="#000000" x1="159.09009742330272" x2="159.09009742330272" y1="75.90990300000001" y2="75.90990300000001"/>
+  <line stroke="#000000" x1="136.59009742330272" x2="136.59009742330272" y1="75.90990300000001" y2="75.90990300000001"/>
+  <line stroke="#000000" x1="136.59009742330272" x2="136.59009742330272" y1="70.909903" y2="75.90990300000001"/>
+  <line stroke="#000000" x1="144.0900974233027" x2="136.59009742330272" y1="70.909903" y2="70.909903"/>
+  <line stroke="#000000" x1="144.0900974233027" x2="144.0900974233027" y1="75.90990300000001" y2="70.909903"/>
+  <line stroke="#000000" x1="175.0" x2="159.09009742330272" y1="91.81980557669733" y2="75.90990300000001"/>
+  <line opacity="0.5" stroke="#ff0000" x1="130.0" x2="175.0" y1="91.81980557669733" y2="91.81980557669733"/>
+  <line stroke="#000000" x1="136.59009742330272" x2="130.0" y1="75.90990300000001" y2="91.81980557669733"/>
+  <line stroke="#000000" x1="134.39339828220184" x2="179.39339828220184" y1="102.42640729449555" y2="102.42640729449555"/>
+  <line stroke="#000000" x1="130.0" x2="134.39339828220184" y1="91.81980557669733" y2="102.42640729449555"/>
+  <line opacity="0.5" stroke="#ff0000" x1="147.57359312880715" x2="179.39339828220184" y1="49.39339870550448" y2="81.21320385889912"/>
+  <line stroke="#000000" x1="143.18019484660536" x2="175.0" y1="60.0000004233027" y2="91.81980557669733"/>
+  <line stroke="#000000" x1="147.57359312880715" x2="143.18019484660536" y1="49.39339870550448" y2="60.0000004233027"/>
+  <line stroke="#000000" x1="179.39339828220182" x2="179.39339828220182" y1="81.21320385889912" y2="58.713203858899114"/>
+  <line stroke="#000000" x1="163.4834957055045" x2="147.57359312880715" y1="42.80330128220181" y2="49.39339870550448"/>
+  <line stroke="#000000" x1="174.09009742330267" x2="168.7867965644036" y1="53.409903000000014" y2="48.106602141100915"/>
+  <line stroke="#000000" x1="179.39339828220182" x2="174.09009742330267" y1="58.71320385889912" y2="53.409903000000014"/>
+  <line stroke="#000000" x1="179.39339828220182" x2="179.39339828220182" y1="58.71320385889912" y2="58.71320385889912"/>
+  <line stroke="#000000" x1="163.4834957055045" x2="163.4834957055045" y1="42.80330128220181" y2="42.80330128220181"/>
+  <line stroke="#000000" x1="167.01902961143722" x2="163.4834957055045" y1="39.26776737626907" y2="42.80330128220181"/>
+  <line stroke="#000000" x1="172.32233047033634" x2="167.01902961143722" y1="44.57106823516818" y2="39.26776737626907"/>
+  <line stroke="#000000" x1="168.7867965644036" x2="172.32233047033634" y1="48.106602141100915" y2="44.57106823516818"/>
+  <line opacity="0.5" stroke="#ff0000" x1="190.00000000000003" x2="190.00000000000003" y1="31.819805576697323" y2="76.81980557669733"/>
+  <line stroke="#000000" x1="179.39339828220182" x2="179.39339828220184" y1="36.213203858899114" y2="81.21320385889912"/>
+  <line stroke="#000000" x1="190.00000000000003" x2="179.39339828220182" y1="31.819805576697323" y2="36.213203858899114"/>
+  <line stroke="#000000" x1="190.00000000000003" x2="205.90990257669736" y1="76.81980557669732" y2="60.90990299999999"/>
+  <line stroke="#000000" x1="205.90990257669736" x2="190.00000000000003" y1="38.40990299999999" y2="31.819805576697316"/>
+  <line stroke="#000000" x1="205.90990257669736" x2="205.90990257669736" y1="53.409902999999986" y2="45.90990299999999"/>
+  <line stroke="#000000" x1="205.90990257669736" x2="205.90990257669736" y1="60.90990299999999" y2="53.409902999999986"/>
+  <line stroke="#000000" x1="205.90990257669736" x2="205.90990257669736" y1="60.90990299999999" y2="60.90990299999999"/>
+  <line stroke="#000000" x1="205.90990257669736" x2="205.90990257669736" y1="38.40990299999999" y2="38.40990299999999"/>
+  <line stroke="#000000" x1="210.90990257669736" x2="205.90990257669736" y1="38.40990299999999" y2="38.40990299999999"/>
+  <line stroke="#000000" x1="210.90990257669736" x2="210.90990257669736" y1="45.90990299999999" y2="38.40990299999999"/>
+  <line stroke="#000000" x1="205.90990257669736" x2="210.90990257669736" y1="45.90990299999999" y2="45.90990299999999"/>
+  <line opacity="0.5" stroke="#ff0000" x1="232.42640687119285" x2="200.60660171779824" y1="49.393398705504445" y2="81.2132038588991"/>
+  <line stroke="#000000" x1="221.81980515339464" x2="190.00000000000003" y1="45.00000042330266" y2="76.81980557669733"/>
+  <line stroke="#000000" x1="232.42640687119285" x2="221.81980515339464" y1="49.393398705504445" y2="45.00000042330266"/>
+  <line stroke="#000000" x1="200.60660171779824" x2="223.10660171779827" y1="81.2132038588991" y2="81.21320385889909"/>
+  <line stroke="#000000" x1="239.01650429449558" x2="232.42640687119285" y1="65.30330128220176" y2="49.39339870550444"/>
+  <line stroke="#000000" x1="228.40990257669733" x2="233.71320343559645" y1="75.90990299999999" y2="70.60660214110086"/>
+  <line stroke="#000000" x1="223.10660171779827" x2="228.40990257669733" y1="81.21320385889909" y2="75.90990299999999"/>
+  <line stroke="#000000" x1="223.10660171779827" x2="223.10660171779827" y1="81.21320385889909" y2="81.21320385889909"/>
+  <line stroke="#000000" x1="239.01650429449558" x2="239.01650429449558" y1="65.30330128220176" y2="65.30330128220176"/>
+  <line stroke="#000000" x1="242.5520382004283" x2="239.01650429449558" y1="68.83883518813448" y2="65.30330128220176"/>
+  <line stroke="#000000" x1="237.2487373415292" x2="242.5520382004283" y1="74.1421360470336" y2="68.83883518813448"/>
+  <line stroke="#000000" x1="233.71320343559645" x2="237.2487373415292" y1="70.60660214110086" y2="74.1421360470336"/>
+  <line opacity="0.5" stroke="#ff0000" x1="250.00000000000003" x2="205.00000000000003" y1="91.8198055766973" y2="91.81980557669732"/>
+  <line stroke="#000000" x1="245.60660171779827" x2="200.60660171779824" y1="81.21320385889909" y2="81.2132038588991"/>
+  <line stroke="#000000" x1="250.00000000000003" x2="245.60660171779827" y1="91.8198055766973" y2="81.21320385889909"/>
+  <line stroke="#000000" x1="205.00000000000006" x2="220.90990257669736" y1="91.81980557669732" y2="107.72970815339464"/>
+  <line stroke="#000000" x1="243.40990257669736" x2="250.00000000000006" y1="107.72970815339464" y2="91.8198055766973"/>
+  <line stroke="#000000" x1="228.40990257669733" x2="235.90990257669736" y1="107.72970815339464" y2="107.72970815339464"/>
+  <line stroke="#000000" x1="220.90990257669736" x2="228.40990257669733" y1="107.72970815339464" y2="107.72970815339464"/>
+  <line stroke="#000000" x1="220.90990257669736" x2="220.90990257669736" y1="107.72970815339464" y2="107.72970815339464"/>
+  <line stroke="#000000" x1="243.40990257669736" x2="243.40990257669736" y1="107.72970815339463" y2="107.72970815339463"/>
+  <line stroke="#000000" x1="243.40990257669736" x2="243.40990257669736" y1="112.72970815339463" y2="107.72970815339463"/>
+  <line stroke="#000000" x1="235.90990257669736" x2="243.40990257669736" y1="112.72970815339464" y2="112.72970815339463"/>
+  <line stroke="#000000" x1="235.90990257669736" x2="235.90990257669736" y1="107.72970815339464" y2="112.72970815339464"/>
+  <line opacity="0.5" stroke="#ff0000" x1="232.4264068711929" x2="200.60660171779824" y1="134.24621244789014" y2="102.42640729449555"/>
+  <line stroke="#000000" x1="236.8198051533947" x2="205.00000000000006" y1="123.63961073009195" y2="91.81980557669733"/>
+  <line stroke="#000000" x1="232.4264068711929" x2="236.8198051533947" y1="134.24621244789014" y2="123.63961073009195"/>
+  <line stroke="#000000" x1="200.60660171779824" x2="200.60660171779824" y1="102.42640729449555" y2="124.92640729449556"/>
+  <line stroke="#000000" x1="216.5165042944956" x2="232.4264068711929" y1="140.83630987119287" y2="134.24621244789014"/>
+  <line stroke="#000000" x1="205.9099025766974" x2="211.2132034355965" y1="130.22970815339463" y2="135.53300901229377"/>
+  <line stroke="#000000" x1="200.60660171779824" x2="205.9099025766974" y1="124.92640729449556" y2="130.22970815339463"/>
+  <line stroke="#000000" x1="200.60660171779824" x2="200.60660171779824" y1="124.92640729449556" y2="124.92640729449556"/>
+  <line stroke="#000000" x1="216.5165042944956" x2="216.5165042944956" y1="140.83630987119287" y2="140.83630987119287"/>
+  <line stroke="#000000" x1="212.98097038856287" x2="216.5165042944956" y1="144.3718437771256" y2="140.83630987119287"/>
+  <line stroke="#000000" x1="207.67766952966375" x2="212.98097038856287" y1="139.06854291822646" y2="144.3718437771256"/>
+  <line stroke="#000000" x1="211.2132034355965" x2="207.67766952966375" y1="135.53300901229377" y2="139.06854291822646"/>
+  <line opacity="0.5" stroke="#ff0000" x1="190.00000000000009" x2="190.00000000000003" y1="151.81980557669732" y2="106.81980557669733"/>
+  <line stroke="#000000" x1="200.60660171779824" x2="200.60660171779824" y1="147.4264072944955" y2="102.42640729449555"/>
+  <line stroke="#000000" x1="190.00000000000009" x2="200.60660171779824" y1="151.81980557669732" y2="147.4264072944955"/>
+  <line stroke="#000000" x1="190.00000000000006" x2="174.09009742330272" y1="106.81980557669733" y2="122.72970815339467"/>
+  <line stroke="#000000" x1="174.09009742330272" x2="190.00000000000009" y1="145.22970815339468" y2="151.81980557669732"/>
+  <line stroke="#000000" x1="174.09009742330272" x2="174.09009742330272" y1="130.22970815339465" y2="137.72970815339468"/>
+  <line stroke="#000000" x1="174.09009742330272" x2="174.09009742330272" y1="122.72970815339467" y2="130.22970815339465"/>
+  <line stroke="#000000" x1="174.09009742330272" x2="174.09009742330272" y1="122.72970815339467" y2="122.72970815339467"/>
+  <line stroke="#000000" x1="174.09009742330272" x2="174.09009742330272" y1="145.22970815339468" y2="145.22970815339468"/>
+  <line stroke="#000000" x1="169.09009742330275" x2="174.09009742330272" y1="145.22970815339468" y2="145.22970815339468"/>
+  <line stroke="#000000" x1="169.09009742330275" x2="169.09009742330275" y1="137.72970815339468" y2="145.22970815339468"/>
+  <line stroke="#000000" x1="174.09009742330272" x2="169.09009742330275" y1="137.72970815339468" y2="137.72970815339468"/>
+  <line opacity="0.5" stroke="#ff0000" x1="147.57359312880718" x2="179.39339828220184" y1="134.24621244789023" y2="102.42640729449556"/>
+  <line stroke="#000000" x1="158.18019484660542" x2="190.00000000000003" y1="138.63961073009202" y2="106.81980557669733"/>
+  <line stroke="#000000" x1="147.57359312880718" x2="158.18019484660542" y1="134.24621244789023" y2="138.63961073009202"/>
+  <line stroke="#000000" x1="179.39339828220184" x2="156.89339828220184" y1="102.42640729449555" y2="102.42640729449556"/>
+  <line stroke="#000000" x1="140.9834957055045" x2="147.57359312880718" y1="118.33630987119288" y2="134.24621244789017"/>
+  <line stroke="#000000" x1="151.5900974233027" x2="146.2867965644036" y1="107.72970815339468" y2="113.03300901229377"/>
+  <line stroke="#000000" x1="156.89339828220184" x2="151.5900974233027" y1="102.42640729449558" y2="107.72970815339468"/>
+  <line stroke="#000000" x1="156.89339828220184" x2="156.89339828220184" y1="102.42640729449558" y2="102.42640729449558"/>
+  <line stroke="#000000" x1="140.9834957055045" x2="140.9834957055045" y1="118.3363098711929" y2="118.3363098711929"/>
+  <line stroke="#000000" x1="137.44796179957177" x2="140.9834957055045" y1="114.80077596526017" y2="118.3363098711929"/>
+  <line stroke="#000000" x1="142.75126265847086" x2="137.44796179957177" y1="109.49747510636105" y2="114.80077596526017"/>
+  <line stroke="#000000" x1="146.2867965644036" x2="142.75126265847086" y1="113.03300901229377" y2="109.49747510636105"/>
+  <line stroke="#888888" x1="149.3400974233027" x2="149.3400974233027" y1="79.909903" y2="76.90990300000001"/>
+  <line stroke="#888888" x1="149.3400974233027" x2="148.8400974233027" y1="76.90990300000001" y2="76.90990300000001"/>
+  <line stroke="#888888" x1="148.8400974233027" x2="148.8400974233027" y1="76.90990300000001" y2="79.909903"/>
+  <line stroke="#888888" x1="148.8400974233027" x2="149.3400974233027" y1="79.909903" y2="79.909903"/>
+  <line stroke="#888888" x1="139.09009742330272" x2="141.59009742330272" y1="74.65990300000001" y2="74.65990300000001"/>
+  <line stroke="#888888" x1="141.59009742330272" x2="141.59009742330272" y1="74.65990300000001" y2="72.159903"/>
+  <line stroke="#888888" x1="141.59009742330272" x2="139.09009742330272" y1="72.159903" y2="72.159903"/>
+  <line stroke="#888888" x1="169.67068004088677" x2="171.7920003844464" y1="54.647339867076475" y2="52.52601952351683"/>
+  <line stroke="#888888" x1="171.7920003844464" x2="171.43844699385315" y1="52.52601952351683" y2="52.17246613292356"/>
+  <line stroke="#888888" x1="171.43844699385315" x2="169.31712665029352" y1="52.17246613292356" y2="54.2937864764832"/>
+  <line stroke="#888888" x1="169.31712665029352" x2="169.67068004088677" y1="54.2937864764832" y2="54.647339867076475"/>
+  <line stroke="#888888" x1="166.13514613495406" x2="167.9029130879204" y1="43.68718475868499" y2="45.45495171165135"/>
+  <line stroke="#888888" x1="167.9029130879204" x2="169.67068004088677" y1="45.45495171165135" y2="43.68718475868499"/>
+  <line stroke="#888888" x1="169.67068004088677" x2="167.9029130879204" y1="43.68718475868499" y2="41.919417805718616"/>
+  <line stroke="#888888" x1="201.90990257669736" x2="204.90990257669736" y1="51.159902999999986" y2="51.159902999999986"/>
+  <line stroke="#888888" x1="204.90990257669736" x2="204.90990257669736" y1="51.159902999999986" y2="50.65990299999999"/>
+  <line stroke="#888888" x1="204.90990257669736" x2="201.90990257669736" y1="50.65990299999999" y2="50.65990299999999"/>
+  <line stroke="#888888" x1="201.90990257669736" x2="201.90990257669736" y1="50.65990299999999" y2="51.159902999999986"/>
+  <line stroke="#888888" x1="207.15990257669736" x2="207.15990257669736" y1="40.909902999999986" y2="43.40990299999999"/>
+  <line stroke="#888888" x1="207.15990257669736" x2="209.65990257669736" y1="43.40990299999999" y2="43.40990299999999"/>
+  <line stroke="#888888" x1="209.65990257669736" x2="209.65990257669736" y1="43.40990299999999" y2="40.909902999999986"/>
+  <line stroke="#888888" x1="227.1724657096209" x2="229.29378605318055" y1="71.49048561758406" y2="73.6118059611437"/>
+  <line stroke="#888888" x1="229.29378605318055" x2="229.6473394437738" y1="73.6118059611437" y2="73.25825257055041"/>
+  <line stroke="#888888" x1="229.6473394437738" x2="227.52601910021417" y1="73.25825257055041" y2="71.13693222699078"/>
+  <line stroke="#888888" x1="227.52601910021417" x2="227.1724657096209" y1="71.13693222699078" y2="71.49048561758406"/>
+  <line stroke="#888888" x1="238.13262081801238" x2="236.36485386504603" y1="67.95495171165132" y2="69.72271866461769"/>
+  <line stroke="#888888" x1="236.36485386504603" x2="238.13262081801238" y1="69.72271866461769" y2="71.49048561758406"/>
+  <line stroke="#888888" x1="238.13262081801238" x2="239.90038777097877" y1="71.49048561758406" y2="69.72271866461769"/>
+  <line stroke="#888888" x1="230.65990257669733" x2="230.65990257669733" y1="103.72970815339463" y2="106.72970815339464"/>
+  <line stroke="#888888" x1="230.65990257669733" x2="231.15990257669736" y1="106.72970815339464" y2="106.72970815339464"/>
+  <line stroke="#888888" x1="231.15990257669736" x2="231.15990257669736" y1="106.72970815339464" y2="103.72970815339463"/>
+  <line stroke="#888888" x1="231.15990257669736" x2="230.65990257669733" y1="103.72970815339463" y2="103.72970815339463"/>
+  <line stroke="#888888" x1="240.90990257669736" x2="238.40990257669736" y1="108.97970815339464" y2="108.97970815339464"/>
+  <line stroke="#888888" x1="238.40990257669736" x2="238.40990257669736" y1="108.97970815339464" y2="111.47970815339464"/>
+  <line stroke="#888888" x1="238.40990257669736" x2="240.90990257669736" y1="111.47970815339464" y2="111.47970815339464"/>
+  <line stroke="#888888" x1="210.3293199591133" x2="208.2079996155537" y1="128.99227128631819" y2="131.11359162987785"/>
+  <line stroke="#888888" x1="208.2079996155537" x2="208.56155300614697" y1="131.11359162987785" y2="131.4671450204711"/>
+  <line stroke="#888888" x1="208.56155300614697" x2="210.68287334970657" y1="131.4671450204711" y2="129.34582467691146"/>
+  <line stroke="#888888" x1="210.68287334970657" x2="210.3293199591133" y1="129.34582467691146" y2="128.99227128631819"/>
+  <line stroke="#888888" x1="213.86485386504603" x2="212.09708691207967" y1="139.95242639470968" y2="138.1846594417433"/>
+  <line stroke="#888888" x1="212.09708691207967" x2="210.32931995911332" y1="138.1846594417433" y2="139.95242639470968"/>
+  <line stroke="#888888" x1="210.32931995911332" x2="212.09708691207967" y1="139.95242639470968" y2="141.72019334767603"/>
+  <line stroke="#888888" x1="178.09009742330275" x2="175.09009742330275" y1="132.47970815339465" y2="132.47970815339465"/>
+  <line stroke="#888888" x1="175.09009742330275" x2="175.09009742330275" y1="132.47970815339465" y2="132.97970815339468"/>
+  <line stroke="#888888" x1="175.09009742330275" x2="178.09009742330275" y1="132.97970815339468" y2="132.97970815339468"/>
+  <line stroke="#888888" x1="178.09009742330275" x2="178.09009742330275" y1="132.97970815339468" y2="132.47970815339465"/>
+  <line stroke="#888888" x1="172.84009742330275" x2="172.84009742330275" y1="142.72970815339468" y2="140.22970815339468"/>
+  <line stroke="#888888" x1="172.84009742330275" x2="170.34009742330275" y1="140.22970815339468" y2="140.22970815339468"/>
+  <line stroke="#888888" x1="170.34009742330275" x2="170.34009742330275" y1="140.22970815339468" y2="142.72970815339468"/>
+  <line stroke="#888888" x1="152.82753429037916" x2="150.7062139468195" y1="112.1491255358106" y2="110.02780519225097"/>
+  <line stroke="#888888" x1="150.7062139468195" x2="150.35266055622628" y1="110.02780519225097" y2="110.38135858284423"/>
+  <line stroke="#888888" x1="150.35266055622628" x2="152.47398089978591" y1="110.38135858284423" y2="112.50267892640386"/>
+  <line stroke="#888888" x1="152.47398089978591" x2="152.82753429037916" y1="112.50267892640386" y2="112.1491255358106"/>
+  <line stroke="#888888" x1="141.86737918198767" x2="143.63514613495408" y1="115.68465944174334" y2="113.91689248877698"/>
+  <line stroke="#888888" x1="143.63514613495408" x2="141.86737918198767" y1="113.91689248877698" y2="112.1491255358106"/>
+  <line stroke="#888888" x1="141.86737918198767" x2="140.09961222902135" y1="112.1491255358106" y2="113.91689248877698"/>
+</svg>
diff --git a/rocolib/output/PaddleWheel/graph-autofold-default.dxf b/rocolib/output/PaddleWheel/graph-autofold-default.dxf
new file mode 100644
index 0000000000000000000000000000000000000000..4fd2c772d2682149db527dc9406278890c81075f
--- /dev/null
+++ b/rocolib/output/PaddleWheel/graph-autofold-default.dxf
@@ -0,0 +1,6764 @@
+  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
+8
+  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
+90
+ 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
+ 62
+5
+  8
+cut
+ 10
+105.90990257669735
+ 20
+75.90990300000001
+ 30
+0.0
+ 11
+105.90990257669735
+ 21
+75.90990300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+98.40990257669735
+ 20
+75.90990300000001
+ 30
+0.0
+ 11
+98.40990257669735
+ 21
+75.90990300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+105.90990257669735
+ 20
+75.90990300000001
+ 30
+0.0
+ 11
+113.40990257669735
+ 21
+75.90990300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+90.90990257669733
+ 20
+75.90990300000001
+ 30
+0.0
+ 11
+98.40990257669735
+ 21
+75.90990300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+90.90990257669733
+ 20
+75.90990300000001
+ 30
+0.0
+ 11
+90.90990257669733
+ 21
+75.90990300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+113.40990257669735
+ 20
+75.90990300000001
+ 30
+0.0
+ 11
+113.40990257669735
+ 21
+75.90990300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+75.00000000000001
+ 20
+60.00000042330269
+ 30
+0.0
+ 11
+90.90990257669733
+ 21
+75.90990300000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+120.00000000000003
+ 20
+60.00000042330269
+ 30
+0.0
+ 11
+75.00000000000001
+ 21
+60.00000042330269
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+113.40990257669735
+ 20
+75.90990300000001
+ 30
+0.0
+ 11
+120.00000000000003
+ 21
+60.00000042330269
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+115.60660171779824
+ 20
+49.39339870550447
+ 30
+0.0
+ 11
+70.60660171779824
+ 21
+49.39339870550447
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+120.00000000000003
+ 20
+60.00000042330269
+ 30
+0.0
+ 11
+115.60660171779824
+ 21
+49.39339870550447
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+102.42640687119288
+ 20
+102.42640729449553
+ 30
+0.0
+ 11
+70.60660171779824
+ 21
+70.6066021411009
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+106.81980515339467
+ 20
+91.81980557669732
+ 30
+0.0
+ 11
+75.00000000000001
+ 21
+60.00000042330269
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+102.42640687119288
+ 20
+102.42640729449553
+ 30
+0.0
+ 11
+106.81980515339467
+ 21
+91.81980557669732
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+70.60660171779826
+ 20
+70.6066021411009
+ 30
+0.0
+ 11
+70.60660171779826
+ 21
+93.10660214110091
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+86.51650429449558
+ 20
+109.01650471779821
+ 30
+0.0
+ 11
+102.4264068711929
+ 21
+102.42640729449553
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+81.21320343559647
+ 20
+103.7132038588991
+ 30
+0.0
+ 11
+86.51650429449558
+ 21
+109.01650471779821
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+70.60660171779826
+ 20
+93.10660214110091
+ 30
+0.0
+ 11
+75.90990257669735
+ 21
+98.40990299999999
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+70.60660171779826
+ 20
+93.10660214110091
+ 30
+0.0
+ 11
+70.60660171779826
+ 21
+93.10660214110091
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+86.51650429449558
+ 20
+109.01650471779821
+ 30
+0.0
+ 11
+86.51650429449558
+ 21
+109.01650471779821
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+81.21320343559647
+ 20
+103.7132038588991
+ 30
+0.0
+ 11
+81.21320343559647
+ 21
+103.7132038588991
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+75.90990257669735
+ 20
+98.40990299999999
+ 30
+0.0
+ 11
+75.90990257669735
+ 21
+98.40990299999999
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+77.67766952966373
+ 20
+107.24873776483184
+ 30
+0.0
+ 11
+81.21320343559647
+ 21
+103.7132038588991
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+72.37436867076462
+ 20
+101.94543690593274
+ 30
+0.0
+ 11
+77.67766952966373
+ 21
+107.24873776483184
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+75.90990257669735
+ 20
+98.40990299999999
+ 30
+0.0
+ 11
+72.37436867076462
+ 21
+101.94543690593274
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+60.000000000000036
+ 20
+120.0000004233027
+ 30
+0.0
+ 11
+60.00000000000002
+ 21
+75.0000004233027
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+70.60660171779826
+ 20
+115.60660214110091
+ 30
+0.0
+ 11
+70.60660171779824
+ 21
+70.6066021411009
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+60.000000000000036
+ 20
+120.0000004233027
+ 30
+0.0
+ 11
+70.60660171779826
+ 21
+115.60660214110091
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+60.00000000000002
+ 20
+75.00000042330271
+ 30
+0.0
+ 11
+44.09009742330271
+ 21
+90.90990300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+44.090097423302716
+ 20
+113.40990300000003
+ 30
+0.0
+ 11
+60.000000000000036
+ 21
+120.0000004233027
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+44.090097423302716
+ 20
+105.90990300000003
+ 30
+0.0
+ 11
+44.090097423302716
+ 21
+113.40990300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+44.09009742330271
+ 20
+90.90990300000003
+ 30
+0.0
+ 11
+44.09009742330271
+ 21
+98.40990300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+44.09009742330271
+ 20
+90.90990300000003
+ 30
+0.0
+ 11
+44.09009742330271
+ 21
+90.90990300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+44.090097423302716
+ 20
+113.40990300000003
+ 30
+0.0
+ 11
+44.090097423302716
+ 21
+113.40990300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+44.090097423302716
+ 20
+105.90990300000003
+ 30
+0.0
+ 11
+44.090097423302716
+ 21
+105.90990300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+44.090097423302716
+ 20
+98.40990300000003
+ 30
+0.0
+ 11
+44.090097423302716
+ 21
+98.40990300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+39.090097423302716
+ 20
+105.90990300000003
+ 30
+0.0
+ 11
+44.090097423302716
+ 21
+105.90990300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+39.090097423302716
+ 20
+98.40990300000003
+ 30
+0.0
+ 11
+39.090097423302716
+ 21
+105.90990300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+44.090097423302716
+ 20
+98.40990300000003
+ 30
+0.0
+ 11
+39.090097423302716
+ 21
+98.40990300000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+17.57359312880718
+ 20
+102.42640729449558
+ 30
+0.0
+ 11
+49.393398282201815
+ 21
+70.60660214110091
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+28.180194846605406
+ 20
+106.81980557669736
+ 30
+0.0
+ 11
+60.000000000000036
+ 21
+75.0000004233027
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+17.57359312880718
+ 20
+102.42640729449558
+ 30
+0.0
+ 11
+28.180194846605406
+ 21
+106.81980557669736
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+49.393398282201794
+ 20
+70.60660214110091
+ 30
+0.0
+ 11
+26.89339828220179
+ 21
+70.60660214110092
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+10.983495705504483
+ 20
+86.51650471779827
+ 30
+0.0
+ 11
+17.57359312880718
+ 21
+102.42640729449558
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+16.286796564403588
+ 20
+81.21320385889915
+ 30
+0.0
+ 11
+10.983495705504483
+ 21
+86.51650471779827
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+26.89339828220179
+ 20
+70.60660214110092
+ 30
+0.0
+ 11
+21.590097423302698
+ 21
+75.90990300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+26.89339828220179
+ 20
+70.60660214110092
+ 30
+0.0
+ 11
+26.89339828220179
+ 21
+70.60660214110092
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+10.983495705504483
+ 20
+86.51650471779827
+ 30
+0.0
+ 11
+10.983495705504483
+ 21
+86.51650471779827
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+16.286796564403588
+ 20
+81.21320385889915
+ 30
+0.0
+ 11
+16.286796564403588
+ 21
+81.21320385889915
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+21.590097423302698
+ 20
+75.90990300000004
+ 30
+0.0
+ 11
+21.590097423302698
+ 21
+75.90990300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+12.751262658470852
+ 20
+77.67766995296643
+ 30
+0.0
+ 11
+16.286796564403588
+ 21
+81.21320385889915
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+18.05456351736996
+ 20
+72.37436909406729
+ 30
+0.0
+ 11
+12.751262658470852
+ 21
+77.67766995296643
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+21.590097423302698
+ 20
+75.90990300000004
+ 30
+0.0
+ 11
+18.05456351736996
+ 21
+72.37436909406729
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+1.4210854715202007e-14
+ 20
+60.000000423302716
+ 30
+0.0
+ 11
+45.00000000000002
+ 21
+60.0000004233027
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+4.393398282201801
+ 20
+70.60660214110092
+ 30
+0.0
+ 11
+49.39339828220181
+ 21
+70.60660214110091
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+1.4210854715202007e-14
+ 20
+60.000000423302716
+ 30
+0.0
+ 11
+4.393398282201801
+ 21
+70.60660214110092
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+45.0
+ 20
+60.000000423302694
+ 30
+0.0
+ 11
+29.090097423302684
+ 21
+44.09009784660538
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+6.590097423302681
+ 20
+44.09009784660539
+ 30
+0.0
+ 11
+0.0
+ 21
+60.000000423302716
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+14.090097423302682
+ 20
+44.09009784660539
+ 30
+0.0
+ 11
+6.590097423302681
+ 21
+44.090097846605396
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+29.090097423302684
+ 20
+44.09009784660538
+ 30
+0.0
+ 11
+21.590097423302684
+ 21
+44.09009784660539
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+29.090097423302684
+ 20
+44.09009784660538
+ 30
+0.0
+ 11
+29.090097423302684
+ 21
+44.09009784660538
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+6.590097423302681
+ 20
+44.090097846605396
+ 30
+0.0
+ 11
+6.590097423302681
+ 21
+44.090097846605396
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+14.090097423302682
+ 20
+44.09009784660539
+ 30
+0.0
+ 11
+14.090097423302682
+ 21
+44.09009784660539
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+21.590097423302684
+ 20
+44.09009784660538
+ 30
+0.0
+ 11
+21.590097423302684
+ 21
+44.09009784660538
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+14.090097423302682
+ 20
+39.09009784660539
+ 30
+0.0
+ 11
+14.090097423302682
+ 21
+44.09009784660539
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+21.590097423302684
+ 20
+39.09009784660539
+ 30
+0.0
+ 11
+14.090097423302682
+ 21
+39.09009784660539
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+21.590097423302684
+ 20
+44.09009784660538
+ 30
+0.0
+ 11
+21.590097423302684
+ 21
+39.09009784660539
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+17.573593128807147
+ 20
+17.573593552109866
+ 30
+0.0
+ 11
+49.39339828220179
+ 21
+49.393398705504474
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+13.180194846605362
+ 20
+28.18019526990808
+ 30
+0.0
+ 11
+45.000000000000014
+ 21
+60.000000423302694
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+17.573593128807147
+ 20
+17.573593552109866
+ 30
+0.0
+ 11
+13.180194846605362
+ 21
+28.18019526990808
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+49.393398282201794
+ 20
+49.39339870550447
+ 30
+0.0
+ 11
+49.39339828220179
+ 21
+26.893398705504477
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+33.483495705504474
+ 20
+10.983496128807161
+ 30
+0.0
+ 11
+17.573593128807147
+ 21
+17.57359355210986
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+38.786796564403566
+ 20
+16.286796987706268
+ 30
+0.0
+ 11
+33.48349570550445
+ 21
+10.983496128807161
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+49.39339828220178
+ 20
+26.89339870550447
+ 30
+0.0
+ 11
+44.09009742330267
+ 21
+21.59009784660537
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+49.39339828220178
+ 20
+26.89339870550447
+ 30
+0.0
+ 11
+49.39339828220178
+ 21
+26.89339870550447
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+33.48349570550445
+ 20
+10.983496128807161
+ 30
+0.0
+ 11
+33.48349570550445
+ 21
+10.983496128807161
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+38.786796564403566
+ 20
+16.286796987706268
+ 30
+0.0
+ 11
+38.786796564403566
+ 21
+16.286796987706268
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+44.09009742330267
+ 20
+21.590097846605378
+ 30
+0.0
+ 11
+44.09009742330267
+ 21
+21.590097846605378
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+42.322330470336304
+ 20
+12.751263081773532
+ 30
+0.0
+ 11
+38.786796564403566
+ 21
+16.286796987706268
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+47.62563132923541
+ 20
+18.054563940672637
+ 30
+0.0
+ 11
+42.322330470336304
+ 21
+12.751263081773532
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+44.09009742330267
+ 20
+21.590097846605378
+ 30
+0.0
+ 11
+47.62563132923541
+ 21
+18.054563940672637
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+59.99999999999999
+ 20
+4.2330268001933296e-07
+ 30
+0.0
+ 11
+60.00000000000002
+ 21
+45.00000042330267
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+49.39339828220178
+ 20
+4.393398705504482
+ 30
+0.0
+ 11
+49.39339828220181
+ 21
+49.39339870550447
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+59.99999999999999
+ 20
+4.2330268001933296e-07
+ 30
+0.0
+ 11
+49.39339828220178
+ 21
+4.393398705504482
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+60.000000000000014
+ 20
+45.00000042330267
+ 30
+0.0
+ 11
+75.90990257669732
+ 21
+29.09009784660535
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+75.90990257669732
+ 20
+6.590097846605347
+ 30
+0.0
+ 11
+59.999999999999986
+ 21
+4.2330268001933296e-07
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+75.90990257669732
+ 20
+14.090097846605348
+ 30
+0.0
+ 11
+75.90990257669732
+ 21
+6.590097846605347
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+75.90990257669732
+ 20
+29.09009784660535
+ 30
+0.0
+ 11
+75.90990257669732
+ 21
+21.590097846605346
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+75.90990257669732
+ 20
+29.09009784660535
+ 30
+0.0
+ 11
+75.90990257669732
+ 21
+29.09009784660535
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+75.90990257669732
+ 20
+6.590097846605347
+ 30
+0.0
+ 11
+75.90990257669732
+ 21
+6.590097846605347
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+75.90990257669732
+ 20
+14.090097846605348
+ 30
+0.0
+ 11
+75.90990257669732
+ 21
+14.090097846605348
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+75.90990257669732
+ 20
+21.590097846605346
+ 30
+0.0
+ 11
+75.90990257669732
+ 21
+21.590097846605346
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+80.90990257669732
+ 20
+14.090097846605348
+ 30
+0.0
+ 11
+75.90990257669732
+ 21
+14.090097846605348
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+80.90990257669732
+ 20
+21.590097846605346
+ 30
+0.0
+ 11
+80.90990257669732
+ 21
+14.090097846605348
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+75.90990257669732
+ 20
+21.590097846605346
+ 30
+0.0
+ 11
+80.90990257669732
+ 21
+21.590097846605346
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+102.42640687119287
+ 20
+17.57359355210981
+ 30
+0.0
+ 11
+70.60660171779824
+ 21
+49.39339870550446
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+91.81980515339464
+ 20
+13.180195269908026
+ 30
+0.0
+ 11
+60.00000000000002
+ 21
+45.00000042330267
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+102.42640687119287
+ 20
+17.57359355210981
+ 30
+0.0
+ 11
+91.81980515339464
+ 21
+13.180195269908026
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+70.60660171779824
+ 20
+49.39339870550447
+ 30
+0.0
+ 11
+93.10660171779824
+ 21
+49.39339870550446
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+109.01650429449555
+ 20
+33.483496128807126
+ 30
+0.0
+ 11
+102.42640687119287
+ 21
+17.573593552109816
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+103.71320343559643
+ 20
+38.78679698770623
+ 30
+0.0
+ 11
+109.01650429449555
+ 21
+33.483496128807126
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+93.10660171779824
+ 20
+49.39339870550445
+ 30
+0.0
+ 11
+98.40990257669735
+ 21
+44.09009784660533
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+93.10660171779824
+ 20
+49.39339870550445
+ 30
+0.0
+ 11
+93.10660171779824
+ 21
+49.39339870550445
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+109.01650429449555
+ 20
+33.483496128807126
+ 30
+0.0
+ 11
+109.01650429449555
+ 21
+33.483496128807126
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+103.71320343559643
+ 20
+38.78679698770623
+ 30
+0.0
+ 11
+103.71320343559643
+ 21
+38.78679698770623
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+98.40990257669735
+ 20
+44.09009784660533
+ 30
+0.0
+ 11
+98.40990257669735
+ 21
+44.09009784660533
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+107.24873734152918
+ 20
+42.32233089363896
+ 30
+0.0
+ 11
+103.71320343559643
+ 21
+38.78679698770623
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+101.94543648263009
+ 20
+47.62563175253808
+ 30
+0.0
+ 11
+107.24873734152918
+ 21
+42.32233089363896
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+98.40990257669735
+ 20
+44.09009784660533
+ 30
+0.0
+ 11
+101.94543648263009
+ 21
+47.62563175253808
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+105.90990257669735
+ 20
+80.90990300000001
+ 30
+0.0
+ 11
+105.90990257669735
+ 21
+75.90990300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+98.40990257669735
+ 20
+80.90990300000001
+ 30
+0.0
+ 11
+105.90990257669735
+ 21
+80.90990300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+98.40990257669735
+ 20
+75.90990300000001
+ 30
+0.0
+ 11
+98.40990257669735
+ 21
+80.90990300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+108.15990257669735
+ 20
+71.909903
+ 30
+0.0
+ 11
+108.15990257669735
+ 21
+74.90990300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+108.15990257669735
+ 20
+74.90990300000001
+ 30
+0.0
+ 11
+108.65990257669735
+ 21
+74.90990300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+108.65990257669735
+ 20
+74.90990300000001
+ 30
+0.0
+ 11
+108.65990257669735
+ 21
+71.909903
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+108.65990257669735
+ 20
+71.909903
+ 30
+0.0
+ 11
+108.15990257669735
+ 21
+71.909903
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+85.63262081801238
+ 20
+102.47576699182265
+ 30
+0.0
+ 11
+83.51130047445275
+ 21
+104.5970873353823
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+83.51130047445275
+ 20
+104.5970873353823
+ 30
+0.0
+ 11
+83.86485386504602
+ 21
+104.95064072597556
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+83.86485386504602
+ 20
+104.95064072597556
+ 30
+0.0
+ 11
+85.98617420860566
+ 21
+102.82932038241591
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+85.98617420860566
+ 20
+102.82932038241591
+ 30
+0.0
+ 11
+85.63262081801238
+ 21
+102.47576699182265
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+78.56155300614692
+ 20
+102.82932038241591
+ 30
+0.0
+ 11
+76.79378605318054
+ 21
+101.06155342944956
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+76.79378605318054
+ 20
+101.06155342944956
+ 30
+0.0
+ 11
+75.02601910021419
+ 21
+102.82932038241591
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+75.02601910021419
+ 20
+102.82932038241591
+ 30
+0.0
+ 11
+76.79378605318054
+ 21
+104.5970873353823
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+48.090097423302716
+ 20
+108.15990300000003
+ 30
+0.0
+ 11
+45.090097423302716
+ 21
+108.15990300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+45.090097423302716
+ 20
+108.15990300000003
+ 30
+0.0
+ 11
+45.090097423302716
+ 21
+108.65990300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+45.090097423302716
+ 20
+108.65990300000003
+ 30
+0.0
+ 11
+48.090097423302716
+ 21
+108.65990300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+48.090097423302716
+ 20
+108.65990300000003
+ 30
+0.0
+ 11
+48.090097423302716
+ 21
+108.15990300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+42.840097423302716
+ 20
+103.40990300000003
+ 30
+0.0
+ 11
+42.840097423302716
+ 21
+100.90990300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+42.840097423302716
+ 20
+100.90990300000003
+ 30
+0.0
+ 11
+40.34009742330271
+ 21
+100.90990300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+40.34009742330271
+ 20
+100.90990300000003
+ 30
+0.0
+ 11
+40.34009742330271
+ 21
+103.40990300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+17.52423343148006
+ 20
+85.63262124131508
+ 30
+0.0
+ 11
+15.402913087920412
+ 21
+83.51130089775543
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+15.402913087920412
+ 20
+83.51130089775543
+ 30
+0.0
+ 11
+15.049359697327136
+ 21
+83.8648542883487
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+15.049359697327136
+ 20
+83.8648542883487
+ 30
+0.0
+ 11
+17.17068004088678
+ 21
+85.98617463190836
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+17.17068004088678
+ 20
+85.98617463190836
+ 30
+0.0
+ 11
+17.52423343148006
+ 21
+85.63262124131508
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+17.17068004088677
+ 20
+78.5615534294496
+ 30
+0.0
+ 11
+18.938446993853137
+ 21
+76.79378647648322
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+18.938446993853137
+ 20
+76.79378647648322
+ 30
+0.0
+ 11
+17.17068004088677
+ 21
+75.02601952351685
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+17.17068004088677
+ 20
+75.02601952351685
+ 30
+0.0
+ 11
+15.402913087920398
+ 21
+76.79378647648322
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.840097423302682
+ 20
+48.09009784660539
+ 30
+0.0
+ 11
+11.840097423302682
+ 21
+45.09009784660538
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.840097423302682
+ 20
+45.09009784660538
+ 30
+0.0
+ 11
+11.340097423302682
+ 21
+45.090097846605396
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.340097423302682
+ 20
+45.090097846605396
+ 30
+0.0
+ 11
+11.340097423302682
+ 21
+48.090097846605396
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+11.340097423302682
+ 20
+48.090097846605396
+ 30
+0.0
+ 11
+11.840097423302682
+ 21
+48.09009784660539
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+16.590097423302684
+ 20
+42.84009784660539
+ 30
+0.0
+ 11
+19.090097423302684
+ 21
+42.840097846605374
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+19.090097423302684
+ 20
+42.840097846605374
+ 30
+0.0
+ 11
+19.090097423302684
+ 21
+40.34009784660539
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+19.090097423302684
+ 20
+40.34009784660539
+ 30
+0.0
+ 11
+16.590097423302684
+ 21
+40.34009784660539
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+34.36737918198765
+ 20
+17.52423385478272
+ 30
+0.0
+ 11
+36.48869952554728
+ 21
+15.402913511223085
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+36.48869952554728
+ 20
+15.402913511223085
+ 30
+0.0
+ 11
+36.135146134954
+ 21
+15.049360120629816
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+36.135146134954
+ 20
+15.049360120629816
+ 30
+0.0
+ 11
+34.013825791394375
+ 21
+17.170680464189456
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+34.013825791394375
+ 20
+17.170680464189456
+ 30
+0.0
+ 11
+34.36737918198765
+ 21
+17.52423385478272
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+41.43844699385312
+ 20
+17.170680464189456
+ 30
+0.0
+ 11
+43.20621394681949
+ 21
+18.938447417155825
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+43.20621394681949
+ 20
+18.938447417155825
+ 30
+0.0
+ 11
+44.97398089978585
+ 21
+17.170680464189456
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+44.97398089978585
+ 20
+17.170680464189456
+ 30
+0.0
+ 11
+43.20621394681949
+ 21
+15.402913511223085
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+71.90990257669732
+ 20
+11.840097846605348
+ 30
+0.0
+ 11
+74.9099025766973
+ 21
+11.840097846605348
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+74.9099025766973
+ 20
+11.840097846605348
+ 30
+0.0
+ 11
+74.9099025766973
+ 21
+11.340097846605346
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+74.9099025766973
+ 20
+11.340097846605346
+ 30
+0.0
+ 11
+71.90990257669732
+ 21
+11.340097846605346
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+71.90990257669732
+ 20
+11.340097846605346
+ 30
+0.0
+ 11
+71.90990257669732
+ 21
+11.840097846605348
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+77.1599025766973
+ 20
+16.59009784660535
+ 30
+0.0
+ 11
+77.1599025766973
+ 21
+19.09009784660535
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+77.1599025766973
+ 20
+19.09009784660535
+ 30
+0.0
+ 11
+79.6599025766973
+ 21
+19.09009784660535
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+79.6599025766973
+ 20
+19.09009784660535
+ 30
+0.0
+ 11
+79.6599025766973
+ 21
+16.59009784660535
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+102.47576656851999
+ 20
+34.36737960529032
+ 30
+0.0
+ 11
+104.59708691207963
+ 21
+36.488699948849955
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+104.59708691207963
+ 20
+36.488699948849955
+ 30
+0.0
+ 11
+104.9506403026729
+ 21
+36.13514655825667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+104.9506403026729
+ 20
+36.13514655825667
+ 30
+0.0
+ 11
+102.82931995911326
+ 21
+34.01382621469704
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+102.82931995911326
+ 20
+34.01382621469704
+ 30
+0.0
+ 11
+102.47576656851999
+ 21
+34.36737960529032
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+102.82931995911326
+ 20
+41.438447417155786
+ 30
+0.0
+ 11
+101.0615530061469
+ 21
+43.206214370122154
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+101.0615530061469
+ 20
+43.206214370122154
+ 30
+0.0
+ 11
+102.82931995911326
+ 21
+44.97398132308852
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+102.82931995911326
+ 20
+44.97398132308852
+ 30
+0.0
+ 11
+104.59708691207963
+ 21
+43.206214370122154
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+103.40990257669735
+ 20
+77.15990300000001
+ 30
+0.0
+ 11
+100.90990257669735
+ 21
+77.15990300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+100.90990257669735
+ 20
+77.15990300000001
+ 30
+0.0
+ 11
+100.90990257669735
+ 21
+79.65990300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+100.90990257669735
+ 20
+79.65990300000001
+ 30
+0.0
+ 11
+103.40990257669735
+ 21
+79.65990300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+151.5900974233027
+ 20
+75.90990300000001
+ 30
+0.0
+ 11
+144.0900974233027
+ 21
+75.90990300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+159.09009742330272
+ 20
+75.90990300000001
+ 30
+0.0
+ 11
+151.5900974233027
+ 21
+75.90990300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+159.09009742330272
+ 20
+75.90990300000001
+ 30
+0.0
+ 11
+159.09009742330272
+ 21
+75.90990300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+136.59009742330272
+ 20
+75.90990300000001
+ 30
+0.0
+ 11
+136.59009742330272
+ 21
+75.90990300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+136.59009742330272
+ 20
+70.909903
+ 30
+0.0
+ 11
+136.59009742330272
+ 21
+75.90990300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+144.0900974233027
+ 20
+70.909903
+ 30
+0.0
+ 11
+136.59009742330272
+ 21
+70.909903
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+144.0900974233027
+ 20
+75.90990300000001
+ 30
+0.0
+ 11
+144.0900974233027
+ 21
+70.909903
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+175.0
+ 20
+91.81980557669733
+ 30
+0.0
+ 11
+159.09009742330272
+ 21
+75.90990300000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+130.0
+ 20
+91.81980557669733
+ 30
+0.0
+ 11
+175.0
+ 21
+91.81980557669733
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+136.59009742330272
+ 20
+75.90990300000001
+ 30
+0.0
+ 11
+130.0
+ 21
+91.81980557669733
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+134.39339828220184
+ 20
+102.42640729449555
+ 30
+0.0
+ 11
+179.39339828220184
+ 21
+102.42640729449555
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+130.0
+ 20
+91.81980557669733
+ 30
+0.0
+ 11
+134.39339828220184
+ 21
+102.42640729449555
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+147.57359312880715
+ 20
+49.39339870550448
+ 30
+0.0
+ 11
+179.39339828220184
+ 21
+81.21320385889912
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+143.18019484660536
+ 20
+60.0000004233027
+ 30
+0.0
+ 11
+175.0
+ 21
+91.81980557669733
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+147.57359312880715
+ 20
+49.39339870550448
+ 30
+0.0
+ 11
+143.18019484660536
+ 21
+60.0000004233027
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+179.39339828220182
+ 20
+81.21320385889912
+ 30
+0.0
+ 11
+179.39339828220182
+ 21
+58.713203858899114
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+163.4834957055045
+ 20
+42.80330128220181
+ 30
+0.0
+ 11
+147.57359312880715
+ 21
+49.39339870550448
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+174.09009742330267
+ 20
+53.409903000000014
+ 30
+0.0
+ 11
+168.7867965644036
+ 21
+48.106602141100915
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+179.39339828220182
+ 20
+58.71320385889912
+ 30
+0.0
+ 11
+174.09009742330267
+ 21
+53.409903000000014
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+179.39339828220182
+ 20
+58.71320385889912
+ 30
+0.0
+ 11
+179.39339828220182
+ 21
+58.71320385889912
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+163.4834957055045
+ 20
+42.80330128220181
+ 30
+0.0
+ 11
+163.4834957055045
+ 21
+42.80330128220181
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+167.01902961143722
+ 20
+39.26776737626907
+ 30
+0.0
+ 11
+163.4834957055045
+ 21
+42.80330128220181
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+172.32233047033634
+ 20
+44.57106823516818
+ 30
+0.0
+ 11
+167.01902961143722
+ 21
+39.26776737626907
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+168.7867965644036
+ 20
+48.106602141100915
+ 30
+0.0
+ 11
+172.32233047033634
+ 21
+44.57106823516818
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+190.00000000000003
+ 20
+31.819805576697323
+ 30
+0.0
+ 11
+190.00000000000003
+ 21
+76.81980557669733
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+179.39339828220182
+ 20
+36.213203858899114
+ 30
+0.0
+ 11
+179.39339828220184
+ 21
+81.21320385889912
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+190.00000000000003
+ 20
+31.819805576697323
+ 30
+0.0
+ 11
+179.39339828220182
+ 21
+36.213203858899114
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+190.00000000000003
+ 20
+76.81980557669732
+ 30
+0.0
+ 11
+205.90990257669736
+ 21
+60.90990299999999
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+205.90990257669736
+ 20
+38.40990299999999
+ 30
+0.0
+ 11
+190.00000000000003
+ 21
+31.819805576697316
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+205.90990257669736
+ 20
+53.409902999999986
+ 30
+0.0
+ 11
+205.90990257669736
+ 21
+45.90990299999999
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+205.90990257669736
+ 20
+60.90990299999999
+ 30
+0.0
+ 11
+205.90990257669736
+ 21
+53.409902999999986
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+205.90990257669736
+ 20
+60.90990299999999
+ 30
+0.0
+ 11
+205.90990257669736
+ 21
+60.90990299999999
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+205.90990257669736
+ 20
+38.40990299999999
+ 30
+0.0
+ 11
+205.90990257669736
+ 21
+38.40990299999999
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+210.90990257669736
+ 20
+38.40990299999999
+ 30
+0.0
+ 11
+205.90990257669736
+ 21
+38.40990299999999
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+210.90990257669736
+ 20
+45.90990299999999
+ 30
+0.0
+ 11
+210.90990257669736
+ 21
+38.40990299999999
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+205.90990257669736
+ 20
+45.90990299999999
+ 30
+0.0
+ 11
+210.90990257669736
+ 21
+45.90990299999999
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+232.42640687119285
+ 20
+49.393398705504445
+ 30
+0.0
+ 11
+200.60660171779824
+ 21
+81.2132038588991
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+221.81980515339464
+ 20
+45.00000042330266
+ 30
+0.0
+ 11
+190.00000000000003
+ 21
+76.81980557669733
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+232.42640687119285
+ 20
+49.393398705504445
+ 30
+0.0
+ 11
+221.81980515339464
+ 21
+45.00000042330266
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+200.60660171779824
+ 20
+81.2132038588991
+ 30
+0.0
+ 11
+223.10660171779827
+ 21
+81.21320385889909
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+239.01650429449558
+ 20
+65.30330128220176
+ 30
+0.0
+ 11
+232.42640687119285
+ 21
+49.39339870550444
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+228.40990257669733
+ 20
+75.90990299999999
+ 30
+0.0
+ 11
+233.71320343559645
+ 21
+70.60660214110086
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+223.10660171779827
+ 20
+81.21320385889909
+ 30
+0.0
+ 11
+228.40990257669733
+ 21
+75.90990299999999
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+223.10660171779827
+ 20
+81.21320385889909
+ 30
+0.0
+ 11
+223.10660171779827
+ 21
+81.21320385889909
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+239.01650429449558
+ 20
+65.30330128220176
+ 30
+0.0
+ 11
+239.01650429449558
+ 21
+65.30330128220176
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+242.5520382004283
+ 20
+68.83883518813448
+ 30
+0.0
+ 11
+239.01650429449558
+ 21
+65.30330128220176
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+237.2487373415292
+ 20
+74.1421360470336
+ 30
+0.0
+ 11
+242.5520382004283
+ 21
+68.83883518813448
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+233.71320343559645
+ 20
+70.60660214110086
+ 30
+0.0
+ 11
+237.2487373415292
+ 21
+74.1421360470336
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+250.00000000000003
+ 20
+91.8198055766973
+ 30
+0.0
+ 11
+205.00000000000003
+ 21
+91.81980557669732
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+245.60660171779827
+ 20
+81.21320385889909
+ 30
+0.0
+ 11
+200.60660171779824
+ 21
+81.2132038588991
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+250.00000000000003
+ 20
+91.8198055766973
+ 30
+0.0
+ 11
+245.60660171779827
+ 21
+81.21320385889909
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+205.00000000000006
+ 20
+91.81980557669732
+ 30
+0.0
+ 11
+220.90990257669736
+ 21
+107.72970815339464
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+243.40990257669736
+ 20
+107.72970815339464
+ 30
+0.0
+ 11
+250.00000000000006
+ 21
+91.8198055766973
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+228.40990257669733
+ 20
+107.72970815339464
+ 30
+0.0
+ 11
+235.90990257669736
+ 21
+107.72970815339464
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+220.90990257669736
+ 20
+107.72970815339464
+ 30
+0.0
+ 11
+228.40990257669733
+ 21
+107.72970815339464
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+220.90990257669736
+ 20
+107.72970815339464
+ 30
+0.0
+ 11
+220.90990257669736
+ 21
+107.72970815339464
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+243.40990257669736
+ 20
+107.72970815339463
+ 30
+0.0
+ 11
+243.40990257669736
+ 21
+107.72970815339463
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+243.40990257669736
+ 20
+112.72970815339463
+ 30
+0.0
+ 11
+243.40990257669736
+ 21
+107.72970815339463
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+235.90990257669736
+ 20
+112.72970815339464
+ 30
+0.0
+ 11
+243.40990257669736
+ 21
+112.72970815339463
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+235.90990257669736
+ 20
+107.72970815339464
+ 30
+0.0
+ 11
+235.90990257669736
+ 21
+112.72970815339464
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+232.4264068711929
+ 20
+134.24621244789014
+ 30
+0.0
+ 11
+200.60660171779824
+ 21
+102.42640729449555
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+236.8198051533947
+ 20
+123.63961073009195
+ 30
+0.0
+ 11
+205.00000000000006
+ 21
+91.81980557669733
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+232.4264068711929
+ 20
+134.24621244789014
+ 30
+0.0
+ 11
+236.8198051533947
+ 21
+123.63961073009195
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+200.60660171779824
+ 20
+102.42640729449555
+ 30
+0.0
+ 11
+200.60660171779824
+ 21
+124.92640729449556
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+216.5165042944956
+ 20
+140.83630987119287
+ 30
+0.0
+ 11
+232.4264068711929
+ 21
+134.24621244789014
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+205.9099025766974
+ 20
+130.22970815339463
+ 30
+0.0
+ 11
+211.2132034355965
+ 21
+135.53300901229377
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+200.60660171779824
+ 20
+124.92640729449556
+ 30
+0.0
+ 11
+205.9099025766974
+ 21
+130.22970815339463
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+200.60660171779824
+ 20
+124.92640729449556
+ 30
+0.0
+ 11
+200.60660171779824
+ 21
+124.92640729449556
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+216.5165042944956
+ 20
+140.83630987119287
+ 30
+0.0
+ 11
+216.5165042944956
+ 21
+140.83630987119287
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+212.98097038856287
+ 20
+144.3718437771256
+ 30
+0.0
+ 11
+216.5165042944956
+ 21
+140.83630987119287
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+207.67766952966375
+ 20
+139.06854291822646
+ 30
+0.0
+ 11
+212.98097038856287
+ 21
+144.3718437771256
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+211.2132034355965
+ 20
+135.53300901229377
+ 30
+0.0
+ 11
+207.67766952966375
+ 21
+139.06854291822646
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+190.00000000000009
+ 20
+151.81980557669732
+ 30
+0.0
+ 11
+190.00000000000003
+ 21
+106.81980557669733
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+200.60660171779824
+ 20
+147.4264072944955
+ 30
+0.0
+ 11
+200.60660171779824
+ 21
+102.42640729449555
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+190.00000000000009
+ 20
+151.81980557669732
+ 30
+0.0
+ 11
+200.60660171779824
+ 21
+147.4264072944955
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+190.00000000000006
+ 20
+106.81980557669733
+ 30
+0.0
+ 11
+174.09009742330272
+ 21
+122.72970815339467
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+174.09009742330272
+ 20
+145.22970815339468
+ 30
+0.0
+ 11
+190.00000000000009
+ 21
+151.81980557669732
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+174.09009742330272
+ 20
+130.22970815339465
+ 30
+0.0
+ 11
+174.09009742330272
+ 21
+137.72970815339468
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+174.09009742330272
+ 20
+122.72970815339467
+ 30
+0.0
+ 11
+174.09009742330272
+ 21
+130.22970815339465
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+174.09009742330272
+ 20
+122.72970815339467
+ 30
+0.0
+ 11
+174.09009742330272
+ 21
+122.72970815339467
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+174.09009742330272
+ 20
+145.22970815339468
+ 30
+0.0
+ 11
+174.09009742330272
+ 21
+145.22970815339468
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+169.09009742330275
+ 20
+145.22970815339468
+ 30
+0.0
+ 11
+174.09009742330272
+ 21
+145.22970815339468
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+169.09009742330275
+ 20
+137.72970815339468
+ 30
+0.0
+ 11
+169.09009742330275
+ 21
+145.22970815339468
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+174.09009742330272
+ 20
+137.72970815339468
+ 30
+0.0
+ 11
+169.09009742330275
+ 21
+137.72970815339468
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+147.57359312880718
+ 20
+134.24621244789023
+ 30
+0.0
+ 11
+179.39339828220184
+ 21
+102.42640729449556
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+158.18019484660542
+ 20
+138.63961073009202
+ 30
+0.0
+ 11
+190.00000000000003
+ 21
+106.81980557669733
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+147.57359312880718
+ 20
+134.24621244789023
+ 30
+0.0
+ 11
+158.18019484660542
+ 21
+138.63961073009202
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+179.39339828220184
+ 20
+102.42640729449555
+ 30
+0.0
+ 11
+156.89339828220184
+ 21
+102.42640729449556
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+140.9834957055045
+ 20
+118.33630987119288
+ 30
+0.0
+ 11
+147.57359312880718
+ 21
+134.24621244789017
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+151.5900974233027
+ 20
+107.72970815339468
+ 30
+0.0
+ 11
+146.2867965644036
+ 21
+113.03300901229377
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+156.89339828220184
+ 20
+102.42640729449558
+ 30
+0.0
+ 11
+151.5900974233027
+ 21
+107.72970815339468
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+156.89339828220184
+ 20
+102.42640729449558
+ 30
+0.0
+ 11
+156.89339828220184
+ 21
+102.42640729449558
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+140.9834957055045
+ 20
+118.3363098711929
+ 30
+0.0
+ 11
+140.9834957055045
+ 21
+118.3363098711929
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+137.44796179957177
+ 20
+114.80077596526017
+ 30
+0.0
+ 11
+140.9834957055045
+ 21
+118.3363098711929
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+142.75126265847086
+ 20
+109.49747510636105
+ 30
+0.0
+ 11
+137.44796179957177
+ 21
+114.80077596526017
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+146.2867965644036
+ 20
+113.03300901229377
+ 30
+0.0
+ 11
+142.75126265847086
+ 21
+109.49747510636105
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+149.3400974233027
+ 20
+79.909903
+ 30
+0.0
+ 11
+149.3400974233027
+ 21
+76.90990300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+149.3400974233027
+ 20
+76.90990300000001
+ 30
+0.0
+ 11
+148.8400974233027
+ 21
+76.90990300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+148.8400974233027
+ 20
+76.90990300000001
+ 30
+0.0
+ 11
+148.8400974233027
+ 21
+79.909903
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+148.8400974233027
+ 20
+79.909903
+ 30
+0.0
+ 11
+149.3400974233027
+ 21
+79.909903
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+139.09009742330272
+ 20
+74.65990300000001
+ 30
+0.0
+ 11
+141.59009742330272
+ 21
+74.65990300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+141.59009742330272
+ 20
+74.65990300000001
+ 30
+0.0
+ 11
+141.59009742330272
+ 21
+72.159903
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+141.59009742330272
+ 20
+72.159903
+ 30
+0.0
+ 11
+139.09009742330272
+ 21
+72.159903
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+169.67068004088677
+ 20
+54.647339867076475
+ 30
+0.0
+ 11
+171.7920003844464
+ 21
+52.52601952351683
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+171.7920003844464
+ 20
+52.52601952351683
+ 30
+0.0
+ 11
+171.43844699385315
+ 21
+52.17246613292356
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+171.43844699385315
+ 20
+52.17246613292356
+ 30
+0.0
+ 11
+169.31712665029352
+ 21
+54.2937864764832
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+169.31712665029352
+ 20
+54.2937864764832
+ 30
+0.0
+ 11
+169.67068004088677
+ 21
+54.647339867076475
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+166.13514613495406
+ 20
+43.68718475868499
+ 30
+0.0
+ 11
+167.9029130879204
+ 21
+45.45495171165135
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+167.9029130879204
+ 20
+45.45495171165135
+ 30
+0.0
+ 11
+169.67068004088677
+ 21
+43.68718475868499
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+169.67068004088677
+ 20
+43.68718475868499
+ 30
+0.0
+ 11
+167.9029130879204
+ 21
+41.919417805718616
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+201.90990257669736
+ 20
+51.159902999999986
+ 30
+0.0
+ 11
+204.90990257669736
+ 21
+51.159902999999986
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+204.90990257669736
+ 20
+51.159902999999986
+ 30
+0.0
+ 11
+204.90990257669736
+ 21
+50.65990299999999
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+204.90990257669736
+ 20
+50.65990299999999
+ 30
+0.0
+ 11
+201.90990257669736
+ 21
+50.65990299999999
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+201.90990257669736
+ 20
+50.65990299999999
+ 30
+0.0
+ 11
+201.90990257669736
+ 21
+51.159902999999986
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+207.15990257669736
+ 20
+40.909902999999986
+ 30
+0.0
+ 11
+207.15990257669736
+ 21
+43.40990299999999
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+207.15990257669736
+ 20
+43.40990299999999
+ 30
+0.0
+ 11
+209.65990257669736
+ 21
+43.40990299999999
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+209.65990257669736
+ 20
+43.40990299999999
+ 30
+0.0
+ 11
+209.65990257669736
+ 21
+40.909902999999986
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+227.1724657096209
+ 20
+71.49048561758406
+ 30
+0.0
+ 11
+229.29378605318055
+ 21
+73.6118059611437
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+229.29378605318055
+ 20
+73.6118059611437
+ 30
+0.0
+ 11
+229.6473394437738
+ 21
+73.25825257055041
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+229.6473394437738
+ 20
+73.25825257055041
+ 30
+0.0
+ 11
+227.52601910021417
+ 21
+71.13693222699078
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+227.52601910021417
+ 20
+71.13693222699078
+ 30
+0.0
+ 11
+227.1724657096209
+ 21
+71.49048561758406
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+238.13262081801238
+ 20
+67.95495171165132
+ 30
+0.0
+ 11
+236.36485386504603
+ 21
+69.72271866461769
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+236.36485386504603
+ 20
+69.72271866461769
+ 30
+0.0
+ 11
+238.13262081801238
+ 21
+71.49048561758406
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+238.13262081801238
+ 20
+71.49048561758406
+ 30
+0.0
+ 11
+239.90038777097877
+ 21
+69.72271866461769
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+230.65990257669733
+ 20
+103.72970815339463
+ 30
+0.0
+ 11
+230.65990257669733
+ 21
+106.72970815339464
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+230.65990257669733
+ 20
+106.72970815339464
+ 30
+0.0
+ 11
+231.15990257669736
+ 21
+106.72970815339464
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+231.15990257669736
+ 20
+106.72970815339464
+ 30
+0.0
+ 11
+231.15990257669736
+ 21
+103.72970815339463
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+231.15990257669736
+ 20
+103.72970815339463
+ 30
+0.0
+ 11
+230.65990257669733
+ 21
+103.72970815339463
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+240.90990257669736
+ 20
+108.97970815339464
+ 30
+0.0
+ 11
+238.40990257669736
+ 21
+108.97970815339464
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+238.40990257669736
+ 20
+108.97970815339464
+ 30
+0.0
+ 11
+238.40990257669736
+ 21
+111.47970815339464
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+238.40990257669736
+ 20
+111.47970815339464
+ 30
+0.0
+ 11
+240.90990257669736
+ 21
+111.47970815339464
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+210.3293199591133
+ 20
+128.99227128631819
+ 30
+0.0
+ 11
+208.2079996155537
+ 21
+131.11359162987785
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+208.2079996155537
+ 20
+131.11359162987785
+ 30
+0.0
+ 11
+208.56155300614697
+ 21
+131.4671450204711
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+208.56155300614697
+ 20
+131.4671450204711
+ 30
+0.0
+ 11
+210.68287334970657
+ 21
+129.34582467691146
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+210.68287334970657
+ 20
+129.34582467691146
+ 30
+0.0
+ 11
+210.3293199591133
+ 21
+128.99227128631819
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+213.86485386504603
+ 20
+139.95242639470968
+ 30
+0.0
+ 11
+212.09708691207967
+ 21
+138.1846594417433
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+212.09708691207967
+ 20
+138.1846594417433
+ 30
+0.0
+ 11
+210.32931995911332
+ 21
+139.95242639470968
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+210.32931995911332
+ 20
+139.95242639470968
+ 30
+0.0
+ 11
+212.09708691207967
+ 21
+141.72019334767603
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+178.09009742330275
+ 20
+132.47970815339465
+ 30
+0.0
+ 11
+175.09009742330275
+ 21
+132.47970815339465
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+175.09009742330275
+ 20
+132.47970815339465
+ 30
+0.0
+ 11
+175.09009742330275
+ 21
+132.97970815339468
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+175.09009742330275
+ 20
+132.97970815339468
+ 30
+0.0
+ 11
+178.09009742330275
+ 21
+132.97970815339468
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+178.09009742330275
+ 20
+132.97970815339468
+ 30
+0.0
+ 11
+178.09009742330275
+ 21
+132.47970815339465
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+172.84009742330275
+ 20
+142.72970815339468
+ 30
+0.0
+ 11
+172.84009742330275
+ 21
+140.22970815339468
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+172.84009742330275
+ 20
+140.22970815339468
+ 30
+0.0
+ 11
+170.34009742330275
+ 21
+140.22970815339468
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+170.34009742330275
+ 20
+140.22970815339468
+ 30
+0.0
+ 11
+170.34009742330275
+ 21
+142.72970815339468
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+152.82753429037916
+ 20
+112.1491255358106
+ 30
+0.0
+ 11
+150.7062139468195
+ 21
+110.02780519225097
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+150.7062139468195
+ 20
+110.02780519225097
+ 30
+0.0
+ 11
+150.35266055622628
+ 21
+110.38135858284423
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+150.35266055622628
+ 20
+110.38135858284423
+ 30
+0.0
+ 11
+152.47398089978591
+ 21
+112.50267892640386
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+152.47398089978591
+ 20
+112.50267892640386
+ 30
+0.0
+ 11
+152.82753429037916
+ 21
+112.1491255358106
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+141.86737918198767
+ 20
+115.68465944174334
+ 30
+0.0
+ 11
+143.63514613495408
+ 21
+113.91689248877698
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+143.63514613495408
+ 20
+113.91689248877698
+ 30
+0.0
+ 11
+141.86737918198767
+ 21
+112.1491255358106
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+141.86737918198767
+ 20
+112.1491255358106
+ 30
+0.0
+ 11
+140.09961222902135
+ 21
+113.91689248877698
+ 31
+0.0
+  0
+ENDSEC
+  0
+EOF
diff --git a/rocolib/output/PaddleWheel/graph-autofold-graph.dxf b/rocolib/output/PaddleWheel/graph-autofold-graph.dxf
new file mode 100644
index 0000000000000000000000000000000000000000..8cee1fbbdc23d57cca120876ab1c6b7792f56321
--- /dev/null
+++ b/rocolib/output/PaddleWheel/graph-autofold-graph.dxf
@@ -0,0 +1,6734 @@
+  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
+105.90990257669735
+ 20
+75.90990300000001
+ 30
+0.0
+ 11
+105.90990257669735
+ 21
+75.90990300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+98.40990257669735
+ 20
+75.90990300000001
+ 30
+0.0
+ 11
+98.40990257669735
+ 21
+75.90990300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+105.90990257669735
+ 20
+75.90990300000001
+ 30
+0.0
+ 11
+113.40990257669735
+ 21
+75.90990300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+90.90990257669733
+ 20
+75.90990300000001
+ 30
+0.0
+ 11
+98.40990257669735
+ 21
+75.90990300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+90.90990257669733
+ 20
+75.90990300000001
+ 30
+0.0
+ 11
+90.90990257669733
+ 21
+75.90990300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+113.40990257669735
+ 20
+75.90990300000001
+ 30
+0.0
+ 11
+113.40990257669735
+ 21
+75.90990300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+75.00000000000001
+ 20
+60.00000042330269
+ 30
+0.0
+ 11
+90.90990257669733
+ 21
+75.90990300000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+120.00000000000003
+ 20
+60.00000042330269
+ 30
+0.0
+ 11
+75.00000000000001
+ 21
+60.00000042330269
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+113.40990257669735
+ 20
+75.90990300000001
+ 30
+0.0
+ 11
+120.00000000000003
+ 21
+60.00000042330269
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.60660171779824
+ 20
+49.39339870550447
+ 30
+0.0
+ 11
+70.60660171779824
+ 21
+49.39339870550447
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+120.00000000000003
+ 20
+60.00000042330269
+ 30
+0.0
+ 11
+115.60660171779824
+ 21
+49.39339870550447
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+102.42640687119288
+ 20
+102.42640729449553
+ 30
+0.0
+ 11
+70.60660171779824
+ 21
+70.6066021411009
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+106.81980515339467
+ 20
+91.81980557669732
+ 30
+0.0
+ 11
+75.00000000000001
+ 21
+60.00000042330269
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+102.42640687119288
+ 20
+102.42640729449553
+ 30
+0.0
+ 11
+106.81980515339467
+ 21
+91.81980557669732
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+70.60660171779826
+ 20
+70.6066021411009
+ 30
+0.0
+ 11
+70.60660171779826
+ 21
+93.10660214110091
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+86.51650429449558
+ 20
+109.01650471779821
+ 30
+0.0
+ 11
+102.4264068711929
+ 21
+102.42640729449553
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+81.21320343559647
+ 20
+103.7132038588991
+ 30
+0.0
+ 11
+86.51650429449558
+ 21
+109.01650471779821
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+70.60660171779826
+ 20
+93.10660214110091
+ 30
+0.0
+ 11
+75.90990257669735
+ 21
+98.40990299999999
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+70.60660171779826
+ 20
+93.10660214110091
+ 30
+0.0
+ 11
+70.60660171779826
+ 21
+93.10660214110091
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+86.51650429449558
+ 20
+109.01650471779821
+ 30
+0.0
+ 11
+86.51650429449558
+ 21
+109.01650471779821
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+81.21320343559647
+ 20
+103.7132038588991
+ 30
+0.0
+ 11
+81.21320343559647
+ 21
+103.7132038588991
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+75.90990257669735
+ 20
+98.40990299999999
+ 30
+0.0
+ 11
+75.90990257669735
+ 21
+98.40990299999999
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+77.67766952966373
+ 20
+107.24873776483184
+ 30
+0.0
+ 11
+81.21320343559647
+ 21
+103.7132038588991
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+72.37436867076462
+ 20
+101.94543690593274
+ 30
+0.0
+ 11
+77.67766952966373
+ 21
+107.24873776483184
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+75.90990257669735
+ 20
+98.40990299999999
+ 30
+0.0
+ 11
+72.37436867076462
+ 21
+101.94543690593274
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+60.000000000000036
+ 20
+120.0000004233027
+ 30
+0.0
+ 11
+60.00000000000002
+ 21
+75.0000004233027
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+70.60660171779826
+ 20
+115.60660214110091
+ 30
+0.0
+ 11
+70.60660171779824
+ 21
+70.6066021411009
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+60.000000000000036
+ 20
+120.0000004233027
+ 30
+0.0
+ 11
+70.60660171779826
+ 21
+115.60660214110091
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+60.00000000000002
+ 20
+75.00000042330271
+ 30
+0.0
+ 11
+44.09009742330271
+ 21
+90.90990300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+44.090097423302716
+ 20
+113.40990300000003
+ 30
+0.0
+ 11
+60.000000000000036
+ 21
+120.0000004233027
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+44.090097423302716
+ 20
+105.90990300000003
+ 30
+0.0
+ 11
+44.090097423302716
+ 21
+113.40990300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+44.09009742330271
+ 20
+90.90990300000003
+ 30
+0.0
+ 11
+44.09009742330271
+ 21
+98.40990300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+44.09009742330271
+ 20
+90.90990300000003
+ 30
+0.0
+ 11
+44.09009742330271
+ 21
+90.90990300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+44.090097423302716
+ 20
+113.40990300000003
+ 30
+0.0
+ 11
+44.090097423302716
+ 21
+113.40990300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+44.090097423302716
+ 20
+105.90990300000003
+ 30
+0.0
+ 11
+44.090097423302716
+ 21
+105.90990300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+44.090097423302716
+ 20
+98.40990300000003
+ 30
+0.0
+ 11
+44.090097423302716
+ 21
+98.40990300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+39.090097423302716
+ 20
+105.90990300000003
+ 30
+0.0
+ 11
+44.090097423302716
+ 21
+105.90990300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+39.090097423302716
+ 20
+98.40990300000003
+ 30
+0.0
+ 11
+39.090097423302716
+ 21
+105.90990300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+44.090097423302716
+ 20
+98.40990300000003
+ 30
+0.0
+ 11
+39.090097423302716
+ 21
+98.40990300000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+17.57359312880718
+ 20
+102.42640729449558
+ 30
+0.0
+ 11
+49.393398282201815
+ 21
+70.60660214110091
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+28.180194846605406
+ 20
+106.81980557669736
+ 30
+0.0
+ 11
+60.000000000000036
+ 21
+75.0000004233027
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+17.57359312880718
+ 20
+102.42640729449558
+ 30
+0.0
+ 11
+28.180194846605406
+ 21
+106.81980557669736
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+49.393398282201794
+ 20
+70.60660214110091
+ 30
+0.0
+ 11
+26.89339828220179
+ 21
+70.60660214110092
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+10.983495705504483
+ 20
+86.51650471779827
+ 30
+0.0
+ 11
+17.57359312880718
+ 21
+102.42640729449558
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+16.286796564403588
+ 20
+81.21320385889915
+ 30
+0.0
+ 11
+10.983495705504483
+ 21
+86.51650471779827
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+26.89339828220179
+ 20
+70.60660214110092
+ 30
+0.0
+ 11
+21.590097423302698
+ 21
+75.90990300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+26.89339828220179
+ 20
+70.60660214110092
+ 30
+0.0
+ 11
+26.89339828220179
+ 21
+70.60660214110092
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+10.983495705504483
+ 20
+86.51650471779827
+ 30
+0.0
+ 11
+10.983495705504483
+ 21
+86.51650471779827
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+16.286796564403588
+ 20
+81.21320385889915
+ 30
+0.0
+ 11
+16.286796564403588
+ 21
+81.21320385889915
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+21.590097423302698
+ 20
+75.90990300000004
+ 30
+0.0
+ 11
+21.590097423302698
+ 21
+75.90990300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.751262658470852
+ 20
+77.67766995296643
+ 30
+0.0
+ 11
+16.286796564403588
+ 21
+81.21320385889915
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+18.05456351736996
+ 20
+72.37436909406729
+ 30
+0.0
+ 11
+12.751262658470852
+ 21
+77.67766995296643
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+21.590097423302698
+ 20
+75.90990300000004
+ 30
+0.0
+ 11
+18.05456351736996
+ 21
+72.37436909406729
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+1.4210854715202007e-14
+ 20
+60.000000423302716
+ 30
+0.0
+ 11
+45.00000000000002
+ 21
+60.0000004233027
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+4.393398282201801
+ 20
+70.60660214110092
+ 30
+0.0
+ 11
+49.39339828220181
+ 21
+70.60660214110091
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+1.4210854715202007e-14
+ 20
+60.000000423302716
+ 30
+0.0
+ 11
+4.393398282201801
+ 21
+70.60660214110092
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+45.0
+ 20
+60.000000423302694
+ 30
+0.0
+ 11
+29.090097423302684
+ 21
+44.09009784660538
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+6.590097423302681
+ 20
+44.09009784660539
+ 30
+0.0
+ 11
+0.0
+ 21
+60.000000423302716
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+14.090097423302682
+ 20
+44.09009784660539
+ 30
+0.0
+ 11
+6.590097423302681
+ 21
+44.090097846605396
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+29.090097423302684
+ 20
+44.09009784660538
+ 30
+0.0
+ 11
+21.590097423302684
+ 21
+44.09009784660539
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+29.090097423302684
+ 20
+44.09009784660538
+ 30
+0.0
+ 11
+29.090097423302684
+ 21
+44.09009784660538
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+6.590097423302681
+ 20
+44.090097846605396
+ 30
+0.0
+ 11
+6.590097423302681
+ 21
+44.090097846605396
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+14.090097423302682
+ 20
+44.09009784660539
+ 30
+0.0
+ 11
+14.090097423302682
+ 21
+44.09009784660539
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+21.590097423302684
+ 20
+44.09009784660538
+ 30
+0.0
+ 11
+21.590097423302684
+ 21
+44.09009784660538
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+14.090097423302682
+ 20
+39.09009784660539
+ 30
+0.0
+ 11
+14.090097423302682
+ 21
+44.09009784660539
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+21.590097423302684
+ 20
+39.09009784660539
+ 30
+0.0
+ 11
+14.090097423302682
+ 21
+39.09009784660539
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+21.590097423302684
+ 20
+44.09009784660538
+ 30
+0.0
+ 11
+21.590097423302684
+ 21
+39.09009784660539
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+17.573593128807147
+ 20
+17.573593552109866
+ 30
+0.0
+ 11
+49.39339828220179
+ 21
+49.393398705504474
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+13.180194846605362
+ 20
+28.18019526990808
+ 30
+0.0
+ 11
+45.000000000000014
+ 21
+60.000000423302694
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+17.573593128807147
+ 20
+17.573593552109866
+ 30
+0.0
+ 11
+13.180194846605362
+ 21
+28.18019526990808
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+49.393398282201794
+ 20
+49.39339870550447
+ 30
+0.0
+ 11
+49.39339828220179
+ 21
+26.893398705504477
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+33.483495705504474
+ 20
+10.983496128807161
+ 30
+0.0
+ 11
+17.573593128807147
+ 21
+17.57359355210986
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+38.786796564403566
+ 20
+16.286796987706268
+ 30
+0.0
+ 11
+33.48349570550445
+ 21
+10.983496128807161
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+49.39339828220178
+ 20
+26.89339870550447
+ 30
+0.0
+ 11
+44.09009742330267
+ 21
+21.59009784660537
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+49.39339828220178
+ 20
+26.89339870550447
+ 30
+0.0
+ 11
+49.39339828220178
+ 21
+26.89339870550447
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+33.48349570550445
+ 20
+10.983496128807161
+ 30
+0.0
+ 11
+33.48349570550445
+ 21
+10.983496128807161
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+38.786796564403566
+ 20
+16.286796987706268
+ 30
+0.0
+ 11
+38.786796564403566
+ 21
+16.286796987706268
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+44.09009742330267
+ 20
+21.590097846605378
+ 30
+0.0
+ 11
+44.09009742330267
+ 21
+21.590097846605378
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+42.322330470336304
+ 20
+12.751263081773532
+ 30
+0.0
+ 11
+38.786796564403566
+ 21
+16.286796987706268
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.62563132923541
+ 20
+18.054563940672637
+ 30
+0.0
+ 11
+42.322330470336304
+ 21
+12.751263081773532
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+44.09009742330267
+ 20
+21.590097846605378
+ 30
+0.0
+ 11
+47.62563132923541
+ 21
+18.054563940672637
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+59.99999999999999
+ 20
+4.2330268001933296e-07
+ 30
+0.0
+ 11
+60.00000000000002
+ 21
+45.00000042330267
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+49.39339828220178
+ 20
+4.393398705504482
+ 30
+0.0
+ 11
+49.39339828220181
+ 21
+49.39339870550447
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+59.99999999999999
+ 20
+4.2330268001933296e-07
+ 30
+0.0
+ 11
+49.39339828220178
+ 21
+4.393398705504482
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+60.000000000000014
+ 20
+45.00000042330267
+ 30
+0.0
+ 11
+75.90990257669732
+ 21
+29.09009784660535
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+75.90990257669732
+ 20
+6.590097846605347
+ 30
+0.0
+ 11
+59.999999999999986
+ 21
+4.2330268001933296e-07
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+75.90990257669732
+ 20
+14.090097846605348
+ 30
+0.0
+ 11
+75.90990257669732
+ 21
+6.590097846605347
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+75.90990257669732
+ 20
+29.09009784660535
+ 30
+0.0
+ 11
+75.90990257669732
+ 21
+21.590097846605346
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+75.90990257669732
+ 20
+29.09009784660535
+ 30
+0.0
+ 11
+75.90990257669732
+ 21
+29.09009784660535
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+75.90990257669732
+ 20
+6.590097846605347
+ 30
+0.0
+ 11
+75.90990257669732
+ 21
+6.590097846605347
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+75.90990257669732
+ 20
+14.090097846605348
+ 30
+0.0
+ 11
+75.90990257669732
+ 21
+14.090097846605348
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+75.90990257669732
+ 20
+21.590097846605346
+ 30
+0.0
+ 11
+75.90990257669732
+ 21
+21.590097846605346
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+80.90990257669732
+ 20
+14.090097846605348
+ 30
+0.0
+ 11
+75.90990257669732
+ 21
+14.090097846605348
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+80.90990257669732
+ 20
+21.590097846605346
+ 30
+0.0
+ 11
+80.90990257669732
+ 21
+14.090097846605348
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+75.90990257669732
+ 20
+21.590097846605346
+ 30
+0.0
+ 11
+80.90990257669732
+ 21
+21.590097846605346
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+102.42640687119287
+ 20
+17.57359355210981
+ 30
+0.0
+ 11
+70.60660171779824
+ 21
+49.39339870550446
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+91.81980515339464
+ 20
+13.180195269908026
+ 30
+0.0
+ 11
+60.00000000000002
+ 21
+45.00000042330267
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+102.42640687119287
+ 20
+17.57359355210981
+ 30
+0.0
+ 11
+91.81980515339464
+ 21
+13.180195269908026
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+70.60660171779824
+ 20
+49.39339870550447
+ 30
+0.0
+ 11
+93.10660171779824
+ 21
+49.39339870550446
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+109.01650429449555
+ 20
+33.483496128807126
+ 30
+0.0
+ 11
+102.42640687119287
+ 21
+17.573593552109816
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+103.71320343559643
+ 20
+38.78679698770623
+ 30
+0.0
+ 11
+109.01650429449555
+ 21
+33.483496128807126
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.10660171779824
+ 20
+49.39339870550445
+ 30
+0.0
+ 11
+98.40990257669735
+ 21
+44.09009784660533
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.10660171779824
+ 20
+49.39339870550445
+ 30
+0.0
+ 11
+93.10660171779824
+ 21
+49.39339870550445
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+109.01650429449555
+ 20
+33.483496128807126
+ 30
+0.0
+ 11
+109.01650429449555
+ 21
+33.483496128807126
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+103.71320343559643
+ 20
+38.78679698770623
+ 30
+0.0
+ 11
+103.71320343559643
+ 21
+38.78679698770623
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+98.40990257669735
+ 20
+44.09009784660533
+ 30
+0.0
+ 11
+98.40990257669735
+ 21
+44.09009784660533
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+107.24873734152918
+ 20
+42.32233089363896
+ 30
+0.0
+ 11
+103.71320343559643
+ 21
+38.78679698770623
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.94543648263009
+ 20
+47.62563175253808
+ 30
+0.0
+ 11
+107.24873734152918
+ 21
+42.32233089363896
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+98.40990257669735
+ 20
+44.09009784660533
+ 30
+0.0
+ 11
+101.94543648263009
+ 21
+47.62563175253808
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+105.90990257669735
+ 20
+80.90990300000001
+ 30
+0.0
+ 11
+105.90990257669735
+ 21
+75.90990300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+98.40990257669735
+ 20
+80.90990300000001
+ 30
+0.0
+ 11
+105.90990257669735
+ 21
+80.90990300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+98.40990257669735
+ 20
+75.90990300000001
+ 30
+0.0
+ 11
+98.40990257669735
+ 21
+80.90990300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.15990257669735
+ 20
+71.909903
+ 30
+0.0
+ 11
+108.15990257669735
+ 21
+74.90990300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.15990257669735
+ 20
+74.90990300000001
+ 30
+0.0
+ 11
+108.65990257669735
+ 21
+74.90990300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.65990257669735
+ 20
+74.90990300000001
+ 30
+0.0
+ 11
+108.65990257669735
+ 21
+71.909903
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.65990257669735
+ 20
+71.909903
+ 30
+0.0
+ 11
+108.15990257669735
+ 21
+71.909903
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+85.63262081801238
+ 20
+102.47576699182265
+ 30
+0.0
+ 11
+83.51130047445275
+ 21
+104.5970873353823
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+83.51130047445275
+ 20
+104.5970873353823
+ 30
+0.0
+ 11
+83.86485386504602
+ 21
+104.95064072597556
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+83.86485386504602
+ 20
+104.95064072597556
+ 30
+0.0
+ 11
+85.98617420860566
+ 21
+102.82932038241591
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+85.98617420860566
+ 20
+102.82932038241591
+ 30
+0.0
+ 11
+85.63262081801238
+ 21
+102.47576699182265
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+78.56155300614692
+ 20
+102.82932038241591
+ 30
+0.0
+ 11
+76.79378605318054
+ 21
+101.06155342944956
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+76.79378605318054
+ 20
+101.06155342944956
+ 30
+0.0
+ 11
+75.02601910021419
+ 21
+102.82932038241591
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+75.02601910021419
+ 20
+102.82932038241591
+ 30
+0.0
+ 11
+76.79378605318054
+ 21
+104.5970873353823
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.090097423302716
+ 20
+108.15990300000003
+ 30
+0.0
+ 11
+45.090097423302716
+ 21
+108.15990300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+45.090097423302716
+ 20
+108.15990300000003
+ 30
+0.0
+ 11
+45.090097423302716
+ 21
+108.65990300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+45.090097423302716
+ 20
+108.65990300000003
+ 30
+0.0
+ 11
+48.090097423302716
+ 21
+108.65990300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.090097423302716
+ 20
+108.65990300000003
+ 30
+0.0
+ 11
+48.090097423302716
+ 21
+108.15990300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+42.840097423302716
+ 20
+103.40990300000003
+ 30
+0.0
+ 11
+42.840097423302716
+ 21
+100.90990300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+42.840097423302716
+ 20
+100.90990300000003
+ 30
+0.0
+ 11
+40.34009742330271
+ 21
+100.90990300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+40.34009742330271
+ 20
+100.90990300000003
+ 30
+0.0
+ 11
+40.34009742330271
+ 21
+103.40990300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+17.52423343148006
+ 20
+85.63262124131508
+ 30
+0.0
+ 11
+15.402913087920412
+ 21
+83.51130089775543
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+15.402913087920412
+ 20
+83.51130089775543
+ 30
+0.0
+ 11
+15.049359697327136
+ 21
+83.8648542883487
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+15.049359697327136
+ 20
+83.8648542883487
+ 30
+0.0
+ 11
+17.17068004088678
+ 21
+85.98617463190836
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+17.17068004088678
+ 20
+85.98617463190836
+ 30
+0.0
+ 11
+17.52423343148006
+ 21
+85.63262124131508
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+17.17068004088677
+ 20
+78.5615534294496
+ 30
+0.0
+ 11
+18.938446993853137
+ 21
+76.79378647648322
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+18.938446993853137
+ 20
+76.79378647648322
+ 30
+0.0
+ 11
+17.17068004088677
+ 21
+75.02601952351685
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+17.17068004088677
+ 20
+75.02601952351685
+ 30
+0.0
+ 11
+15.402913087920398
+ 21
+76.79378647648322
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.840097423302682
+ 20
+48.09009784660539
+ 30
+0.0
+ 11
+11.840097423302682
+ 21
+45.09009784660538
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.840097423302682
+ 20
+45.09009784660538
+ 30
+0.0
+ 11
+11.340097423302682
+ 21
+45.090097846605396
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.340097423302682
+ 20
+45.090097846605396
+ 30
+0.0
+ 11
+11.340097423302682
+ 21
+48.090097846605396
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.340097423302682
+ 20
+48.090097846605396
+ 30
+0.0
+ 11
+11.840097423302682
+ 21
+48.09009784660539
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+16.590097423302684
+ 20
+42.84009784660539
+ 30
+0.0
+ 11
+19.090097423302684
+ 21
+42.840097846605374
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+19.090097423302684
+ 20
+42.840097846605374
+ 30
+0.0
+ 11
+19.090097423302684
+ 21
+40.34009784660539
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+19.090097423302684
+ 20
+40.34009784660539
+ 30
+0.0
+ 11
+16.590097423302684
+ 21
+40.34009784660539
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+34.36737918198765
+ 20
+17.52423385478272
+ 30
+0.0
+ 11
+36.48869952554728
+ 21
+15.402913511223085
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+36.48869952554728
+ 20
+15.402913511223085
+ 30
+0.0
+ 11
+36.135146134954
+ 21
+15.049360120629816
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+36.135146134954
+ 20
+15.049360120629816
+ 30
+0.0
+ 11
+34.013825791394375
+ 21
+17.170680464189456
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+34.013825791394375
+ 20
+17.170680464189456
+ 30
+0.0
+ 11
+34.36737918198765
+ 21
+17.52423385478272
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+41.43844699385312
+ 20
+17.170680464189456
+ 30
+0.0
+ 11
+43.20621394681949
+ 21
+18.938447417155825
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+43.20621394681949
+ 20
+18.938447417155825
+ 30
+0.0
+ 11
+44.97398089978585
+ 21
+17.170680464189456
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+44.97398089978585
+ 20
+17.170680464189456
+ 30
+0.0
+ 11
+43.20621394681949
+ 21
+15.402913511223085
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+71.90990257669732
+ 20
+11.840097846605348
+ 30
+0.0
+ 11
+74.9099025766973
+ 21
+11.840097846605348
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+74.9099025766973
+ 20
+11.840097846605348
+ 30
+0.0
+ 11
+74.9099025766973
+ 21
+11.340097846605346
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+74.9099025766973
+ 20
+11.340097846605346
+ 30
+0.0
+ 11
+71.90990257669732
+ 21
+11.340097846605346
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+71.90990257669732
+ 20
+11.340097846605346
+ 30
+0.0
+ 11
+71.90990257669732
+ 21
+11.840097846605348
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+77.1599025766973
+ 20
+16.59009784660535
+ 30
+0.0
+ 11
+77.1599025766973
+ 21
+19.09009784660535
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+77.1599025766973
+ 20
+19.09009784660535
+ 30
+0.0
+ 11
+79.6599025766973
+ 21
+19.09009784660535
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+79.6599025766973
+ 20
+19.09009784660535
+ 30
+0.0
+ 11
+79.6599025766973
+ 21
+16.59009784660535
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+102.47576656851999
+ 20
+34.36737960529032
+ 30
+0.0
+ 11
+104.59708691207963
+ 21
+36.488699948849955
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+104.59708691207963
+ 20
+36.488699948849955
+ 30
+0.0
+ 11
+104.9506403026729
+ 21
+36.13514655825667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+104.9506403026729
+ 20
+36.13514655825667
+ 30
+0.0
+ 11
+102.82931995911326
+ 21
+34.01382621469704
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+102.82931995911326
+ 20
+34.01382621469704
+ 30
+0.0
+ 11
+102.47576656851999
+ 21
+34.36737960529032
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+102.82931995911326
+ 20
+41.438447417155786
+ 30
+0.0
+ 11
+101.0615530061469
+ 21
+43.206214370122154
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.0615530061469
+ 20
+43.206214370122154
+ 30
+0.0
+ 11
+102.82931995911326
+ 21
+44.97398132308852
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+102.82931995911326
+ 20
+44.97398132308852
+ 30
+0.0
+ 11
+104.59708691207963
+ 21
+43.206214370122154
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+103.40990257669735
+ 20
+77.15990300000001
+ 30
+0.0
+ 11
+100.90990257669735
+ 21
+77.15990300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+100.90990257669735
+ 20
+77.15990300000001
+ 30
+0.0
+ 11
+100.90990257669735
+ 21
+79.65990300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+100.90990257669735
+ 20
+79.65990300000001
+ 30
+0.0
+ 11
+103.40990257669735
+ 21
+79.65990300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+151.5900974233027
+ 20
+75.90990300000001
+ 30
+0.0
+ 11
+144.0900974233027
+ 21
+75.90990300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+159.09009742330272
+ 20
+75.90990300000001
+ 30
+0.0
+ 11
+151.5900974233027
+ 21
+75.90990300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+159.09009742330272
+ 20
+75.90990300000001
+ 30
+0.0
+ 11
+159.09009742330272
+ 21
+75.90990300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+136.59009742330272
+ 20
+75.90990300000001
+ 30
+0.0
+ 11
+136.59009742330272
+ 21
+75.90990300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+136.59009742330272
+ 20
+70.909903
+ 30
+0.0
+ 11
+136.59009742330272
+ 21
+75.90990300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.0900974233027
+ 20
+70.909903
+ 30
+0.0
+ 11
+136.59009742330272
+ 21
+70.909903
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.0900974233027
+ 20
+75.90990300000001
+ 30
+0.0
+ 11
+144.0900974233027
+ 21
+70.909903
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+175.0
+ 20
+91.81980557669733
+ 30
+0.0
+ 11
+159.09009742330272
+ 21
+75.90990300000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+130.0
+ 20
+91.81980557669733
+ 30
+0.0
+ 11
+175.0
+ 21
+91.81980557669733
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+136.59009742330272
+ 20
+75.90990300000001
+ 30
+0.0
+ 11
+130.0
+ 21
+91.81980557669733
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+134.39339828220184
+ 20
+102.42640729449555
+ 30
+0.0
+ 11
+179.39339828220184
+ 21
+102.42640729449555
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+130.0
+ 20
+91.81980557669733
+ 30
+0.0
+ 11
+134.39339828220184
+ 21
+102.42640729449555
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+147.57359312880715
+ 20
+49.39339870550448
+ 30
+0.0
+ 11
+179.39339828220184
+ 21
+81.21320385889912
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+143.18019484660536
+ 20
+60.0000004233027
+ 30
+0.0
+ 11
+175.0
+ 21
+91.81980557669733
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+147.57359312880715
+ 20
+49.39339870550448
+ 30
+0.0
+ 11
+143.18019484660536
+ 21
+60.0000004233027
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+179.39339828220182
+ 20
+81.21320385889912
+ 30
+0.0
+ 11
+179.39339828220182
+ 21
+58.713203858899114
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.4834957055045
+ 20
+42.80330128220181
+ 30
+0.0
+ 11
+147.57359312880715
+ 21
+49.39339870550448
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+174.09009742330267
+ 20
+53.409903000000014
+ 30
+0.0
+ 11
+168.7867965644036
+ 21
+48.106602141100915
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+179.39339828220182
+ 20
+58.71320385889912
+ 30
+0.0
+ 11
+174.09009742330267
+ 21
+53.409903000000014
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+179.39339828220182
+ 20
+58.71320385889912
+ 30
+0.0
+ 11
+179.39339828220182
+ 21
+58.71320385889912
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.4834957055045
+ 20
+42.80330128220181
+ 30
+0.0
+ 11
+163.4834957055045
+ 21
+42.80330128220181
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+167.01902961143722
+ 20
+39.26776737626907
+ 30
+0.0
+ 11
+163.4834957055045
+ 21
+42.80330128220181
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+172.32233047033634
+ 20
+44.57106823516818
+ 30
+0.0
+ 11
+167.01902961143722
+ 21
+39.26776737626907
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+168.7867965644036
+ 20
+48.106602141100915
+ 30
+0.0
+ 11
+172.32233047033634
+ 21
+44.57106823516818
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+190.00000000000003
+ 20
+31.819805576697323
+ 30
+0.0
+ 11
+190.00000000000003
+ 21
+76.81980557669733
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+179.39339828220182
+ 20
+36.213203858899114
+ 30
+0.0
+ 11
+179.39339828220184
+ 21
+81.21320385889912
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+190.00000000000003
+ 20
+31.819805576697323
+ 30
+0.0
+ 11
+179.39339828220182
+ 21
+36.213203858899114
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+190.00000000000003
+ 20
+76.81980557669732
+ 30
+0.0
+ 11
+205.90990257669736
+ 21
+60.90990299999999
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+205.90990257669736
+ 20
+38.40990299999999
+ 30
+0.0
+ 11
+190.00000000000003
+ 21
+31.819805576697316
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+205.90990257669736
+ 20
+53.409902999999986
+ 30
+0.0
+ 11
+205.90990257669736
+ 21
+45.90990299999999
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+205.90990257669736
+ 20
+60.90990299999999
+ 30
+0.0
+ 11
+205.90990257669736
+ 21
+53.409902999999986
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+205.90990257669736
+ 20
+60.90990299999999
+ 30
+0.0
+ 11
+205.90990257669736
+ 21
+60.90990299999999
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+205.90990257669736
+ 20
+38.40990299999999
+ 30
+0.0
+ 11
+205.90990257669736
+ 21
+38.40990299999999
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+210.90990257669736
+ 20
+38.40990299999999
+ 30
+0.0
+ 11
+205.90990257669736
+ 21
+38.40990299999999
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+210.90990257669736
+ 20
+45.90990299999999
+ 30
+0.0
+ 11
+210.90990257669736
+ 21
+38.40990299999999
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+205.90990257669736
+ 20
+45.90990299999999
+ 30
+0.0
+ 11
+210.90990257669736
+ 21
+45.90990299999999
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+232.42640687119285
+ 20
+49.393398705504445
+ 30
+0.0
+ 11
+200.60660171779824
+ 21
+81.2132038588991
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+221.81980515339464
+ 20
+45.00000042330266
+ 30
+0.0
+ 11
+190.00000000000003
+ 21
+76.81980557669733
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+232.42640687119285
+ 20
+49.393398705504445
+ 30
+0.0
+ 11
+221.81980515339464
+ 21
+45.00000042330266
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+200.60660171779824
+ 20
+81.2132038588991
+ 30
+0.0
+ 11
+223.10660171779827
+ 21
+81.21320385889909
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+239.01650429449558
+ 20
+65.30330128220176
+ 30
+0.0
+ 11
+232.42640687119285
+ 21
+49.39339870550444
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+228.40990257669733
+ 20
+75.90990299999999
+ 30
+0.0
+ 11
+233.71320343559645
+ 21
+70.60660214110086
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.10660171779827
+ 20
+81.21320385889909
+ 30
+0.0
+ 11
+228.40990257669733
+ 21
+75.90990299999999
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.10660171779827
+ 20
+81.21320385889909
+ 30
+0.0
+ 11
+223.10660171779827
+ 21
+81.21320385889909
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+239.01650429449558
+ 20
+65.30330128220176
+ 30
+0.0
+ 11
+239.01650429449558
+ 21
+65.30330128220176
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+242.5520382004283
+ 20
+68.83883518813448
+ 30
+0.0
+ 11
+239.01650429449558
+ 21
+65.30330128220176
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+237.2487373415292
+ 20
+74.1421360470336
+ 30
+0.0
+ 11
+242.5520382004283
+ 21
+68.83883518813448
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+233.71320343559645
+ 20
+70.60660214110086
+ 30
+0.0
+ 11
+237.2487373415292
+ 21
+74.1421360470336
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+250.00000000000003
+ 20
+91.8198055766973
+ 30
+0.0
+ 11
+205.00000000000003
+ 21
+91.81980557669732
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+245.60660171779827
+ 20
+81.21320385889909
+ 30
+0.0
+ 11
+200.60660171779824
+ 21
+81.2132038588991
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+250.00000000000003
+ 20
+91.8198055766973
+ 30
+0.0
+ 11
+245.60660171779827
+ 21
+81.21320385889909
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+205.00000000000006
+ 20
+91.81980557669732
+ 30
+0.0
+ 11
+220.90990257669736
+ 21
+107.72970815339464
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+243.40990257669736
+ 20
+107.72970815339464
+ 30
+0.0
+ 11
+250.00000000000006
+ 21
+91.8198055766973
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+228.40990257669733
+ 20
+107.72970815339464
+ 30
+0.0
+ 11
+235.90990257669736
+ 21
+107.72970815339464
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+220.90990257669736
+ 20
+107.72970815339464
+ 30
+0.0
+ 11
+228.40990257669733
+ 21
+107.72970815339464
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+220.90990257669736
+ 20
+107.72970815339464
+ 30
+0.0
+ 11
+220.90990257669736
+ 21
+107.72970815339464
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+243.40990257669736
+ 20
+107.72970815339463
+ 30
+0.0
+ 11
+243.40990257669736
+ 21
+107.72970815339463
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+243.40990257669736
+ 20
+112.72970815339463
+ 30
+0.0
+ 11
+243.40990257669736
+ 21
+107.72970815339463
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+235.90990257669736
+ 20
+112.72970815339464
+ 30
+0.0
+ 11
+243.40990257669736
+ 21
+112.72970815339463
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+235.90990257669736
+ 20
+107.72970815339464
+ 30
+0.0
+ 11
+235.90990257669736
+ 21
+112.72970815339464
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+232.4264068711929
+ 20
+134.24621244789014
+ 30
+0.0
+ 11
+200.60660171779824
+ 21
+102.42640729449555
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+236.8198051533947
+ 20
+123.63961073009195
+ 30
+0.0
+ 11
+205.00000000000006
+ 21
+91.81980557669733
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+232.4264068711929
+ 20
+134.24621244789014
+ 30
+0.0
+ 11
+236.8198051533947
+ 21
+123.63961073009195
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+200.60660171779824
+ 20
+102.42640729449555
+ 30
+0.0
+ 11
+200.60660171779824
+ 21
+124.92640729449556
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+216.5165042944956
+ 20
+140.83630987119287
+ 30
+0.0
+ 11
+232.4264068711929
+ 21
+134.24621244789014
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+205.9099025766974
+ 20
+130.22970815339463
+ 30
+0.0
+ 11
+211.2132034355965
+ 21
+135.53300901229377
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+200.60660171779824
+ 20
+124.92640729449556
+ 30
+0.0
+ 11
+205.9099025766974
+ 21
+130.22970815339463
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+200.60660171779824
+ 20
+124.92640729449556
+ 30
+0.0
+ 11
+200.60660171779824
+ 21
+124.92640729449556
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+216.5165042944956
+ 20
+140.83630987119287
+ 30
+0.0
+ 11
+216.5165042944956
+ 21
+140.83630987119287
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+212.98097038856287
+ 20
+144.3718437771256
+ 30
+0.0
+ 11
+216.5165042944956
+ 21
+140.83630987119287
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+207.67766952966375
+ 20
+139.06854291822646
+ 30
+0.0
+ 11
+212.98097038856287
+ 21
+144.3718437771256
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+211.2132034355965
+ 20
+135.53300901229377
+ 30
+0.0
+ 11
+207.67766952966375
+ 21
+139.06854291822646
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+190.00000000000009
+ 20
+151.81980557669732
+ 30
+0.0
+ 11
+190.00000000000003
+ 21
+106.81980557669733
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+200.60660171779824
+ 20
+147.4264072944955
+ 30
+0.0
+ 11
+200.60660171779824
+ 21
+102.42640729449555
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+190.00000000000009
+ 20
+151.81980557669732
+ 30
+0.0
+ 11
+200.60660171779824
+ 21
+147.4264072944955
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+190.00000000000006
+ 20
+106.81980557669733
+ 30
+0.0
+ 11
+174.09009742330272
+ 21
+122.72970815339467
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+174.09009742330272
+ 20
+145.22970815339468
+ 30
+0.0
+ 11
+190.00000000000009
+ 21
+151.81980557669732
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+174.09009742330272
+ 20
+130.22970815339465
+ 30
+0.0
+ 11
+174.09009742330272
+ 21
+137.72970815339468
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+174.09009742330272
+ 20
+122.72970815339467
+ 30
+0.0
+ 11
+174.09009742330272
+ 21
+130.22970815339465
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+174.09009742330272
+ 20
+122.72970815339467
+ 30
+0.0
+ 11
+174.09009742330272
+ 21
+122.72970815339467
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+174.09009742330272
+ 20
+145.22970815339468
+ 30
+0.0
+ 11
+174.09009742330272
+ 21
+145.22970815339468
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+169.09009742330275
+ 20
+145.22970815339468
+ 30
+0.0
+ 11
+174.09009742330272
+ 21
+145.22970815339468
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+169.09009742330275
+ 20
+137.72970815339468
+ 30
+0.0
+ 11
+169.09009742330275
+ 21
+145.22970815339468
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+174.09009742330272
+ 20
+137.72970815339468
+ 30
+0.0
+ 11
+169.09009742330275
+ 21
+137.72970815339468
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+147.57359312880718
+ 20
+134.24621244789023
+ 30
+0.0
+ 11
+179.39339828220184
+ 21
+102.42640729449556
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+158.18019484660542
+ 20
+138.63961073009202
+ 30
+0.0
+ 11
+190.00000000000003
+ 21
+106.81980557669733
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+147.57359312880718
+ 20
+134.24621244789023
+ 30
+0.0
+ 11
+158.18019484660542
+ 21
+138.63961073009202
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+179.39339828220184
+ 20
+102.42640729449555
+ 30
+0.0
+ 11
+156.89339828220184
+ 21
+102.42640729449556
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+140.9834957055045
+ 20
+118.33630987119288
+ 30
+0.0
+ 11
+147.57359312880718
+ 21
+134.24621244789017
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+151.5900974233027
+ 20
+107.72970815339468
+ 30
+0.0
+ 11
+146.2867965644036
+ 21
+113.03300901229377
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+156.89339828220184
+ 20
+102.42640729449558
+ 30
+0.0
+ 11
+151.5900974233027
+ 21
+107.72970815339468
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+156.89339828220184
+ 20
+102.42640729449558
+ 30
+0.0
+ 11
+156.89339828220184
+ 21
+102.42640729449558
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+140.9834957055045
+ 20
+118.3363098711929
+ 30
+0.0
+ 11
+140.9834957055045
+ 21
+118.3363098711929
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+137.44796179957177
+ 20
+114.80077596526017
+ 30
+0.0
+ 11
+140.9834957055045
+ 21
+118.3363098711929
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+142.75126265847086
+ 20
+109.49747510636105
+ 30
+0.0
+ 11
+137.44796179957177
+ 21
+114.80077596526017
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+146.2867965644036
+ 20
+113.03300901229377
+ 30
+0.0
+ 11
+142.75126265847086
+ 21
+109.49747510636105
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+149.3400974233027
+ 20
+79.909903
+ 30
+0.0
+ 11
+149.3400974233027
+ 21
+76.90990300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+149.3400974233027
+ 20
+76.90990300000001
+ 30
+0.0
+ 11
+148.8400974233027
+ 21
+76.90990300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+148.8400974233027
+ 20
+76.90990300000001
+ 30
+0.0
+ 11
+148.8400974233027
+ 21
+79.909903
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+148.8400974233027
+ 20
+79.909903
+ 30
+0.0
+ 11
+149.3400974233027
+ 21
+79.909903
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+139.09009742330272
+ 20
+74.65990300000001
+ 30
+0.0
+ 11
+141.59009742330272
+ 21
+74.65990300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+141.59009742330272
+ 20
+74.65990300000001
+ 30
+0.0
+ 11
+141.59009742330272
+ 21
+72.159903
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+141.59009742330272
+ 20
+72.159903
+ 30
+0.0
+ 11
+139.09009742330272
+ 21
+72.159903
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+169.67068004088677
+ 20
+54.647339867076475
+ 30
+0.0
+ 11
+171.7920003844464
+ 21
+52.52601952351683
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+171.7920003844464
+ 20
+52.52601952351683
+ 30
+0.0
+ 11
+171.43844699385315
+ 21
+52.17246613292356
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+171.43844699385315
+ 20
+52.17246613292356
+ 30
+0.0
+ 11
+169.31712665029352
+ 21
+54.2937864764832
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+169.31712665029352
+ 20
+54.2937864764832
+ 30
+0.0
+ 11
+169.67068004088677
+ 21
+54.647339867076475
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.13514613495406
+ 20
+43.68718475868499
+ 30
+0.0
+ 11
+167.9029130879204
+ 21
+45.45495171165135
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+167.9029130879204
+ 20
+45.45495171165135
+ 30
+0.0
+ 11
+169.67068004088677
+ 21
+43.68718475868499
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+169.67068004088677
+ 20
+43.68718475868499
+ 30
+0.0
+ 11
+167.9029130879204
+ 21
+41.919417805718616
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+201.90990257669736
+ 20
+51.159902999999986
+ 30
+0.0
+ 11
+204.90990257669736
+ 21
+51.159902999999986
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+204.90990257669736
+ 20
+51.159902999999986
+ 30
+0.0
+ 11
+204.90990257669736
+ 21
+50.65990299999999
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+204.90990257669736
+ 20
+50.65990299999999
+ 30
+0.0
+ 11
+201.90990257669736
+ 21
+50.65990299999999
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+201.90990257669736
+ 20
+50.65990299999999
+ 30
+0.0
+ 11
+201.90990257669736
+ 21
+51.159902999999986
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+207.15990257669736
+ 20
+40.909902999999986
+ 30
+0.0
+ 11
+207.15990257669736
+ 21
+43.40990299999999
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+207.15990257669736
+ 20
+43.40990299999999
+ 30
+0.0
+ 11
+209.65990257669736
+ 21
+43.40990299999999
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+209.65990257669736
+ 20
+43.40990299999999
+ 30
+0.0
+ 11
+209.65990257669736
+ 21
+40.909902999999986
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+227.1724657096209
+ 20
+71.49048561758406
+ 30
+0.0
+ 11
+229.29378605318055
+ 21
+73.6118059611437
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+229.29378605318055
+ 20
+73.6118059611437
+ 30
+0.0
+ 11
+229.6473394437738
+ 21
+73.25825257055041
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+229.6473394437738
+ 20
+73.25825257055041
+ 30
+0.0
+ 11
+227.52601910021417
+ 21
+71.13693222699078
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+227.52601910021417
+ 20
+71.13693222699078
+ 30
+0.0
+ 11
+227.1724657096209
+ 21
+71.49048561758406
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+238.13262081801238
+ 20
+67.95495171165132
+ 30
+0.0
+ 11
+236.36485386504603
+ 21
+69.72271866461769
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+236.36485386504603
+ 20
+69.72271866461769
+ 30
+0.0
+ 11
+238.13262081801238
+ 21
+71.49048561758406
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+238.13262081801238
+ 20
+71.49048561758406
+ 30
+0.0
+ 11
+239.90038777097877
+ 21
+69.72271866461769
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+230.65990257669733
+ 20
+103.72970815339463
+ 30
+0.0
+ 11
+230.65990257669733
+ 21
+106.72970815339464
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+230.65990257669733
+ 20
+106.72970815339464
+ 30
+0.0
+ 11
+231.15990257669736
+ 21
+106.72970815339464
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+231.15990257669736
+ 20
+106.72970815339464
+ 30
+0.0
+ 11
+231.15990257669736
+ 21
+103.72970815339463
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+231.15990257669736
+ 20
+103.72970815339463
+ 30
+0.0
+ 11
+230.65990257669733
+ 21
+103.72970815339463
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+240.90990257669736
+ 20
+108.97970815339464
+ 30
+0.0
+ 11
+238.40990257669736
+ 21
+108.97970815339464
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+238.40990257669736
+ 20
+108.97970815339464
+ 30
+0.0
+ 11
+238.40990257669736
+ 21
+111.47970815339464
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+238.40990257669736
+ 20
+111.47970815339464
+ 30
+0.0
+ 11
+240.90990257669736
+ 21
+111.47970815339464
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+210.3293199591133
+ 20
+128.99227128631819
+ 30
+0.0
+ 11
+208.2079996155537
+ 21
+131.11359162987785
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+208.2079996155537
+ 20
+131.11359162987785
+ 30
+0.0
+ 11
+208.56155300614697
+ 21
+131.4671450204711
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+208.56155300614697
+ 20
+131.4671450204711
+ 30
+0.0
+ 11
+210.68287334970657
+ 21
+129.34582467691146
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+210.68287334970657
+ 20
+129.34582467691146
+ 30
+0.0
+ 11
+210.3293199591133
+ 21
+128.99227128631819
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+213.86485386504603
+ 20
+139.95242639470968
+ 30
+0.0
+ 11
+212.09708691207967
+ 21
+138.1846594417433
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+212.09708691207967
+ 20
+138.1846594417433
+ 30
+0.0
+ 11
+210.32931995911332
+ 21
+139.95242639470968
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+210.32931995911332
+ 20
+139.95242639470968
+ 30
+0.0
+ 11
+212.09708691207967
+ 21
+141.72019334767603
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+178.09009742330275
+ 20
+132.47970815339465
+ 30
+0.0
+ 11
+175.09009742330275
+ 21
+132.47970815339465
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+175.09009742330275
+ 20
+132.47970815339465
+ 30
+0.0
+ 11
+175.09009742330275
+ 21
+132.97970815339468
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+175.09009742330275
+ 20
+132.97970815339468
+ 30
+0.0
+ 11
+178.09009742330275
+ 21
+132.97970815339468
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+178.09009742330275
+ 20
+132.97970815339468
+ 30
+0.0
+ 11
+178.09009742330275
+ 21
+132.47970815339465
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+172.84009742330275
+ 20
+142.72970815339468
+ 30
+0.0
+ 11
+172.84009742330275
+ 21
+140.22970815339468
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+172.84009742330275
+ 20
+140.22970815339468
+ 30
+0.0
+ 11
+170.34009742330275
+ 21
+140.22970815339468
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+170.34009742330275
+ 20
+140.22970815339468
+ 30
+0.0
+ 11
+170.34009742330275
+ 21
+142.72970815339468
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+152.82753429037916
+ 20
+112.1491255358106
+ 30
+0.0
+ 11
+150.7062139468195
+ 21
+110.02780519225097
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+150.7062139468195
+ 20
+110.02780519225097
+ 30
+0.0
+ 11
+150.35266055622628
+ 21
+110.38135858284423
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+150.35266055622628
+ 20
+110.38135858284423
+ 30
+0.0
+ 11
+152.47398089978591
+ 21
+112.50267892640386
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+152.47398089978591
+ 20
+112.50267892640386
+ 30
+0.0
+ 11
+152.82753429037916
+ 21
+112.1491255358106
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+141.86737918198767
+ 20
+115.68465944174334
+ 30
+0.0
+ 11
+143.63514613495408
+ 21
+113.91689248877698
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+143.63514613495408
+ 20
+113.91689248877698
+ 30
+0.0
+ 11
+141.86737918198767
+ 21
+112.1491255358106
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+141.86737918198767
+ 20
+112.1491255358106
+ 30
+0.0
+ 11
+140.09961222902135
+ 21
+113.91689248877698
+ 31
+0.0
+  0
+ENDSEC
+  0
+EOF
diff --git a/rocolib/output/PaddleWheel/graph-lasercutter.svg b/rocolib/output/PaddleWheel/graph-lasercutter.svg
new file mode 100644
index 0000000000000000000000000000000000000000..dfa6f82d591cd64a3dbcb504b9ac4ff593d9986a
--- /dev/null
+++ b/rocolib/output/PaddleWheel/graph-lasercutter.svg
@@ -0,0 +1,324 @@
+<?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="151.819806mm" version="1.1" viewBox="0.000000 0.000000 250.000000 151.819806" width="250.000000mm">
+  <defs/>
+  <line stroke="#000000" x1="105.90990257669735" x2="105.90990257669735" y1="75.90990300000001" y2="75.90990300000001"/>
+  <line stroke="#000000" x1="98.40990257669735" x2="98.40990257669735" y1="75.90990300000001" y2="75.90990300000001"/>
+  <line stroke="#000000" x1="105.90990257669735" x2="113.40990257669735" y1="75.90990300000001" y2="75.90990300000001"/>
+  <line stroke="#000000" x1="90.90990257669733" x2="98.40990257669735" y1="75.90990300000001" y2="75.90990300000001"/>
+  <line stroke="#000000" x1="90.90990257669733" x2="90.90990257669733" y1="75.90990300000001" y2="75.90990300000001"/>
+  <line stroke="#000000" x1="113.40990257669735" x2="113.40990257669735" y1="75.90990300000001" y2="75.90990300000001"/>
+  <line stroke="#000000" x1="75.00000000000001" x2="90.90990257669733" y1="60.00000042330269" y2="75.90990300000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="120.00000000000003" x2="75.00000000000001" y1="60.00000042330269" y2="60.00000042330269"/>
+  <line stroke="#000000" x1="113.40990257669735" x2="120.00000000000003" y1="75.90990300000001" y2="60.00000042330269"/>
+  <line stroke="#000000" x1="115.60660171779824" x2="70.60660171779824" y1="49.39339870550447" y2="49.39339870550447"/>
+  <line stroke="#000000" x1="120.00000000000003" x2="115.60660171779824" y1="60.00000042330269" y2="49.39339870550447"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="102.42640687119288" x2="70.60660171779824" y1="102.42640729449553" y2="70.6066021411009"/>
+  <line stroke="#000000" x1="106.81980515339467" x2="75.00000000000001" y1="91.81980557669732" y2="60.00000042330269"/>
+  <line stroke="#000000" x1="102.42640687119288" x2="106.81980515339467" y1="102.42640729449553" y2="91.81980557669732"/>
+  <line stroke="#000000" x1="70.60660171779826" x2="70.60660171779826" y1="70.6066021411009" y2="93.10660214110091"/>
+  <line stroke="#000000" x1="86.51650429449558" x2="102.4264068711929" y1="109.01650471779821" y2="102.42640729449553"/>
+  <line stroke="#000000" x1="81.21320343559647" x2="86.51650429449558" y1="103.7132038588991" y2="109.01650471779821"/>
+  <line stroke="#000000" x1="70.60660171779826" x2="75.90990257669735" y1="93.10660214110091" y2="98.40990299999999"/>
+  <line stroke="#000000" x1="70.60660171779826" x2="70.60660171779826" y1="93.10660214110091" y2="93.10660214110091"/>
+  <line stroke="#000000" x1="86.51650429449558" x2="86.51650429449558" y1="109.01650471779821" y2="109.01650471779821"/>
+  <line stroke="#000000" x1="81.21320343559647" x2="81.21320343559647" y1="103.7132038588991" y2="103.7132038588991"/>
+  <line stroke="#000000" x1="75.90990257669735" x2="75.90990257669735" y1="98.40990299999999" y2="98.40990299999999"/>
+  <line stroke="#000000" x1="77.67766952966373" x2="81.21320343559647" y1="107.24873776483184" y2="103.7132038588991"/>
+  <line stroke="#000000" x1="72.37436867076462" x2="77.67766952966373" y1="101.94543690593274" y2="107.24873776483184"/>
+  <line stroke="#000000" x1="75.90990257669735" x2="72.37436867076462" y1="98.40990299999999" y2="101.94543690593274"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="60.000000000000036" x2="60.00000000000002" y1="120.0000004233027" y2="75.0000004233027"/>
+  <line stroke="#000000" x1="70.60660171779826" x2="70.60660171779824" y1="115.60660214110091" y2="70.6066021411009"/>
+  <line stroke="#000000" x1="60.000000000000036" x2="70.60660171779826" y1="120.0000004233027" y2="115.60660214110091"/>
+  <line stroke="#000000" x1="60.00000000000002" x2="44.09009742330271" y1="75.00000042330271" y2="90.90990300000003"/>
+  <line stroke="#000000" x1="44.090097423302716" x2="60.000000000000036" y1="113.40990300000003" y2="120.0000004233027"/>
+  <line stroke="#000000" x1="44.090097423302716" x2="44.090097423302716" y1="105.90990300000003" y2="113.40990300000003"/>
+  <line stroke="#000000" x1="44.09009742330271" x2="44.09009742330271" y1="90.90990300000003" y2="98.40990300000003"/>
+  <line stroke="#000000" x1="44.09009742330271" x2="44.09009742330271" y1="90.90990300000003" y2="90.90990300000003"/>
+  <line stroke="#000000" x1="44.090097423302716" x2="44.090097423302716" y1="113.40990300000003" y2="113.40990300000003"/>
+  <line stroke="#000000" x1="44.090097423302716" x2="44.090097423302716" y1="105.90990300000003" y2="105.90990300000003"/>
+  <line stroke="#000000" x1="44.090097423302716" x2="44.090097423302716" y1="98.40990300000003" y2="98.40990300000003"/>
+  <line stroke="#000000" x1="39.090097423302716" x2="44.090097423302716" y1="105.90990300000003" y2="105.90990300000003"/>
+  <line stroke="#000000" x1="39.090097423302716" x2="39.090097423302716" y1="98.40990300000003" y2="105.90990300000003"/>
+  <line stroke="#000000" x1="44.090097423302716" x2="39.090097423302716" y1="98.40990300000003" y2="98.40990300000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="17.57359312880718" x2="49.393398282201815" y1="102.42640729449558" y2="70.60660214110091"/>
+  <line stroke="#000000" x1="28.180194846605406" x2="60.000000000000036" y1="106.81980557669736" y2="75.0000004233027"/>
+  <line stroke="#000000" x1="17.57359312880718" x2="28.180194846605406" y1="102.42640729449558" y2="106.81980557669736"/>
+  <line stroke="#000000" x1="49.393398282201794" x2="26.89339828220179" y1="70.60660214110091" y2="70.60660214110092"/>
+  <line stroke="#000000" x1="10.983495705504483" x2="17.57359312880718" y1="86.51650471779827" y2="102.42640729449558"/>
+  <line stroke="#000000" x1="16.286796564403588" x2="10.983495705504483" y1="81.21320385889915" y2="86.51650471779827"/>
+  <line stroke="#000000" x1="26.89339828220179" x2="21.590097423302698" y1="70.60660214110092" y2="75.90990300000004"/>
+  <line stroke="#000000" x1="26.89339828220179" x2="26.89339828220179" y1="70.60660214110092" y2="70.60660214110092"/>
+  <line stroke="#000000" x1="10.983495705504483" x2="10.983495705504483" y1="86.51650471779827" y2="86.51650471779827"/>
+  <line stroke="#000000" x1="16.286796564403588" x2="16.286796564403588" y1="81.21320385889915" y2="81.21320385889915"/>
+  <line stroke="#000000" x1="21.590097423302698" x2="21.590097423302698" y1="75.90990300000004" y2="75.90990300000004"/>
+  <line stroke="#000000" x1="12.751262658470852" x2="16.286796564403588" y1="77.67766995296643" y2="81.21320385889915"/>
+  <line stroke="#000000" x1="18.05456351736996" x2="12.751262658470852" y1="72.37436909406729" y2="77.67766995296643"/>
+  <line stroke="#000000" x1="21.590097423302698" x2="18.05456351736996" y1="75.90990300000004" y2="72.37436909406729"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="1.4210854715202007e-14" x2="45.00000000000002" y1="60.000000423302716" y2="60.0000004233027"/>
+  <line stroke="#000000" x1="4.393398282201801" x2="49.39339828220181" y1="70.60660214110092" y2="70.60660214110091"/>
+  <line stroke="#000000" x1="1.4210854715202007e-14" x2="4.393398282201801" y1="60.000000423302716" y2="70.60660214110092"/>
+  <line stroke="#000000" x1="45.0" x2="29.090097423302684" y1="60.000000423302694" y2="44.09009784660538"/>
+  <line stroke="#000000" x1="6.590097423302681" x2="0.0" y1="44.09009784660539" y2="60.000000423302716"/>
+  <line stroke="#000000" x1="14.090097423302682" x2="6.590097423302681" y1="44.09009784660539" y2="44.090097846605396"/>
+  <line stroke="#000000" x1="29.090097423302684" x2="21.590097423302684" y1="44.09009784660538" y2="44.09009784660539"/>
+  <line stroke="#000000" x1="29.090097423302684" x2="29.090097423302684" y1="44.09009784660538" y2="44.09009784660538"/>
+  <line stroke="#000000" x1="6.590097423302681" x2="6.590097423302681" y1="44.090097846605396" y2="44.090097846605396"/>
+  <line stroke="#000000" x1="14.090097423302682" x2="14.090097423302682" y1="44.09009784660539" y2="44.09009784660539"/>
+  <line stroke="#000000" x1="21.590097423302684" x2="21.590097423302684" y1="44.09009784660538" y2="44.09009784660538"/>
+  <line stroke="#000000" x1="14.090097423302682" x2="14.090097423302682" y1="39.09009784660539" y2="44.09009784660539"/>
+  <line stroke="#000000" x1="21.590097423302684" x2="14.090097423302682" y1="39.09009784660539" y2="39.09009784660539"/>
+  <line stroke="#000000" x1="21.590097423302684" x2="21.590097423302684" y1="44.09009784660538" y2="39.09009784660539"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="17.573593128807147" x2="49.39339828220179" y1="17.573593552109866" y2="49.393398705504474"/>
+  <line stroke="#000000" x1="13.180194846605362" x2="45.000000000000014" y1="28.18019526990808" y2="60.000000423302694"/>
+  <line stroke="#000000" x1="17.573593128807147" x2="13.180194846605362" y1="17.573593552109866" y2="28.18019526990808"/>
+  <line stroke="#000000" x1="49.393398282201794" x2="49.39339828220179" y1="49.39339870550447" y2="26.893398705504477"/>
+  <line stroke="#000000" x1="33.483495705504474" x2="17.573593128807147" y1="10.983496128807161" y2="17.57359355210986"/>
+  <line stroke="#000000" x1="38.786796564403566" x2="33.48349570550445" y1="16.286796987706268" y2="10.983496128807161"/>
+  <line stroke="#000000" x1="49.39339828220178" x2="44.09009742330267" y1="26.89339870550447" y2="21.59009784660537"/>
+  <line stroke="#000000" x1="49.39339828220178" x2="49.39339828220178" y1="26.89339870550447" y2="26.89339870550447"/>
+  <line stroke="#000000" x1="33.48349570550445" x2="33.48349570550445" y1="10.983496128807161" y2="10.983496128807161"/>
+  <line stroke="#000000" x1="38.786796564403566" x2="38.786796564403566" y1="16.286796987706268" y2="16.286796987706268"/>
+  <line stroke="#000000" x1="44.09009742330267" x2="44.09009742330267" y1="21.590097846605378" y2="21.590097846605378"/>
+  <line stroke="#000000" x1="42.322330470336304" x2="38.786796564403566" y1="12.751263081773532" y2="16.286796987706268"/>
+  <line stroke="#000000" x1="47.62563132923541" x2="42.322330470336304" y1="18.054563940672637" y2="12.751263081773532"/>
+  <line stroke="#000000" x1="44.09009742330267" x2="47.62563132923541" y1="21.590097846605378" y2="18.054563940672637"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="59.99999999999999" x2="60.00000000000002" y1="4.2330268001933296e-07" y2="45.00000042330267"/>
+  <line stroke="#000000" x1="49.39339828220178" x2="49.39339828220181" y1="4.393398705504482" y2="49.39339870550447"/>
+  <line stroke="#000000" x1="59.99999999999999" x2="49.39339828220178" y1="4.2330268001933296e-07" y2="4.393398705504482"/>
+  <line stroke="#000000" x1="60.000000000000014" x2="75.90990257669732" y1="45.00000042330267" y2="29.09009784660535"/>
+  <line stroke="#000000" x1="75.90990257669732" x2="59.999999999999986" y1="6.590097846605347" y2="4.2330268001933296e-07"/>
+  <line stroke="#000000" x1="75.90990257669732" x2="75.90990257669732" y1="14.090097846605348" y2="6.590097846605347"/>
+  <line stroke="#000000" x1="75.90990257669732" x2="75.90990257669732" y1="29.09009784660535" y2="21.590097846605346"/>
+  <line stroke="#000000" x1="75.90990257669732" x2="75.90990257669732" y1="29.09009784660535" y2="29.09009784660535"/>
+  <line stroke="#000000" x1="75.90990257669732" x2="75.90990257669732" y1="6.590097846605347" y2="6.590097846605347"/>
+  <line stroke="#000000" x1="75.90990257669732" x2="75.90990257669732" y1="14.090097846605348" y2="14.090097846605348"/>
+  <line stroke="#000000" x1="75.90990257669732" x2="75.90990257669732" y1="21.590097846605346" y2="21.590097846605346"/>
+  <line stroke="#000000" x1="80.90990257669732" x2="75.90990257669732" y1="14.090097846605348" y2="14.090097846605348"/>
+  <line stroke="#000000" x1="80.90990257669732" x2="80.90990257669732" y1="21.590097846605346" y2="14.090097846605348"/>
+  <line stroke="#000000" x1="75.90990257669732" x2="80.90990257669732" y1="21.590097846605346" y2="21.590097846605346"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="102.42640687119287" x2="70.60660171779824" y1="17.57359355210981" y2="49.39339870550446"/>
+  <line stroke="#000000" x1="91.81980515339464" x2="60.00000000000002" y1="13.180195269908026" y2="45.00000042330267"/>
+  <line stroke="#000000" x1="102.42640687119287" x2="91.81980515339464" y1="17.57359355210981" y2="13.180195269908026"/>
+  <line stroke="#000000" x1="70.60660171779824" x2="93.10660171779824" y1="49.39339870550447" y2="49.39339870550446"/>
+  <line stroke="#000000" x1="109.01650429449555" x2="102.42640687119287" y1="33.483496128807126" y2="17.573593552109816"/>
+  <line stroke="#000000" x1="103.71320343559643" x2="109.01650429449555" y1="38.78679698770623" y2="33.483496128807126"/>
+  <line stroke="#000000" x1="93.10660171779824" x2="98.40990257669735" y1="49.39339870550445" y2="44.09009784660533"/>
+  <line stroke="#000000" x1="93.10660171779824" x2="93.10660171779824" y1="49.39339870550445" y2="49.39339870550445"/>
+  <line stroke="#000000" x1="109.01650429449555" x2="109.01650429449555" y1="33.483496128807126" y2="33.483496128807126"/>
+  <line stroke="#000000" x1="103.71320343559643" x2="103.71320343559643" y1="38.78679698770623" y2="38.78679698770623"/>
+  <line stroke="#000000" x1="98.40990257669735" x2="98.40990257669735" y1="44.09009784660533" y2="44.09009784660533"/>
+  <line stroke="#000000" x1="107.24873734152918" x2="103.71320343559643" y1="42.32233089363896" y2="38.78679698770623"/>
+  <line stroke="#000000" x1="101.94543648263009" x2="107.24873734152918" y1="47.62563175253808" y2="42.32233089363896"/>
+  <line stroke="#000000" x1="98.40990257669735" x2="101.94543648263009" y1="44.09009784660533" y2="47.62563175253808"/>
+  <line stroke="#000000" x1="105.90990257669735" x2="105.90990257669735" y1="80.90990300000001" y2="75.90990300000001"/>
+  <line stroke="#000000" x1="98.40990257669735" x2="105.90990257669735" y1="80.90990300000001" y2="80.90990300000001"/>
+  <line stroke="#000000" x1="98.40990257669735" x2="98.40990257669735" y1="75.90990300000001" y2="80.90990300000001"/>
+  <line stroke="#888888" x1="108.15990257669735" x2="108.15990257669735" y1="71.909903" y2="74.90990300000001"/>
+  <line stroke="#888888" x1="108.15990257669735" x2="108.65990257669735" y1="74.90990300000001" y2="74.90990300000001"/>
+  <line stroke="#888888" x1="108.65990257669735" x2="108.65990257669735" y1="74.90990300000001" y2="71.909903"/>
+  <line stroke="#888888" x1="108.65990257669735" x2="108.15990257669735" y1="71.909903" y2="71.909903"/>
+  <line stroke="#888888" x1="85.63262081801238" x2="83.51130047445275" y1="102.47576699182265" y2="104.5970873353823"/>
+  <line stroke="#888888" x1="83.51130047445275" x2="83.86485386504602" y1="104.5970873353823" y2="104.95064072597556"/>
+  <line stroke="#888888" x1="83.86485386504602" x2="85.98617420860566" y1="104.95064072597556" y2="102.82932038241591"/>
+  <line stroke="#888888" x1="85.98617420860566" x2="85.63262081801238" y1="102.82932038241591" y2="102.47576699182265"/>
+  <line stroke="#888888" x1="78.56155300614692" x2="76.79378605318054" y1="102.82932038241591" y2="101.06155342944956"/>
+  <line stroke="#888888" x1="76.79378605318054" x2="75.02601910021419" y1="101.06155342944956" y2="102.82932038241591"/>
+  <line stroke="#888888" x1="75.02601910021419" x2="76.79378605318054" y1="102.82932038241591" y2="104.5970873353823"/>
+  <line stroke="#888888" x1="48.090097423302716" x2="45.090097423302716" y1="108.15990300000003" y2="108.15990300000003"/>
+  <line stroke="#888888" x1="45.090097423302716" x2="45.090097423302716" y1="108.15990300000003" y2="108.65990300000003"/>
+  <line stroke="#888888" x1="45.090097423302716" x2="48.090097423302716" y1="108.65990300000003" y2="108.65990300000003"/>
+  <line stroke="#888888" x1="48.090097423302716" x2="48.090097423302716" y1="108.65990300000003" y2="108.15990300000003"/>
+  <line stroke="#888888" x1="42.840097423302716" x2="42.840097423302716" y1="103.40990300000003" y2="100.90990300000003"/>
+  <line stroke="#888888" x1="42.840097423302716" x2="40.34009742330271" y1="100.90990300000003" y2="100.90990300000003"/>
+  <line stroke="#888888" x1="40.34009742330271" x2="40.34009742330271" y1="100.90990300000003" y2="103.40990300000003"/>
+  <line stroke="#888888" x1="17.52423343148006" x2="15.402913087920412" y1="85.63262124131508" y2="83.51130089775543"/>
+  <line stroke="#888888" x1="15.402913087920412" x2="15.049359697327136" y1="83.51130089775543" y2="83.8648542883487"/>
+  <line stroke="#888888" x1="15.049359697327136" x2="17.17068004088678" y1="83.8648542883487" y2="85.98617463190836"/>
+  <line stroke="#888888" x1="17.17068004088678" x2="17.52423343148006" y1="85.98617463190836" y2="85.63262124131508"/>
+  <line stroke="#888888" x1="17.17068004088677" x2="18.938446993853137" y1="78.5615534294496" y2="76.79378647648322"/>
+  <line stroke="#888888" x1="18.938446993853137" x2="17.17068004088677" y1="76.79378647648322" y2="75.02601952351685"/>
+  <line stroke="#888888" x1="17.17068004088677" x2="15.402913087920398" y1="75.02601952351685" y2="76.79378647648322"/>
+  <line stroke="#888888" x1="11.840097423302682" x2="11.840097423302682" y1="48.09009784660539" y2="45.09009784660538"/>
+  <line stroke="#888888" x1="11.840097423302682" x2="11.340097423302682" y1="45.09009784660538" y2="45.090097846605396"/>
+  <line stroke="#888888" x1="11.340097423302682" x2="11.340097423302682" y1="45.090097846605396" y2="48.090097846605396"/>
+  <line stroke="#888888" x1="11.340097423302682" x2="11.840097423302682" y1="48.090097846605396" y2="48.09009784660539"/>
+  <line stroke="#888888" x1="16.590097423302684" x2="19.090097423302684" y1="42.84009784660539" y2="42.840097846605374"/>
+  <line stroke="#888888" x1="19.090097423302684" x2="19.090097423302684" y1="42.840097846605374" y2="40.34009784660539"/>
+  <line stroke="#888888" x1="19.090097423302684" x2="16.590097423302684" y1="40.34009784660539" y2="40.34009784660539"/>
+  <line stroke="#888888" x1="34.36737918198765" x2="36.48869952554728" y1="17.52423385478272" y2="15.402913511223085"/>
+  <line stroke="#888888" x1="36.48869952554728" x2="36.135146134954" y1="15.402913511223085" y2="15.049360120629816"/>
+  <line stroke="#888888" x1="36.135146134954" x2="34.013825791394375" y1="15.049360120629816" y2="17.170680464189456"/>
+  <line stroke="#888888" x1="34.013825791394375" x2="34.36737918198765" y1="17.170680464189456" y2="17.52423385478272"/>
+  <line stroke="#888888" x1="41.43844699385312" x2="43.20621394681949" y1="17.170680464189456" y2="18.938447417155825"/>
+  <line stroke="#888888" x1="43.20621394681949" x2="44.97398089978585" y1="18.938447417155825" y2="17.170680464189456"/>
+  <line stroke="#888888" x1="44.97398089978585" x2="43.20621394681949" y1="17.170680464189456" y2="15.402913511223085"/>
+  <line stroke="#888888" x1="71.90990257669732" x2="74.9099025766973" y1="11.840097846605348" y2="11.840097846605348"/>
+  <line stroke="#888888" x1="74.9099025766973" x2="74.9099025766973" y1="11.840097846605348" y2="11.340097846605346"/>
+  <line stroke="#888888" x1="74.9099025766973" x2="71.90990257669732" y1="11.340097846605346" y2="11.340097846605346"/>
+  <line stroke="#888888" x1="71.90990257669732" x2="71.90990257669732" y1="11.340097846605346" y2="11.840097846605348"/>
+  <line stroke="#888888" x1="77.1599025766973" x2="77.1599025766973" y1="16.59009784660535" y2="19.09009784660535"/>
+  <line stroke="#888888" x1="77.1599025766973" x2="79.6599025766973" y1="19.09009784660535" y2="19.09009784660535"/>
+  <line stroke="#888888" x1="79.6599025766973" x2="79.6599025766973" y1="19.09009784660535" y2="16.59009784660535"/>
+  <line stroke="#888888" x1="102.47576656851999" x2="104.59708691207963" y1="34.36737960529032" y2="36.488699948849955"/>
+  <line stroke="#888888" x1="104.59708691207963" x2="104.9506403026729" y1="36.488699948849955" y2="36.13514655825667"/>
+  <line stroke="#888888" x1="104.9506403026729" x2="102.82931995911326" y1="36.13514655825667" y2="34.01382621469704"/>
+  <line stroke="#888888" x1="102.82931995911326" x2="102.47576656851999" y1="34.01382621469704" y2="34.36737960529032"/>
+  <line stroke="#888888" x1="102.82931995911326" x2="101.0615530061469" y1="41.438447417155786" y2="43.206214370122154"/>
+  <line stroke="#888888" x1="101.0615530061469" x2="102.82931995911326" y1="43.206214370122154" y2="44.97398132308852"/>
+  <line stroke="#888888" x1="102.82931995911326" x2="104.59708691207963" y1="44.97398132308852" y2="43.206214370122154"/>
+  <line stroke="#888888" x1="103.40990257669735" x2="100.90990257669735" y1="77.15990300000001" y2="77.15990300000001"/>
+  <line stroke="#888888" x1="100.90990257669735" x2="100.90990257669735" y1="77.15990300000001" y2="79.65990300000001"/>
+  <line stroke="#888888" x1="100.90990257669735" x2="103.40990257669735" y1="79.65990300000001" y2="79.65990300000001"/>
+  <line stroke="#000000" x1="151.5900974233027" x2="144.0900974233027" y1="75.90990300000001" y2="75.90990300000001"/>
+  <line stroke="#000000" x1="159.09009742330272" x2="151.5900974233027" y1="75.90990300000001" y2="75.90990300000001"/>
+  <line stroke="#000000" x1="159.09009742330272" x2="159.09009742330272" y1="75.90990300000001" y2="75.90990300000001"/>
+  <line stroke="#000000" x1="136.59009742330272" x2="136.59009742330272" y1="75.90990300000001" y2="75.90990300000001"/>
+  <line stroke="#000000" x1="136.59009742330272" x2="136.59009742330272" y1="70.909903" y2="75.90990300000001"/>
+  <line stroke="#000000" x1="144.0900974233027" x2="136.59009742330272" y1="70.909903" y2="70.909903"/>
+  <line stroke="#000000" x1="144.0900974233027" x2="144.0900974233027" y1="75.90990300000001" y2="70.909903"/>
+  <line stroke="#000000" x1="175.0" x2="159.09009742330272" y1="91.81980557669733" y2="75.90990300000001"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="130.0" x2="175.0" y1="91.81980557669733" y2="91.81980557669733"/>
+  <line stroke="#000000" x1="136.59009742330272" x2="130.0" y1="75.90990300000001" y2="91.81980557669733"/>
+  <line stroke="#000000" x1="134.39339828220184" x2="179.39339828220184" y1="102.42640729449555" y2="102.42640729449555"/>
+  <line stroke="#000000" x1="130.0" x2="134.39339828220184" y1="91.81980557669733" y2="102.42640729449555"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="147.57359312880715" x2="179.39339828220184" y1="49.39339870550448" y2="81.21320385889912"/>
+  <line stroke="#000000" x1="143.18019484660536" x2="175.0" y1="60.0000004233027" y2="91.81980557669733"/>
+  <line stroke="#000000" x1="147.57359312880715" x2="143.18019484660536" y1="49.39339870550448" y2="60.0000004233027"/>
+  <line stroke="#000000" x1="179.39339828220182" x2="179.39339828220182" y1="81.21320385889912" y2="58.713203858899114"/>
+  <line stroke="#000000" x1="163.4834957055045" x2="147.57359312880715" y1="42.80330128220181" y2="49.39339870550448"/>
+  <line stroke="#000000" x1="174.09009742330267" x2="168.7867965644036" y1="53.409903000000014" y2="48.106602141100915"/>
+  <line stroke="#000000" x1="179.39339828220182" x2="174.09009742330267" y1="58.71320385889912" y2="53.409903000000014"/>
+  <line stroke="#000000" x1="179.39339828220182" x2="179.39339828220182" y1="58.71320385889912" y2="58.71320385889912"/>
+  <line stroke="#000000" x1="163.4834957055045" x2="163.4834957055045" y1="42.80330128220181" y2="42.80330128220181"/>
+  <line stroke="#000000" x1="167.01902961143722" x2="163.4834957055045" y1="39.26776737626907" y2="42.80330128220181"/>
+  <line stroke="#000000" x1="172.32233047033634" x2="167.01902961143722" y1="44.57106823516818" y2="39.26776737626907"/>
+  <line stroke="#000000" x1="168.7867965644036" x2="172.32233047033634" y1="48.106602141100915" y2="44.57106823516818"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="190.00000000000003" x2="190.00000000000003" y1="31.819805576697323" y2="76.81980557669733"/>
+  <line stroke="#000000" x1="179.39339828220182" x2="179.39339828220184" y1="36.213203858899114" y2="81.21320385889912"/>
+  <line stroke="#000000" x1="190.00000000000003" x2="179.39339828220182" y1="31.819805576697323" y2="36.213203858899114"/>
+  <line stroke="#000000" x1="190.00000000000003" x2="205.90990257669736" y1="76.81980557669732" y2="60.90990299999999"/>
+  <line stroke="#000000" x1="205.90990257669736" x2="190.00000000000003" y1="38.40990299999999" y2="31.819805576697316"/>
+  <line stroke="#000000" x1="205.90990257669736" x2="205.90990257669736" y1="53.409902999999986" y2="45.90990299999999"/>
+  <line stroke="#000000" x1="205.90990257669736" x2="205.90990257669736" y1="60.90990299999999" y2="53.409902999999986"/>
+  <line stroke="#000000" x1="205.90990257669736" x2="205.90990257669736" y1="60.90990299999999" y2="60.90990299999999"/>
+  <line stroke="#000000" x1="205.90990257669736" x2="205.90990257669736" y1="38.40990299999999" y2="38.40990299999999"/>
+  <line stroke="#000000" x1="210.90990257669736" x2="205.90990257669736" y1="38.40990299999999" y2="38.40990299999999"/>
+  <line stroke="#000000" x1="210.90990257669736" x2="210.90990257669736" y1="45.90990299999999" y2="38.40990299999999"/>
+  <line stroke="#000000" x1="205.90990257669736" x2="210.90990257669736" y1="45.90990299999999" y2="45.90990299999999"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="232.42640687119285" x2="200.60660171779824" y1="49.393398705504445" y2="81.2132038588991"/>
+  <line stroke="#000000" x1="221.81980515339464" x2="190.00000000000003" y1="45.00000042330266" y2="76.81980557669733"/>
+  <line stroke="#000000" x1="232.42640687119285" x2="221.81980515339464" y1="49.393398705504445" y2="45.00000042330266"/>
+  <line stroke="#000000" x1="200.60660171779824" x2="223.10660171779827" y1="81.2132038588991" y2="81.21320385889909"/>
+  <line stroke="#000000" x1="239.01650429449558" x2="232.42640687119285" y1="65.30330128220176" y2="49.39339870550444"/>
+  <line stroke="#000000" x1="228.40990257669733" x2="233.71320343559645" y1="75.90990299999999" y2="70.60660214110086"/>
+  <line stroke="#000000" x1="223.10660171779827" x2="228.40990257669733" y1="81.21320385889909" y2="75.90990299999999"/>
+  <line stroke="#000000" x1="223.10660171779827" x2="223.10660171779827" y1="81.21320385889909" y2="81.21320385889909"/>
+  <line stroke="#000000" x1="239.01650429449558" x2="239.01650429449558" y1="65.30330128220176" y2="65.30330128220176"/>
+  <line stroke="#000000" x1="242.5520382004283" x2="239.01650429449558" y1="68.83883518813448" y2="65.30330128220176"/>
+  <line stroke="#000000" x1="237.2487373415292" x2="242.5520382004283" y1="74.1421360470336" y2="68.83883518813448"/>
+  <line stroke="#000000" x1="233.71320343559645" x2="237.2487373415292" y1="70.60660214110086" y2="74.1421360470336"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="250.00000000000003" x2="205.00000000000003" y1="91.8198055766973" y2="91.81980557669732"/>
+  <line stroke="#000000" x1="245.60660171779827" x2="200.60660171779824" y1="81.21320385889909" y2="81.2132038588991"/>
+  <line stroke="#000000" x1="250.00000000000003" x2="245.60660171779827" y1="91.8198055766973" y2="81.21320385889909"/>
+  <line stroke="#000000" x1="205.00000000000006" x2="220.90990257669736" y1="91.81980557669732" y2="107.72970815339464"/>
+  <line stroke="#000000" x1="243.40990257669736" x2="250.00000000000006" y1="107.72970815339464" y2="91.8198055766973"/>
+  <line stroke="#000000" x1="228.40990257669733" x2="235.90990257669736" y1="107.72970815339464" y2="107.72970815339464"/>
+  <line stroke="#000000" x1="220.90990257669736" x2="228.40990257669733" y1="107.72970815339464" y2="107.72970815339464"/>
+  <line stroke="#000000" x1="220.90990257669736" x2="220.90990257669736" y1="107.72970815339464" y2="107.72970815339464"/>
+  <line stroke="#000000" x1="243.40990257669736" x2="243.40990257669736" y1="107.72970815339463" y2="107.72970815339463"/>
+  <line stroke="#000000" x1="243.40990257669736" x2="243.40990257669736" y1="112.72970815339463" y2="107.72970815339463"/>
+  <line stroke="#000000" x1="235.90990257669736" x2="243.40990257669736" y1="112.72970815339464" y2="112.72970815339463"/>
+  <line stroke="#000000" x1="235.90990257669736" x2="235.90990257669736" y1="107.72970815339464" y2="112.72970815339464"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="232.4264068711929" x2="200.60660171779824" y1="134.24621244789014" y2="102.42640729449555"/>
+  <line stroke="#000000" x1="236.8198051533947" x2="205.00000000000006" y1="123.63961073009195" y2="91.81980557669733"/>
+  <line stroke="#000000" x1="232.4264068711929" x2="236.8198051533947" y1="134.24621244789014" y2="123.63961073009195"/>
+  <line stroke="#000000" x1="200.60660171779824" x2="200.60660171779824" y1="102.42640729449555" y2="124.92640729449556"/>
+  <line stroke="#000000" x1="216.5165042944956" x2="232.4264068711929" y1="140.83630987119287" y2="134.24621244789014"/>
+  <line stroke="#000000" x1="205.9099025766974" x2="211.2132034355965" y1="130.22970815339463" y2="135.53300901229377"/>
+  <line stroke="#000000" x1="200.60660171779824" x2="205.9099025766974" y1="124.92640729449556" y2="130.22970815339463"/>
+  <line stroke="#000000" x1="200.60660171779824" x2="200.60660171779824" y1="124.92640729449556" y2="124.92640729449556"/>
+  <line stroke="#000000" x1="216.5165042944956" x2="216.5165042944956" y1="140.83630987119287" y2="140.83630987119287"/>
+  <line stroke="#000000" x1="212.98097038856287" x2="216.5165042944956" y1="144.3718437771256" y2="140.83630987119287"/>
+  <line stroke="#000000" x1="207.67766952966375" x2="212.98097038856287" y1="139.06854291822646" y2="144.3718437771256"/>
+  <line stroke="#000000" x1="211.2132034355965" x2="207.67766952966375" y1="135.53300901229377" y2="139.06854291822646"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="190.00000000000009" x2="190.00000000000003" y1="151.81980557669732" y2="106.81980557669733"/>
+  <line stroke="#000000" x1="200.60660171779824" x2="200.60660171779824" y1="147.4264072944955" y2="102.42640729449555"/>
+  <line stroke="#000000" x1="190.00000000000009" x2="200.60660171779824" y1="151.81980557669732" y2="147.4264072944955"/>
+  <line stroke="#000000" x1="190.00000000000006" x2="174.09009742330272" y1="106.81980557669733" y2="122.72970815339467"/>
+  <line stroke="#000000" x1="174.09009742330272" x2="190.00000000000009" y1="145.22970815339468" y2="151.81980557669732"/>
+  <line stroke="#000000" x1="174.09009742330272" x2="174.09009742330272" y1="130.22970815339465" y2="137.72970815339468"/>
+  <line stroke="#000000" x1="174.09009742330272" x2="174.09009742330272" y1="122.72970815339467" y2="130.22970815339465"/>
+  <line stroke="#000000" x1="174.09009742330272" x2="174.09009742330272" y1="122.72970815339467" y2="122.72970815339467"/>
+  <line stroke="#000000" x1="174.09009742330272" x2="174.09009742330272" y1="145.22970815339468" y2="145.22970815339468"/>
+  <line stroke="#000000" x1="169.09009742330275" x2="174.09009742330272" y1="145.22970815339468" y2="145.22970815339468"/>
+  <line stroke="#000000" x1="169.09009742330275" x2="169.09009742330275" y1="137.72970815339468" y2="145.22970815339468"/>
+  <line stroke="#000000" x1="174.09009742330272" x2="169.09009742330275" y1="137.72970815339468" y2="137.72970815339468"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="147.57359312880718" x2="179.39339828220184" y1="134.24621244789023" y2="102.42640729449556"/>
+  <line stroke="#000000" x1="158.18019484660542" x2="190.00000000000003" y1="138.63961073009202" y2="106.81980557669733"/>
+  <line stroke="#000000" x1="147.57359312880718" x2="158.18019484660542" y1="134.24621244789023" y2="138.63961073009202"/>
+  <line stroke="#000000" x1="179.39339828220184" x2="156.89339828220184" y1="102.42640729449555" y2="102.42640729449556"/>
+  <line stroke="#000000" x1="140.9834957055045" x2="147.57359312880718" y1="118.33630987119288" y2="134.24621244789017"/>
+  <line stroke="#000000" x1="151.5900974233027" x2="146.2867965644036" y1="107.72970815339468" y2="113.03300901229377"/>
+  <line stroke="#000000" x1="156.89339828220184" x2="151.5900974233027" y1="102.42640729449558" y2="107.72970815339468"/>
+  <line stroke="#000000" x1="156.89339828220184" x2="156.89339828220184" y1="102.42640729449558" y2="102.42640729449558"/>
+  <line stroke="#000000" x1="140.9834957055045" x2="140.9834957055045" y1="118.3363098711929" y2="118.3363098711929"/>
+  <line stroke="#000000" x1="137.44796179957177" x2="140.9834957055045" y1="114.80077596526017" y2="118.3363098711929"/>
+  <line stroke="#000000" x1="142.75126265847086" x2="137.44796179957177" y1="109.49747510636105" y2="114.80077596526017"/>
+  <line stroke="#000000" x1="146.2867965644036" x2="142.75126265847086" y1="113.03300901229377" y2="109.49747510636105"/>
+  <line stroke="#888888" x1="149.3400974233027" x2="149.3400974233027" y1="79.909903" y2="76.90990300000001"/>
+  <line stroke="#888888" x1="149.3400974233027" x2="148.8400974233027" y1="76.90990300000001" y2="76.90990300000001"/>
+  <line stroke="#888888" x1="148.8400974233027" x2="148.8400974233027" y1="76.90990300000001" y2="79.909903"/>
+  <line stroke="#888888" x1="148.8400974233027" x2="149.3400974233027" y1="79.909903" y2="79.909903"/>
+  <line stroke="#888888" x1="139.09009742330272" x2="141.59009742330272" y1="74.65990300000001" y2="74.65990300000001"/>
+  <line stroke="#888888" x1="141.59009742330272" x2="141.59009742330272" y1="74.65990300000001" y2="72.159903"/>
+  <line stroke="#888888" x1="141.59009742330272" x2="139.09009742330272" y1="72.159903" y2="72.159903"/>
+  <line stroke="#888888" x1="169.67068004088677" x2="171.7920003844464" y1="54.647339867076475" y2="52.52601952351683"/>
+  <line stroke="#888888" x1="171.7920003844464" x2="171.43844699385315" y1="52.52601952351683" y2="52.17246613292356"/>
+  <line stroke="#888888" x1="171.43844699385315" x2="169.31712665029352" y1="52.17246613292356" y2="54.2937864764832"/>
+  <line stroke="#888888" x1="169.31712665029352" x2="169.67068004088677" y1="54.2937864764832" y2="54.647339867076475"/>
+  <line stroke="#888888" x1="166.13514613495406" x2="167.9029130879204" y1="43.68718475868499" y2="45.45495171165135"/>
+  <line stroke="#888888" x1="167.9029130879204" x2="169.67068004088677" y1="45.45495171165135" y2="43.68718475868499"/>
+  <line stroke="#888888" x1="169.67068004088677" x2="167.9029130879204" y1="43.68718475868499" y2="41.919417805718616"/>
+  <line stroke="#888888" x1="201.90990257669736" x2="204.90990257669736" y1="51.159902999999986" y2="51.159902999999986"/>
+  <line stroke="#888888" x1="204.90990257669736" x2="204.90990257669736" y1="51.159902999999986" y2="50.65990299999999"/>
+  <line stroke="#888888" x1="204.90990257669736" x2="201.90990257669736" y1="50.65990299999999" y2="50.65990299999999"/>
+  <line stroke="#888888" x1="201.90990257669736" x2="201.90990257669736" y1="50.65990299999999" y2="51.159902999999986"/>
+  <line stroke="#888888" x1="207.15990257669736" x2="207.15990257669736" y1="40.909902999999986" y2="43.40990299999999"/>
+  <line stroke="#888888" x1="207.15990257669736" x2="209.65990257669736" y1="43.40990299999999" y2="43.40990299999999"/>
+  <line stroke="#888888" x1="209.65990257669736" x2="209.65990257669736" y1="43.40990299999999" y2="40.909902999999986"/>
+  <line stroke="#888888" x1="227.1724657096209" x2="229.29378605318055" y1="71.49048561758406" y2="73.6118059611437"/>
+  <line stroke="#888888" x1="229.29378605318055" x2="229.6473394437738" y1="73.6118059611437" y2="73.25825257055041"/>
+  <line stroke="#888888" x1="229.6473394437738" x2="227.52601910021417" y1="73.25825257055041" y2="71.13693222699078"/>
+  <line stroke="#888888" x1="227.52601910021417" x2="227.1724657096209" y1="71.13693222699078" y2="71.49048561758406"/>
+  <line stroke="#888888" x1="238.13262081801238" x2="236.36485386504603" y1="67.95495171165132" y2="69.72271866461769"/>
+  <line stroke="#888888" x1="236.36485386504603" x2="238.13262081801238" y1="69.72271866461769" y2="71.49048561758406"/>
+  <line stroke="#888888" x1="238.13262081801238" x2="239.90038777097877" y1="71.49048561758406" y2="69.72271866461769"/>
+  <line stroke="#888888" x1="230.65990257669733" x2="230.65990257669733" y1="103.72970815339463" y2="106.72970815339464"/>
+  <line stroke="#888888" x1="230.65990257669733" x2="231.15990257669736" y1="106.72970815339464" y2="106.72970815339464"/>
+  <line stroke="#888888" x1="231.15990257669736" x2="231.15990257669736" y1="106.72970815339464" y2="103.72970815339463"/>
+  <line stroke="#888888" x1="231.15990257669736" x2="230.65990257669733" y1="103.72970815339463" y2="103.72970815339463"/>
+  <line stroke="#888888" x1="240.90990257669736" x2="238.40990257669736" y1="108.97970815339464" y2="108.97970815339464"/>
+  <line stroke="#888888" x1="238.40990257669736" x2="238.40990257669736" y1="108.97970815339464" y2="111.47970815339464"/>
+  <line stroke="#888888" x1="238.40990257669736" x2="240.90990257669736" y1="111.47970815339464" y2="111.47970815339464"/>
+  <line stroke="#888888" x1="210.3293199591133" x2="208.2079996155537" y1="128.99227128631819" y2="131.11359162987785"/>
+  <line stroke="#888888" x1="208.2079996155537" x2="208.56155300614697" y1="131.11359162987785" y2="131.4671450204711"/>
+  <line stroke="#888888" x1="208.56155300614697" x2="210.68287334970657" y1="131.4671450204711" y2="129.34582467691146"/>
+  <line stroke="#888888" x1="210.68287334970657" x2="210.3293199591133" y1="129.34582467691146" y2="128.99227128631819"/>
+  <line stroke="#888888" x1="213.86485386504603" x2="212.09708691207967" y1="139.95242639470968" y2="138.1846594417433"/>
+  <line stroke="#888888" x1="212.09708691207967" x2="210.32931995911332" y1="138.1846594417433" y2="139.95242639470968"/>
+  <line stroke="#888888" x1="210.32931995911332" x2="212.09708691207967" y1="139.95242639470968" y2="141.72019334767603"/>
+  <line stroke="#888888" x1="178.09009742330275" x2="175.09009742330275" y1="132.47970815339465" y2="132.47970815339465"/>
+  <line stroke="#888888" x1="175.09009742330275" x2="175.09009742330275" y1="132.47970815339465" y2="132.97970815339468"/>
+  <line stroke="#888888" x1="175.09009742330275" x2="178.09009742330275" y1="132.97970815339468" y2="132.97970815339468"/>
+  <line stroke="#888888" x1="178.09009742330275" x2="178.09009742330275" y1="132.97970815339468" y2="132.47970815339465"/>
+  <line stroke="#888888" x1="172.84009742330275" x2="172.84009742330275" y1="142.72970815339468" y2="140.22970815339468"/>
+  <line stroke="#888888" x1="172.84009742330275" x2="170.34009742330275" y1="140.22970815339468" y2="140.22970815339468"/>
+  <line stroke="#888888" x1="170.34009742330275" x2="170.34009742330275" y1="140.22970815339468" y2="142.72970815339468"/>
+  <line stroke="#888888" x1="152.82753429037916" x2="150.7062139468195" y1="112.1491255358106" y2="110.02780519225097"/>
+  <line stroke="#888888" x1="150.7062139468195" x2="150.35266055622628" y1="110.02780519225097" y2="110.38135858284423"/>
+  <line stroke="#888888" x1="150.35266055622628" x2="152.47398089978591" y1="110.38135858284423" y2="112.50267892640386"/>
+  <line stroke="#888888" x1="152.47398089978591" x2="152.82753429037916" y1="112.50267892640386" y2="112.1491255358106"/>
+  <line stroke="#888888" x1="141.86737918198767" x2="143.63514613495408" y1="115.68465944174334" y2="113.91689248877698"/>
+  <line stroke="#888888" x1="143.63514613495408" x2="141.86737918198767" y1="113.91689248877698" y2="112.1491255358106"/>
+  <line stroke="#888888" x1="141.86737918198767" x2="140.09961222902135" y1="112.1491255358106" y2="113.91689248877698"/>
+</svg>
diff --git a/rocolib/output/PaddleWheel/graph-model.png b/rocolib/output/PaddleWheel/graph-model.png
new file mode 100644
index 0000000000000000000000000000000000000000..d894d13f789c811e08557e1ca1a20b19836cd4e6
Binary files /dev/null and b/rocolib/output/PaddleWheel/graph-model.png differ
diff --git a/rocolib/output/PaddleWheel/graph-model.stl b/rocolib/output/PaddleWheel/graph-model.stl
new file mode 100644
index 0000000000000000000000000000000000000000..449a5d36737f85abb796aec893f3e80d01bfb8e5
--- /dev/null
+++ b/rocolib/output/PaddleWheel/graph-model.stl
@@ -0,0 +1,758 @@
+solid python
+facet normal 0 0 0
+outer loop
+vertex 0.0640 0.0159 0.0106
+vertex 0.0534 0.0159 0.0150
+vertex 0.0384 0.0159 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0534 0.0159 -0.0150
+vertex 0.0684 0.0159 -0.0000
+vertex 0.0640 0.0159 0.0106
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0384 0.0159 -0.0000
+vertex 0.0534 0.0159 0.0150
+vertex 0.0428 0.0159 0.0106
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0384 0.0159 -0.0000
+vertex 0.0428 0.0159 -0.0106
+vertex 0.0534 0.0159 -0.0150
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0640 0.0159 -0.0106
+vertex 0.0684 0.0159 -0.0000
+vertex 0.0534 0.0159 -0.0150
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0534 0.0159 -0.0150
+vertex 0.0640 0.0159 0.0106
+vertex 0.0384 0.0159 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0022 0.0159 0.0106
+vertex -0.0066 0.0159 0.0000
+vertex 0.0384 0.0159 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0384 0.0159 0.0000
+vertex 0.0428 0.0159 0.0106
+vertex -0.0022 0.0159 0.0106
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0225 0.0000 0.0000
+vertex 0.0384 0.0159 0.0000
+vertex -0.0066 0.0159 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0066 0.0159 0.0000
+vertex -0.0000 0.0000 0.0000
+vertex 0.0225 0.0000 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0066 0.0159 -0.0318
+vertex 0.0110 0.0159 -0.0424
+vertex 0.0428 0.0159 -0.0106
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0428 0.0159 -0.0106
+vertex 0.0384 0.0159 0.0000
+vertex 0.0066 0.0159 -0.0318
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0316 -0.0000 -0.0219
+vertex 0.0428 0.0159 -0.0106
+vertex 0.0110 0.0159 -0.0424
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0110 0.0159 -0.0424
+vertex 0.0156 -0.0000 -0.0378
+vertex 0.0316 -0.0000 -0.0219
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0428 0.0159 -0.0556
+vertex 0.0534 0.0159 -0.0600
+vertex 0.0534 0.0159 -0.0150
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0534 0.0159 -0.0150
+vertex 0.0428 0.0159 -0.0106
+vertex 0.0428 0.0159 -0.0556
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0534 -0.0000 -0.0309
+vertex 0.0534 0.0159 -0.0150
+vertex 0.0534 0.0159 -0.0600
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0534 0.0159 -0.0600
+vertex 0.0534 -0.0000 -0.0534
+vertex 0.0534 -0.0000 -0.0309
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0852 0.0159 -0.0468
+vertex 0.0958 0.0159 -0.0424
+vertex 0.0640 0.0159 -0.0106
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0640 0.0159 -0.0106
+vertex 0.0534 0.0159 -0.0150
+vertex 0.0852 0.0159 -0.0468
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0753 -0.0000 -0.0219
+vertex 0.0640 0.0159 -0.0106
+vertex 0.0958 0.0159 -0.0424
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0958 0.0159 -0.0424
+vertex 0.0912 -0.0000 -0.0378
+vertex 0.0753 -0.0000 -0.0219
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.1090 0.0159 -0.0106
+vertex 0.1134 0.0159 -0.0000
+vertex 0.0684 0.0159 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0684 0.0159 -0.0000
+vertex 0.0640 0.0159 -0.0106
+vertex 0.1090 0.0159 -0.0106
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0843 0.0000 -0.0000
+vertex 0.0684 0.0159 -0.0000
+vertex 0.1134 0.0159 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.1134 0.0159 -0.0000
+vertex 0.1068 0.0000 -0.0000
+vertex 0.0843 0.0000 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.1002 0.0159 0.0318
+vertex 0.0958 0.0159 0.0424
+vertex 0.0640 0.0159 0.0106
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0640 0.0159 0.0106
+vertex 0.0684 0.0159 -0.0000
+vertex 0.1002 0.0159 0.0318
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0753 0.0000 0.0219
+vertex 0.0640 0.0159 0.0106
+vertex 0.0958 0.0159 0.0424
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0958 0.0159 0.0424
+vertex 0.0912 0.0000 0.0378
+vertex 0.0753 0.0000 0.0219
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0640 0.0159 0.0556
+vertex 0.0534 0.0159 0.0600
+vertex 0.0534 0.0159 0.0150
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0534 0.0159 0.0150
+vertex 0.0640 0.0159 0.0106
+vertex 0.0640 0.0159 0.0556
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0534 0.0000 0.0309
+vertex 0.0534 0.0159 0.0150
+vertex 0.0534 0.0159 0.0600
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0534 0.0159 0.0600
+vertex 0.0534 0.0000 0.0534
+vertex 0.0534 0.0000 0.0309
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0216 0.0159 0.0468
+vertex 0.0110 0.0159 0.0424
+vertex 0.0428 0.0159 0.0106
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0428 0.0159 0.0106
+vertex 0.0534 0.0159 0.0150
+vertex 0.0216 0.0159 0.0468
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0316 0.0000 0.0219
+vertex 0.0428 0.0159 0.0106
+vertex 0.0110 0.0159 0.0424
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0110 0.0159 0.0424
+vertex 0.0156 0.0000 0.0378
+vertex 0.0316 0.0000 0.0219
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0490 -0.0159 -0.0106
+vertex -0.0384 -0.0159 -0.0150
+vertex -0.0234 -0.0159 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0384 -0.0159 0.0150
+vertex -0.0534 -0.0159 0.0000
+vertex -0.0490 -0.0159 -0.0106
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0234 -0.0159 0.0000
+vertex -0.0384 -0.0159 -0.0150
+vertex -0.0278 -0.0159 -0.0106
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0234 -0.0159 0.0000
+vertex -0.0278 -0.0159 0.0106
+vertex -0.0384 -0.0159 0.0150
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0490 -0.0159 0.0106
+vertex -0.0534 -0.0159 0.0000
+vertex -0.0384 -0.0159 0.0150
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0384 -0.0159 0.0150
+vertex -0.0490 -0.0159 -0.0106
+vertex -0.0234 -0.0159 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0172 -0.0159 -0.0106
+vertex 0.0216 -0.0159 0.0000
+vertex -0.0234 -0.0159 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0234 -0.0159 0.0000
+vertex -0.0278 -0.0159 -0.0106
+vertex 0.0172 -0.0159 -0.0106
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0075 0.0000 0.0000
+vertex -0.0234 -0.0159 0.0000
+vertex 0.0216 -0.0159 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0216 -0.0159 0.0000
+vertex 0.0150 0.0000 0.0000
+vertex -0.0075 0.0000 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0084 -0.0159 0.0318
+vertex 0.0040 -0.0159 0.0424
+vertex -0.0278 -0.0159 0.0106
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0278 -0.0159 0.0106
+vertex -0.0234 -0.0159 0.0000
+vertex 0.0084 -0.0159 0.0318
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0166 0.0000 0.0219
+vertex -0.0278 -0.0159 0.0106
+vertex 0.0040 -0.0159 0.0424
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0040 -0.0159 0.0424
+vertex -0.0006 0.0000 0.0378
+vertex -0.0166 0.0000 0.0219
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0278 -0.0159 0.0556
+vertex -0.0384 -0.0159 0.0600
+vertex -0.0384 -0.0159 0.0150
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0384 -0.0159 0.0150
+vertex -0.0278 -0.0159 0.0106
+vertex -0.0278 -0.0159 0.0556
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0384 0.0000 0.0309
+vertex -0.0384 -0.0159 0.0150
+vertex -0.0384 -0.0159 0.0600
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0384 -0.0159 0.0600
+vertex -0.0384 0.0000 0.0534
+vertex -0.0384 0.0000 0.0309
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0702 -0.0159 0.0468
+vertex -0.0808 -0.0159 0.0424
+vertex -0.0490 -0.0159 0.0106
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0490 -0.0159 0.0106
+vertex -0.0384 -0.0159 0.0150
+vertex -0.0702 -0.0159 0.0468
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0603 0.0000 0.0219
+vertex -0.0490 -0.0159 0.0106
+vertex -0.0808 -0.0159 0.0424
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0808 -0.0159 0.0424
+vertex -0.0762 0.0000 0.0378
+vertex -0.0603 0.0000 0.0219
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0940 -0.0159 0.0106
+vertex -0.0984 -0.0159 0.0000
+vertex -0.0534 -0.0159 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0534 -0.0159 0.0000
+vertex -0.0490 -0.0159 0.0106
+vertex -0.0940 -0.0159 0.0106
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0693 0.0000 0.0000
+vertex -0.0534 -0.0159 0.0000
+vertex -0.0984 -0.0159 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0984 -0.0159 0.0000
+vertex -0.0918 0.0000 0.0000
+vertex -0.0693 0.0000 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0852 -0.0159 -0.0318
+vertex -0.0808 -0.0159 -0.0424
+vertex -0.0490 -0.0159 -0.0106
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0490 -0.0159 -0.0106
+vertex -0.0534 -0.0159 0.0000
+vertex -0.0852 -0.0159 -0.0318
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0603 0.0000 -0.0219
+vertex -0.0490 -0.0159 -0.0106
+vertex -0.0808 -0.0159 -0.0424
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0808 -0.0159 -0.0424
+vertex -0.0762 0.0000 -0.0378
+vertex -0.0603 0.0000 -0.0219
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0490 -0.0159 -0.0556
+vertex -0.0384 -0.0159 -0.0600
+vertex -0.0384 -0.0159 -0.0150
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0384 -0.0159 -0.0150
+vertex -0.0490 -0.0159 -0.0106
+vertex -0.0490 -0.0159 -0.0556
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0384 -0.0000 -0.0309
+vertex -0.0384 -0.0159 -0.0150
+vertex -0.0384 -0.0159 -0.0600
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0384 -0.0159 -0.0600
+vertex -0.0384 -0.0000 -0.0534
+vertex -0.0384 -0.0000 -0.0309
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0066 -0.0159 -0.0468
+vertex 0.0040 -0.0159 -0.0424
+vertex -0.0278 -0.0159 -0.0106
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0278 -0.0159 -0.0106
+vertex -0.0384 -0.0159 -0.0150
+vertex -0.0066 -0.0159 -0.0468
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0166 -0.0000 -0.0219
+vertex -0.0278 -0.0159 -0.0106
+vertex 0.0040 -0.0159 -0.0424
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0040 -0.0159 -0.0424
+vertex -0.0006 -0.0000 -0.0378
+vertex -0.0166 -0.0000 -0.0219
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0000 0.0050 0.0000
+vertex 0.0000 0.0000 0.0000
+vertex 0.0075 0.0000 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0075 0.0000 0.0000
+vertex 0.0075 0.0050 0.0000
+vertex 0.0000 0.0050 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0112 0.0050 0.0272
+vertex -0.0112 0.0000 0.0272
+vertex -0.0059 0.0000 0.0325
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0059 0.0000 0.0325
+vertex -0.0059 0.0050 0.0325
+vertex -0.0112 0.0050 0.0272
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0384 0.0050 0.0384
+vertex -0.0384 0.0000 0.0384
+vertex -0.0384 0.0000 0.0459
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0384 0.0000 0.0459
+vertex -0.0384 0.0050 0.0459
+vertex -0.0384 0.0050 0.0384
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0656 0.0050 0.0272
+vertex -0.0656 0.0000 0.0272
+vertex -0.0709 0.0000 0.0325
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0709 0.0000 0.0325
+vertex -0.0709 0.0050 0.0325
+vertex -0.0656 0.0050 0.0272
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0768 0.0050 0.0000
+vertex -0.0768 -0.0000 0.0000
+vertex -0.0843 -0.0000 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0843 -0.0000 0.0000
+vertex -0.0843 0.0050 0.0000
+vertex -0.0768 0.0050 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0656 0.0050 -0.0272
+vertex -0.0656 -0.0000 -0.0272
+vertex -0.0709 -0.0000 -0.0325
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0709 -0.0000 -0.0325
+vertex -0.0709 0.0050 -0.0325
+vertex -0.0656 0.0050 -0.0272
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0384 0.0050 -0.0384
+vertex -0.0384 -0.0000 -0.0384
+vertex -0.0384 -0.0000 -0.0459
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0384 -0.0000 -0.0459
+vertex -0.0384 0.0050 -0.0459
+vertex -0.0384 0.0050 -0.0384
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0113 0.0050 -0.0272
+vertex -0.0113 -0.0000 -0.0272
+vertex -0.0059 -0.0000 -0.0325
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex -0.0059 -0.0000 -0.0325
+vertex -0.0059 0.0050 -0.0325
+vertex -0.0113 0.0050 -0.0272
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0075 -0.0050 0.0000
+vertex 0.0075 0.0000 0.0000
+vertex 0.0000 0.0000 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0000 0.0000 0.0000
+vertex 0.0000 -0.0050 0.0000
+vertex 0.0075 -0.0050 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0209 -0.0050 -0.0325
+vertex 0.0209 -0.0000 -0.0325
+vertex 0.0156 -0.0000 -0.0378
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0156 -0.0000 -0.0378
+vertex 0.0156 -0.0050 -0.0378
+vertex 0.0209 -0.0050 -0.0325
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0534 -0.0050 -0.0459
+vertex 0.0534 -0.0000 -0.0459
+vertex 0.0534 -0.0000 -0.0534
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0534 -0.0000 -0.0534
+vertex 0.0534 -0.0050 -0.0534
+vertex 0.0534 -0.0050 -0.0459
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0859 -0.0050 -0.0325
+vertex 0.0859 -0.0000 -0.0325
+vertex 0.0912 -0.0000 -0.0378
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0912 -0.0000 -0.0378
+vertex 0.0912 -0.0050 -0.0378
+vertex 0.0859 -0.0050 -0.0325
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0993 -0.0050 -0.0000
+vertex 0.0993 0.0000 -0.0000
+vertex 0.1068 0.0000 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.1068 0.0000 -0.0000
+vertex 0.1068 -0.0050 -0.0000
+vertex 0.0993 -0.0050 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0859 -0.0050 0.0325
+vertex 0.0859 0.0000 0.0325
+vertex 0.0912 0.0000 0.0378
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0912 0.0000 0.0378
+vertex 0.0912 -0.0050 0.0378
+vertex 0.0859 -0.0050 0.0325
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0534 -0.0050 0.0459
+vertex 0.0534 0.0000 0.0459
+vertex 0.0534 0.0000 0.0534
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0534 0.0000 0.0534
+vertex 0.0534 -0.0050 0.0534
+vertex 0.0534 -0.0050 0.0459
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0209 -0.0050 0.0325
+vertex 0.0209 0.0000 0.0325
+vertex 0.0156 0.0000 0.0378
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0156 0.0000 0.0378
+vertex 0.0156 -0.0050 0.0378
+vertex 0.0209 -0.0050 0.0325
+endloop
+endfacet
+endsolid python
diff --git a/rocolib/output/PaddleWheel/graph-silhouette.dxf b/rocolib/output/PaddleWheel/graph-silhouette.dxf
new file mode 100644
index 0000000000000000000000000000000000000000..2914f50ad2be9514166e706f69fc1b725c247cd5
--- /dev/null
+++ b/rocolib/output/PaddleWheel/graph-silhouette.dxf
@@ -0,0 +1,6734 @@
+  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
+105.90990257669735
+ 20
+75.90990300000001
+ 30
+0.0
+ 11
+105.90990257669735
+ 21
+75.90990300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+98.40990257669735
+ 20
+75.90990300000001
+ 30
+0.0
+ 11
+98.40990257669735
+ 21
+75.90990300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+105.90990257669735
+ 20
+75.90990300000001
+ 30
+0.0
+ 11
+113.40990257669735
+ 21
+75.90990300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+90.90990257669733
+ 20
+75.90990300000001
+ 30
+0.0
+ 11
+98.40990257669735
+ 21
+75.90990300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+90.90990257669733
+ 20
+75.90990300000001
+ 30
+0.0
+ 11
+90.90990257669733
+ 21
+75.90990300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+113.40990257669735
+ 20
+75.90990300000001
+ 30
+0.0
+ 11
+113.40990257669735
+ 21
+75.90990300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+75.00000000000001
+ 20
+60.00000042330269
+ 30
+0.0
+ 11
+90.90990257669733
+ 21
+75.90990300000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+120.00000000000003
+ 20
+60.00000042330269
+ 30
+0.0
+ 11
+75.00000000000001
+ 21
+60.00000042330269
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+113.40990257669735
+ 20
+75.90990300000001
+ 30
+0.0
+ 11
+120.00000000000003
+ 21
+60.00000042330269
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+115.60660171779824
+ 20
+49.39339870550447
+ 30
+0.0
+ 11
+70.60660171779824
+ 21
+49.39339870550447
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+120.00000000000003
+ 20
+60.00000042330269
+ 30
+0.0
+ 11
+115.60660171779824
+ 21
+49.39339870550447
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+102.42640687119288
+ 20
+102.42640729449553
+ 30
+0.0
+ 11
+70.60660171779824
+ 21
+70.6066021411009
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+106.81980515339467
+ 20
+91.81980557669732
+ 30
+0.0
+ 11
+75.00000000000001
+ 21
+60.00000042330269
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+102.42640687119288
+ 20
+102.42640729449553
+ 30
+0.0
+ 11
+106.81980515339467
+ 21
+91.81980557669732
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+70.60660171779826
+ 20
+70.6066021411009
+ 30
+0.0
+ 11
+70.60660171779826
+ 21
+93.10660214110091
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+86.51650429449558
+ 20
+109.01650471779821
+ 30
+0.0
+ 11
+102.4264068711929
+ 21
+102.42640729449553
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+81.21320343559647
+ 20
+103.7132038588991
+ 30
+0.0
+ 11
+86.51650429449558
+ 21
+109.01650471779821
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+70.60660171779826
+ 20
+93.10660214110091
+ 30
+0.0
+ 11
+75.90990257669735
+ 21
+98.40990299999999
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+70.60660171779826
+ 20
+93.10660214110091
+ 30
+0.0
+ 11
+70.60660171779826
+ 21
+93.10660214110091
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+86.51650429449558
+ 20
+109.01650471779821
+ 30
+0.0
+ 11
+86.51650429449558
+ 21
+109.01650471779821
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+81.21320343559647
+ 20
+103.7132038588991
+ 30
+0.0
+ 11
+81.21320343559647
+ 21
+103.7132038588991
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+75.90990257669735
+ 20
+98.40990299999999
+ 30
+0.0
+ 11
+75.90990257669735
+ 21
+98.40990299999999
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+77.67766952966373
+ 20
+107.24873776483184
+ 30
+0.0
+ 11
+81.21320343559647
+ 21
+103.7132038588991
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+72.37436867076462
+ 20
+101.94543690593274
+ 30
+0.0
+ 11
+77.67766952966373
+ 21
+107.24873776483184
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+75.90990257669735
+ 20
+98.40990299999999
+ 30
+0.0
+ 11
+72.37436867076462
+ 21
+101.94543690593274
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+60.000000000000036
+ 20
+120.0000004233027
+ 30
+0.0
+ 11
+60.00000000000002
+ 21
+75.0000004233027
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+70.60660171779826
+ 20
+115.60660214110091
+ 30
+0.0
+ 11
+70.60660171779824
+ 21
+70.6066021411009
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+60.000000000000036
+ 20
+120.0000004233027
+ 30
+0.0
+ 11
+70.60660171779826
+ 21
+115.60660214110091
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+60.00000000000002
+ 20
+75.00000042330271
+ 30
+0.0
+ 11
+44.09009742330271
+ 21
+90.90990300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+44.090097423302716
+ 20
+113.40990300000003
+ 30
+0.0
+ 11
+60.000000000000036
+ 21
+120.0000004233027
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+44.090097423302716
+ 20
+105.90990300000003
+ 30
+0.0
+ 11
+44.090097423302716
+ 21
+113.40990300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+44.09009742330271
+ 20
+90.90990300000003
+ 30
+0.0
+ 11
+44.09009742330271
+ 21
+98.40990300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+44.09009742330271
+ 20
+90.90990300000003
+ 30
+0.0
+ 11
+44.09009742330271
+ 21
+90.90990300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+44.090097423302716
+ 20
+113.40990300000003
+ 30
+0.0
+ 11
+44.090097423302716
+ 21
+113.40990300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+44.090097423302716
+ 20
+105.90990300000003
+ 30
+0.0
+ 11
+44.090097423302716
+ 21
+105.90990300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+44.090097423302716
+ 20
+98.40990300000003
+ 30
+0.0
+ 11
+44.090097423302716
+ 21
+98.40990300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+39.090097423302716
+ 20
+105.90990300000003
+ 30
+0.0
+ 11
+44.090097423302716
+ 21
+105.90990300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+39.090097423302716
+ 20
+98.40990300000003
+ 30
+0.0
+ 11
+39.090097423302716
+ 21
+105.90990300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+44.090097423302716
+ 20
+98.40990300000003
+ 30
+0.0
+ 11
+39.090097423302716
+ 21
+98.40990300000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+17.57359312880718
+ 20
+102.42640729449558
+ 30
+0.0
+ 11
+49.393398282201815
+ 21
+70.60660214110091
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+28.180194846605406
+ 20
+106.81980557669736
+ 30
+0.0
+ 11
+60.000000000000036
+ 21
+75.0000004233027
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+17.57359312880718
+ 20
+102.42640729449558
+ 30
+0.0
+ 11
+28.180194846605406
+ 21
+106.81980557669736
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+49.393398282201794
+ 20
+70.60660214110091
+ 30
+0.0
+ 11
+26.89339828220179
+ 21
+70.60660214110092
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+10.983495705504483
+ 20
+86.51650471779827
+ 30
+0.0
+ 11
+17.57359312880718
+ 21
+102.42640729449558
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+16.286796564403588
+ 20
+81.21320385889915
+ 30
+0.0
+ 11
+10.983495705504483
+ 21
+86.51650471779827
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+26.89339828220179
+ 20
+70.60660214110092
+ 30
+0.0
+ 11
+21.590097423302698
+ 21
+75.90990300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+26.89339828220179
+ 20
+70.60660214110092
+ 30
+0.0
+ 11
+26.89339828220179
+ 21
+70.60660214110092
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+10.983495705504483
+ 20
+86.51650471779827
+ 30
+0.0
+ 11
+10.983495705504483
+ 21
+86.51650471779827
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+16.286796564403588
+ 20
+81.21320385889915
+ 30
+0.0
+ 11
+16.286796564403588
+ 21
+81.21320385889915
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+21.590097423302698
+ 20
+75.90990300000004
+ 30
+0.0
+ 11
+21.590097423302698
+ 21
+75.90990300000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+12.751262658470852
+ 20
+77.67766995296643
+ 30
+0.0
+ 11
+16.286796564403588
+ 21
+81.21320385889915
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+18.05456351736996
+ 20
+72.37436909406729
+ 30
+0.0
+ 11
+12.751262658470852
+ 21
+77.67766995296643
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+21.590097423302698
+ 20
+75.90990300000004
+ 30
+0.0
+ 11
+18.05456351736996
+ 21
+72.37436909406729
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+1.4210854715202007e-14
+ 20
+60.000000423302716
+ 30
+0.0
+ 11
+45.00000000000002
+ 21
+60.0000004233027
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+4.393398282201801
+ 20
+70.60660214110092
+ 30
+0.0
+ 11
+49.39339828220181
+ 21
+70.60660214110091
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+1.4210854715202007e-14
+ 20
+60.000000423302716
+ 30
+0.0
+ 11
+4.393398282201801
+ 21
+70.60660214110092
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+45.0
+ 20
+60.000000423302694
+ 30
+0.0
+ 11
+29.090097423302684
+ 21
+44.09009784660538
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+6.590097423302681
+ 20
+44.09009784660539
+ 30
+0.0
+ 11
+0.0
+ 21
+60.000000423302716
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+14.090097423302682
+ 20
+44.09009784660539
+ 30
+0.0
+ 11
+6.590097423302681
+ 21
+44.090097846605396
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+29.090097423302684
+ 20
+44.09009784660538
+ 30
+0.0
+ 11
+21.590097423302684
+ 21
+44.09009784660539
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+29.090097423302684
+ 20
+44.09009784660538
+ 30
+0.0
+ 11
+29.090097423302684
+ 21
+44.09009784660538
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+6.590097423302681
+ 20
+44.090097846605396
+ 30
+0.0
+ 11
+6.590097423302681
+ 21
+44.090097846605396
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+14.090097423302682
+ 20
+44.09009784660539
+ 30
+0.0
+ 11
+14.090097423302682
+ 21
+44.09009784660539
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+21.590097423302684
+ 20
+44.09009784660538
+ 30
+0.0
+ 11
+21.590097423302684
+ 21
+44.09009784660538
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+14.090097423302682
+ 20
+39.09009784660539
+ 30
+0.0
+ 11
+14.090097423302682
+ 21
+44.09009784660539
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+21.590097423302684
+ 20
+39.09009784660539
+ 30
+0.0
+ 11
+14.090097423302682
+ 21
+39.09009784660539
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+21.590097423302684
+ 20
+44.09009784660538
+ 30
+0.0
+ 11
+21.590097423302684
+ 21
+39.09009784660539
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+17.573593128807147
+ 20
+17.573593552109866
+ 30
+0.0
+ 11
+49.39339828220179
+ 21
+49.393398705504474
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+13.180194846605362
+ 20
+28.18019526990808
+ 30
+0.0
+ 11
+45.000000000000014
+ 21
+60.000000423302694
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+17.573593128807147
+ 20
+17.573593552109866
+ 30
+0.0
+ 11
+13.180194846605362
+ 21
+28.18019526990808
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+49.393398282201794
+ 20
+49.39339870550447
+ 30
+0.0
+ 11
+49.39339828220179
+ 21
+26.893398705504477
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+33.483495705504474
+ 20
+10.983496128807161
+ 30
+0.0
+ 11
+17.573593128807147
+ 21
+17.57359355210986
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+38.786796564403566
+ 20
+16.286796987706268
+ 30
+0.0
+ 11
+33.48349570550445
+ 21
+10.983496128807161
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+49.39339828220178
+ 20
+26.89339870550447
+ 30
+0.0
+ 11
+44.09009742330267
+ 21
+21.59009784660537
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+49.39339828220178
+ 20
+26.89339870550447
+ 30
+0.0
+ 11
+49.39339828220178
+ 21
+26.89339870550447
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+33.48349570550445
+ 20
+10.983496128807161
+ 30
+0.0
+ 11
+33.48349570550445
+ 21
+10.983496128807161
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+38.786796564403566
+ 20
+16.286796987706268
+ 30
+0.0
+ 11
+38.786796564403566
+ 21
+16.286796987706268
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+44.09009742330267
+ 20
+21.590097846605378
+ 30
+0.0
+ 11
+44.09009742330267
+ 21
+21.590097846605378
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+42.322330470336304
+ 20
+12.751263081773532
+ 30
+0.0
+ 11
+38.786796564403566
+ 21
+16.286796987706268
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+47.62563132923541
+ 20
+18.054563940672637
+ 30
+0.0
+ 11
+42.322330470336304
+ 21
+12.751263081773532
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+44.09009742330267
+ 20
+21.590097846605378
+ 30
+0.0
+ 11
+47.62563132923541
+ 21
+18.054563940672637
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+59.99999999999999
+ 20
+4.2330268001933296e-07
+ 30
+0.0
+ 11
+60.00000000000002
+ 21
+45.00000042330267
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+49.39339828220178
+ 20
+4.393398705504482
+ 30
+0.0
+ 11
+49.39339828220181
+ 21
+49.39339870550447
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+59.99999999999999
+ 20
+4.2330268001933296e-07
+ 30
+0.0
+ 11
+49.39339828220178
+ 21
+4.393398705504482
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+60.000000000000014
+ 20
+45.00000042330267
+ 30
+0.0
+ 11
+75.90990257669732
+ 21
+29.09009784660535
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+75.90990257669732
+ 20
+6.590097846605347
+ 30
+0.0
+ 11
+59.999999999999986
+ 21
+4.2330268001933296e-07
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+75.90990257669732
+ 20
+14.090097846605348
+ 30
+0.0
+ 11
+75.90990257669732
+ 21
+6.590097846605347
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+75.90990257669732
+ 20
+29.09009784660535
+ 30
+0.0
+ 11
+75.90990257669732
+ 21
+21.590097846605346
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+75.90990257669732
+ 20
+29.09009784660535
+ 30
+0.0
+ 11
+75.90990257669732
+ 21
+29.09009784660535
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+75.90990257669732
+ 20
+6.590097846605347
+ 30
+0.0
+ 11
+75.90990257669732
+ 21
+6.590097846605347
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+75.90990257669732
+ 20
+14.090097846605348
+ 30
+0.0
+ 11
+75.90990257669732
+ 21
+14.090097846605348
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+75.90990257669732
+ 20
+21.590097846605346
+ 30
+0.0
+ 11
+75.90990257669732
+ 21
+21.590097846605346
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+80.90990257669732
+ 20
+14.090097846605348
+ 30
+0.0
+ 11
+75.90990257669732
+ 21
+14.090097846605348
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+80.90990257669732
+ 20
+21.590097846605346
+ 30
+0.0
+ 11
+80.90990257669732
+ 21
+14.090097846605348
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+75.90990257669732
+ 20
+21.590097846605346
+ 30
+0.0
+ 11
+80.90990257669732
+ 21
+21.590097846605346
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+102.42640687119287
+ 20
+17.57359355210981
+ 30
+0.0
+ 11
+70.60660171779824
+ 21
+49.39339870550446
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+91.81980515339464
+ 20
+13.180195269908026
+ 30
+0.0
+ 11
+60.00000000000002
+ 21
+45.00000042330267
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+102.42640687119287
+ 20
+17.57359355210981
+ 30
+0.0
+ 11
+91.81980515339464
+ 21
+13.180195269908026
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+70.60660171779824
+ 20
+49.39339870550447
+ 30
+0.0
+ 11
+93.10660171779824
+ 21
+49.39339870550446
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+109.01650429449555
+ 20
+33.483496128807126
+ 30
+0.0
+ 11
+102.42640687119287
+ 21
+17.573593552109816
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+103.71320343559643
+ 20
+38.78679698770623
+ 30
+0.0
+ 11
+109.01650429449555
+ 21
+33.483496128807126
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.10660171779824
+ 20
+49.39339870550445
+ 30
+0.0
+ 11
+98.40990257669735
+ 21
+44.09009784660533
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+93.10660171779824
+ 20
+49.39339870550445
+ 30
+0.0
+ 11
+93.10660171779824
+ 21
+49.39339870550445
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+109.01650429449555
+ 20
+33.483496128807126
+ 30
+0.0
+ 11
+109.01650429449555
+ 21
+33.483496128807126
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+103.71320343559643
+ 20
+38.78679698770623
+ 30
+0.0
+ 11
+103.71320343559643
+ 21
+38.78679698770623
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+98.40990257669735
+ 20
+44.09009784660533
+ 30
+0.0
+ 11
+98.40990257669735
+ 21
+44.09009784660533
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+107.24873734152918
+ 20
+42.32233089363896
+ 30
+0.0
+ 11
+103.71320343559643
+ 21
+38.78679698770623
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.94543648263009
+ 20
+47.62563175253808
+ 30
+0.0
+ 11
+107.24873734152918
+ 21
+42.32233089363896
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+98.40990257669735
+ 20
+44.09009784660533
+ 30
+0.0
+ 11
+101.94543648263009
+ 21
+47.62563175253808
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+105.90990257669735
+ 20
+80.90990300000001
+ 30
+0.0
+ 11
+105.90990257669735
+ 21
+75.90990300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+98.40990257669735
+ 20
+80.90990300000001
+ 30
+0.0
+ 11
+105.90990257669735
+ 21
+80.90990300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+98.40990257669735
+ 20
+75.90990300000001
+ 30
+0.0
+ 11
+98.40990257669735
+ 21
+80.90990300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.15990257669735
+ 20
+71.909903
+ 30
+0.0
+ 11
+108.15990257669735
+ 21
+74.90990300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.15990257669735
+ 20
+74.90990300000001
+ 30
+0.0
+ 11
+108.65990257669735
+ 21
+74.90990300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.65990257669735
+ 20
+74.90990300000001
+ 30
+0.0
+ 11
+108.65990257669735
+ 21
+71.909903
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+108.65990257669735
+ 20
+71.909903
+ 30
+0.0
+ 11
+108.15990257669735
+ 21
+71.909903
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+85.63262081801238
+ 20
+102.47576699182265
+ 30
+0.0
+ 11
+83.51130047445275
+ 21
+104.5970873353823
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+83.51130047445275
+ 20
+104.5970873353823
+ 30
+0.0
+ 11
+83.86485386504602
+ 21
+104.95064072597556
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+83.86485386504602
+ 20
+104.95064072597556
+ 30
+0.0
+ 11
+85.98617420860566
+ 21
+102.82932038241591
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+85.98617420860566
+ 20
+102.82932038241591
+ 30
+0.0
+ 11
+85.63262081801238
+ 21
+102.47576699182265
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+78.56155300614692
+ 20
+102.82932038241591
+ 30
+0.0
+ 11
+76.79378605318054
+ 21
+101.06155342944956
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+76.79378605318054
+ 20
+101.06155342944956
+ 30
+0.0
+ 11
+75.02601910021419
+ 21
+102.82932038241591
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+75.02601910021419
+ 20
+102.82932038241591
+ 30
+0.0
+ 11
+76.79378605318054
+ 21
+104.5970873353823
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.090097423302716
+ 20
+108.15990300000003
+ 30
+0.0
+ 11
+45.090097423302716
+ 21
+108.15990300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+45.090097423302716
+ 20
+108.15990300000003
+ 30
+0.0
+ 11
+45.090097423302716
+ 21
+108.65990300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+45.090097423302716
+ 20
+108.65990300000003
+ 30
+0.0
+ 11
+48.090097423302716
+ 21
+108.65990300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+48.090097423302716
+ 20
+108.65990300000003
+ 30
+0.0
+ 11
+48.090097423302716
+ 21
+108.15990300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+42.840097423302716
+ 20
+103.40990300000003
+ 30
+0.0
+ 11
+42.840097423302716
+ 21
+100.90990300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+42.840097423302716
+ 20
+100.90990300000003
+ 30
+0.0
+ 11
+40.34009742330271
+ 21
+100.90990300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+40.34009742330271
+ 20
+100.90990300000003
+ 30
+0.0
+ 11
+40.34009742330271
+ 21
+103.40990300000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+17.52423343148006
+ 20
+85.63262124131508
+ 30
+0.0
+ 11
+15.402913087920412
+ 21
+83.51130089775543
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+15.402913087920412
+ 20
+83.51130089775543
+ 30
+0.0
+ 11
+15.049359697327136
+ 21
+83.8648542883487
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+15.049359697327136
+ 20
+83.8648542883487
+ 30
+0.0
+ 11
+17.17068004088678
+ 21
+85.98617463190836
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+17.17068004088678
+ 20
+85.98617463190836
+ 30
+0.0
+ 11
+17.52423343148006
+ 21
+85.63262124131508
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+17.17068004088677
+ 20
+78.5615534294496
+ 30
+0.0
+ 11
+18.938446993853137
+ 21
+76.79378647648322
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+18.938446993853137
+ 20
+76.79378647648322
+ 30
+0.0
+ 11
+17.17068004088677
+ 21
+75.02601952351685
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+17.17068004088677
+ 20
+75.02601952351685
+ 30
+0.0
+ 11
+15.402913087920398
+ 21
+76.79378647648322
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.840097423302682
+ 20
+48.09009784660539
+ 30
+0.0
+ 11
+11.840097423302682
+ 21
+45.09009784660538
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.840097423302682
+ 20
+45.09009784660538
+ 30
+0.0
+ 11
+11.340097423302682
+ 21
+45.090097846605396
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.340097423302682
+ 20
+45.090097846605396
+ 30
+0.0
+ 11
+11.340097423302682
+ 21
+48.090097846605396
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.340097423302682
+ 20
+48.090097846605396
+ 30
+0.0
+ 11
+11.840097423302682
+ 21
+48.09009784660539
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+16.590097423302684
+ 20
+42.84009784660539
+ 30
+0.0
+ 11
+19.090097423302684
+ 21
+42.840097846605374
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+19.090097423302684
+ 20
+42.840097846605374
+ 30
+0.0
+ 11
+19.090097423302684
+ 21
+40.34009784660539
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+19.090097423302684
+ 20
+40.34009784660539
+ 30
+0.0
+ 11
+16.590097423302684
+ 21
+40.34009784660539
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+34.36737918198765
+ 20
+17.52423385478272
+ 30
+0.0
+ 11
+36.48869952554728
+ 21
+15.402913511223085
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+36.48869952554728
+ 20
+15.402913511223085
+ 30
+0.0
+ 11
+36.135146134954
+ 21
+15.049360120629816
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+36.135146134954
+ 20
+15.049360120629816
+ 30
+0.0
+ 11
+34.013825791394375
+ 21
+17.170680464189456
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+34.013825791394375
+ 20
+17.170680464189456
+ 30
+0.0
+ 11
+34.36737918198765
+ 21
+17.52423385478272
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+41.43844699385312
+ 20
+17.170680464189456
+ 30
+0.0
+ 11
+43.20621394681949
+ 21
+18.938447417155825
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+43.20621394681949
+ 20
+18.938447417155825
+ 30
+0.0
+ 11
+44.97398089978585
+ 21
+17.170680464189456
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+44.97398089978585
+ 20
+17.170680464189456
+ 30
+0.0
+ 11
+43.20621394681949
+ 21
+15.402913511223085
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+71.90990257669732
+ 20
+11.840097846605348
+ 30
+0.0
+ 11
+74.9099025766973
+ 21
+11.840097846605348
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+74.9099025766973
+ 20
+11.840097846605348
+ 30
+0.0
+ 11
+74.9099025766973
+ 21
+11.340097846605346
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+74.9099025766973
+ 20
+11.340097846605346
+ 30
+0.0
+ 11
+71.90990257669732
+ 21
+11.340097846605346
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+71.90990257669732
+ 20
+11.340097846605346
+ 30
+0.0
+ 11
+71.90990257669732
+ 21
+11.840097846605348
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+77.1599025766973
+ 20
+16.59009784660535
+ 30
+0.0
+ 11
+77.1599025766973
+ 21
+19.09009784660535
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+77.1599025766973
+ 20
+19.09009784660535
+ 30
+0.0
+ 11
+79.6599025766973
+ 21
+19.09009784660535
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+79.6599025766973
+ 20
+19.09009784660535
+ 30
+0.0
+ 11
+79.6599025766973
+ 21
+16.59009784660535
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+102.47576656851999
+ 20
+34.36737960529032
+ 30
+0.0
+ 11
+104.59708691207963
+ 21
+36.488699948849955
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+104.59708691207963
+ 20
+36.488699948849955
+ 30
+0.0
+ 11
+104.9506403026729
+ 21
+36.13514655825667
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+104.9506403026729
+ 20
+36.13514655825667
+ 30
+0.0
+ 11
+102.82931995911326
+ 21
+34.01382621469704
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+102.82931995911326
+ 20
+34.01382621469704
+ 30
+0.0
+ 11
+102.47576656851999
+ 21
+34.36737960529032
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+102.82931995911326
+ 20
+41.438447417155786
+ 30
+0.0
+ 11
+101.0615530061469
+ 21
+43.206214370122154
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+101.0615530061469
+ 20
+43.206214370122154
+ 30
+0.0
+ 11
+102.82931995911326
+ 21
+44.97398132308852
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+102.82931995911326
+ 20
+44.97398132308852
+ 30
+0.0
+ 11
+104.59708691207963
+ 21
+43.206214370122154
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+103.40990257669735
+ 20
+77.15990300000001
+ 30
+0.0
+ 11
+100.90990257669735
+ 21
+77.15990300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+100.90990257669735
+ 20
+77.15990300000001
+ 30
+0.0
+ 11
+100.90990257669735
+ 21
+79.65990300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+100.90990257669735
+ 20
+79.65990300000001
+ 30
+0.0
+ 11
+103.40990257669735
+ 21
+79.65990300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+151.5900974233027
+ 20
+75.90990300000001
+ 30
+0.0
+ 11
+144.0900974233027
+ 21
+75.90990300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+159.09009742330272
+ 20
+75.90990300000001
+ 30
+0.0
+ 11
+151.5900974233027
+ 21
+75.90990300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+159.09009742330272
+ 20
+75.90990300000001
+ 30
+0.0
+ 11
+159.09009742330272
+ 21
+75.90990300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+136.59009742330272
+ 20
+75.90990300000001
+ 30
+0.0
+ 11
+136.59009742330272
+ 21
+75.90990300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+136.59009742330272
+ 20
+70.909903
+ 30
+0.0
+ 11
+136.59009742330272
+ 21
+75.90990300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.0900974233027
+ 20
+70.909903
+ 30
+0.0
+ 11
+136.59009742330272
+ 21
+70.909903
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+144.0900974233027
+ 20
+75.90990300000001
+ 30
+0.0
+ 11
+144.0900974233027
+ 21
+70.909903
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+175.0
+ 20
+91.81980557669733
+ 30
+0.0
+ 11
+159.09009742330272
+ 21
+75.90990300000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+130.0
+ 20
+91.81980557669733
+ 30
+0.0
+ 11
+175.0
+ 21
+91.81980557669733
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+136.59009742330272
+ 20
+75.90990300000001
+ 30
+0.0
+ 11
+130.0
+ 21
+91.81980557669733
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+134.39339828220184
+ 20
+102.42640729449555
+ 30
+0.0
+ 11
+179.39339828220184
+ 21
+102.42640729449555
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+130.0
+ 20
+91.81980557669733
+ 30
+0.0
+ 11
+134.39339828220184
+ 21
+102.42640729449555
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+147.57359312880715
+ 20
+49.39339870550448
+ 30
+0.0
+ 11
+179.39339828220184
+ 21
+81.21320385889912
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+143.18019484660536
+ 20
+60.0000004233027
+ 30
+0.0
+ 11
+175.0
+ 21
+91.81980557669733
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+147.57359312880715
+ 20
+49.39339870550448
+ 30
+0.0
+ 11
+143.18019484660536
+ 21
+60.0000004233027
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+179.39339828220182
+ 20
+81.21320385889912
+ 30
+0.0
+ 11
+179.39339828220182
+ 21
+58.713203858899114
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.4834957055045
+ 20
+42.80330128220181
+ 30
+0.0
+ 11
+147.57359312880715
+ 21
+49.39339870550448
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+174.09009742330267
+ 20
+53.409903000000014
+ 30
+0.0
+ 11
+168.7867965644036
+ 21
+48.106602141100915
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+179.39339828220182
+ 20
+58.71320385889912
+ 30
+0.0
+ 11
+174.09009742330267
+ 21
+53.409903000000014
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+179.39339828220182
+ 20
+58.71320385889912
+ 30
+0.0
+ 11
+179.39339828220182
+ 21
+58.71320385889912
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+163.4834957055045
+ 20
+42.80330128220181
+ 30
+0.0
+ 11
+163.4834957055045
+ 21
+42.80330128220181
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+167.01902961143722
+ 20
+39.26776737626907
+ 30
+0.0
+ 11
+163.4834957055045
+ 21
+42.80330128220181
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+172.32233047033634
+ 20
+44.57106823516818
+ 30
+0.0
+ 11
+167.01902961143722
+ 21
+39.26776737626907
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+168.7867965644036
+ 20
+48.106602141100915
+ 30
+0.0
+ 11
+172.32233047033634
+ 21
+44.57106823516818
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+190.00000000000003
+ 20
+31.819805576697323
+ 30
+0.0
+ 11
+190.00000000000003
+ 21
+76.81980557669733
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+179.39339828220182
+ 20
+36.213203858899114
+ 30
+0.0
+ 11
+179.39339828220184
+ 21
+81.21320385889912
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+190.00000000000003
+ 20
+31.819805576697323
+ 30
+0.0
+ 11
+179.39339828220182
+ 21
+36.213203858899114
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+190.00000000000003
+ 20
+76.81980557669732
+ 30
+0.0
+ 11
+205.90990257669736
+ 21
+60.90990299999999
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+205.90990257669736
+ 20
+38.40990299999999
+ 30
+0.0
+ 11
+190.00000000000003
+ 21
+31.819805576697316
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+205.90990257669736
+ 20
+53.409902999999986
+ 30
+0.0
+ 11
+205.90990257669736
+ 21
+45.90990299999999
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+205.90990257669736
+ 20
+60.90990299999999
+ 30
+0.0
+ 11
+205.90990257669736
+ 21
+53.409902999999986
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+205.90990257669736
+ 20
+60.90990299999999
+ 30
+0.0
+ 11
+205.90990257669736
+ 21
+60.90990299999999
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+205.90990257669736
+ 20
+38.40990299999999
+ 30
+0.0
+ 11
+205.90990257669736
+ 21
+38.40990299999999
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+210.90990257669736
+ 20
+38.40990299999999
+ 30
+0.0
+ 11
+205.90990257669736
+ 21
+38.40990299999999
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+210.90990257669736
+ 20
+45.90990299999999
+ 30
+0.0
+ 11
+210.90990257669736
+ 21
+38.40990299999999
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+205.90990257669736
+ 20
+45.90990299999999
+ 30
+0.0
+ 11
+210.90990257669736
+ 21
+45.90990299999999
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+232.42640687119285
+ 20
+49.393398705504445
+ 30
+0.0
+ 11
+200.60660171779824
+ 21
+81.2132038588991
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+221.81980515339464
+ 20
+45.00000042330266
+ 30
+0.0
+ 11
+190.00000000000003
+ 21
+76.81980557669733
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+232.42640687119285
+ 20
+49.393398705504445
+ 30
+0.0
+ 11
+221.81980515339464
+ 21
+45.00000042330266
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+200.60660171779824
+ 20
+81.2132038588991
+ 30
+0.0
+ 11
+223.10660171779827
+ 21
+81.21320385889909
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+239.01650429449558
+ 20
+65.30330128220176
+ 30
+0.0
+ 11
+232.42640687119285
+ 21
+49.39339870550444
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+228.40990257669733
+ 20
+75.90990299999999
+ 30
+0.0
+ 11
+233.71320343559645
+ 21
+70.60660214110086
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.10660171779827
+ 20
+81.21320385889909
+ 30
+0.0
+ 11
+228.40990257669733
+ 21
+75.90990299999999
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+223.10660171779827
+ 20
+81.21320385889909
+ 30
+0.0
+ 11
+223.10660171779827
+ 21
+81.21320385889909
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+239.01650429449558
+ 20
+65.30330128220176
+ 30
+0.0
+ 11
+239.01650429449558
+ 21
+65.30330128220176
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+242.5520382004283
+ 20
+68.83883518813448
+ 30
+0.0
+ 11
+239.01650429449558
+ 21
+65.30330128220176
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+237.2487373415292
+ 20
+74.1421360470336
+ 30
+0.0
+ 11
+242.5520382004283
+ 21
+68.83883518813448
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+233.71320343559645
+ 20
+70.60660214110086
+ 30
+0.0
+ 11
+237.2487373415292
+ 21
+74.1421360470336
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+250.00000000000003
+ 20
+91.8198055766973
+ 30
+0.0
+ 11
+205.00000000000003
+ 21
+91.81980557669732
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+245.60660171779827
+ 20
+81.21320385889909
+ 30
+0.0
+ 11
+200.60660171779824
+ 21
+81.2132038588991
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+250.00000000000003
+ 20
+91.8198055766973
+ 30
+0.0
+ 11
+245.60660171779827
+ 21
+81.21320385889909
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+205.00000000000006
+ 20
+91.81980557669732
+ 30
+0.0
+ 11
+220.90990257669736
+ 21
+107.72970815339464
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+243.40990257669736
+ 20
+107.72970815339464
+ 30
+0.0
+ 11
+250.00000000000006
+ 21
+91.8198055766973
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+228.40990257669733
+ 20
+107.72970815339464
+ 30
+0.0
+ 11
+235.90990257669736
+ 21
+107.72970815339464
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+220.90990257669736
+ 20
+107.72970815339464
+ 30
+0.0
+ 11
+228.40990257669733
+ 21
+107.72970815339464
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+220.90990257669736
+ 20
+107.72970815339464
+ 30
+0.0
+ 11
+220.90990257669736
+ 21
+107.72970815339464
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+243.40990257669736
+ 20
+107.72970815339463
+ 30
+0.0
+ 11
+243.40990257669736
+ 21
+107.72970815339463
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+243.40990257669736
+ 20
+112.72970815339463
+ 30
+0.0
+ 11
+243.40990257669736
+ 21
+107.72970815339463
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+235.90990257669736
+ 20
+112.72970815339464
+ 30
+0.0
+ 11
+243.40990257669736
+ 21
+112.72970815339463
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+235.90990257669736
+ 20
+107.72970815339464
+ 30
+0.0
+ 11
+235.90990257669736
+ 21
+112.72970815339464
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+232.4264068711929
+ 20
+134.24621244789014
+ 30
+0.0
+ 11
+200.60660171779824
+ 21
+102.42640729449555
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+236.8198051533947
+ 20
+123.63961073009195
+ 30
+0.0
+ 11
+205.00000000000006
+ 21
+91.81980557669733
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+232.4264068711929
+ 20
+134.24621244789014
+ 30
+0.0
+ 11
+236.8198051533947
+ 21
+123.63961073009195
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+200.60660171779824
+ 20
+102.42640729449555
+ 30
+0.0
+ 11
+200.60660171779824
+ 21
+124.92640729449556
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+216.5165042944956
+ 20
+140.83630987119287
+ 30
+0.0
+ 11
+232.4264068711929
+ 21
+134.24621244789014
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+205.9099025766974
+ 20
+130.22970815339463
+ 30
+0.0
+ 11
+211.2132034355965
+ 21
+135.53300901229377
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+200.60660171779824
+ 20
+124.92640729449556
+ 30
+0.0
+ 11
+205.9099025766974
+ 21
+130.22970815339463
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+200.60660171779824
+ 20
+124.92640729449556
+ 30
+0.0
+ 11
+200.60660171779824
+ 21
+124.92640729449556
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+216.5165042944956
+ 20
+140.83630987119287
+ 30
+0.0
+ 11
+216.5165042944956
+ 21
+140.83630987119287
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+212.98097038856287
+ 20
+144.3718437771256
+ 30
+0.0
+ 11
+216.5165042944956
+ 21
+140.83630987119287
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+207.67766952966375
+ 20
+139.06854291822646
+ 30
+0.0
+ 11
+212.98097038856287
+ 21
+144.3718437771256
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+211.2132034355965
+ 20
+135.53300901229377
+ 30
+0.0
+ 11
+207.67766952966375
+ 21
+139.06854291822646
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+190.00000000000009
+ 20
+151.81980557669732
+ 30
+0.0
+ 11
+190.00000000000003
+ 21
+106.81980557669733
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+200.60660171779824
+ 20
+147.4264072944955
+ 30
+0.0
+ 11
+200.60660171779824
+ 21
+102.42640729449555
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+190.00000000000009
+ 20
+151.81980557669732
+ 30
+0.0
+ 11
+200.60660171779824
+ 21
+147.4264072944955
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+190.00000000000006
+ 20
+106.81980557669733
+ 30
+0.0
+ 11
+174.09009742330272
+ 21
+122.72970815339467
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+174.09009742330272
+ 20
+145.22970815339468
+ 30
+0.0
+ 11
+190.00000000000009
+ 21
+151.81980557669732
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+174.09009742330272
+ 20
+130.22970815339465
+ 30
+0.0
+ 11
+174.09009742330272
+ 21
+137.72970815339468
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+174.09009742330272
+ 20
+122.72970815339467
+ 30
+0.0
+ 11
+174.09009742330272
+ 21
+130.22970815339465
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+174.09009742330272
+ 20
+122.72970815339467
+ 30
+0.0
+ 11
+174.09009742330272
+ 21
+122.72970815339467
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+174.09009742330272
+ 20
+145.22970815339468
+ 30
+0.0
+ 11
+174.09009742330272
+ 21
+145.22970815339468
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+169.09009742330275
+ 20
+145.22970815339468
+ 30
+0.0
+ 11
+174.09009742330272
+ 21
+145.22970815339468
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+169.09009742330275
+ 20
+137.72970815339468
+ 30
+0.0
+ 11
+169.09009742330275
+ 21
+145.22970815339468
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+174.09009742330272
+ 20
+137.72970815339468
+ 30
+0.0
+ 11
+169.09009742330275
+ 21
+137.72970815339468
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+147.57359312880718
+ 20
+134.24621244789023
+ 30
+0.0
+ 11
+179.39339828220184
+ 21
+102.42640729449556
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+158.18019484660542
+ 20
+138.63961073009202
+ 30
+0.0
+ 11
+190.00000000000003
+ 21
+106.81980557669733
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+147.57359312880718
+ 20
+134.24621244789023
+ 30
+0.0
+ 11
+158.18019484660542
+ 21
+138.63961073009202
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+179.39339828220184
+ 20
+102.42640729449555
+ 30
+0.0
+ 11
+156.89339828220184
+ 21
+102.42640729449556
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+140.9834957055045
+ 20
+118.33630987119288
+ 30
+0.0
+ 11
+147.57359312880718
+ 21
+134.24621244789017
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+151.5900974233027
+ 20
+107.72970815339468
+ 30
+0.0
+ 11
+146.2867965644036
+ 21
+113.03300901229377
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+156.89339828220184
+ 20
+102.42640729449558
+ 30
+0.0
+ 11
+151.5900974233027
+ 21
+107.72970815339468
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+156.89339828220184
+ 20
+102.42640729449558
+ 30
+0.0
+ 11
+156.89339828220184
+ 21
+102.42640729449558
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+140.9834957055045
+ 20
+118.3363098711929
+ 30
+0.0
+ 11
+140.9834957055045
+ 21
+118.3363098711929
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+137.44796179957177
+ 20
+114.80077596526017
+ 30
+0.0
+ 11
+140.9834957055045
+ 21
+118.3363098711929
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+142.75126265847086
+ 20
+109.49747510636105
+ 30
+0.0
+ 11
+137.44796179957177
+ 21
+114.80077596526017
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+146.2867965644036
+ 20
+113.03300901229377
+ 30
+0.0
+ 11
+142.75126265847086
+ 21
+109.49747510636105
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+149.3400974233027
+ 20
+79.909903
+ 30
+0.0
+ 11
+149.3400974233027
+ 21
+76.90990300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+149.3400974233027
+ 20
+76.90990300000001
+ 30
+0.0
+ 11
+148.8400974233027
+ 21
+76.90990300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+148.8400974233027
+ 20
+76.90990300000001
+ 30
+0.0
+ 11
+148.8400974233027
+ 21
+79.909903
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+148.8400974233027
+ 20
+79.909903
+ 30
+0.0
+ 11
+149.3400974233027
+ 21
+79.909903
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+139.09009742330272
+ 20
+74.65990300000001
+ 30
+0.0
+ 11
+141.59009742330272
+ 21
+74.65990300000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+141.59009742330272
+ 20
+74.65990300000001
+ 30
+0.0
+ 11
+141.59009742330272
+ 21
+72.159903
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+141.59009742330272
+ 20
+72.159903
+ 30
+0.0
+ 11
+139.09009742330272
+ 21
+72.159903
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+169.67068004088677
+ 20
+54.647339867076475
+ 30
+0.0
+ 11
+171.7920003844464
+ 21
+52.52601952351683
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+171.7920003844464
+ 20
+52.52601952351683
+ 30
+0.0
+ 11
+171.43844699385315
+ 21
+52.17246613292356
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+171.43844699385315
+ 20
+52.17246613292356
+ 30
+0.0
+ 11
+169.31712665029352
+ 21
+54.2937864764832
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+169.31712665029352
+ 20
+54.2937864764832
+ 30
+0.0
+ 11
+169.67068004088677
+ 21
+54.647339867076475
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+166.13514613495406
+ 20
+43.68718475868499
+ 30
+0.0
+ 11
+167.9029130879204
+ 21
+45.45495171165135
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+167.9029130879204
+ 20
+45.45495171165135
+ 30
+0.0
+ 11
+169.67068004088677
+ 21
+43.68718475868499
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+169.67068004088677
+ 20
+43.68718475868499
+ 30
+0.0
+ 11
+167.9029130879204
+ 21
+41.919417805718616
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+201.90990257669736
+ 20
+51.159902999999986
+ 30
+0.0
+ 11
+204.90990257669736
+ 21
+51.159902999999986
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+204.90990257669736
+ 20
+51.159902999999986
+ 30
+0.0
+ 11
+204.90990257669736
+ 21
+50.65990299999999
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+204.90990257669736
+ 20
+50.65990299999999
+ 30
+0.0
+ 11
+201.90990257669736
+ 21
+50.65990299999999
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+201.90990257669736
+ 20
+50.65990299999999
+ 30
+0.0
+ 11
+201.90990257669736
+ 21
+51.159902999999986
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+207.15990257669736
+ 20
+40.909902999999986
+ 30
+0.0
+ 11
+207.15990257669736
+ 21
+43.40990299999999
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+207.15990257669736
+ 20
+43.40990299999999
+ 30
+0.0
+ 11
+209.65990257669736
+ 21
+43.40990299999999
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+209.65990257669736
+ 20
+43.40990299999999
+ 30
+0.0
+ 11
+209.65990257669736
+ 21
+40.909902999999986
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+227.1724657096209
+ 20
+71.49048561758406
+ 30
+0.0
+ 11
+229.29378605318055
+ 21
+73.6118059611437
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+229.29378605318055
+ 20
+73.6118059611437
+ 30
+0.0
+ 11
+229.6473394437738
+ 21
+73.25825257055041
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+229.6473394437738
+ 20
+73.25825257055041
+ 30
+0.0
+ 11
+227.52601910021417
+ 21
+71.13693222699078
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+227.52601910021417
+ 20
+71.13693222699078
+ 30
+0.0
+ 11
+227.1724657096209
+ 21
+71.49048561758406
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+238.13262081801238
+ 20
+67.95495171165132
+ 30
+0.0
+ 11
+236.36485386504603
+ 21
+69.72271866461769
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+236.36485386504603
+ 20
+69.72271866461769
+ 30
+0.0
+ 11
+238.13262081801238
+ 21
+71.49048561758406
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+238.13262081801238
+ 20
+71.49048561758406
+ 30
+0.0
+ 11
+239.90038777097877
+ 21
+69.72271866461769
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+230.65990257669733
+ 20
+103.72970815339463
+ 30
+0.0
+ 11
+230.65990257669733
+ 21
+106.72970815339464
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+230.65990257669733
+ 20
+106.72970815339464
+ 30
+0.0
+ 11
+231.15990257669736
+ 21
+106.72970815339464
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+231.15990257669736
+ 20
+106.72970815339464
+ 30
+0.0
+ 11
+231.15990257669736
+ 21
+103.72970815339463
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+231.15990257669736
+ 20
+103.72970815339463
+ 30
+0.0
+ 11
+230.65990257669733
+ 21
+103.72970815339463
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+240.90990257669736
+ 20
+108.97970815339464
+ 30
+0.0
+ 11
+238.40990257669736
+ 21
+108.97970815339464
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+238.40990257669736
+ 20
+108.97970815339464
+ 30
+0.0
+ 11
+238.40990257669736
+ 21
+111.47970815339464
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+238.40990257669736
+ 20
+111.47970815339464
+ 30
+0.0
+ 11
+240.90990257669736
+ 21
+111.47970815339464
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+210.3293199591133
+ 20
+128.99227128631819
+ 30
+0.0
+ 11
+208.2079996155537
+ 21
+131.11359162987785
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+208.2079996155537
+ 20
+131.11359162987785
+ 30
+0.0
+ 11
+208.56155300614697
+ 21
+131.4671450204711
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+208.56155300614697
+ 20
+131.4671450204711
+ 30
+0.0
+ 11
+210.68287334970657
+ 21
+129.34582467691146
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+210.68287334970657
+ 20
+129.34582467691146
+ 30
+0.0
+ 11
+210.3293199591133
+ 21
+128.99227128631819
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+213.86485386504603
+ 20
+139.95242639470968
+ 30
+0.0
+ 11
+212.09708691207967
+ 21
+138.1846594417433
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+212.09708691207967
+ 20
+138.1846594417433
+ 30
+0.0
+ 11
+210.32931995911332
+ 21
+139.95242639470968
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+210.32931995911332
+ 20
+139.95242639470968
+ 30
+0.0
+ 11
+212.09708691207967
+ 21
+141.72019334767603
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+178.09009742330275
+ 20
+132.47970815339465
+ 30
+0.0
+ 11
+175.09009742330275
+ 21
+132.47970815339465
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+175.09009742330275
+ 20
+132.47970815339465
+ 30
+0.0
+ 11
+175.09009742330275
+ 21
+132.97970815339468
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+175.09009742330275
+ 20
+132.97970815339468
+ 30
+0.0
+ 11
+178.09009742330275
+ 21
+132.97970815339468
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+178.09009742330275
+ 20
+132.97970815339468
+ 30
+0.0
+ 11
+178.09009742330275
+ 21
+132.47970815339465
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+172.84009742330275
+ 20
+142.72970815339468
+ 30
+0.0
+ 11
+172.84009742330275
+ 21
+140.22970815339468
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+172.84009742330275
+ 20
+140.22970815339468
+ 30
+0.0
+ 11
+170.34009742330275
+ 21
+140.22970815339468
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+170.34009742330275
+ 20
+140.22970815339468
+ 30
+0.0
+ 11
+170.34009742330275
+ 21
+142.72970815339468
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+152.82753429037916
+ 20
+112.1491255358106
+ 30
+0.0
+ 11
+150.7062139468195
+ 21
+110.02780519225097
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+150.7062139468195
+ 20
+110.02780519225097
+ 30
+0.0
+ 11
+150.35266055622628
+ 21
+110.38135858284423
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+150.35266055622628
+ 20
+110.38135858284423
+ 30
+0.0
+ 11
+152.47398089978591
+ 21
+112.50267892640386
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+152.47398089978591
+ 20
+112.50267892640386
+ 30
+0.0
+ 11
+152.82753429037916
+ 21
+112.1491255358106
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+141.86737918198767
+ 20
+115.68465944174334
+ 30
+0.0
+ 11
+143.63514613495408
+ 21
+113.91689248877698
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+143.63514613495408
+ 20
+113.91689248877698
+ 30
+0.0
+ 11
+141.86737918198767
+ 21
+112.1491255358106
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+141.86737918198767
+ 20
+112.1491255358106
+ 30
+0.0
+ 11
+140.09961222902135
+ 21
+113.91689248877698
+ 31
+0.0
+  0
+ENDSEC
+  0
+EOF
diff --git a/rocolib/output/PaddleWheel/tree.png b/rocolib/output/PaddleWheel/tree.png
new file mode 100644
index 0000000000000000000000000000000000000000..3a78ec14d2adc8e2b3a3b0f804dfe2e107f64b1d
Binary files /dev/null and b/rocolib/output/PaddleWheel/tree.png differ